diff --git a/.gitignore b/.gitignore index 2873e189e1..b0b80b1871 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,12 @@ bin/ /text-ui-test/ACTUAL.TXT text-ui-test/EXPECTED-UNIX.TXT + +/src/main/java/seedu/duke/*.class +log.txt +.gitignore + +log.txt.lck +.gitignore +save.json +.vscode \ No newline at end of file diff --git a/build.gradle b/build.gradle index d5e548e85f..8f8f145925 100644 --- a/build.gradle +++ b/build.gradle @@ -3,6 +3,20 @@ plugins { id 'application' id 'checkstyle' id 'com.github.johnrengelman.shadow' version '7.1.2' + id 'jacoco' +} + +jacoco { + toolVersion = '0.8.7' + reportsDir = file("$buildDir/customJacocoReportDir") +} + +jacocoTestReport { + reports { + xml.enabled true + html.enabled true + csv.enabled false + } } repositories { @@ -10,6 +24,7 @@ repositories { } dependencies { + implementation 'com.google.code.gson:gson:2.10.1' testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.0' testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.0' } @@ -41,6 +56,8 @@ checkstyle { toolVersion = '10.2' } + run{ standardInput = System.in + enableAssertions = true } diff --git a/docs/AboutUs.md b/docs/AboutUs.md index 0f072953ea..a82b922f35 100644 --- a/docs/AboutUs.md +++ b/docs/AboutUs.md @@ -1,9 +1,9 @@ # About us -Display | Name | Github Profile | Portfolio ---------|:----:|:--------------:|:---------: -![](https://via.placeholder.com/100.png?text=Photo) | John Doe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) -![](https://via.placeholder.com/100.png?text=Photo) | Don Joe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) -![](https://via.placeholder.com/100.png?text=Photo) | Ron John | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) -![](https://via.placeholder.com/100.png?text=Photo) | John Roe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) -![](https://via.placeholder.com/100.png?text=Photo) | Don Roe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) +Display | Name | Github Profile | Portfolio +--------|:---------:|:--------------:|:---------: +![](https://via.placeholder.com/100.png?text=Photo) | John Doe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) +![](https://via.placeholder.com/100.png?text=Photo) | Don Joe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) +![](https://via.placeholder.com/100.png?text=Photo) | Ron John | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) +![](https://via.placeholder.com/100.png?text=Photo) | John Roe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) +![](https://via.placeholder.com/100.png?text=Photo) | Sel Gomez | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md) diff --git a/docs/DeveloperGuide.md b/docs/DeveloperGuide.md index 64e1f0ed2b..b9a92cffb5 100644 --- a/docs/DeveloperGuide.md +++ b/docs/DeveloperGuide.md @@ -1,38 +1,368 @@ # Developer Guide +Welcome to the NUSPlanner Developer Guide! +We hope this documents serves useful to understand the behind-the-scenes working of our product. -## Acknowledgements +## Table of Contents +* [1. Introduction](#1-introduction) + * [1.1 About this Document](#11-about-this-document) + * [1.2 Getting Started](#12-getting-started) +* [2. Design & Implementation](#2-design-and-implementation) + * [2.1 Architecture](#21-architecture) + * [2.2 Parser Component](#22-parser-component) + * [2.2.1 How is the feature implemented](#221-how-is-the-feature-implemented) + * [2.2.2 Add Events Diagram](#222-add-events-diagram) + * [2.2.3 Add Modules Diagram](#223-add-modules-diagram) + * [2.2.4 Why is the feature implemented this way?](#224-why-is-the-feature-implemented-this-way) + * [2.3 Storage Component](#23-storage-component) + * [2.3.1 How the feature is implemented and design considerations](#231-how-the-feature-is-implemented-and-design-considerations) + * [2.3.2 Load Events Sequence Diagram](#232-load-events-sequence-diagram) + * [2.3.3 Load Modules Sequence Diagram](#233-load-modules-sequence-diagram) + * [2.3.4 Save Events Sequence Diagram](#234-save-events-sequence-diagram) + * [2.3.5 Justification for using gson](#235-justification-for-using-gson) + * [2.4 EventList Component](#24-eventlist-component) + * [2.4.1 How is the feature implemented](#241-how-is-the-feature-implemented) + * [2.4.2 Why is it implemented in this way](#242-why-is-it-implemented-in-this-way) + * [3. Testing the application](#3-testing-the-application) + * [3.1 Instructions for manual testing](#31-instructions-for-manual-testing) + * [Launching and shutdown of program](#launching-and-shutdown-of-program) + * [Manually testing functions of the application:](#manually-testing-functions-of-the-application) +* [Appendix A: Product Scope](#appendix-a-product-scope) +* [Appendix B: User Stories](#appendix-b) +* [Appendix C: Non-Functional Requirements](#appendix-c) +* [Appendix D: Glossary](#appendix-d) +* [Appendix E: Acknowledgements](#appendix-e-acknowledgements) -{list here sources of all reused/adapted ideas, code, documentation, and third-party libraries -- include links to the original source as well} -## Design & implementation -{Describe the design and implementation of the product. Use UML diagrams and short code snippets where applicable.} +--- +
+# 1. Introduction: + +## 1.1 About this Document +NUSPlanner is an all-in-one app featuring an event planner with built in support for modules offered by the National University of Singapore (NUS). +It is optimized for use through a Command Line Interface(CLI). + +This document aims to onboard developers onto NUSPlanner, giving them a better understanding of how the application works. +It will share how the project is set up as well as the general architecture used and the finer details regarding each component +critical to the app's function. We hope that this document will serve you well in fixing bugs, or adding new features to NUSPlanner. + +## 1.2 Getting started + +Refer to the user guide [here](https://matthew-liu-zhenjie.github.io/tp/UserGuide.html). +
+ +[Back to contents page](#table-of-contents) + +

 

+ +# 2. Design and Implementation +## 2.1 Architecture +![Architecture Diagram](UML/Images/ArchitectureDesign.png) + +The **Architecture Diagram** above explains the high-level design of NusPlanner. +Below is an overview of how the main components interact with each other. + +#### Main Components of the architecture + +`Duke` is the "Main" of the application. It is responsible for: +* At app launch: Initializes components in the correct sequence, and connects them to each other +* At shut down: Saves the current state of the EventList. + +The rest of the app consists of four components: +* `UI`: The UI of the app +* `Parser`: The command executor +* `EventList`: Holds the data of the app in memory +* `Storage`: Reads data from and writes data to/from the hard disk + + +
+ +[Back to contents page](#table-of-contents) + +

 

+ +## 2.2 Parser Component +The component will return the correct command based on what the user inputs into the application. + +### 2.2.1 How is the feature implemented? + +The Parser component parses the command of the user input and breaks the user input into different parts based on the flags. +This component also ensures to validate that user input is correct. + +The Parser component handles the following methods: +* Add event +* Add module +* List event list +* Delete event +* Edit event +* Find date of week +* Format checker +* Revise information using index +* Revise information using name + +### 2.2.2 Add Events Diagram +The diagram below illustrates the flow of how the application adds events:
+![Add Module Sequencce Diagram](UML/Images/addEvent.png) + +When the user adds an event, the application checks if the format of the command is correct before proceeding further. + +It will then go through different processes depending on if the event has an end date. + +Following that, it will go through another process to check if the event is set to be recurring before finally creating a new event and displaying a success message to the user. + +

 

+ +### 2.2.3 Add Modules Diagram +The diagram below illustrates the flow of how the application adds modules: + +![Add Module Sequencce Diagram](UML/Images/addModules.png) + +When the user adds an event, the application checks if the format of the command is correct before proceeding further. + +Modules are then loaded and the application uses getLesson() to access modules from a Hash Map. + +Then, according to the information provided by the user, the application will convert it to fit the event method before adding a new event. + + +### 2.2.4 Why is the feature implemented this way? + +This component should be able to guide the user to inputting the correct format of the command to do data validation. +It should be able to perform basic data validation checks to ensure that the user does not enter any invalid commands. +This makes life easier to developers in the future if they wish to add new features that requires users to use new commands. + +Here we derive the time of each session of the classes and add them one by one instead of adding the classes as recurring event. The reason for this is that considering sometimes TA/prof will change the time temporary, we want user to be able to change a single session of classes. Therefore we have made individual classes editable. However, checking whether the time of the class is edited to a date that is not within the current semester is beyond the scope of this program and furthermore as mentioned in the UserGuide, we will not check for confliction if the edited time is beyond the confine of current semester. + +
+ +[Back to contents page](#table-of-contents) + +--- +

 

+ +## 2.3 Storage Component +API: `Storage.java` + +The storage component reads and writes user data from a local save in the form of a `.json` file. +The Storage component: +> * Serializes and deserializes user data into a `.json` file format through the use of the Gson library +> * Loads data from `NusMods.json`, a scraped version of the NUSMods API, into a HashMap for use by other classes. +> * Inherits from both `EventListStorage` and `NusModuleLoader`, and can be treated as either one. +> * Saves and loads information from the local hard disk +> * Depends on some classes for serialization/deserialization (since the `storage` component saves and retrieves objects) + +The class diagram below illustrates the structure of the storage package + +![Storage Class Diagram](UML/Images/StorageClass.png) + +### 2.3.1 How the feature is implemented and design considerations: + +The Storage component uses a custom type adapter to serialize and deserialize data from java to json and vice versa using +a gson, a third party library for Json serialization/deserialization. The custom type adapter allows for finer controls over +how objects are deserialized and serialized. + +`NusMods.json` is stored in the resources folder and is deserialized into a hash table storing all module information. A +hash map was used to prevent the slow processing of the program each time a module needed to be searched up as it is a feature +that is likely to see high amounts of usage given the target user. + + +

 

+ + +### 2.3.2 Load Events Sequence Diagram + +![Load Events Sequence Diagram](UML/Images/loadEvents.png) + +When the application starts up, the storage's loadEvents() function will be called to load contents in the save.json file in the local folder directory. + +The save file can be edited and modified as it is stored in a JSON format. However, if certain field is changed in a manner +that may cause the application to fail when running at a later stage, the storage will discard all the data in the EventList +and provide the user with an empty Event List. One such example would be the deletion of a certain field's key without replacing it. + +In the case where there are duplicate names within a JSON object, lexically preceding values for the same key shall be overwritten, +and the last value for the key will be taken as the accurate value. + +
+ +### 2.3.3 Load Modules Sequence Diagram +![Load Modules Sequence Diagram](UML/Images/LoadModules.png) + +When any component requires information from a module offered by NUS, the loadModules() method is called. +loadModules() extracts Data from nusmods.json which is a web-scrapped version of the NUSMods API. The data on the file +is correct as of March 17, 2023. + +It should be noted that Modules that are **Mini Projects** or **Workshops** are not supported by this application as they +do not have any semester data. As such they cannot be added as an event through the hashMap. Instead, they should be added +as individual/recurring invents by the user through the add events functionality. + +

 

+ +### 2.3.4 Save Events Sequence Diagram + +![Save To File Sequence Diagram](UML/Images/SaveToFile.png) + +Similarly, the state of the user's event list is saved when the user exits the application by calling the saveToFile() +method. + +
+ +### 2.3.5 Justification for using gson +The Gson library was chosen as it allowed for flexible adaptation of its TypeAdapter class, allowing for custom +serialization and deserialization of data to be saved. + +
+ +[Back to contents page](#table-of-contents) + +--- + +

 

+ +## 2.4 EventList component + +API: `EventList.java` + +this component maintains a list of Schedule instance. It receives commands from Parser.java and adds/deletes/edits tasks and their information in the list according to the commands. + +### 2.4.1 How is the feature implemented: + +the main functions are + +> - add new task (accepts event without starting time/ending time/ending date). +> - delete a single tasks / delete all tasks. +> - edit the time information of task (starting time/ending time/ending date can be omitted). +> - search for a event by index / description. +> - get all the detail of a event in the list in String form. + +The class diagram below illustrates the structure of the EventList component. + + + +

 

+ + +And below is a sequential diagram showing a event being added, revised, checked for information and finally deleted. + + + + + +### 2.4.2 Why is it implemented in this way: + +It is necessary to have a list which contains all the current event/class so that we can show/ batch process events more efficiently. Moreover, this component serves intermediary functions and avoids other classes access deep into the functionality of classes (Event, Schedule e.t.c) inside the ArrayList, thus reduces the coupling of the code base. Additionally, this component also converted all the String parameters parsed by Parser into various Types that required by other classes that the EventList contains, further reducing the coupling. + +[Back to contents page](#table-of-contents) + +--- + +

 

+ +# 3. Testing the application +## 3.1 Instructions for manual testing + +### Launching and shutdown of program +1. Download the latest version of the `.jar` file and copy the file to a folder of your preference that you want NUSPlanner to run in. + Note that the save file will be in the same directory. +2. Run the .jar file based on the instructions as provided on the User Guide. You should expect to see the CLI displaying a welcome message. + +### Manually testing functions of the application: + +When manual testing, the developer should attempt to call commands as specified in the user guide and visually confirm the expected behaviour +from a user's standpoint. Following that, the developer should iteratively check edge cases and push the program's boundaries. This is to confirm +that unexpected behaviours from the user is accounted for and handled appropriately. Below are some such examples. The tests listed are not exhaustive and +the developer is encouraged to expand upon them. + +#### User Input +Attempt to enter commands that are not specified in the User Guide. Some examples are: `testing 123`, `beep boop`. +Expected behaviour: Error details are shown on the terminal + +#### `Add` Command: +1. Add commands without specifying flags, Test Case: `add helloWorld 20:00 2023/04/11` Expected Behaviour: Error details shown on terminal +2. Add commands with duplicate flags, Test Case: `add -e testing123 -st 20:00 -sd 2023/04/11 -st 18:00` Expected Behaviour: Error details shown on terminal +3. Add commands with invalid format, Test Case: `add -e testing3211 -st 20:00 -sd 11-04-2023` Expected Behaviour: Error details shown in terminal + +#### `list` Command: +1. Add a valid event(s)), with starting and ending times on the same day, to the list. +2. Test Case: `list` Expected Behaviour: Terminal displays list of events added as was added +3. Test Case: `list -w X` where X is the week in question. Expected Behaviour: The terminal displays a timetable with + events of the week in question accurately reflected. + +--- + +

 

+ + +# Appendix A: Product Scope -## Product scope ### Target user profile -{Describe the target user profile} +Our target user profile is students studying in NUS, who are looking for a convenient and easy way to keep track and +manage their schedule. ### Value proposition -{Describe the value proposition: what problem does it solve?} +NUSPlanner aims to help students who are studying in the National University of Singapore better manage their hectic schedules, +allowing them to take charge of their schedules and ensure that they have their upcoming events well-planned out. + +
+[Back to contents page](#table-of-contents) + +--- + +# Appendix B: ## User Stories -|Version| As a ... | I want to ... | So that I can ...| -|--------|----------|---------------|------------------| -|v1.0|new user|see usage instructions|refer to them when I forget how to use the application| -|v2.0|user|find a to-do item by name|locate a to-do without having to go through the entire list| +| Version | As a ... | I want to ... | So that I can ... | +|---------|--------------|---------------------------------------------------------------------|------------------------------------------------------------------------------------| +| v1.0 | As a user | Add, edit, delete and view events | Plan my schedule and have an understanding of what's upcoming | +| v1.0 | As a user | Save and load my events | Revisit them at a later time without having to reenter them | +| v2.0 | As a student | Add modules and view my schedule in a list or table format by weeks | Plan my schedule around modules (lectures, tutorials and labs) and upcoming events | +| v2.0 | As a user | Set an event to be recurring | Easily add recurring events to my schedule | +| v2.0 | As a user | Save the location of an event | Remember where I need to go for the next event | + +
+ +[Back to contents page](#table-of-contents) +--- + +# Appendix C: ## Non-Functional Requirements +1. The program should be able to run on any computer regardless of OS. +2. The program should be able to handle data corruption. +3. The program is not required to return an accurate timetable for modules that only have one or two lectures in the whole semester. +4. The program should be lightweight and fast. + +
+ +[Back to contents page](#table-of-contents) -{Give non-functional requirements} +--- +# Appendix D: ## Glossary -* *glossary item* - Definition +* *NUSPlanner* - The name of our application +* *OS* - Operating System (ie Windows, Linux, macOS) of the computer +* *CLI* - Command Line Interface, the terminal of an OS +* *UI* - User Interface +* *NUSMods* - NUSMods is a module manager and organiser tool used by NUS Students. + +
+ +[Back to contents page](#table-of-contents) + +--- + +

 

+ +# Appendix E: Acknowledgements + +Special thanks to the following libraries and APIs for making the development of **NUSPlanner** possible +1. GSON (Third Party Library) - [Documentation](https://github.com/google/gson/blob/master/UserGuide.md) +2. NUSMods API - [Documentation](https://api.nusmods.com/v2/) -## Instructions for manual testing +
-{Give instructions on how to do a manual product testing e.g., how to load sample data to be used for testing} +[Back to contents page](#table-of-contents) diff --git a/docs/NUSModsEG.png b/docs/NUSModsEG.png new file mode 100644 index 0000000000..1f82bc80d9 Binary files /dev/null and b/docs/NUSModsEG.png differ diff --git a/docs/README.md b/docs/README.md index bbcc99c1e7..5feb1dcf64 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,10 @@ -# Duke +# NUSPlanner -{Give product intro here} +🗓️ NUSPlanner is a desktop app that allows for an *easy* and *straightforward* way for NUS students to manage their schedule ranging from person, school or external related activities. This application makes use of a desktop Command Line Interface (CLI), enabling a quick and sleek method of getting your schedule in check. + +⌨️ If you can type fast, NUSPlanner can get your contact management tasks done faster and more efficiently than traditional GUI apps. + +✅ NUSPlanner is available for download for operating systems such as Windows, Linux and OS-X. Useful links: * [User Guide](UserGuide.md) diff --git a/docs/UML/ArchitectureDesign.puml b/docs/UML/ArchitectureDesign.puml new file mode 100644 index 0000000000..f172763529 --- /dev/null +++ b/docs/UML/ArchitectureDesign.puml @@ -0,0 +1,44 @@ +@startuml +hide circle +hide footbox +hide members +allowmixing + + +!define UI_COLOR #1D8900 +!define STORAGE_COLOR #A38300 +!define PARSER_COLOR #9D0012 +!define DUKE_COLOR #FF6A14 +!define EVENTLIST_COLOR #82DE09 +!define USER_COLOR #000000 +skinparam MinClassWidth 60 +skinparam actorStyle awesome +skinparam packageStyle Rectangle +skinparam DefaultTextAlignment center + +skinparam Class { + FontColor #FFFFFF + BorderThickness 1 + BorderColor #FFFFFF + StereotypeFontColor #FFFFFF + FontName Arial +} +package NUSPlanner{ + class UI UI_COLOR + class Parser PARSER_COLOR + class Storage STORAGE_COLOR + class Duke DUKE_COLOR + class EventList EVENTLIST_COLOR +} + +actor :user: +file SaveFile +user .down.> UI +UI -right-> Parser +Duke -> UI +Duke ----> Storage +Parser -down-> EventList +EventList ..> Storage +Storage .> SaveFile +Storage ..> EventList +@enduml diff --git a/docs/UML/Images/ArchitectureDesign.png b/docs/UML/Images/ArchitectureDesign.png new file mode 100644 index 0000000000..2db03bd6ae Binary files /dev/null and b/docs/UML/Images/ArchitectureDesign.png differ diff --git a/docs/UML/Images/EventListSD.jpg b/docs/UML/Images/EventListSD.jpg new file mode 100644 index 0000000000..3e43f4587e Binary files /dev/null and b/docs/UML/Images/EventListSD.jpg differ diff --git a/docs/UML/Images/EventListUML.png b/docs/UML/Images/EventListUML.png new file mode 100644 index 0000000000..5ae057c207 Binary files /dev/null and b/docs/UML/Images/EventListUML.png differ diff --git a/docs/UML/Images/LoadModules.png b/docs/UML/Images/LoadModules.png new file mode 100644 index 0000000000..9c2de3fc9a Binary files /dev/null and b/docs/UML/Images/LoadModules.png differ diff --git a/docs/UML/Images/SaveToFile.png b/docs/UML/Images/SaveToFile.png new file mode 100644 index 0000000000..0e6a8ab9c6 Binary files /dev/null and b/docs/UML/Images/SaveToFile.png differ diff --git a/docs/UML/Images/StorageClass.png b/docs/UML/Images/StorageClass.png new file mode 100644 index 0000000000..3a1e1c1d46 Binary files /dev/null and b/docs/UML/Images/StorageClass.png differ diff --git a/docs/UML/Images/StorageSequenceDiagram.png b/docs/UML/Images/StorageSequenceDiagram.png new file mode 100644 index 0000000000..37b774f1ba Binary files /dev/null and b/docs/UML/Images/StorageSequenceDiagram.png differ diff --git a/docs/UML/Images/addEvent.png b/docs/UML/Images/addEvent.png new file mode 100644 index 0000000000..08e3623e2f Binary files /dev/null and b/docs/UML/Images/addEvent.png differ diff --git a/docs/UML/Images/addModules.png b/docs/UML/Images/addModules.png new file mode 100644 index 0000000000..1803ff4fdc Binary files /dev/null and b/docs/UML/Images/addModules.png differ diff --git a/docs/UML/Images/loadEvents.png b/docs/UML/Images/loadEvents.png new file mode 100644 index 0000000000..12145387b7 Binary files /dev/null and b/docs/UML/Images/loadEvents.png differ diff --git a/docs/UML/LoadEvents.puml b/docs/UML/LoadEvents.puml new file mode 100644 index 0000000000..5d8fbf9965 --- /dev/null +++ b/docs/UML/LoadEvents.puml @@ -0,0 +1,27 @@ +@startuml +hide footbox +hide circle + +-> ":Storage" : loadEvents() +activate ":Storage" +":Storage" -> ":EventListStorage" : loadEvents() +activate ":EventListStorage" +":EventListStorage" ->":EventListAdapter" : gson.fromJson(fileReader, ArrayList.class) +activate ":EventListAdapter" +":EventListAdapter" -> ":ArrayList" : ArrayList() +activate ":ArrayList" +":EventListAdapter" -> ":EventListAdapter" : read() +loop events in file + ":EventListAdapter" -> ":EventListAdapter" : readEvent() + ":EventListAdapter" --> ":ArrayList" : Event +end +":ArrayList" --> ":EventListAdapter" : :ArrayList +deactivate ":ArrayList" +":EventListAdapter" --> ":EventListStorage" : :ArrayList +deactivate ":EventListAdapter" +":EventListStorage" --> ":Storage" : :ArrayList +deactivate ":EventListStorage" +<-- ":Storage" : :ArrayList +deactivate ":Storage" +destroy ":ArrayList" +@enduml \ No newline at end of file diff --git a/docs/UML/LoadModules.puml b/docs/UML/LoadModules.puml new file mode 100644 index 0000000000..b43fae0bd2 --- /dev/null +++ b/docs/UML/LoadModules.puml @@ -0,0 +1,36 @@ +@startuml +hide circle +hide footbox + +-> ":Storage" : loadModules() +activate ":Storage" +Alt modulesLoaded + ":Storage" --> ":Storage" : :HashMap + <-- ":Storage" : :HashMap +else else + ":Storage" -> ":NusModuleLoader" : loadModules() + activate ":NusModuleLoader" + ":NusModuleLoader" -> ":ModuleAdapter" : ModuleAdapter() + activate ":ModuleAdapter" + ":ModuleAdapter" -> ":HashMap" : HashMap() + activate ":HashMap" + ":ModuleAdapter" -> ":ModuleAdapter" : read() + loop module in NusMods.json + ":ModuleAdapter" -> ":ModuleAdapter" : readModule() + ":ModuleAdapter" --> ":HashMap" : Module + end + ":HashMap" --> ":ModuleAdapter" : ":HashMap" + deactivate ":HashMap" + ":ModuleAdapter" --> ":NusModuleLoader" : ":HashMap" + deactivate ":ModuleAdapter" + ":NusModuleLoader" --> ":Storage" : ":HashMap" + deactivate ":NusModuleLoader" + <-- ":Storage" : ":HashMap" + deactivate ":Storage" + destroy ":HashMap" +end + + + + +@enduml \ No newline at end of file diff --git a/docs/UML/SaveToFile.puml b/docs/UML/SaveToFile.puml new file mode 100644 index 0000000000..c5c50a7aa4 --- /dev/null +++ b/docs/UML/SaveToFile.puml @@ -0,0 +1,36 @@ +@startuml +hide footbox +-> ":Storage" : saveToFile(EventList) +activate ":Storage" + ":Storage" -> ":EventListStorage" : saveToFile(EventList) + activate ":EventListStorage" + ":EventListStorage" -> ":EventListAdapter" : gson.toJson(eventList.getFullList()) + activate ":EventListAdapter" + ":EventListAdapter" -> ":EventListAdapter" : write() + activate ":EventListAdapter" + loop Event in ArrayList + ":EventListAdapter" -> ":EventListAdapter" : writeEvent() + end + deactivate ":EventListAdapter" + ":EventListAdapter" --> ":EventListStorage" : String + deactivate ":EventListAdapter" + opt File does not exist + ":EventListStorage" -> ":File" : new File() + activate ":File" + ":File" --> ":EventListStorage" + deactivate ":File" + end + ":EventListStorage" -> ":FileWriter" : taskWriter.write(gsonData) + activate ":FileWriter" + ":FileWriter" --> ":File" : String + activate ":File" + ":File" --> ":FileWriter" + deactivate ":File" + ":FileWriter" --> ":EventListStorage" + deactivate ":FileWriter" + ":EventListStorage" --> ":Storage" + deactivate ":EventListStorage" + <-- ":Storage" + deactivate ":Storage" + +@enduml \ No newline at end of file diff --git a/docs/UML/StorageClass.puml b/docs/UML/StorageClass.puml new file mode 100644 index 0000000000..b265c516a2 --- /dev/null +++ b/docs/UML/StorageClass.puml @@ -0,0 +1,67 @@ +@startuml +hide circle +skinparam packageStyle Rectangle +skinparam classAttributeIconSize 0 + +package Storage{ + class "<>\nStorage"{ + +saveToFile(EventList):void + +loadEvents():ArrayList + +loadModules():HashMap + } + + class "<>\nEventListStorage"{ + +saveToFile(EventList):void + +loadEvents():ArrayList + } + class JsonEventListStorage { + } + class EventListAdapter{ + } + + + + class "<>\nNusModuleLoader"{ + +loadModules():HashMap + } + + class JsonNusModuleLoader{ + } + + class ModuleAdapter{ + } + + + class StorageManager{ + + } + + + + + + + "<>\nStorage" --|> "<>\nNusModuleLoader" + "<>\nStorage" --|>"<>\nEventListStorage" + + StorageManager --> "1""<>\nNusModuleLoader" + StorageManager --> "1""<>\nEventListStorage" + StorageManager .down.> "<>\nStorage" + + JsonEventListStorage .up.|> "<>\nEventListStorage" + JsonEventListStorage -down-> "1" EventListAdapter + + JsonNusModuleLoader .up.|> "<>\nNusModuleLoader" + JsonNusModuleLoader -down-> "1" ModuleAdapter + +} +package gson{ + class TypeAdapter{ + } +} + + + EventListAdapter --|> TypeAdapter + ModuleAdapter --|> TypeAdapter + +@enduml diff --git a/docs/UML/UserClass.puml b/docs/UML/UserClass.puml new file mode 100644 index 0000000000..59edc88eab --- /dev/null +++ b/docs/UML/UserClass.puml @@ -0,0 +1,14 @@ +@startuml + +class User { + -semester + +getSemester() + +setSemester() +} + +class UserUtility { + -user + +getUser() +} + +@enduml diff --git a/docs/UML/addEvent.puml b/docs/UML/addEvent.puml new file mode 100644 index 0000000000..fc9fae13b7 --- /dev/null +++ b/docs/UML/addEvent.puml @@ -0,0 +1,40 @@ +@startuml +":Actor" -> ":Parser" : parseAddCommand() +":Parser" -> Parser : addFormatChecker() +alt event has end date + alt event is recurring + Parser -> ":EventList" : addEvent() + EventList -> EventList : convertToTimeInfo() + EventList -> EventList : convertToTimeInfo() + EventList -> ":Event" : new Event() + Event --> EventList + EventList -> ":EventList" : canAddNewEvent() + EventList --> Parser + else event is non-recurring + Parser -> EventList : addEvent() + EventList -> EventList : convertToTimeInfo() + EventList -> EventList : convertToTimeInfo() + EventList -> Event : new Event() + Event --> EventList + EventList --> Parser + end + else event does not has end date + alt event is recurring + Parser -> EventList : addEvent() + EventList -> EventList : convertToTimeInfo() + EventList -> Event : new Event() + Event --> EventList + EventList --> Parser + else event is non-recurring + Parser -> EventList : addEvent() + EventList -> EventList : convertToTimeInfo() + EventList -> Event : new Event() + Event --> EventList + EventList --> Parser + end +end +Parser -> ":Ui" : addSuccessMsg() +":Ui" --> Parser +Parser --> ":Actor" +hide footbox +@enduml \ No newline at end of file diff --git a/docs/UML/addModules.puml b/docs/UML/addModules.puml new file mode 100644 index 0000000000..6e9ee72b70 --- /dev/null +++ b/docs/UML/addModules.puml @@ -0,0 +1,22 @@ +@startuml +":Actor" -> Parser : parseAddCommand() +":Parser" -> Parser : addFormatChecker() +Parser -> NusmodConverter : loadModules() +NusmodConverter --> Parser : HashMap nusmodules +Parser -> NusModule : getLesson() +NusModule --> Parser : List lessons +loop lesson: Lessons + loop week: lesson.getWeeks() + Parser -> Parser : findDateOfWeek() + Parser -> EventList : addEvent() + EventList -> EventList : convertToTimeInfo() + EventList -> EventList : convertToTimeInfo() + EventList -> Event : new Event() + Event --> EventList + EventList -> EventList : canAddNewEvent() + EventList --> Parser + end +end +Parser --> Actor +hide footbox +@enduml \ No newline at end of file diff --git a/docs/UserGuide.md b/docs/UserGuide.md index abd9fbe891..8c5bfc0c25 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -1,42 +1,452 @@ # User Guide +# Table of contents -## Introduction +- [User Guide](#user-guide) + - [1.0 Introduction](#10-introduction) + - [2.0 Quick Start](#20-quick-start) + - [3.0 Features](#30-features) + - [FAQ](#faq) + - [Command Summary](#command-summary) -{Give a product intro} -## Quick Start +## 1.0 Introduction +🗓️ NUSPlanner is a desktop app that allows for an *easy* and *straightforward* way for NUS students to manage their schedule ranging from person, school or external related activities. This application makes use of a desktop Command Line Interface (CLI), enabling a quick and sleek method of getting your schedule in check. -{Give steps to get started quickly} +⌨️ If you can type fast, NUSPlanner can get your contact management tasks done faster and more efficiently than traditional GUI apps. + +✅ NUSPlanner is available for download for operating systems such as Windows, Linux and OS-X. + +
+ +[Back to Contents Page](#table-of-contents) + +## 2.0 Quick Start +Before we get started, here's what you need to do: 1. Ensure that you have Java 11 or above installed. -1. Down the latest version of `Duke` from [here](http://link.to/duke). +2. Download the latest version of `NUSPlanner.jar` from [here](https://github.com/AY2223S2-CS2113-F13-3/tp/releases). +3. Open your terminal or command prompt +4. Navigate to the file directory of where the jar file is saved +5. Execute `NUSPlanner.jar` using the following command: `java -jar NUSPlanner.jar` +6. Refer to section [3.0 Features] for more details of commands + +[Back to Contents Page](#table-of-contents) + +

 

+ +## 3.0 Features + +Read this section to find out how NUSPlanner can make your life easier! + +### Adding an event: `add` +Adds an event to the schedule. Assuming x is an switch. Use –x to specify the attributes to edit. + +Format: `add –e EVENTNAME –st STARTTIME –sd STARTDATE –et ENDTIME –ed ENDDATE -v VENUE -r RECURRING TIME` +* `sd` and `ed` must be of the format `YYYY/MM/DD` +* `e`, `sd` and `st` are **compulsory** fields +* `ed` and `et` are **optional**: + * if user input **ed without et**, ed value will be ignored + * if user input **et without ed**, ed value will be set to the same as sd by default. + +* `v` is **optional** +* `r` is optional, the format is `x D/ x W`, which means the event will happen in every x day(s)/x week(s). + +#### Examples of usage +1. Add event that starts and ends on different days: `add -e Career Fair -st 14:00 -sd 2023/02/10 -et 16:00 -ed 2023/02/11` +2. Add event that happens every week: `add -e collect mails -st 08:00 -sd 2023/02/10 -et 08:10 -ed 2023/02/10 -r 1 W` + +**Notice:** + +> - Date/time formats like 8:00 or 2023/4/1 are not accepted. The format should be strictly `two digits`:`two digits` (08:00 and 2023/04/01 in this case). +> +> - App will omit possible negative recurring time that users might input and consider the current event non-recurring. +> +> - Users are able to add events that are not within the semester boundaries, however it will not be shown in the timetable user interface and will only be listed out. +> + +Expected outcome: + +1. ~~~ + ____________________________________________________________ + Event successfully added: + + > [E] Career Fair (2023/02/10 14:00 to 2023/02/11 16:00 not recurring) + ____________________________________________________________ + ~~~ + +2. ~~~ + ____________________________________________________________ + Event successfully added: + + > [E] collect mails (2023/02/10 08:00 to 2023/02/10 08:10 | recurring, time interval: 1 Week(s)) + ____________________________________________________________ + ~~~ + + + + +**Confliction Checking:** + +- NUSPlanner will only check for conflicts between events and classes that have **starting date & time and ending date & time, within the time period of selected semester.** +- Users need to check themselves whether the events will clash with each other during vacation periods. + +

 

+ +### Adding a module: `add` +Adds a module to the schedule. Assuming x is an switch. Use –x to specify the attributes to edit. + +Format: `add –m MODULECODE -n CLASSNUMBER -l LESSONTYPE` +* All fields are **compulsory** + +#### Examples of usage +* Add a lecture of module: `add -m AC5001 -n 1 -l LEC` +* Add a tutorial of module: `add -m CS2100 -n 11 -l TUT` + +#### How to find the correct `MODULECODE`, `CLASSNUMBER` and `LESSONTYPE`? +* Head over to [NUSMods](https://nusmods.com/timetable/sem-2) +* Find the class and slot that you want +* For example, user wants to take these 3 slots: + +

+ +

+ +> `MODULECODE`: Module code +> +>`CLASSNUMBER`: Number that is allocated to class. It is in this format: [X] +> +>`LESSONTYPE`: Refer to table below. +* Commands used for this case are +`add -m CS2100 -n 01 -l TUT`, `add -m CS2100 -n 02 -l LAB` and `add -m CS2100 -n 1 -l LEC` +* Please type out your commands and ensure your spelling is accurate +* Copying and pasting commands from the user guide may cause some issues due to formatting + +**`LessonTypes` Recognized by NUSPlanner** + +| Lesson name | Name on NUSMODS | LessonType input | +|----------------------------|-----------------|------------------| +| Lecture | LEC | `LEC` | +| Sectional Teaching | SEC | `SEC` | +| Design Lecture | DLEC | `DLEC` | +| Recitation | REC | `REC` | +| Packaged Lecture | PLEC | `PLEC` | +| Seminar-Style Module Class | SEM | `SEM` | +| Tutorial | TUT | `TUT` | +| Tutorial Type 2 | TUT2 | `TUT2` | +| Packaged Tutorial | PTUT | `PTUT` | +| Laboratory | LAB | `LAB` | + +**Workshops** and **Mini Projects** are excluded from the lesson types as they do not have specific timings. Do add them as individual/recurring +events should you need to have them. + +**Notice** +> For the lesson number and lesson type, follow the **EXACT** format as displayed on NUSMods. +> +> ~~**BAD** example~~: `add -m CS2100 -n 2 -l TUT` +> +> **GOOD** example: `add -m CS2100 -n 02 -l TUT` or `add -m AC5001 -l LEC -n 1` +> +> +> For `LESSONTYPE` field, only inputs specified in the table above are accepted + +Expected outcome: +~~~ +____________________________________________________________ +Event successfully added: + + > Added 13 classes of Module: AC5001 +____________________________________________________________ +~~~ +~~~ +____________________________________________________________ +Event successfully added: + + > Added 11 classes of Module: CS2100 +____________________________________________________________ +~~~ -## Features +

 

-{Give detailed description of each feature} +### Deleting an event: `delete` +Delete a single event or all events from the schedule. Use –s to specify the events to delete, or –all to delete all events. -### Adding a todo: `todo` -Adds a new item to the list of todo items. +Format: +* `delete –s INDEX_OF_EVENT ` +* `delete -all` -Format: `todo n/TODO_NAME d/DEADLINE` +#### Examples of usage +1. Delete a single event: `delete –s 1` -* The `DEADLINE` can be in a natural language format. -* The `TODO_NAME` cannot contain punctuation. +2. Delete all events: `delete -all` -Example of usage: +Expected outcome: +1. ~~~ + ____________________________________________________________ + This event is deleted: + + > [E] testing (2023/03/21 10:00 to 2023/03/21 10:00 not recurring) + ____________________________________________________________ + ~~~ +2. ~~~ + ____________________________________________________________ + > all events are deleted! + ____________________________________________________________ + ~~~ -`todo n/Write the rest of the User Guide d/next week` +

 

-`todo n/Refactor the User Guide to remove passive voice d/13/04/2020` +### List an event: `list` +Displays a list of all events that have been added to the schedule. + +Format: +* List all events: `list` +* List timetable of specific week: `list -w WEEKNUM` + +#### Examples of usage +* List all events: `list` +* List timetable of specific week: `list -w 7` + +Expected outcome: +~~~ +____________________________________________________________ + > 1.[E] AC5001 (2022/08/10 14:00 to 2022/08/10 17:00 not recurring) + @ UTSRC-LT51 + > 2.[E] AC5001 (2022/08/17 14:00 to 2022/08/17 17:00 not recurring) + @ UTSRC-LT51 + > 3.[E] AC5001 (2022/08/24 14:00 to 2022/08/24 17:00 not recurring) + @ UTSRC-LT51 + > 4.[E] AC5001 (2022/08/31 14:00 to 2022/08/31 17:00 not recurring) + @ UTSRC-LT51 + > 5.[E] AC5001 (2022/09/07 14:00 to 2022/09/07 17:00 not recurring) + @ UTSRC-LT51 + > 6.[E] AC5001 (2022/09/14 14:00 to 2022/09/14 17:00 not recurring) + @ UTSRC-LT51 + > 7.[E] AC5001 (2022/09/28 14:00 to 2022/09/28 17:00 not recurring) + @ UTSRC-LT51 + > 8.[E] AC5001 (2022/10/05 14:00 to 2022/10/05 17:00 not recurring) + @ UTSRC-LT51 + > 9.[E] AC5001 (2022/10/12 14:00 to 2022/10/12 17:00 not recurring) + @ UTSRC-LT51 + > 10.[E] AC5001 (2022/10/19 14:00 to 2022/10/19 17:00 not recurring) + @ UTSRC-LT51 + > 11.[E] AC5001 (2022/10/26 14:00 to 2022/10/26 17:00 not recurring) + @ UTSRC-LT51 + > 12.[E] AC5001 (2022/11/02 14:00 to 2022/11/02 17:00 not recurring) + @ UTSRC-LT51 + > 13.[E] AC5001 (2022/11/09 14:00 to 2022/11/09 17:00 not recurring) + @ UTSRC-LT51 + > 14.[E] CS2100 (2022/08/26 10:00 to 2022/08/26 11:00 not recurring) + @ COM1-0114 + > 15.[E] CS2100 (2022/09/02 10:00 to 2022/09/02 11:00 not recurring) + @ COM1-0114 + > 16.[E] CS2100 (2022/09/09 10:00 to 2022/09/09 11:00 not recurring) + @ COM1-0114 + > 17.[E] CS2100 (2022/09/16 10:00 to 2022/09/16 11:00 not recurring) + @ COM1-0114 + > 18.[E] CS2100 (2022/09/30 10:00 to 2022/09/30 11:00 not recurring) + @ COM1-0114 + > 19.[E] CS2100 (2022/10/07 10:00 to 2022/10/07 11:00 not recurring) + @ COM1-0114 + > 20.[E] CS2100 (2022/10/14 10:00 to 2022/10/14 11:00 not recurring) + @ COM1-0114 + > 21.[E] CS2100 (2022/10/21 10:00 to 2022/10/21 11:00 not recurring) + @ COM1-0114 + > 22.[E] CS2100 (2022/10/28 10:00 to 2022/10/28 11:00 not recurring) + @ COM1-0114 + > 23.[E] CS2100 (2022/11/04 10:00 to 2022/11/04 11:00 not recurring) + @ COM1-0114 + > 24.[E] CS2100 (2022/11/11 10:00 to 2022/11/11 11:00 not recurring) + @ COM1-0114 +____________________________________________________________ +~~~ + +

 

+ +~~~ +Showing schedule for semester 1 and week 7 +____________________________________________________________ +There are no events! +____________________________________________________________ +TIME |MONDAY |TUESDAY |WEDNESDAY |THURSDAY |FRIDAY |SATURDAY |SUNDAY | +----------+---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +08:00 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +08:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +09:00 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +09:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +10:00 | | | | |CS2100 | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +10:30 | | | | |CS2100 | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +11:00 | | | | |CS2100 | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +11:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +12:00 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +12:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +13:00 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +13:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +14:00 | | |AC5001 | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +14:30 | | |AC5001 | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +15:00 | | |AC5001 | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +15:30 | | |AC5001 | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +16:00 | | |AC5001 | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +16:30 | | |AC5001 | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +17:00 | | |AC5001 | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +17:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +18:00 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +18:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +19:00 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +19:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +20:00 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +20:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +21:00 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +21:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +22:00 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +22:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +23:00 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +23:30 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ +23:59 | | | | | | | | + +---------------+---------------+---------------+---------------+---------------+---------------+---------------+ + +____________________________________________________________ +~~~ + +

 

+ +### Editing an event: `edit` +Edit an event that has been added to the schedule. Use –x to specify the attributes to edit. + +Format: `edit -i INDEX_OF_EVENT –st STARTTIME –sd STARTDATE –et ENDTIME –ed ENDDATE -v VENUE -r x D/W` + +**notice:** + +> when Editing the event, User need to rewrite the complete time information including the parts that they do not what to change +> +> the format is the same as it in add command +> +> Modification of specific module slots (tutorial, lecture, etc) are allowed in the event of public holidays/NUS Well Being day. This ensures that users have full control over their tiemtable and can make easy edits if their professor or teaching assistance decides to change the day/time slot. +> +> Modifications can also be made to move slots (tutorial, lecture, etc) to after semester boundaries. This is normal behaviour as we give users full control over their timetable + +* `sd` and `ed` must be of the format `YYYY/MM/DD` +* `e`, `sd` and `st` are **compulsory** fields +* `ed` and `et` are **optional**, + * if user input **`ed` without `et`**, ed value will be ignored + * if user input **`et` without `ed`**, ed value will be set to the same as sd by default. + +* other fields are **optional**. + +#### Examples of usage +1. Edit the start time of an event: `edit –i 1 -sd 2023/04/01 –st 16:00` + +2. Edit the start date, start time and end time of an event: `edit -i 1 –sd 2023/02/11 –st 08:00 –et 10:00 ` + +**notice:** + +> Similar to add command, the app will also check whether there is any confliction between the new revised time and other events/classes with **full details of time information** if and only if the revised time information also have **starting date & time and ending date & time** +> +> The app will also only check confliction within the current semester. +> +> **User cannot change recurring time and venue using edit command once they have added it.** + +Expected outcome: +1. ~~~ + ____________________________________________________________ + Time of event: event is changed to: + > 2023/04/01 16:00 not recurring + ____________________________________________________________ + ~~~ + +2. ~~~ + ____________________________________________________________ + Time of event: event is changed to: ed 2023/02/11 + > 2023/02/11 08:00 to 2023/02/11 10:00 not recurring + ____________________________________________________________ + ~~~ + +### Saving Data +NusPlanner data are saved to the hard drive automatically after the `bye` command to quit it. There is no need to save manually. +Please note that data will only be saved if application closes as per normal (not crashed or closed with Cntrl + C). +### Editing the data file +Data for NUSPlanner is saved as a `.json` file. The path for the save file is `[JAR file location]/save.json`. Advanced users are welcome to update data directly by editing the data file. + +🚧 **Warning**: If your changes to the data file makes its format invalid, NUSPlanner will discard all data and load an empty data file at the next run. + +### NUSMods Data +NusPlanner runs an offline version of the NUSMods API. The NUSMods data stored in NUSPlanner is correct as of **March 17, 2023**. + +

 

## FAQ -**Q**: How do I transfer my data to another computer? +**Q**: Why is a JAR file required? + +**A**: Java ARchive, also known as JAR, is a container that groups multiple small files to enable efficient execution, which is similar to a ZIP file. + +**Q**: How can I force quit the application? + +**A**: We have intentionally left in Cntrl + C command in this event of emergencies like this. + +**Q**: Why doesn't the application save the semester I am in? + +**A**: We have intentionally made NUSPlanner to work this way so that users will not be restricted in planning the semester they are currently in only. For example, students may want to plan for their future timetable in semester 2, while currently in semester 1. -**A**: {your answer here} +**Q**: Why doesn't the application stop me from adding events to dates that has already passed? + +**A**: NUSPlanner provides users with the flexibility and full control over the timetable and does not stop users from adding events on dates that have passed. + +**Q**: Where can I report bugs I found while using NUSPlanner? + +**A**: Our team of developers are always on the look-out to fix such bugs. +Please add a description of the bug found under our [Issue Tracker](https://github.com/AY2223S2-CS2113-F13-3/tp/issues). + +
+ +[Back to Contents Page](#table-of-contents) ## Command Summary +👉 Words in **CAPITAL LETTERS** are user input + +👉 Each word is separated by only a **single whitespace** + + +| Action | Command | +|----------------------------------------------------|------------------------------------------------------------------------------------------------| +| [Add Event](#adding-an-event-add) | `add –e EVENTNAME –st STARTTIME –sd STARTDATE –et ENDTIME –ed ENDDATE -v VENUE -r x D/W` | +| [Add Module](#adding-a-module-add) | `add –m MODULECODE -n CLASSNUMBER -l LESSONTYPE` | +| [Delete a single event](#deleting-an-event-delete) | `delete –s 1` | +| [Delete all events](#deleting-an-event-delete) | `delete -all` | +| [List all events](#list-an-event-list) | `list` | +| [Edit event](#editing-an-event-edit) | `edit -i INDEX_OF_EVENT –st STARTTIME –sd STARTDATE –et ENDTIME –ed ENDDATE -v VENUE -r x D/W` | -{Give a 'cheat sheet' of commands here} +
-* Add todo `todo n/TODO_NAME d/DEADLINE` +[Back to Contents Page](#table-of-contents) \ No newline at end of file diff --git a/docs/team/Matthew.md b/docs/team/Matthew.md new file mode 100644 index 0000000000..fc7c71148b --- /dev/null +++ b/docs/team/Matthew.md @@ -0,0 +1,48 @@ +# Matthew Liu - Project Portfolio Page + +## Overview +**NUSplanner** is a tool for NUS students to plan events such as modules and project meetings. It is optimized for use through a Command Line Interface (CLI). + +### Summary of Contributions +[Reposense: Code Contribution](https://nus-cs2113-ay2223s2.github.io/tp-dashboard/?search=f13-3&sort=groupTitle&sortWithin=title&timeframe=commit&mergegroup=&groupSelect=groupByRepos&breakdown=true&checkedFileTypes=docs~functional-code~test-code~other&since=2023-02-17&tabOpen=true&tabType=authorship&tabAuthor=matthew-liu-zhenjie&tabRepo=AY2223S2-CS2113-F13-3%2Ftp%5Bmaster%5D&authorshipIsMergeGroup=false&authorshipFileTypes=docs~functional-code~test-code~other&authorshipIsBinaryFileTypeChecked=false&authorshipIsIgnoredFilesChecked=false) + +### Features Implemented: +* **Feature: Storage** + * What it does: Added the ability to store and load information to and from the user's local hard drive. + * Justification: This feature ensures that users are able to keep track of their events as soon as they launch the application. + * Highlights: Implemented an Adapter to store and load custom classes to and from a JSON file using the GSON API. + Also ensured defensiveness of Storage component such that any potentially malicious changes to the save file will not result in + catastrophic failure of the application +* **Resource File Parsing**: + * What it does: Enables users to find and input modules into their planner, even when offline, for planning purposes. This is one of the main features of the application. + * Justification: NUSMODS api might not be able to handle high traffic. As such, a local version of the data on the API should be saved + locally, allowing students to plan their day regardless of NUSMODS traffic. + * Highlights: Data was scraped from the [NUSMODS API](https://api.nusmods.com/v2/) to enable the application to run offline. As the data was not in a + directly-usable format, a custom Adapter was created using the GSON API, converting it into custom-classes usable for the purposes of our application. + The java-compatible module data is then stored in a HashMap for fast retrieval. +* **JUnit Tests**: + * Ensured overall functionality of application with JUnit tests. + * Implemented most JUnit tests to ensure good branch & line coverage for at least the storage component. + * Overall Method coverage: 216/330, Storage Method coverage: 54/58 + * Overall Line Coverage: 1462/2658, Storage Line Coverage: 764/906 +### Contributions to User Guide: +* Added documentation for Storage in the UG. +* Update changes in commands and command summary +* Proofread User Guide + +### Contributions to the Developer's Guide +* Add documentation for the `Storage` component. +* Add documentation for the overall architecture of project, including architecture diagram to provide readers with a bird's eye view of the architecture. +* Add Instructions for manual testing to the DG. +* Add User Stories to the DG. +* Add Non-functional requirements to the DG. +* Proofread Developer's Guide. + +### Contributions to team-based tasks: +* Create GitHub labels for issues as recommended on the CS2113 website. +* Use GitHub Projects to create a task tracker for each milestone. +* Create and assign Issues for each milestone +* Maintain GitHub issue tracker by updating labels for issues. +* Reviewed PRs for all team members. +* Ensure resolution & closure of issues before each release. +* Coordinate `v2.0` release of `.jar` file and source code. diff --git a/docs/team/hrithie.md b/docs/team/hrithie.md new file mode 100644 index 0000000000..266399f7f2 --- /dev/null +++ b/docs/team/hrithie.md @@ -0,0 +1,68 @@ +# Hrithie Menon - Project Portfolio Page + +## Overview +NUSPlanner is a user-friendly desktop application designed for NUS students to efficiently manage their schedule, including personal, academic, and extracurricular activities. This application leverages a Command Line Interface (CLI) on the desktop, providing a fast and efficient way to organize your schedule. + +### Summary of Contributions +[Reposense: Code Contribution](https://nus-cs2113-ay2223s2.github.io/tp-dashboard/?search=f13-3&sort=groupTitle&sortWithin=title&timeframe=commit&mergegroup=&groupSelect=groupByRepos&breakdown=true&checkedFileTypes=docs~functional-code~test-code~other&since=2023-02-17&tabOpen=true&tabType=authorship&tabAuthor=hrithie&tabRepo=AY2223S2-CS2113-F13-3%2Ftp%5Bmaster%5D&authorshipIsMergeGroup=false&authorshipFileTypes=docs~functional-code~test-code~other&authorshipIsBinaryFileTypeChecked=false&authorshipIsIgnoredFilesChecked=false) + +[Pull Requests](https://github.com/AY2223S2-CS2113-F13-3/tp/pulls?q=author%3Ahrithie) +### Features Implemented: +* **New Feature**: Parsing of User Input + * What it does: Enables the application to interpret user commands and determine the corresponding actions to perform + * Justification: This feature is essential to our application as it enables the execution of various actions based on user input + * Highlight: Future addition of new commands is made easy by this implementation + +* **New Feature**: Implement Add Module slots + * What it does: Requests for the semester user is in and only allows user to select module and slots that are available within that particular semester + * Justification: This is a core feature to enable users to add modules from modules displayed on NUSMods that have been extracted by my team member, Matthew + * Highlight: User is able to select specific slots based on the module code, class number and lecture type. This feature supports all possible lesson types as follows: + +| Lesson name | Name on NUSMODS | Lesson type to input into Command line | +|----------------------------|-----------------|----------------------------------------| +| Lecture | LEC | `LEC` | +| Sectional Teaching | SEC | `SEC` | +| Design Lecture | DLEC | `DLEC` | +| Recitation | REC | `REC` | +| Packaged Lecture | PLEC | `PLEC` | +| Seminar-Style Module Class | SEM | `SEM` | +| Tutorial | TUT | `TUT` | +| Tutorial Type 2 | TUT2 | `TUT2` | +| Packaged Tutorial | PTUT | `PTUT` | +| Laboratory | LAB | `LAB` | + +* **New Feature**: Add the user interface for events/modules + * What it does: The selected modules and lessons of users can be viewed in a timetable format + * Justification: The visual display enables users to check for any schedule conflicts and ensure that their planned events and selected modules fit their timetable + * Highlight: It was incredibling challenging to develop the application's logic to create a timetable from the user's planned events and selected modules, which is a significant feature of our application, as it allows users to generate a well-formatted timetable straight from the command line interface + +* **New Feature**: Implement User Interface and Logger + * What it does: Displays all texts that is shown to users, including banner welcome message, instructions, etc. Creates a log file for tracking purposes + * Justification: The text display makes it easier for users to understand the application and interact with it accordingly. The logging is great for users/developers to check and ensure commands are being executed properly that their planned events and selected modules fit their timetable + * Highlight: - + +* **New Feature**: Implement Help command + * What it does: Displays user guide on the command line interface + * Justification: This command makes it easier for users to understand how the application commands work without having to open another tab to refer to the user guide + * Highlight: - + +### Contributions to User Guide: +* Established the initial structure and standardized format for the user guide, which included all the commands and examples for version 1.0 +* Clarified issues that were raised in PE Dry Run +* Made it more user-friendly for readers by adding more screenshots and examples + +### Contributions to the Developer's Guide: +* Added documentation for the `Parser` component, which includes diagrams for better readability +* Created and added user stories to the DG + +### Contributions to team-based tasks: +* Lead and coordinated weekly team meetings, ensuring that they are well-organized and productive +* Requested clarifications from our Teaching Assistant regarding the project requirements +* Contributed to product ideation, brainstorming user stories and key features +* Use Github Projects task tracker to track my to-do list for every milestone +* Assigned issues and updated labels for every milestone +* Performed testing on our applications, proposed ideas on fixes and implemented fixes +* Performed code review and merged Pull Requests for every team member + +### Beyond the team: +* Performed peer testing and bug reporting: [#1](https://github.com/hrithie/ped/issues/1), [#2](https://github.com/hrithie/ped/issues/2), [#3](https://github.com/hrithie/ped/issues/3), [#4](https://github.com/hrithie/ped/issues/4), [#5](https://github.com/hrithie/ped/issues/5), [#6](https://github.com/hrithie/ped/issues/6), [#7](https://github.com/hrithie/ped/issues/7), [#8](https://github.com/hrithie/ped/issues/8), [#9](https://github.com/hrithie/ped/issues/9), [#10](https://github.com/hrithie/ped/issues/10) diff --git a/docs/team/johndoe.md b/docs/team/johndoe.md deleted file mode 100644 index ab75b391b8..0000000000 --- a/docs/team/johndoe.md +++ /dev/null @@ -1,6 +0,0 @@ -# John Doe - Project Portfolio Page - -## Overview - - -### Summary of Contributions diff --git a/docs/team/kyrixn.md b/docs/team/kyrixn.md new file mode 100644 index 0000000000..79068b64e4 --- /dev/null +++ b/docs/team/kyrixn.md @@ -0,0 +1,42 @@ +# Zhang Wenze - Project Portfolio Page + +## Overview +**NUSPlanner** is a user-friendly desktop application designed for NUS students to efficiently handle their personal, school, and external activities. It utilizes a Command Line Interface (CLI) on the desktop, providing a rapid and elegant approach to organizing your schedule. + +### Summary of Contributions +[Reposense: Code Contribution](https://nus-cs2113-ay2223s2.github.io/tp-dashboard/?search=f13-3&sort=groupTitle&sortWithin=title&timeframe=commit&mergegroup=&groupSelect=groupByRepos&breakdown=true&checkedFileTypes=docs~functional-code~test-code~other&since=2023-02-17&tabOpen=true&tabType=authorship&tabAuthor=kyrixn&tabRepo=AY2223S2-CS2113-F13-3%2Ftp[master]&authorshipIsMergeGroup=false&authorshipFileTypes=docs~functional-code~test-code~other&authorshipIsBinaryFileTypeChecked=false&authorshipIsIgnoredFilesChecked=false) + +### Features Implemented: + +* **Class: Schedule** + * attribute: Schedule is the basic class and the super class that we used. The class's attribution contains all kinds of time information that are need for event/modules class, namely startTime, endTime, recurringTime. Moreover, the class also contains flags that indicates whether the current schedule is a recurring event and does it have specific time information (HH:mm) for ending and starting time attributes. + * method/what it does: the methods of this class includes different constructors and related conversion function to convert String in different format to LocalDateTime, which is the class we used to store time information. In this case we are able to create Schedule instance with different format of time information (schedules with complete time details and partial time information). The Methods also includes functions that convert the information of one instance to a printable format + * justification: Event and Modules have similar time information, so it's better to create a super class and make Event/Module inherit from it and in this case, the code is more structured and has a higher level of cohesion. + * highlight: the class accepts instances with various formats of time information (whether has specific date/time information for starting / ending time) and behaves differently according to the format. +* **Class: Event** + * what it does: it is a class inherits from Schedule. It has it's own attribute which is Description. In this class, some methods are overrode to make them fit the need of this class +* **features: maintaining the list of Events/modules in EventList:** + * what it does: EventList contains an ArrayList of all the added Schedule and it helps to maintain the ArrayList based on the commands given by the user and parsed by the Parser. The functions include adding events/modules, deleting events//modules, editing events/modules etc. Moreover, it is able to handle input events with different levels of details of time information and behave accordingly + * justification: The EventList Class serves as an intermediary role and avoids other classes access deep into the functionality of classes (Event, Schedule etc.) inside the ArrayList, thus reduces the coupling of the code base. + * highlight: It accepts events with different levels of details of time information and behave accordingly. +* **features: check conflictions between all Schedules** + * what it does: It will check whether the current event/class will clash with any of the existing schedule and this is done every time user add classes of module/ event and add events. Since this need complete time information so it will only check the confliction between events/modules that will be shown on the timetable. + * justification: It is hard and inappropriate to show multiple event in the same slot on timetable. Moreover, is it reasonable to have a function to remind user of time confliction. + * highlight: can check confliction between all modules and customized events no matter they are recurring or not. moreover, the confliction checking period is constrained to current semester. + + +### Contributions to User Guide: +* revise the command format from V1.0 to V2.0, added example or changed old example of the out put of different commands. +* clarify the issues that are posted during PE dry-run +* write notice for commands to clarify the scope of our app, what need users to check themselves and what behavior will trigger exceptions. + +### Contributions to the Developer's Guide: +* Add documentation for the `EventList` component, which includes diagrams for better readability. +* help to edit `UserUtility` part to makes it match the latest behavior of the code. + +### Contributions to team-based tasks: +* Lead and coordinated weekly team meetings, help to split the work and make the team work more efficiently. +* Contributed to product ideation, help to brainstorme user stories and key features +* Use Github Projects task tracker to track my and the team's progress for each milestone +* Assigned issues for every milestones. +* Review pull requests from other team members. diff --git a/docs/team/xingyu.md b/docs/team/xingyu.md new file mode 100644 index 0000000000..d6204dcd28 --- /dev/null +++ b/docs/team/xingyu.md @@ -0,0 +1,35 @@ +## Overview + +NUSPlanner is a desktop app that allows for an easy and straightforward way for NUS students to manage their schedule ranging from person, school or external related activities. This application makes use of a desktop Command Line Interface (CLI), enabling a quick and sleek method of getting your schedule in check. + +## Contributions + +### Code contributed + +[Link](https://nus-cs2113-ay2223s2.github.io/tp-dashboard/?search=zemdalk&breakdown=true&sort=groupTitle%20dsc&sortWithin=title&since=2023-02-17&timeframe=commit&mergegroup=&groupSelect=groupByRepos&checkedFileTypes=docs~functional-code~test-code~other&tabOpen=true&tabType=authorship&tabAuthor=Zemdalk&tabRepo=AY2223S2-CS2113-F13-3%2Ftp%5Bmaster%5D&authorshipIsMergeGroup=false&authorshipFileTypes=docs~functional-code~test-code&authorshipIsBinaryFileTypeChecked=false&authorshipIsIgnoredFilesChecked=false) to my code on tP Code Dashboard + +### Enhancements implemented + +- **Exception handling**: + - What it does: Enable the application to show error messages when the input is incorrect or illegal. + - Justification: This feature is essential in our application as it is important in making our code robust. + - Highlight: User can see the detailed reason for their wrong input. +- **Refactor edit and add command to support unordered field inputs** + - What it does: Make the user able to input command without considering the order of `-st`(start time), `-sd`(start day) and so on. + - Justification: If the user considers input order too much, it may make them annoyed and the code application is not user friendly. +- **feature: Venue** + - What it does: Allow users to manage the venue of their own courses, so that users can view the location of the event and better manage their tasks. + - Justification: Each event is accompanied with an event, so it is important for users to manage their event location in the application. + - Highlight: Make the user able to manage their event, and the UI is quite clear because NUSPlanner can show their event in another line and aligned. + +## Contributions to User Guide + +- Add new features in add and edit command related to my contribution. + +## Contributions to team-based tasks + +- Attend weekly team meetings, help to split the work and take my own part. +- Contributed to brainstorm user stories and key features. +- Use Github Projects task tracker to track my and the team's progress for each milestone. +- Assigned issues for every milestones. +- Review pull requests from other team members. \ No newline at end of file diff --git a/src/main/java/seedu/duke/Duke.java b/src/main/java/seedu/duke/Duke.java index 5c74e68d59..71a55db32c 100644 --- a/src/main/java/seedu/duke/Duke.java +++ b/src/main/java/seedu/duke/Duke.java @@ -1,21 +1,74 @@ package seedu.duke; -import java.util.Scanner; +import seedu.duke.storage.EventListStorage; +import seedu.duke.storage.NusModuleLoader; +import seedu.duke.storage.JsonEventListStorage; +import seedu.duke.storage.JsonNusModuleLoader; +import seedu.duke.storage.Storage; +import seedu.duke.storage.StorageManager; +import java.util.logging.ConsoleHandler; +import java.util.logging.FileHandler; +import java.util.logging.Level; +import java.util.logging.Logger; +import java.util.logging.SimpleFormatter; public class Duke { /** * Main entry-point for the java.duke.Duke application. */ + public static final Logger LOGGER = Logger.getLogger(Logger.GLOBAL_LOGGER_NAME); + private final EventList eventTracker; + private final Ui ui; + private final Parser parser; + private final EventListStorage eventListStorage; + private final NusModuleLoader nusModuleLoader; + private final Storage storage; + + public Duke (){ + startLogger(); + ui = new Ui(); + eventListStorage = new JsonEventListStorage(); + nusModuleLoader = new JsonNusModuleLoader(); + storage = new StorageManager(eventListStorage, nusModuleLoader); + eventTracker = new EventList(storage.loadEvents()); + parser = new Parser(); + } + + public void run(){ + LOGGER.log(Level.INFO, "NUSPlanner is starting!"); + ui.showWelcome(); + ui.getSemester(); + LOGGER.log(Level.INFO, "User has successfully input semester they are in."); + ui.getUserCommand(eventTracker); + LOGGER.log(Level.INFO, "User input is 'bye', proceeding to save edits to file (if any)."); + LOGGER.log(Level.INFO, "Exiting NUSPlanner."); + storage.saveToFile(eventTracker); //Will only save to file on exit + } + public static void main(String[] args) { - String logo = " ____ _ \n" - + "| _ \\ _ _| | _____ \n" - + "| | | | | | | |/ / _ \\\n" - + "| |_| | |_| | < __/\n" - + "|____/ \\__,_|_|\\_\\___|\n"; - System.out.println("Hello from\n" + logo); - System.out.println("What is your name?"); + Duke nusPlanner = new Duke(); + nusPlanner.run(); + } + + /** + * Starts logger to log information throughout the execution + * of NUSPlanner. The logging information written to "log.txt" + */ + private static void startLogger() { + LOGGER.setUseParentHandlers(false); + LOGGER.setLevel(Level.ALL); + ConsoleHandler consoleH = new ConsoleHandler(); + consoleH.setLevel(Level.SEVERE); + LOGGER.addHandler(consoleH); - Scanner in = new Scanner(System.in); - System.out.println("Hello " + in.nextLine()); + try { + FileHandler fileH = new FileHandler("log.txt"); + fileH.setLevel(Level.FINE); + SimpleFormatter formatter = new SimpleFormatter(); + fileH.setFormatter(formatter); + LOGGER.addHandler(fileH); + } catch (java.io.IOException e) { + LOGGER.log(Level.SEVERE, "Error detected in file logger!", e); + } } } diff --git a/src/main/java/seedu/duke/Event.java b/src/main/java/seedu/duke/Event.java new file mode 100644 index 0000000000..c4cb48c712 --- /dev/null +++ b/src/main/java/seedu/duke/Event.java @@ -0,0 +1,65 @@ +package seedu.duke; + +// import java.time.LocalDate; +import java.time.LocalDateTime; +// import java.util.ArrayList; + +public class Event extends Schedule { + private String description; + + public Event(String eventDescription, LocalDateTime start, LocalDateTime end, boolean hasSt, + boolean hasEd) { + super(start, end, hasSt, hasEd); + this.description = eventDescription; + } + + public Event(String eventDescription, LocalDateTime start, boolean hasSt) { + super(start, hasSt); + this.description = eventDescription; + } + + public Event(String eventDescription, LocalDateTime start, LocalDateTime end, boolean hasSt, + boolean hasEd, String recurTime) { + super(start, end, hasSt, hasEd, recurTime); + this.description = eventDescription; + } + + public Event(String eventDescription, LocalDateTime start, boolean hasSt, String recurTime) { + super(start, hasSt, recurTime); + this.description = eventDescription; + } + + public Event(String eventDescription, LocalDateTime start, LocalDateTime end, String location, + boolean hasSt, boolean hasEd, boolean hasLocation) { + super(start, end, location, hasSt, hasEd, hasLocation); + this.description = eventDescription; + } + + public Event(String eventDescription, LocalDateTime start, String location, boolean hasSt, + boolean hasLocation) { + super(start, location, hasSt, hasLocation); + this.description = eventDescription; + } + + public Event(String eventDescription, LocalDateTime start, LocalDateTime end, String location, + boolean hasSt, boolean hasEd, boolean hasLocation, String recurTime) { + super(start, end, location, hasSt, hasEd, hasLocation, recurTime); + this.description = eventDescription; + } + + public Event(String eventDescription, LocalDateTime start, String location, boolean hasSt, + boolean hasLocation, String recurTime) { + super(start, location, hasSt, hasLocation, recurTime); + this.description = eventDescription; + } + + public String getDescription() { + return description; + } + + public String toString() { + return "[E] " + getDescription() + " (" + super.getTime() + ")" + + (hasLocation() ? ("\n @ " + getLocation()) : ""); + } + +} diff --git a/src/main/java/seedu/duke/EventList.java b/src/main/java/seedu/duke/EventList.java new file mode 100644 index 0000000000..57baadd088 --- /dev/null +++ b/src/main/java/seedu/duke/EventList.java @@ -0,0 +1,445 @@ +package seedu.duke; + +import java.util.ArrayList; + +// import seedu.duke.storage.EventListAdapter; + +import java.time.LocalDate; +import java.time.LocalDateTime; +import java.time.format.DateTimeFormatter; + +import static seedu.duke.Parser.SEMESTER_START_DATES; +import static seedu.duke.Parser.SEMESTER_END_DATES; +import static seedu.duke.UserUtility.getUser; + + +public class EventList { + private static final String DATETIME_INIT = "2000/01/01 01:01"; + private static final String TIMEPLACEHOLDER = " 00:00"; + private static DateTimeFormatter formatterWithTime = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm"); + + // exceptions information + private static final String WRONG_DATE_TIME_FORMAT_E = + "Wrong date/time format! \nPlease use yyyy/MM/dd for date and HH:mm for time."; + private static final String START_TIME_AFTER_END_TIME_E = "Starting time is after ending time!"; + private static final String TIME_CONFLICTION_E = "Events/classes confliction!"; + private static final String EVENT_NOT_EXIST_E = "Event cannot be found!"; + private static final String RECUR_TIME_NOT_POSITIVE_INT_E = + "recurring time should ba a positive integer!"; + private static final String EVENT_CONFLICTION_E = "Event Conflict Detected!"; + + protected ArrayList taskList; + protected int listSize; + + public EventList() { + this.taskList = new ArrayList(); + this.listSize = 0; + } + + public EventList(ArrayList events) { + this.taskList = events; + this.listSize = events.size(); + } + + public int getSize() { + return listSize; + } + + public String getDetails(int index) { + return taskList.get(index).toString(); + } + + public String getDescription(int index) { + return taskList.get(index).getDescription(); + } + + public String getTime(int index) { + return taskList.get(index).getTime(); + } + + public void deleteThisTask(int index) { + taskList.remove(index); + listSize--; + } + + private static LocalDateTime changeToDate(String time, String date) { + String combination = date + " " + time; + return LocalDateTime.parse(combination, formatterWithTime); + } + + private static LocalDateTime changeToDate(String date) { + return LocalDateTime.parse(date + TIMEPLACEHOLDER, formatterWithTime); + } + + /** + * @param time String representing Time to be converted to dateTime format in combinedTime. Format "HH:MM". + * @param day String representing Date to be converted to dateTime format in combinedTime. Format "YYYY/MM/DD". + * @return TimeAndFlag + * @throws NPExceptions if format of time or day is not as specified above + * @see TimeAndFlag + */ + public static TimeAndFlag convertToTimeInfo(String time, String day) throws NPExceptions { + try { + boolean hasTime = true; + LocalDateTime combinedTime = LocalDateTime.parse(DATETIME_INIT, formatterWithTime); + + if (time.equals("")) { + hasTime = false; + combinedTime = changeToDate(day); + } else { + combinedTime = changeToDate(time, day); + } + + TimeAndFlag result = new TimeAndFlag(hasTime, combinedTime); + return result; + } catch (Exception e) { + throw new NPExceptions(WRONG_DATE_TIME_FORMAT_E); + } + } + + private static boolean checkSingleOverlap(Schedule eventA, Schedule eventB) { + boolean conflictCase1 = ((eventA.getStartTime().compareTo(eventB.getStartTime()) >= 0 + && eventA.getStartTime().compareTo(eventB.getEndTime()) < 0) + || (eventA.getEndTime().compareTo(eventB.getStartTime()) > 0 + && eventA.getEndTime().compareTo(eventB.getEndTime()) <= 0)); + + boolean conflictCase2 = eventA.getStartTime().compareTo(eventB.getStartTime()) <= 0 + && eventA.getEndTime().compareTo(eventB.getEndTime()) >= 0; + + return conflictCase1 || conflictCase2; + } + + /** + * Check whether there is overlap between different events. + * + * @param newEvent the new event to be added. + * @param index newEvent will not check overlap with index event in event list. + * @param eventList list of ongoing events. + * @return true if there is no overlap. + */ + public static boolean canAddNewEvent(Event newEvent, int index, ArrayList eventList) { + boolean isOverlap = true; + for (int i = 0; i < eventList.size(); i++) { + if (!(eventList.get(i).hasEndInfo() && eventList.get(i).hasEndTime() + && eventList.get(i).hasStartTime()) || i == index) { + continue; + } + + Event eventA = (eventList.get(i) instanceof Event) ? (Event) eventList.get(i) : null; + Event eventB = newEvent; + + LocalDate semStart = SEMESTER_START_DATES.get(getUser().getSemester()); + LocalDate semEnd = SEMESTER_END_DATES.get(getUser().getSemester()); + LocalDate eventADate = eventA.getStartTime().toLocalDate(); + LocalDate eventBDate = eventB.getStartTime().toLocalDate(); + + long minKa = !eventA.isRecurring() || eventADate.isAfter(semStart) ? 0 + : (semStart.toEpochDay() - eventADate.toEpochDay()) / eventA.getActualInterval(); + long maxKa = !eventA.isRecurring() || eventADate.isAfter(semEnd) ? 0 + : (semEnd.toEpochDay() - eventADate.toEpochDay()) / eventA.getActualInterval(); + long minKb = !eventB.isRecurring() || eventBDate.isAfter(semStart) ? 0 + : (semStart.toEpochDay() - eventBDate.toEpochDay()) / eventB.getActualInterval(); + long maxKb = !eventB.isRecurring() || eventBDate.isAfter(semEnd) ? 0 + : (semEnd.toEpochDay() - eventBDate.toEpochDay()) / eventB.getActualInterval(); + boolean breakFlag = false; + + for (long j = minKa; j <= maxKa; j++) { + for (long k = minKb; k <= maxKb; k++) { + Schedule curA = new Schedule(eventA.getStartTime(), eventA.getEndTime(), true, true); + Schedule curB = new Schedule(eventB.getStartTime(), eventB.getEndTime(), true, true); + + if (maxKa != 0) { + curA = new Schedule(eventA.getStartTime().plusDays(eventA.getActualInterval() * j), + eventA.getEndTime().plusDays(eventA.getActualInterval() * j), true, true); + } + if (maxKb != 0) { + curB = new Schedule(eventB.getStartTime().plusDays(eventB.getActualInterval() * k), + eventB.getEndTime().plusDays(eventB.getActualInterval() * k), true, true); + } + + if ((checkSingleOverlap(curA, curB) || checkSingleOverlap(curB, curA))) { + isOverlap = false; + + Ui.printOverlapInfo(eventA.toString(), curA.getTime()); + breakFlag = true; + break; + } + } + if (breakFlag) { + break; + } + } + } + return isOverlap; + } + + /** + * Add an event. + * + * @param description Event description, describes what the Event is. + * @param startTime Start time of the Event. Format "HH:MM". + * @param startDay Start day of the Event. Format "YYYY/MM/DD". + * @param endTime End time of the Event. Foramt "HH:MM". + * @param endDay End day of the Event. Format "YYYY/MM/DD". + * @throws NPExceptions when start time is after end time or new event has time conflict with events already exist. + */ + public static Event getInEventType(String description, String startTime, String startDay, String endTime, + String endDay) throws NPExceptions { + + TimeAndFlag startInfo = convertToTimeInfo(startTime, startDay); + TimeAndFlag endInfo = convertToTimeInfo(endTime, endDay); + Event newEvent = + new Event(description, startInfo.time, endInfo.time, startInfo.hasInfo, endInfo.hasInfo); + + if (newEvent.getStartTime().isAfter(newEvent.getEndTime())) { + throw new NPExceptions(START_TIME_AFTER_END_TIME_E); + } + + return newEvent; + } + + private boolean checkRecurTime(String recur) { + String[] details = recur.split(" "); + + if (details[0].trim().matches("^[0-9]*$")) { + if (Integer.parseInt(details[0].trim()) <= 0) { + return false; + } + return true; + } + return false; + } + + public void addEvent(String description, String startTime, String startDay, String endTime, String endDay) + throws NPExceptions { + + Event newEvent = getInEventType(description, startTime, startDay, endTime, endDay); + + if (!canAddNewEvent(newEvent, -1, taskList)) { + throw new NPExceptions(TIME_CONFLICTION_E); + } + + taskList.add(newEvent); + listSize++; + assert taskList.size() == listSize : "size of taskList is different from listSize attribute"; + } + + public void addEvent(String description, String startTime, String startDay) throws NPExceptions { + TimeAndFlag startInfo = convertToTimeInfo(startTime, startDay); + + Event newEvent = new Event(description, startInfo.time, startInfo.hasInfo); + taskList.add(newEvent); + listSize++; + assert taskList.size() == listSize : "size of taskList is different from listSize attribute"; + } + + public void addEvent(String description, String startTime, String startDay, String recurTime) + throws NPExceptions { + TimeAndFlag startInfo = convertToTimeInfo(startTime, startDay); + + if (!checkRecurTime(recurTime)) { + throw new NPExceptions(RECUR_TIME_NOT_POSITIVE_INT_E); + } + + Event newEvent = new Event(description, startInfo.time, startInfo.hasInfo, recurTime); + taskList.add(newEvent); + listSize++; + assert taskList.size() == listSize : "size of taskList is different from listSize attribute"; + } + + public void addEvent(Event event, Boolean isCheck) throws NPExceptions { // for storage checks. + if (isCheck) { + if (canAddNewEvent(event, -1, this.getFullList())) { + throw new NPExceptions(EVENT_CONFLICTION_E); + } + } + taskList.add(event); + } + + /** + * Add an Event. + * + * @param description Event description, describes what the event is. + * @param startTime Start time of the Event. Format "HH:MM". + * @param startDay Start day of the Event. Format "YYYY/MM/DD". + * @param endTime End time of the Event. Foramt "HH:MM". + * @param endDay End day of the Event. Format "YYYY/MM/DD". + * @param recurTime Recur time of the Event. + * @throws NPExceptions when start time is after end time or new event has time conflict with events already exist. + */ + public void addEvent(String description, String startTime, String startDay, String endTime, String endDay, + String recurTime) throws NPExceptions { + + TimeAndFlag startInfo = convertToTimeInfo(startTime, startDay); + TimeAndFlag endInfo = convertToTimeInfo(endTime, endDay); + + if (!checkRecurTime(recurTime)) { + throw new NPExceptions("recurring time should be a positive integer!"); + } + + Event newEvent = new Event(description, startInfo.time, endInfo.time, startInfo.hasInfo, + endInfo.hasInfo, recurTime); + + if (newEvent.getStartTime().isAfter(newEvent.getEndTime())) { + throw new NPExceptions(START_TIME_AFTER_END_TIME_E); + } + if (!canAddNewEvent(newEvent, -1, taskList)) { + throw new NPExceptions(TIME_CONFLICTION_E); + } + + taskList.add(newEvent); + listSize++; + assert taskList.size() == listSize : "size of taskList is different from listSize attribute"; + } + + public void addEvent(ArrayList allClasses, ArrayList allVenues) throws NPExceptions { + for (int i = 0; i < allClasses.size(); i++) { + Event curClass = (Event) allClasses.get(i); + if (!canAddNewEvent(curClass, -1, taskList)) { + throw new NPExceptions("class clashes with events/other modules!"); + } + } + for (int i = 0; i < allClasses.size(); i++) { + Event curClass = (Event) allClasses.get(i); + taskList.add(curClass); + reviseLocation(taskList.size() - 1, allVenues.get(i)); + } + listSize = taskList.size(); + assert taskList.size() == listSize : "size of taskList is different from listSize attribute"; + } + + /** + * Change location(vanue) field of an event. + * + * @param index Index of the event to be changed in event list. + * @param location New location. + */ + public void reviseLocation(int index, String location) { + taskList.get(index).changeLocation(location); + } + + public void reviseTimeInfo(int index, String startTime, String startDay, String endTime, String endDay) + throws NPExceptions { + TimeAndFlag startInfo = convertToTimeInfo(startTime, startDay); + TimeAndFlag endInfo = convertToTimeInfo(endTime, endDay); + + Event eventToCheck = new Event(taskList.get(index).getDescription(), startInfo.time, endInfo.time, + startInfo.hasInfo, endInfo.hasInfo); + + if (eventToCheck.getStartTime().isAfter(eventToCheck.getEndTime())) { + throw new NPExceptions(START_TIME_AFTER_END_TIME_E); + } + + if (!canAddNewEvent(eventToCheck, index, taskList)) { + throw new NPExceptions(TIME_CONFLICTION_E); + } + + taskList.get(index).changeTimeInfo(startInfo.time, endInfo.time, startInfo.hasInfo, endInfo.hasInfo); + + } + + /** + * Change time field of an event. + * + * @param index Index of the event to be changed in event list. + * @param startTime New start time of the event. Format "HH:MM". + * @param startDay New start day of the event. Format "YYYY/MM/DD". + * @throws NPExceptions if Event does not exist. + */ + public void reviseTimeInfo(int index, String startTime, String startDay) throws NPExceptions { + TimeAndFlag startInfo = convertToTimeInfo(startTime, startDay); + + taskList.get(index).changeTimeInfo(startInfo.time, startInfo.hasInfo); + } + + /** + * Change time field of an event. + * + * @param description Description of the event to be changed. This method will find the event from the event list + * according to description. + * @param startTime New start time of the event. Format "HH:MM". + * @param startDay New start day of the event. Format "YYYY/MM/DD". + * @param endTime New end time of the event. Format "HH:MM". + * @param endDay New end day of the event. Format "YYYY/MM/DD". + * @throws NPExceptions if Event does not exist. + */ + public void reviseTimeInfo(String description, String startTime, String startDay, String endTime, + String endDay) throws NPExceptions { + int index = searchTaskIndex(description); + if (index == -1) { + throw new NPExceptions(EVENT_NOT_EXIST_E); + } + reviseTimeInfo(index, startTime, startDay, endTime, endDay); + } + + /** + * Change time field of an event. + * + * @param description Description of the event to be changed. This method will find the event from the event list + * according to description. + * @param startTime New start time of the event. Format "HH:MM". + * @param startDay New start day of the event. Format "YYYY/MM/DD". + * @throws NPExceptions if Event does not exist. + */ + public void reviseTimeInfo(String description, String startTime, String startDay) throws NPExceptions { + int index = searchTaskIndex(description); + if (index == -1) { + throw new NPExceptions(EVENT_NOT_EXIST_E); + } + reviseTimeInfo(index, startTime, startDay); + } + + /** + * Get the full event list. + * + * @return Arraylist of the full event list. + */ + public ArrayList getFullList() { + return this.taskList; + } + + /** + * Search an event according to its description in event list. + * + * @param description description of the task to search. + * @return index of the task in event list. Return -1 if it's not found. + */ + public int searchTaskIndex(String description) { + int index = 0; + for (Schedule cur : taskList) { + if (cur.getDescription().trim().equals(description.trim())) { + return index; + } + index++; + } + return -1; + } + + public String getLastTaskDescription() { + return taskList.get(listSize - 1).toString(); + } + + /** + * Delete all tasks in event list. + */ + public void deleteAll() { + if (this.listSize == 0) { + Ui.deleteAllError(); + } else { + this.taskList = new ArrayList(); + this.listSize = 0; + Ui.deleteAllSuccess(); + } + } +} + + +final class TimeAndFlag { + public boolean hasInfo; + public LocalDateTime time; + + public TimeAndFlag(boolean info, LocalDateTime timeInfo) { + this.hasInfo = info; + this.time = timeInfo; + } +} diff --git a/src/main/java/seedu/duke/Lesson.java b/src/main/java/seedu/duke/Lesson.java new file mode 100644 index 0000000000..2b1f54b86e --- /dev/null +++ b/src/main/java/seedu/duke/Lesson.java @@ -0,0 +1,59 @@ +package seedu.duke; + +import java.util.ArrayList; + +public class Lesson { + public String classNumber; + public String startTime; + public String endTime; + public ArrayList weeks; // + days * (7*(1-each integer in weeks)) + public String venue; + public String lessonType; + public String day; + //discarding size. + + + public Lesson(String classNumber, String startTime, String endTime, ArrayList weeks, String venue, + String lessonType, String day) { + this.classNumber = classNumber; + this.startTime = startTime; + this.endTime = endTime; + this.weeks = weeks; + this.venue = venue; + this.lessonType = lessonType; + this.day = day; + } + + public String getStartTime() { + return startTime; + } + + public String getEndTime() { + return endTime; + } + + public ArrayList getWeeks() { + return weeks; + } + + public String getVenue() { + return venue; + } + + public String getLessonType() { + return lessonType; + } + + public String getDay() { + return day; + } + + public String getClassNumber() { + return classNumber; + } + + public String toString(){ + return getLessonType() + " " + getClassNumber() + ": " + getDay() + " " + getStartTime() + " to " + + getEndTime() + " at " + getVenue() + " on weeks " + getWeeks().toString(); + } +} diff --git a/src/main/java/seedu/duke/NPExceptions.java b/src/main/java/seedu/duke/NPExceptions.java new file mode 100644 index 0000000000..b0f82530a5 --- /dev/null +++ b/src/main/java/seedu/duke/NPExceptions.java @@ -0,0 +1,7 @@ +package seedu.duke; + +public class NPExceptions extends Exception{ + public NPExceptions(String s) { + super(s); + } +} diff --git a/src/main/java/seedu/duke/NusModule.java b/src/main/java/seedu/duke/NusModule.java new file mode 100644 index 0000000000..3e6adf7279 --- /dev/null +++ b/src/main/java/seedu/duke/NusModule.java @@ -0,0 +1,54 @@ +package seedu.duke; + +import java.util.HashMap; +import java.util.List; + +public class NusModule { + public String description; + public String title; + public String faculty; + public String moduleCredit; + public String moduleCode; + public HashMap semesterData; + + public NusModule(String description, String title, String faculty, String moduleCredit, + String moduleCode, HashMap semesterData) { + this.description = description; + this.title = title; + this.faculty = faculty; + this.moduleCredit = moduleCredit; + this.moduleCode = moduleCode; + this.semesterData = semesterData; + } + + public String getDescription() { + return description; + } + + public String getTitle() { + return title; + } + + public String getFaculty() { + return faculty; + } + + public String getModuleCredit() { + return moduleCredit; + } + + public String getModuleCode() { + return moduleCode; + } + + public List getLesson(int semesterNumber, String type, String classNum) throws NPExceptions { + SemData semester = semesterData.get(semesterNumber); + if (semester == null) { + throw new NPExceptions("Module is not available in semester " + semesterNumber); + } + return semester.getLesson(type, classNum); + } +} + + + diff --git a/src/main/java/seedu/duke/Parser.java b/src/main/java/seedu/duke/Parser.java new file mode 100644 index 0000000000..60fd8f2435 --- /dev/null +++ b/src/main/java/seedu/duke/Parser.java @@ -0,0 +1,528 @@ +package seedu.duke; + +import seedu.duke.storage.JsonNusModuleLoader; + +import java.time.DayOfWeek; +import java.time.LocalDate; +import java.time.temporal.TemporalAdjusters; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.logging.Level; + +import static seedu.duke.EventList.getInEventType; + +public class Parser { + public static final Map SEMESTER_START_DATES = Map.of(1, LocalDate.of(2022, 8, 8), 2, + LocalDate.of(2023, 1, 9), 3, LocalDate.of(2023, 5, 8), 4, LocalDate.of(2023, 6, 19)); + + public static final Map SEMESTER_END_DATES = Map.of(1, LocalDate.of(2022, 12, 3), 2, + LocalDate.of(2023, 5, 6), 3, LocalDate.of(2023, 6, 17), 4, LocalDate.of(2023, 7, 29)); + + + private static final int OFFSET = 1; + private static final JsonNusModuleLoader converter = new JsonNusModuleLoader(); + + // command types + private static final String ADD_T = "add"; + private static final String DELETE_T = "delete"; + private static final String LIST_T = "list"; + private static final String EDIT_T = "edit"; + private static final String HELP_T = "help"; + + // flags + private static final String EVENT_NAME_F = "e"; + private static final String MODULE_CODE_F = "m"; + private static final String CLASS_NUMBER_F = "n"; + private static final String LESSON_TYPE_F = "l"; + private static final String START_TIME_F = "st"; + private static final String START_DATE_F = "sd"; + private static final String END_TIME_F = "et"; + private static final String END_DATE_F = "ed"; + private static final String VENUE_F = "v"; + private static final String RECURRING_TIME_F = "r"; + private static final String INDEX_OF_EVENT_F = "i"; + + + // exceptions + private static final String NOT_INTEGER_E = "input should be a integer!"; + private static final String DUPLICATE_FLAGS_E = "Cannot have duplicate flags a command!"; + private static final String INVALID_FLAG_E = "Please input a valid flag!"; + private static final String NO_FLAG_E = "Need a flag to specify your action!"; + private static final String TOO_MANY_FLAGS_E = "Too many flags, or negative index entered"; + private static final String NO_EVENT_DESC_AND_START_DAY_E = + "Event description and start day of your event are strictly required!"; + private static final String NO_START_DAY_E = "Empty starting date/time detected! Please add starting date."; + private static final String UNDEFINED_FLAG_E = "Undefined flag!"; + private static final String INCORRECT_CMD_FORMAT_E = + "Event name/index, start time/date or module info is missing!\n" + + "Please use correct command format!"; + private static final String INVALID_EVENT_INDEX_E = "Event index is in valid!"; + private static final String EVENT_INDEX_OUT_OF_BOUND_E = "Event index out of bound!"; + private static final String WEEK_NUMBER_NOT_POSITIVE_E = "too many flags or negative value detectedd!"; + + private final Ui ui; + + public Parser() { + ui = new Ui(); + } + + /** + * Parse user input and change event list according to input command. + * @param userInput String the user inputs. + * @param eventList EventList containing all ongoing events. + */ + public static void parseCommand(String userInput, EventList eventList) { + try { + userInput = userInput.trim(); + String command = ""; + String remainder = ""; + if (!userInput.contains(" ")) { + command = userInput; + } else { + command = userInput.substring(0, userInput.indexOf(" ")); + remainder = userInput.substring(userInput.indexOf(" ") + 1); + } + + switch (command.toLowerCase()) { + case ADD_T: + parseAddCommand(remainder, eventList); + break; + case DELETE_T: + parseDeleteCommand(remainder, eventList); + break; + case LIST_T: + parseListCommand(remainder, eventList); + break; + case EDIT_T: + parseEditCommand(remainder, eventList); + break; + case HELP_T: + Ui.helpCommand(); + break; + default: + Ui.addErrorMsg(); + break; + } + } catch (Exception e) { + Ui.printErrorMsg(e.getMessage()); + } + } + + private static boolean checkIsInt(String recur) { + String[] details = recur.split(" "); + + if (details[0].trim().matches("^[0-9]*$")) { + if (Integer.parseInt(details[0].trim()) <= 0) { + return false; + } + return true; + } + return false; + } + + private static void parseListCommand(String remainder, EventList eventList) throws NPExceptions { + String[] details = remainder.split("-"); + + if (details.length <= 1) { + Ui.listTask(eventList.getFullList()); + return; + } + // Exception: week number is not a positive value + if(details.length > 2) { + throw new NPExceptions(WEEK_NUMBER_NOT_POSITIVE_E); + } + + String information = details[1].substring(2).trim(); + + if(!checkIsInt(information)) { + throw new NPExceptions(NOT_INTEGER_E); + } + + int weekNumber = Integer.parseInt(information); + Ui.printScheduleTable(eventList.getFullList(), weekNumber); + } + + private static void parseDeleteCommand(String remainder, EventList eventList) throws NPExceptions { + String[] details = remainder.split("-"); + + if (details.length <= 1) { + throw new NPExceptions(NO_FLAG_E); + } + if (details.length > 2){ + throw new NPExceptions(TOO_MANY_FLAGS_E); + } + + String information = details[1].substring(0, 1).trim(); + + if (information.equals("s")) { + if (details[1].length() < 2){ + throw new NPExceptions("No index entered!"); + } + + int index = -1; + try { + index = Integer.parseInt(details[1].substring(1).trim()) - OFFSET; + } catch(NumberFormatException e) { + throw new NPExceptions("invalid event index!"); + } + if (eventList.getSize() < index + 1){ + throw new NPExceptions("Index is larger than current Event List size!"); + } else if (index == -1){ + throw new NPExceptions("invalid event index!"); + } + + String deletedTask = eventList.getDetails(index); + eventList.deleteThisTask(index); + // TODO: Show successful add on UI. (For all cases) + Duke.LOGGER.log(Level.INFO, "User deleted event in event list."); + Ui.deleteSuccessMsg(deletedTask); + } else if (details[1].length()<3){ + throw new NPExceptions(INVALID_FLAG_E); + }else if (details[1].substring(0, 3).trim().equals("all")) { + eventList.deleteAll(); + Duke.LOGGER.log(Level.INFO, "User deleted all events in event list."); + } else { + throw new NPExceptions(INVALID_FLAG_E); + } + + } + + private static boolean extractFields(boolean[] duplicity, String[] information, String[] details, + boolean isModuleFlag) throws NPExceptions { + + for (int i = 1; i < details.length; i++) { + if(i == 1){ + if (details[i].length()<2){ + throw new NPExceptions(INCORRECT_CMD_FORMAT_E); + } + } + String field = details[i].substring(0, 2).trim(); + String change = details[i].substring(2).trim(); + switch (field) { + case MODULE_CODE_F: + isModuleFlag = true; + if (!duplicity[0]) { + information[0] = change; + duplicity[0] = true; + } else { + throw new NPExceptions(DUPLICATE_FLAGS_E); + } + break; + case EVENT_NAME_F: + if (!duplicity[0]) { + information[0] = change; + duplicity[0] = true; + } else { + throw new NPExceptions(DUPLICATE_FLAGS_E); + } + break; + case CLASS_NUMBER_F: + case START_TIME_F: + if (!duplicity[1]) { + information[1] = change; + duplicity[1] = true; + } else { + throw new NPExceptions(DUPLICATE_FLAGS_E); + } + break; + case START_DATE_F: + case LESSON_TYPE_F: + if (!duplicity[2]) { + information[2] = change; + duplicity[2] = true; + } else { + throw new NPExceptions(DUPLICATE_FLAGS_E); + } + break; + case END_TIME_F: + if (!duplicity[3]) { + information[3] = change; + duplicity[3] = true; + } else { + throw new NPExceptions(DUPLICATE_FLAGS_E); + } + break; + case END_DATE_F: + if (!duplicity[4]) { + information[4] = change; + duplicity[4] = true; + } else { + throw new NPExceptions(DUPLICATE_FLAGS_E); + } + break; + case RECURRING_TIME_F: + if (!duplicity[5]) { + information[5] = change; + duplicity[5] = true; + } else { + throw new NPExceptions(DUPLICATE_FLAGS_E); + } + break; + case VENUE_F: // venue/location of the event + if (!duplicity[6]) { + information[6] = change; + duplicity[6] = true; + } else { + throw new NPExceptions(DUPLICATE_FLAGS_E); + } + break; + default: + break; + } + } + + return isModuleFlag; + } + + private static void parseAddCommand(String remainder, EventList eventList) throws NPExceptions { + String[] details = remainder.split("-"); + + boolean isModuleFlag = false; + + if (details.length <= 1) { + throw new NPExceptions(NO_EVENT_DESC_AND_START_DAY_E); + } + boolean[] duplicity = new boolean[7]; // to detect duplicate flags in command + Arrays.fill(duplicity, false); + String[] information = new String[7]; + Arrays.fill(information, ""); + + isModuleFlag = extractFields(duplicity, information, details, isModuleFlag); + + addFormatChecker(information); + + // if body executed when user adds a module. Code inside "else" is same as before. + if (isModuleFlag) { + // count to store the number of classes added into eventList. + int count = 0; + + // fetching information + String moduleCode = information[0].toUpperCase(); + String classNumber = information[1]; + String lectureType = information[2]; + + // loading modules. Need to update when singleton design is utilized. + HashMap nusmods = converter.loadModules(); + Duke.LOGGER.log(Level.INFO, "loadModules() called"); + // Fetch NusModule from module code + NusModule nusModule = nusmods.get(moduleCode); + if (nusModule == null) { + Duke.LOGGER.log(Level.INFO, "User selected module that does not exist."); + throw new NPExceptions("Module " + moduleCode + " does not exist!"); + } + + // Fetch lessons from module + List lessons = + nusModule.getLesson(UserUtility.getUser().getSemester(), lectureType, classNumber); + if (lessons == null || lessons.isEmpty()) { + Duke.LOGGER.log(Level.INFO, "User selected module that is unavailable for semester."); + Ui.printErrorMsg("Selected module is not available for semester " + + UserUtility.getUser().getSemester()); + return; + } + + // Create event for each day of module + try { + ArrayList classes = new ArrayList<>(); + ArrayList venues = new ArrayList<>(); + for (Lesson lesson : lessons) { + String venue = lesson.getVenue(); + for (Integer week : lesson.getWeeks()) { + + // Method to get date on the lesson's day in a given week number. + if (week >= 7) { + week++; + } + + String startDate = + findDateOfWeek(UserUtility.getUser().getSemester(), week, lesson.getDay()); + + // Converting time to HH:mm format. + StringBuilder sb = new StringBuilder(lesson.getStartTime()); + String startTime = sb.insert(2, ':').toString(); + sb = new StringBuilder(lesson.getEndTime()); + String endTime = sb.insert(2, ':').toString(); + + Event curClass = getInEventType(nusModule.getModuleCode(), startTime, startDate, + endTime, startDate); + classes.add(curClass); + venues.add(venue); + + count++; + } + } + eventList.addEvent(classes, venues); + + Duke.LOGGER.log(Level.INFO, "User added module to event list."); + Ui.addSuccessMsg("Added " + count + " classes of Module: " + moduleCode); + } catch (NPExceptions e) { + System.out.println(e.getMessage()); + } + + } else { + String eventName = information[0]; + String startTime = information[1]; + String startDate = information[2]; + + if (!information[3].equals("")) { + + String endTime = information[3]; + String endDate = information[4].equals("") ? startDate : information[4]; + if (information[5].equals("")) { + eventList.addEvent(eventName, startTime, startDate, endTime, endDate); + } else { + eventList.addEvent(eventName, startTime, startDate, endTime, endDate, information[5]); + } + + } else { + if (!information[4].equals("")) { + Ui.printEDOmitted(); + } + if (information[5].equals("")) { + eventList.addEvent(eventName, startTime, startDate); + } else { + eventList.addEvent(eventName, startTime, startDate, information[5]); + } + } + + int eventNum = eventList.getSize() - 1; + if (duplicity[6] == true) { + eventList.reviseLocation(eventNum, information[6]); + } + Ui.addSuccessMsg(eventList.getLastTaskDescription()); + } + } + + private static String findDateOfWeek(int semester, Integer weekNumber, String dayOfWeek) { + // Specify the start date of the semester + LocalDate semesterStartDate = SEMESTER_START_DATES.get(semester); + + // Calculate the date for the specified day of the week in the specified week + LocalDate weekStartDate = semesterStartDate.plusWeeks(weekNumber - 1); + LocalDate desiredDate = + weekStartDate.with(TemporalAdjusters.nextOrSame(DayOfWeek.valueOf(dayOfWeek.toUpperCase()))); + + // Output the result + return desiredDate.toString().replace('-', '/'); + } + + private static void parseEditCommand(String remainder, EventList eventList) throws NPExceptions { + String[] details = remainder.split("-"); + String[] information = new String[6]; + if (details[1].length() < 2){ + throw new NPExceptions(INCORRECT_CMD_FORMAT_E); + } + if (!(details[1].substring(0, 2).trim().equalsIgnoreCase(INDEX_OF_EVENT_F) + || details[1].substring(0, 2).trim().equalsIgnoreCase(EVENT_NAME_F))) { + throw new NPExceptions(UNDEFINED_FLAG_E); + } + + Arrays.fill(information, ""); + for (int i = 1; i < details.length; i++) { + String field = details[i].substring(0, 2).trim(); + String change = details[i].substring(2).trim(); + switch (field) { + case INDEX_OF_EVENT_F: + information[0] = change; + break; + case START_TIME_F: + information[1] = change; + break; + case START_DATE_F: + information[2] = change; + break; + case END_TIME_F: + information[3] = change; + break; + case END_DATE_F: + information[4] = change; + break; + case VENUE_F: + information[5] = change; + break; + default: + break; + } + } + + addFormatChecker(information); + + if (information[2].equals("") || information[1].equals("")) { // Starting date field MUST NOT be empty. + throw new NPExceptions(NO_START_DAY_E); + } + + if (information[0].equals("")) { + information[0] = details[1].substring(2).trim(); + reviseTimeInfoUsingName(information, eventList); + } else { + reviseTimeInfoUsingIndex(information, eventList); + } + } + + private static void addFormatChecker(String[] information) throws NPExceptions { + boolean isValidFormat = !information[0].equalsIgnoreCase("") && !information[2].equalsIgnoreCase("") + && !information[1].equalsIgnoreCase(""); + + if (!isValidFormat) { + throw new NPExceptions(INCORRECT_CMD_FORMAT_E); + } + } + + private static void reviseTimeInfoUsingIndex(String[] information, EventList eventList) + throws NPExceptions { + int eventIndex = -1; + try { + eventIndex = Integer.parseInt(information[0]); + eventIndex--; + } catch (NumberFormatException e) { + throw new NPExceptions(INVALID_EVENT_INDEX_E); + } + + if (eventIndex < 0 || eventIndex >= eventList.getSize()) { + throw new NPExceptions(EVENT_INDEX_OUT_OF_BOUND_E); + } + + if (!information[3].equals("")) { + if (!information[4].equals("")) { + eventList.reviseTimeInfo(eventIndex, information[1], information[2], information[3], + information[4]); + } else { + eventList.reviseTimeInfo(eventIndex, information[1], information[2], information[3], + information[2]); + } + } else { + eventList.reviseTimeInfo(eventIndex, information[1], information[2]); + } + + // revise location info + if (!information[5].equals("")) { + eventList.reviseLocation(eventIndex, information[5]); + } + + Duke.LOGGER.log(Level.INFO, "User edited time of event."); + Ui.editSuccessMsg(eventList.getDescription(eventIndex), eventList.getTime(eventIndex)); + } + + private static void reviseTimeInfoUsingName(String[] information, EventList eventList) + throws NPExceptions { + if (!information[4].equals("")) { + eventList.reviseTimeInfo(information[0], information[1], information[2], information[3], + information[4]); + + } else { + eventList.reviseTimeInfo(information[0], information[1], information[2]); + } + + int eventIndex = eventList.searchTaskIndex(information[0]); + + // revise location info + if (!information[5].equals("")) { + eventList.reviseLocation(eventIndex, information[5]); + } + Duke.LOGGER.log(Level.INFO, "User edited time of event."); + Ui.editSuccessMsg(eventList.getDescription(eventIndex), eventList.getTime(eventIndex)); + } +} diff --git a/src/main/java/seedu/duke/Schedule.java b/src/main/java/seedu/duke/Schedule.java new file mode 100644 index 0000000000..0c525cf003 --- /dev/null +++ b/src/main/java/seedu/duke/Schedule.java @@ -0,0 +1,304 @@ +package seedu.duke; + +import java.time.LocalDateTime; +import java.time.format.DateTimeFormatter; +import java.util.ArrayList; + +public class Schedule { + private static DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm"); + + private static final String RECUR_DAILY = "D"; + private static final String RECUR_WEEKLY = "W"; + private static final String RECUR_MONTHLY = "M"; + + private LocalDateTime startTime; + private LocalDateTime endTime; + private boolean hasEndInfo; + private boolean hasStartTime; + private boolean hasEndTime; + + private boolean isRecurring; + // format: x D for x day, or x W for x weeks and x M for x month. + private String timeInterval; + + private String location; + private boolean hasLocation; + + public Schedule(LocalDateTime start, boolean hasSt) { + this( + start, + "", + "", + hasSt, + false, + false + ); + } + + public Schedule(LocalDateTime start, boolean hasSt, String recurringTime) { + this( + start, + "", + recurringTime, + hasSt, + false, + true + ); + } + + public Schedule(LocalDateTime start, LocalDateTime end, boolean hasSt, boolean hasEd) { + this( + start, + end, + "", + "", + hasSt, + hasEd, + false, + false + ); + } + + public Schedule(LocalDateTime start, LocalDateTime end, boolean hasSt, boolean hasEd, + String recurringTime) { + this( + start, + end, + "", + recurringTime, + hasSt, + hasEd, + false, + true + ); + } + + public Schedule(LocalDateTime start, String location, boolean hasSt, boolean hasLocation) { + this( + start, + location, + "", + hasSt, + hasLocation, + false + ); + } + + public Schedule(LocalDateTime start, LocalDateTime end, String location, boolean hasSt, boolean hasEd, + boolean hasLocation) { + this( + start, + end, + location, + "", + hasSt, + hasEd, + hasLocation, + false + ); + } + + public Schedule(LocalDateTime start, String location, boolean hasSt, boolean hasLocation, + String recurringTime) { + this( + start, + location, + recurringTime, + hasSt, + hasLocation, + true + ); + } + + public Schedule(LocalDateTime start, LocalDateTime end, String location, boolean hasSt, boolean hasEd, + boolean hasLocation, String recurringTime) { + this( + start, + end, + location, + recurringTime, + hasSt, + hasEd, + hasLocation, + true + ); + } + + public Schedule(LocalDateTime start, LocalDateTime end, String location, String recurringTime, boolean hasSt, + boolean hasEd, boolean hasLocation, boolean isRecurring) { + this.startTime = start; + this.endTime = end; + this.hasEndInfo = true; + this.hasStartTime = hasSt; + this.hasEndTime = hasEd; + this.isRecurring = isRecurring; + this.timeInterval = recurringTime; + this.hasLocation = hasLocation; + this.location = location; + } + + public Schedule(LocalDateTime start, String location, String recurringTime, boolean hasSt, + boolean hasLocation, boolean isRecurring) { + this.startTime = start; + this.hasEndInfo = false; + this.hasStartTime = hasSt; + this.hasEndTime = false; + this.isRecurring = isRecurring; + this.timeInterval = recurringTime; + this.hasLocation = hasLocation; + this.location = location; + } + + private String getOutputFormat(LocalDateTime timeInfo, boolean hasTimeDetail) { + if (!hasTimeDetail) { + String timeInString = formatter.format(timeInfo).split(" ")[0]; + return timeInString; + } + return formatter.format(timeInfo); + } + + public boolean isRecurring() { + return isRecurring; + } + + /** + * Get a String describing time information. + * @return String containing time information, [start time] to [end time] [recur and time interval] + */ + public String getTime() { + String recur = " not recurring"; + if (isRecurring) { + String[] details = timeInterval.split(" "); + String interval = ""; + switch (details[1].trim()) { + case RECUR_DAILY: + interval = "Day(s)"; + break; + case RECUR_WEEKLY: + interval = "Week(s)"; + break; + case RECUR_MONTHLY: + interval = "Month(s)"; + break; + default: + break; + } + recur = " | recurring, time interval: " + details[0] + " " + interval; + } + + if (hasEndInfo) { + return getOutputFormat(startTime, hasStartTime) + " to " + getOutputFormat(endTime, hasEndTime) + + recur; + } else { + return getOutputFormat(startTime, hasStartTime) + recur; + } + } + + public void changeTimeInfo(LocalDateTime start, LocalDateTime end, boolean hasSt, boolean hasEd) { + this.startTime = start; + this.endTime = end; + this.hasEndInfo = true; + this.hasStartTime = hasSt; + this.hasEndTime = hasEd; + } + + public void changeTimeInfo(LocalDateTime start, boolean hasSt) { + this.startTime = start; + this.hasEndTime = false; + this.hasStartTime = hasSt; + this.hasEndInfo = false; + } + + /** + * Calculate time interval in days. + * @return time interval in days. + */ + public int getActualInterval() { + String[] details = this.timeInterval.split(" "); + + int actualDays = 0; + switch (details[1].trim()) { + case RECUR_DAILY: + actualDays = Integer.parseInt(details[0].trim()); + break; + case RECUR_WEEKLY: + actualDays = Integer.parseInt(details[0].trim()) * 7; + break; + default: + break; + } + return actualDays; + } + + /** + * Add recurring events to event list. + */ + public ArrayList getNextNTimes(int n) { + ArrayList list = new ArrayList<>(); + int actualDays = getActualInterval(); + + LocalDateTime stTime = startTime; + LocalDateTime edTime = endTime; + + for (int i = 0; i < n; i++) { + stTime = stTime.plusDays(actualDays); + edTime = edTime.plusDays(actualDays); + + list.add(new Schedule(stTime, edTime, true, true, timeInterval)); + } + + return list; + } + + // need exception + public void reviseTimeinterval(String recurringTime) { + this.timeInterval = recurringTime; + } + + public String getTimeInterval() { + if (isRecurring) { + return timeInterval; + } else { + return "Not a recurring event!"; + } + } + + public void changeLocation(String location) { + if (!location.equals("")) { + hasLocation = true; + } + this.location = location; + } + + public boolean hasEndTime() { + return hasEndTime; + } + + public boolean hasStartTime() { + return hasStartTime; + } + + public boolean hasEndInfo() { + return hasEndInfo; + } + + public boolean hasLocation() { + return hasLocation; + } + + public LocalDateTime getStartTime() { + return startTime; + } + + public LocalDateTime getEndTime() { + return endTime; + } + + public String getLocation() { + return location; + } + + public String getDescription() { + return ""; + } +} diff --git a/src/main/java/seedu/duke/SemData.java b/src/main/java/seedu/duke/SemData.java new file mode 100644 index 0000000000..4484f26731 --- /dev/null +++ b/src/main/java/seedu/duke/SemData.java @@ -0,0 +1,46 @@ +package seedu.duke; + +import java.util.List; +import java.util.stream.Collectors; + +public class SemData { + public int semester; + public List timetable; + + public boolean hasExam; + public String examDate; + public final int examDuration; + + + public SemData(int semester, List timetable, String examDate, int examDuration) { + this.semester = semester; + this.timetable = timetable; + this.examDate = examDate; + this.examDuration = examDuration; + this.hasExam = true; + } + + public SemData(int semester, List timetable, boolean hasExam){ + this.semester = semester; + this.timetable = timetable; + this.hasExam = hasExam; + this.examDate = null; + this.examDuration = 0; + } + + /** + * Returns a list of lesson objects corresponding to the relevant fields entered. + * @param type String indicating type of lesson. + * @param classNum String indicating the classNumber + * @return List of seedu.duke.Lesson objects (can be multiple, ie CG2111A LAB[XX], CG2023 LEC[XX]) + */ + public List getLesson(String type, String classNum){ + return timetable.stream().filter(lesson -> + (lesson.lessonType.equalsIgnoreCase(type)) && (lesson.classNumber.equals(classNum))) + .collect(Collectors.toList()); + } + + public int getSemester() { + return semester; + } +} diff --git a/src/main/java/seedu/duke/Ui.java b/src/main/java/seedu/duke/Ui.java new file mode 100644 index 0000000000..b287f4e35e --- /dev/null +++ b/src/main/java/seedu/duke/Ui.java @@ -0,0 +1,363 @@ +package seedu.duke; + + +import java.time.DayOfWeek; +import java.time.LocalDate; +import java.time.LocalDateTime; +import java.time.LocalTime; +import java.time.format.DateTimeFormatter; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Scanner; +import java.util.logging.Level; +import java.util.stream.Collectors; + +import static seedu.duke.Parser.SEMESTER_START_DATES; +import static seedu.duke.UserUtility.drawEventThisWeek; +import static seedu.duke.UserUtility.eventInThisWeek; +import static seedu.duke.UserUtility.getUser; + +public class Ui { + private static final List PERMITTED_SEMESTER_VALUES = Arrays.asList("1", "2", "3", "4"); + + /** + * Prints a line of dashes for better readability + */ + public static void printDash() { + System.out.println("____________________________________________________________"); + } + + /** + * Obtains user input and interprets what needs to be performed by certain keywords. + * @param eventList List of events that ui interacts with + */ + public static void getUserCommand(EventList eventList) { + Scanner in = new Scanner(System.in); + String cmd; + cmd = in.nextLine(); + assert cmd != null; + + while (!(cmd.equals("bye"))) { + Parser.parseCommand(cmd, eventList); + cmd = in.nextLine(); + } + printExit(); + in.close(); + } + + /** + * Prints a welcome message for users when application is launched + */ + public static void showWelcome() { + String LOGO = ("888b 88 88 88 ad88888ba 88888888ba 88\n" + + "8888b 88 88 88 d8\" \"8b 88 \"8b 88\n" + + "88 `8b 88 88 88 Y8, 88 ,8P 88\n" + + "88 `8b 88 88 88 `Y8aaaaa, 88aaaaaa8P' 88 ," + + "adPPYYba, 8b,dPPYba, 8b,dPPYba, ,adPPYba, 8b,dPPYba, \n" + + "88 `8b 88 88 88 `\"\"\"\"\"8b, 88\"\"\"\"\"\"' " + + "88 \"\" `Y8 88P' `\"8a 88P' `\"8a a8P_____88 88P' \"Y8 \n" + + "88 `8b 88 88 88 `8b 88 88 ,adPPPPP" + + "88 88 88 88 88 8PP\"\"\"\"\"\"\" 88 \n" + + "88 `8888 Y8a. .a8P Y8a a8P 88 88 88," + + " ,88 88 88 88 88 \"8b, ,aa 88 \n" + + "88 `888 `\"Y8888Y\"' \"Y88888P\" 88 88 " + + " `\"8bbdP\"Y8 88 88 88 88 `\"Ybbd8\"' 88 \n" + "\n"); + System.out.println(LOGO); + printDash(); + } + + /** + * Prints user guide on command line when user + * requests for help + */ + public static void helpCommand() { + printDash(); + System.out.println("Please view our user guide at this link for a more" + + "in depth version: https://ay2223s2-cs2113-f13-3.github.io/tp/UserGuide.html"); + System.out.println("Continue reading for quick help:"); + printDash(); + System.out.println("Add an event:\n" + + "add -e EVENTNAME -st STARTTIME -sd STARTDATE -et ENDTIME -ed ENDDATE -v VENUE" + + "-r RECURRING TIME\n" + + "> sd and ed must be of the format YYYY/MM/DD\n" + + "> e, sd and st are compulsory fields\n" + + "> ed and et are optional, but they must be written together if you use them\n" + + "> v is optional\n" + + "> r is optional, the format is x D/ x W, which means the event" + + "will happen in every x day/x week.\n\n" + + "EXAMPLE -> add -e Career Fair -st 14:00 -sd 2023/02/10 -et 16:00 -ed 2023/02/11"); + printDash(); + System.out.println("Add a module:\n" + + "add -m MODULECODE -n CLASSNUMBER -l LESSONTYPE\n" + + "> For the lesson number and lesson type, follow the format as" + + "displayed on NUSMods.\n\n" + + "EXAMPLE -> add -m CS2100 -n 02 -l LAB"); + printDash(); + System.out.println("Delete a single event:\n" + + "delete -s INDEX_OF_EVENT\n\n" + + "EXAMPLE -> delete -s 1\n\n" + + "Delete all events:\n" + + "delete -all"); + printDash(); + System.out.println("List all events:\n" + + "list\n\n" + + "List timetable of specific week:\n" + + "list -w WEEKNUM\n\n" + + "EXAMPLE -> list -w 7"); + printDash(); + System.out.println("Edit an event:\n" + + "edit -i INDEX_OF_EVENT -st STARTTIME -sd STARTDATE -et ENDTIME" + + "-ed ENDDATE -v VENUE -r x D/W\n" + + "> sd and ed must be of the format YYYY/MM/DD\n" + + "> e, sd and st are compulsory fields\n" + + "> ed and et are optional, but they must be written together" + + "if you use them\n" + + "> other fields are optional\n\n" + + "EXAMPLE -> edit -i 1 -sd 2023/04/01 -st 16:00"); + printDash(); + System.out.println("WARNING! Please do not copy/paste commands.\n" + + "Type them out to ensure there are no formatting issues."); + printDash(); + } + + /** + * Prints success message for users when event is added + * @param taskDetail String containing information that was added to eventList + */ + public static void addSuccessMsg(String taskDetail) { + printDash(); + System.out.println("Event successfully added: " + System.lineSeparator()); + System.out.println(" > " + taskDetail); + printDash(); + } + + /** + * Prints success message for users when event is edited + */ + public static void addSuccessEditMsg() { + printDash(); + System.out.println("Event successfully edited!"); + printDash(); + } + + /** + * Prints error message for users when there is unrecognised command Prints error message for users when there is + * unrecognised command + */ + public static void addErrorMsg() { + printDash(); + System.out.println("Sorry, I don't understand you!"); + printDash(); + } + + /** + * Prints success message for users when event is deleted + */ + public static void deleteSuccessMsg(String taskDetail) { + printDash(); + System.out.println("This event is deleted: " + System.lineSeparator()); + System.out.println(" > " + taskDetail); + printDash(); + } + + /** + * Prints list of events + * @param eventList Array List containing events to be printed to user + */ + public static void listTask(ArrayList eventList) { + printDash(); + if (eventList.size() == 0) { + System.out.println("There are no events!"); + printDash(); + return; + } + for (int i = 0; i < eventList.size(); i++) { + System.out.println(" > " + Integer.toString(i + 1) + "." + eventList.get(i).toString()); + } + printDash(); + } + + /** + * Prints an exit message when user intends to exit Duke + */ + public static void printExit() { + printDash(); + System.out.println("Bye, see ya soon!"); + printDash(); + } + + /** + * Prints an error message when user enters a wrong command + */ + public static void printErrorMsg(String errorMessage) { + printDash(); + System.out.println(errorMessage); + printDash(); + } + + /** + * Prints a success message when user edits time of event + */ + public static void editSuccessMsg(String description, String time) { + printDash(); + System.out.println("Time of event: " + description + " is changed to: "); + System.out.println(" > " + time); + printDash(); + } + + /** + * Prints a success message when all events are deleted + */ + public static void deleteAllSuccess() { + printDash(); + System.out.println(" > all events are deleted!"); + printDash(); + } + + /** + * Prints an error message if there are no + * events to be deleted + */ + public static void deleteAllError() { + printDash(); + System.out.println("There are no events to delete!"); + printDash(); + } + + /** + * Prints a success message when all events are deleted + */ + public static void printEDOmitted() { + printDash(); + System.out.println("(since no specific ending time information is given, ending date is omitted)"); + } + + /** + * Prints timetable in a NUSMods format + * Inspiration: www.nusmods.com + */ + public static void printScheduleTable(List events, int semesterWeek) { + System.out.println("Showing schedule for semester " + getUser().getSemester() + + " and week " + semesterWeek); + + Ui.listTask((ArrayList) events.stream().filter(e -> e.getEndTime() == null) + .collect(Collectors.toList())); + + events = events.stream().filter(e -> e.getEndTime() != null).collect(Collectors.toList()); + + // define the starting and ending times for the table + LocalTime start = LocalTime.of(8, 0); + LocalTime end = LocalTime.of(23, 59); + + // define the semester start date and the current week number + LocalDate semesterStartDate = SEMESTER_START_DATES.get(getUser().getSemester()); + + int currentWeek = semesterWeek; + + if (currentWeek >= 7) { + currentWeek++; + } + + // get the start and end dates for the current week + LocalDate weekStartDate = semesterStartDate.plusWeeks(currentWeek - 1); + LocalDate weekEndDate = weekStartDate.plusDays(6); + + // print the table header + System.out.print(String.format("%-10s|", "TIME")); + for (DayOfWeek day : DayOfWeek.values()) { + System.out.print(String.format("%-15s|", day)); + } + System.out.println(); + System.out.print(String.format("%-10s+", "----------")); + for (int i = 0; i < DayOfWeek.values().length; i++) { + System.out.print(String.format("%-15s+", "---------------")); + } + System.out.println(); + + ArrayList eventToShow = new ArrayList<>(); + + for (Schedule event : events) { + if (event.isRecurring() && (event instanceof Event)) { + Event now = (Event) event; + ArrayList recurEventInWeek = eventInThisWeek(now, weekStartDate, weekEndDate); + eventToShow.addAll(recurEventInWeek); + } + eventToShow.add(event); + } + + // loop through the starting times and print the table rows + LocalDateTime time = LocalDateTime.of(weekStartDate, start); + int count = 0; + while (count++ <= 32) { + if (time.toLocalTime().equals(LocalTime.of(0, 0))) { + System.out.print(String.format("%-10s|", end.format(DateTimeFormatter.ofPattern("HH:mm")))); + time = time.minusMinutes(1).plusDays(1); + } else { + System.out.print(String.format("%-10s|", time.format(DateTimeFormatter.ofPattern("HH:mm")))); + } + + drawEventThisWeek(eventToShow, time, weekStartDate, weekEndDate); + + System.out.println(); + System.out.print(String.format("%-10s+", "")); + for (int i = 0; i < DayOfWeek.values().length; i++) { + System.out.print(String.format("%-15s+", "---------------")); + } + System.out.println(); + time = LocalDateTime.of(weekStartDate, start.plusMinutes(count * 30)); + } + System.out.println(); + Ui.printDash(); + } + + /** + * Retrieves semester that user is in + */ + public static void getSemester() { + System.out.println("Please enter the semester you are in according to the below menu."); + + System.out.println("Type \"1\" for Semester 1"); + System.out.println("Type \"2\" for Semester 2"); + System.out.println("Type \"3\" for Special Term 1"); + System.out.println("Type \"4\" for Special Term 2"); + System.out.println("Type \"bye\" to exit"); + + Scanner in = new Scanner(System.in); + + String cmd = in.nextLine(); + // trim user input to ignore all whitespaces + String cmdTrim = cmd.replaceAll("\\s", ""); + + if (PERMITTED_SEMESTER_VALUES.contains(cmdTrim)) { + User user = getUser(); + user.setSemester(Integer.parseInt(cmdTrim)); + System.out.println("Semester saved!"); + printDash(); + System.out.println("Hello there! What can we do for you today?"); + } else if (cmdTrim.equals("bye")) { + printExit(); + Duke.LOGGER.log(Level.INFO, "User input is 'bye', exiting NUSPlanner."); + in.close(); + // force exit of application + System.exit(0); + } else if (!PERMITTED_SEMESTER_VALUES.contains(cmdTrim)) { + Duke.LOGGER.log(Level.INFO, "User input is invalid, requesting for valid input again."); + System.out.println("Your input is not a valid semester."); + getSemester(); + } + } + + public static void printOverlapInfo(String info) { + printDash(); + System.out.println("The current task clashes with this task: "); + System.out.println(" > "+info); + } + + public static void printOverlapInfo(String info, String conflictionTime) { + printDash(); + System.out.println("The current task/class clashes with this task: "); + System.out.println(" > "+info); + System.out.println(" > at : "+conflictionTime.substring(0,conflictionTime.length() -14)); + } +} diff --git a/src/main/java/seedu/duke/User.java b/src/main/java/seedu/duke/User.java new file mode 100644 index 0000000000..5ef35ba02e --- /dev/null +++ b/src/main/java/seedu/duke/User.java @@ -0,0 +1,13 @@ +package seedu.duke; + +public class User { + private int semester; + + public int getSemester() { + return semester; + } + + public void setSemester(int semester) { + this.semester = semester; + } +} diff --git a/src/main/java/seedu/duke/UserUtility.java b/src/main/java/seedu/duke/UserUtility.java new file mode 100644 index 0000000000..914edee2dd --- /dev/null +++ b/src/main/java/seedu/duke/UserUtility.java @@ -0,0 +1,92 @@ +package seedu.duke; + +import java.time.DayOfWeek; +import java.time.LocalDate; +import java.time.LocalDateTime; +import java.time.LocalTime; +import java.util.ArrayList; + +// User utility class. This class will hold methods required by user. +public class UserUtility { + private static User user; + + public static User getUser() { + if (user == null) { + user = new User(); + } + return user; + } + + public static ArrayList eventInThisWeek(Event curEvent, LocalDate weekStartDate, + LocalDate weekEndDate) { + ArrayList events = new ArrayList(); + + long timeToStart = weekStartDate.toEpochDay() - curEvent.getStartTime().toLocalDate().toEpochDay(); + int recurTime = curEvent.getActualInterval(); + int remdays = (int) timeToStart % recurTime; + + LocalDateTime stTime = curEvent.getStartTime(); + LocalDateTime edTime = curEvent.getEndTime(); + if (remdays + 7 > recurTime) { + if (remdays == 0) { + events.add(new Event(curEvent.getDescription(), stTime, edTime, true, true, + curEvent.getTimeInterval())); + } + + stTime = stTime.plusDays(recurTime); + edTime = edTime.plusDays(recurTime); + + while ((stTime.toLocalDate().toEpochDay() - weekStartDate.toEpochDay()) < 7) { + + events.add(new Event(curEvent.getDescription(), stTime, edTime, true, true, + curEvent.getTimeInterval())); + stTime = stTime.plusDays(recurTime); + edTime = edTime.plusDays(recurTime); + } + } + + return events; + } + + static void drawEventThisWeek(ArrayList eventToShow, LocalDateTime time, + LocalDate weekStartDate, LocalDate weekEndDate) { + + for (DayOfWeek day : DayOfWeek.values()) { + boolean found = false; + for (Schedule event : eventToShow) { + LocalDateTime startDateTime = event.getStartTime(); + LocalDateTime endDateTime = event.getEndTime(); + + if (startDateTime.toLocalTime().getMinute() > 0 + && startDateTime.toLocalTime().getMinute() < 30) { + startDateTime = LocalDateTime.of(startDateTime.toLocalDate(), + LocalTime.of(startDateTime.getHour(), 0)); + } + if (endDateTime.toLocalTime().getMinute() > 30 + && startDateTime.toLocalTime().getMinute() <= 59) { + endDateTime = LocalDateTime.of(endDateTime.toLocalDate(), + LocalTime.of(endDateTime.getHour() + 1, 0)); + } + + if (time.getDayOfWeek() == day && isValidInterval(time, startDateTime, endDateTime) + && time.toLocalDate().isAfter(weekStartDate.minusDays(1)) + && time.toLocalDate().isBefore(weekEndDate.plusDays(1))) { + System.out.print(String.format("%-15s|", event.getDescription().substring(0, + Math.min(event.getDescription().length(), 15)))); + found = true; + break; + } + } + if (!found) { + System.out.print(String.format("%-15s|", "")); + } + time = time.plusDays(1); + } + } + + private static boolean isValidInterval(LocalDateTime time, LocalDateTime startTime, + LocalDateTime endTime) { + return time.equals(startTime) || (time.isAfter(startTime) && time.isBefore(endTime)) + || time.equals(endTime); + } +} diff --git a/src/main/java/seedu/duke/storage/EventListAdapter.java b/src/main/java/seedu/duke/storage/EventListAdapter.java new file mode 100644 index 0000000000..2daaa06c90 --- /dev/null +++ b/src/main/java/seedu/duke/storage/EventListAdapter.java @@ -0,0 +1,384 @@ +package seedu.duke.storage; + +import com.google.gson.TypeAdapter; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import seedu.duke.Event; +import seedu.duke.EventList; +import seedu.duke.NPExceptions; +import seedu.duke.Schedule; +import seedu.duke.Ui; + +import java.io.IOException; +import java.time.LocalDateTime; +import java.util.ArrayList; +import java.time.format.DateTimeFormatter; + +/** + * EventListAdapter is a custom serializer/deserializer type adapter for saving and loading information. + */ +public class EventListAdapter extends TypeAdapter> { + private static final DateTimeFormatter dfWithTime = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm"); + + /** + * Custom serializer for ArrayList of class Event. + * @param writer the JsonWriter that writes the object to file. + * @param eventList the Java object to write. May be null. + * @throws IOException If there is an error writing to file + */ + @Override + public void write(JsonWriter writer, ArrayList eventList) throws IOException { + writer.beginArray(); + for (Schedule event : eventList){ + writeEvent(writer, (Event) event); + } + writer.endArray(); + } + + /** + * Custom serializer for the Event class. Called by the write function + * @param writer the JsonWriter that writes the object to file. + * @param event the Event object to write. + * @throws IOException If there is an error writing to file + */ + public void writeEvent(JsonWriter writer, Event event) throws IOException { + writer.beginObject(); + writer.name("description").value(event.getDescription()); + if (event.hasStartTime()){ + writeStartTime(writer, event); + } + if (event.hasEndTime()) { + writeEndTime(writer, event); + } + if (event.hasLocation()){ + writer.name("location").value(event.getLocation()); + writer.name("hasLocation").value(event.hasLocation()); + } + if (event.isRecurring()){ + writer.name("isRecurring").value(event.isRecurring()); + writer.name("timeInterval").value(event.getTimeInterval()); + } + writer.name("hasEndInfo").value(event.hasEndInfo()); + writer.name("hasStartTime").value(event.hasStartTime()); + writer.name("hasEndTime").value(event.hasEndTime()); + writer.endObject(); + } + + private static void writeEndTime(JsonWriter writer, Event event) throws IOException { + writer.name("endTime"); + writer.beginObject(); + writer.name("date"); + writer.beginObject(); + writer.name("year").value(event.getEndTime().getYear()); + writer.name("month").value(event.getEndTime().getMonthValue()); + writer.name("day").value(event.getEndTime().getDayOfMonth()); + writer.endObject(); + writer.name("time"); + writer.beginObject(); + writer.name("hour").value(event.getEndTime().getHour()); + writer.name("minute").value(event.getEndTime().getMinute()); + writer.endObject(); + writer.endObject(); + } + + private static void writeStartTime(JsonWriter writer, Event event) throws IOException { + writer.name("startTime"); + writer.beginObject(); + writer.name("date"); + writer.beginObject(); + writer.name("year").value(event.getStartTime().getYear()); + writer.name("month").value(event.getStartTime().getMonthValue()); + writer.name("day").value(event.getStartTime().getDayOfMonth()); + writer.endObject(); + writer.name("time"); + writer.beginObject(); + writer.name("hour").value(event.getStartTime().getHour()); + writer.name("minute").value(event.getStartTime().getMinute()); + writer.endObject(); + writer.endObject(); + } + + /** + * Reads information from a json file and deserializes it into an ArrayList of Event class. + * @param reader reader to receive data from JSON file. + * @return ArrayList of type event. This is the previously saved data from the application. + * @throws IOException If there was an error reading the JSON file. + */ + @Override + public ArrayList read (JsonReader reader) throws IOException { + ArrayList eventList = new ArrayList<>(); + boolean isCorrupt = false; + reader.beginArray(); + while(reader.hasNext()){ + try { + Event event = readEvent(reader); + if (checkEvent(event)){ + if(EventList.canAddNewEvent(event, -1, eventList)) { + eventList.add(event); + } else { + throw new NPExceptions("Event Conflict Detected in save file! Wiping save file."); + } + }else{ + eventList.add(event); + } + } catch (NPExceptions e){ + Ui.printErrorMsg(e.getMessage()); + isCorrupt = true; + } + } + reader.endArray(); + if (isCorrupt){ + eventList = new ArrayList<>(); + JsonEventListStorage.wipeFile(); + } + return eventList; + } + + /** + * Deserializes an Event Json Object into Event Java Object + * @param reader Json Reader to interpret JSON file. + * @return Event. This is the deserialized Event java object. + * @throws IOException If there was an error deserializing the event class. + */ + public Event readEvent(JsonReader reader) throws IOException, NPExceptions{ + String description = null; + LocalDateTime startTime = null; + LocalDateTime endTime = null; + boolean hasEndInfo = false; + boolean hasStartTime = false; + boolean hasEndTime = false; + //Additions start here + boolean hasLocation = false; + boolean isRecurring = false; + String timeInterval = null; + String location = null; + + + reader.beginObject(); + while (reader.hasNext()) { + String name = reader.nextName(); + switch (name) { + case "description": + description = reader.nextString(); + break; + case "startTime": { + startTime = readLocalDateTime(reader); + break; + } + case "endTime": { + endTime = readLocalDateTime(reader); + break; + } + case "hasEndInfo": + hasEndInfo = reader.nextBoolean(); + break; + case "hasStartTime": + hasStartTime = reader.nextBoolean(); + break; + case "hasEndTime": + hasEndTime = reader.nextBoolean(); + break; + case "hasLocation": + hasLocation = reader.nextBoolean(); + break; + case "isRecurring": + isRecurring = reader.nextBoolean(); + break; + case "timeInterval": + timeInterval = reader.nextString(); + break; + case "location": + location = reader.nextString(); + break; + default: + throw new NPExceptions("File Corrupted"); //catches un-parsable modifications to fields. + } + } + reader.endObject(); + if (!hasStartTime){ + throw new NPExceptions("No Start Time detected. File is corrupted"); + } + if (description.trim().equals("")){ + throw new NPExceptions("Empty Description! File corrupted."); + } + return createEvent(description, startTime, endTime, hasStartTime, hasEndTime, hasLocation, + isRecurring, timeInterval, location); + } + + private LocalDateTime readLocalDateTime(JsonReader reader) throws IOException, NPExceptions { + LocalDateTime dateTime; + String date = null; + String time = null; + reader.beginObject(); + while (reader.hasNext()) { + String startName = reader.nextName(); + if (startName.equals("date")) { + date = readDate(reader); + } else if (startName.equals("time")) { + time = readTime(reader); + } + } + if ((date == null) || (time == null)) { //checks that date and time fields were not abused. + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + reader.endObject(); + String combination = date + " " + time; + dateTime = LocalDateTime.parse(combination, dfWithTime); + return dateTime; + } + + /** + * Helper method to deserialize Json object into Event object + * @param description Description field of event + * @param startTime startTime field of event + * @param endTime endTime field of event + * @param hasStartTime Boolean - Must be true always + * @param hasEndTime Boolean - if there is endTime, this must be true + * @param hasLocation Boolean - if there is location, this must to true + * @param isRecurring Boolean - if object is recurring (ie has a non-null timeInterval field), this must be true + * @param timeInterval Time interval between each event. + * @param location Venue field of event + * @return Event + */ + private static Event createEvent(String description, LocalDateTime startTime, LocalDateTime endTime, + boolean hasStartTime, boolean hasEndTime, boolean hasLocation, boolean isRecurring, + String timeInterval, String location) throws NPExceptions{ + if (hasEndTime && isRecurring && hasLocation){ + if ((timeInterval == null) || (endTime == null) || (location == null) || (description == null) || + (startTime == null)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + if (startTime.isAfter(endTime)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + Event temp = new Event(description, startTime, endTime, hasStartTime, hasEndTime, timeInterval); + temp.changeLocation(location); + return temp; + } else if (hasEndTime && isRecurring){ + if ((timeInterval == null) || (endTime == null) || (description == null) || (startTime == null)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + if (startTime.isAfter(endTime)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + return new Event(description, startTime, endTime, hasStartTime, hasEndTime, timeInterval); + } else if (hasEndTime && hasLocation){ + if ( (endTime == null) || (location == null) || (description == null) || (startTime == null)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + if (startTime.isAfter(endTime)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + Event temp = new Event(description, startTime, endTime, hasStartTime, hasEndTime); + temp.changeLocation(location); + return temp; + } else if (isRecurring && hasLocation){ + if ((timeInterval == null) || (location == null) || (description == null) || (startTime == null)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + Event temp = new Event(description, startTime,hasStartTime); + temp.changeLocation(location); + return temp; + } else if (hasEndTime){ + if ( (endTime == null) || (description == null) || (startTime == null)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + if (startTime.isAfter(endTime)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + return new Event(description, startTime, endTime, hasStartTime, hasEndTime); + } else if (hasLocation){ + if ( (location == null) || (description == null) || (startTime == null)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + Event temp = new Event(description, startTime, hasStartTime); + temp.changeLocation(location); + return temp; + } else if (isRecurring){ + if ((timeInterval == null) || (description == null) || (startTime == null)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + return new Event(description, startTime, hasStartTime, timeInterval); + } else{ + if ( (description == null) || (startTime == null)){ + throw new NPExceptions("Event Corrupted from modifications to JSON file!"); + } + return new Event(description, startTime, hasStartTime); + } + } + + private boolean checkEvent(Event event){ + if (event.hasStartTime() && event.hasEndTime() && event.hasEndInfo()){ + return true; + } + return false; + } + /** + * readDate is used to parse timeandflag objects in events + * @param reader JsonReader to be used + * @return String representing date + * @throws IOException + */ + private String readDate(JsonReader reader) throws IOException, NPExceptions { + int day = 1; + int month = 1; + int year = 1; + reader.beginObject(); + while(reader.hasNext()){ + String dateName = reader.nextName(); + if (dateName.equals("year")){ + year = reader.nextInt(); + } else if (dateName.equals("month")){ + month = reader.nextInt(); + } else if (dateName.equals("day")){ + day = reader.nextInt(); + } else { + throw new NPExceptions("File Corrupted!"); + } + } + reader.endObject(); + String monthString = Integer.toString(month); + String dayString = Integer.toString(day); + if (month < 10){ + monthString = "0" + monthString; + } + if (day < 10){ + dayString = "0" + dayString; + } + return year + "/" + monthString + "/" + dayString; + + } + + /** + * ReadTime is used to parse timeandflag objects + * @param reader JsonReader to be used + * @return String representing time + * @throws IOException if exception occurs while reading time + */ + private String readTime(JsonReader reader) throws IOException, NPExceptions { + int hour = 0; + int minute = 0; + reader.beginObject(); + while(reader.hasNext()){ + String timeName = reader.nextName(); + if (timeName.equals("hour")){ + hour = reader.nextInt(); + } else if (timeName.equals("minute")){ + minute = reader.nextInt(); + } else{ + reader.skipValue(); + throw new NPExceptions("File Corrupted!"); + } + } + reader.endObject(); + String hourString = Integer.toString(hour); + String minString = Integer.toString(minute); + if (hour < 10){ + hourString = "0" + hourString; + } + if (minute < 10){ + minString = "0" + minString; + } + return hourString + ":" + minString; + } +} diff --git a/src/main/java/seedu/duke/storage/EventListStorage.java b/src/main/java/seedu/duke/storage/EventListStorage.java new file mode 100644 index 0000000000..f5e5ab0958 --- /dev/null +++ b/src/main/java/seedu/duke/storage/EventListStorage.java @@ -0,0 +1,16 @@ +package seedu.duke.storage; + +import seedu.duke.EventList; +import seedu.duke.Schedule; + +import java.util.ArrayList; + +/** + * Represents storage for EventList. + */ +public interface EventListStorage { + void saveToFile(EventList eventList); + + ArrayList loadEvents(); + +} diff --git a/src/main/java/seedu/duke/storage/JsonEventListStorage.java b/src/main/java/seedu/duke/storage/JsonEventListStorage.java new file mode 100644 index 0000000000..7033d757e0 --- /dev/null +++ b/src/main/java/seedu/duke/storage/JsonEventListStorage.java @@ -0,0 +1,94 @@ +package seedu.duke.storage; + +import com.google.gson.GsonBuilder; +import com.google.gson.Gson; +import seedu.duke.Schedule; +import seedu.duke.EventList; +import seedu.duke.Ui; + +import java.io.File; +import java.io.IOException; +import java.io.FileWriter; +import java.io.InputStreamReader; +import java.io.FileInputStream; +import java.nio.charset.StandardCharsets; +import java.util.ArrayList; + +/** + * A class to access EventList data stored as a json file on the physical drive. + */ +public class JsonEventListStorage implements EventListStorage{ + + private static final String fileLocation = System.getProperty("user.dir") + "/save.json"; + + private final GsonBuilder builder = new GsonBuilder().registerTypeAdapter(ArrayList.class, new EventListAdapter()) + .setPrettyPrinting(); + private final Gson gson = builder.create(); + + /** + * Saves an EventList object's Array List to a file with JSON formatting. + * @param eventList The EventList object that needs to be saved. + */ + public void saveToFile(EventList eventList) { + File saveFile = new File(fileLocation); + String gsonData = gson.toJson(eventList.getFullList()); + if (!saveFile.exists()) { + try { + saveFile.createNewFile(); + } catch (IOException e) { + Ui.printErrorMsg("IOException occurred while creating new save file."); + } + } + try { + FileWriter taskWriter; + taskWriter = new FileWriter(saveFile.getAbsoluteFile(), false); + taskWriter.write(gsonData); + taskWriter.close(); + } catch (IOException e) { + Ui.printErrorMsg("IOException occurred while writing to file"); + } + } + + /** + * Loads and deserializes information from save.json into an ArrayList of events. + * @return ArrayList of Event class containing information of previous load state + */ + @SuppressWarnings("unchecked") + //I revised the type here temporarily to avoid failed building + public ArrayList loadEvents() { + File saveFile = new File(fileLocation); + ArrayList savedList = new ArrayList<>(); + if (!saveFile.exists()) { + return savedList; + } + InputStreamReader fileReader; + try { + fileReader = new InputStreamReader(new FileInputStream(saveFile), StandardCharsets.UTF_8); + savedList = gson.fromJson(fileReader, ArrayList.class); //Placeholder. + if (savedList.equals(null)){ + savedList = new ArrayList<>(); + } + } catch (Exception e) { + Ui.printErrorMsg("IOException occured while reading from save.json. It is likely corrupted"); + savedList = new ArrayList<>(); + JsonEventListStorage.wipeFile(); + } + return savedList; + } + + /** + * Wipes all information in save.json and replaces it with empty JSON array. + */ + public static void wipeFile(){ + File saveFile = new File(fileLocation); + try { + FileWriter taskWriter; + taskWriter = new FileWriter(saveFile.getAbsoluteFile(), false); + taskWriter.write("[]"); + taskWriter.close(); + } catch (IOException e) { + Ui.printErrorMsg("IOException occurred while writing to file"); + } + + } +} diff --git a/src/main/java/seedu/duke/storage/JsonNusModuleLoader.java b/src/main/java/seedu/duke/storage/JsonNusModuleLoader.java new file mode 100644 index 0000000000..be37f33cef --- /dev/null +++ b/src/main/java/seedu/duke/storage/JsonNusModuleLoader.java @@ -0,0 +1,41 @@ +package seedu.duke.storage; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import seedu.duke.NusModule; +import seedu.duke.Ui; + + +import java.io.InputStreamReader; +import java.io.Reader; +import java.util.HashMap; +import java.util.Objects; + +/** + * A class to access NusMods data stored on a json file. + */ +public class JsonNusModuleLoader implements NusModuleLoader{ + + private static final String nusModFile = "/nusmods.json"; + GsonBuilder builder = new GsonBuilder().registerTypeAdapter(HashMap.class, new ModuleAdapter()) + .setPrettyPrinting(); + + Gson gson = builder.create(); + + /** + * Loads and deserializes information from nusMods.json into a HashMap for quick reference by other components. + * @return HashMap with String key and NusModule objects as value. + */ + public HashMap loadModules(){ + HashMap nusModuleHashMap = new HashMap<>(); + try{ + Reader reader = new InputStreamReader(Objects.requireNonNull(this.getClass() + .getResourceAsStream("/nusmods.json"))); + nusModuleHashMap = gson.fromJson(reader, HashMap.class); + } catch (Exception e){ + Ui.printErrorMsg("FileNotFound"); + } + + return nusModuleHashMap; + } +} diff --git a/src/main/java/seedu/duke/storage/ModuleAdapter.java b/src/main/java/seedu/duke/storage/ModuleAdapter.java new file mode 100644 index 0000000000..9e7e0508b6 --- /dev/null +++ b/src/main/java/seedu/duke/storage/ModuleAdapter.java @@ -0,0 +1,291 @@ +package seedu.duke.storage; + +import com.google.gson.TypeAdapter; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonToken; +import seedu.duke.Lesson; +import seedu.duke.NusModule; + +import com.google.gson.stream.JsonWriter; +import seedu.duke.SemData; + +import java.io.IOException; +import java.time.LocalDate; +import java.time.temporal.ChronoUnit; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; + +import static seedu.duke.Parser.SEMESTER_START_DATES; +import static seedu.duke.Parser.SEMESTER_END_DATES; +/** + * A deserializer to deserialize NusMods data from its Json format + */ +public class ModuleAdapter extends TypeAdapter> { + + /** + * Dummy function to extend TypeAdapter + * @param out JsonWriter + * @param value the Java object to write. May be null. + * @throws IOException + */ + @Override + public void write(JsonWriter out, HashMap value) throws IOException { + //No need to write anything to file. Method should be empty! + } + + /** + * Reads nusmods.json file and parses it into a hash map for use by other components in the application. + * @param reader JsonReader to parse the JSON file. + * @return Hash Map containing all modules in NUS and with its module code as the key. + * @throws IOException if there is any issue in parsing the file. + */ + @Override + public HashMap read(JsonReader reader) throws IOException { + HashMap nusModuleMap = new HashMap<>(); + reader.beginArray(); + while(reader.hasNext()){ + NusModule module = readModule(reader); + nusModuleMap.put(module.getModuleCode(), module); + } + reader.endArray(); + return nusModuleMap; + } + + /** + * Deserializes a module object from Json to a java Module class. + * @param reader Json Reader to parse the file + * @return Module class containing module information + * @throws IOException if there is any issue while parsing the file + */ + public NusModule readModule(JsonReader reader) throws IOException{ + String description = null; + String title = null; + String faculty = null; + String moduleCredit = null; + String moduleCode = null; + HashMap semesterData = new HashMap<>(); + reader.beginObject(); + while(reader.hasNext()){ + String name = reader.nextName(); + switch(name) { + case "description": + description = reader.nextString(); + break; + case "title": + title = reader.nextString(); + break; + case "faculty": + faculty = reader.nextString(); + break; + case "moduleCredit": + moduleCredit = reader.nextString(); + break; + case "moduleCode": + moduleCode = reader.nextString(); + break; + case "semesterData": + semesterData = readListSemData(reader); + break; + default: + reader.skipValue(); + + break; + } + } + reader.endObject(); + return new NusModule(description, title, faculty, moduleCredit, moduleCode, semesterData); + } + + private HashMap readListSemData(JsonReader reader) throws IOException{ + HashMap semDataMap = new HashMap<>(); + reader.beginArray(); + while(reader.hasNext()){ + SemData semester = readSemData(reader); + semDataMap.put(semester.getSemester(), semester); + } + reader.endArray(); + return semDataMap; + } + + + private SemData readSemData(JsonReader reader) throws IOException{ + //TODO: write semdata into thing + int semester = 0; + List timetable = null; + String examDate = null; + int examDuration = 0; + reader.beginObject(); + while(reader.hasNext()){ + String name = reader.nextName(); + switch(name){ + case "semester": + semester = reader.nextInt(); + break; + case "timetable": + timetable = readTimetable(reader, semester); + break; + case "examDate": + examDate = reader.nextString(); + break; + case "examDuration": + examDuration = reader.nextInt(); + break; + default: + reader.skipValue(); + break; + } + } + reader.endObject(); + if (examDate == null && examDuration == 0){ + return new SemData(semester, timetable, false); + } else{ + return new SemData(semester, timetable, examDate, examDuration); + } + } + + private List readTimetable(JsonReader reader, int semester) throws IOException{ + List timetable = new ArrayList<>(); + reader.beginArray(); + while (reader.hasNext()){ + Lesson lesson = readLesson(reader, semester); + timetable.add(lesson); + } + reader.endArray(); + return timetable; + } + + private Lesson readLesson(JsonReader reader, int semester) throws IOException{ + String classNumber = null; + String startTime = null; + String endTime = null; + ArrayList weeks = null; + String venue = null; + String lessonType = null; + String day = null; + reader.beginObject(); + while(reader.hasNext()){ + String name = reader.nextName(); + switch (name){ + case "classNo": + classNumber = reader.nextString(); + break; + case "startTime": + startTime = reader.nextString(); + break; + case "endTime": + endTime = reader.nextString(); + break; + case "weeks": + weeks = readWeeks(reader, semester); + break; + case "venue": + venue = reader.nextString(); + break; + case "lessonType": + lessonType = reader.nextString(); + switch(lessonType){ + case("Lecture"): + lessonType = "LEC"; + break; + case("Sectional Teaching"): + lessonType = "SEC"; + break; + case("Design Lecture"): + lessonType = "DLEC"; + break; + case("Recitation"): + lessonType = "REC"; + break; + case("Packaged Lecture"): + lessonType = "PLEC"; + break; + case("Seminar-Style Module Class"): + lessonType = "SEM"; + break; + case("Tutorial"): + lessonType = "TUT"; + break; + case("Tutorial Type 2"): + lessonType = "TUT2"; + break; + case("Packaged Tutorial"): + lessonType = "PTUT"; + break; + case("Laboratory"): + lessonType = "LAB"; + break; + default: + break; + } + break; + case "day": + day = reader.nextString(); + break; + default: + reader.skipValue(); + break; + } + } + reader.endObject(); + return new Lesson(classNumber, startTime, endTime, weeks, venue, lessonType, day); + } + + private ArrayList readWeeks(JsonReader reader, int semester) throws IOException{ + ArrayList weeks = new ArrayList<>(); + if (reader.peek() == JsonToken.BEGIN_ARRAY) { + reader.beginArray(); + while (reader.hasNext()) { + weeks.add(reader.nextInt()); + } + reader.endArray(); + return weeks; + } + if (reader.peek() == JsonToken.BEGIN_OBJECT) { //TODO proper implementation in later stage. For now can ignore. + reader.beginObject(); + String startDate = ""; + String endDate = ""; + int weekInterval = 1; + while (reader.hasNext()) { + String name = reader.nextName(); + if (name.equals("start")) { + startDate = reader.nextString(); + } + if (name.equals("end")) { + endDate = reader.nextString(); + } + if (name.equals("weeks")){ + reader.beginArray(); + while (reader.hasNext()) { + weeks.add(reader.nextInt()); + } + reader.endArray(); + } + if (name.equals("weekInterval")){ + weekInterval = reader.nextInt(); + } + } + reader.endObject(); + if ((semester > 2) && (weeks.isEmpty())) { + LocalDate start = LocalDate.parse(startDate); + LocalDate end = start; + if (endDate.equals("")) { + end = SEMESTER_END_DATES.get(semester); + } else { + end = LocalDate.parse(endDate); + } + LocalDate semStart = SEMESTER_START_DATES.get(semester); + int currWeek = (int) ChronoUnit.WEEKS.between(semStart, start) + 1; + weeks.add(currWeek); + start = start.plusWeeks(weekInterval); + while (start.isBefore(end) || start.isEqual((end))) { + currWeek += weekInterval; + weeks.add(currWeek); + start = start.plusWeeks(weekInterval); + } + } + return weeks; + } + return weeks; + } +} diff --git a/src/main/java/seedu/duke/storage/NusModuleLoader.java b/src/main/java/seedu/duke/storage/NusModuleLoader.java new file mode 100644 index 0000000000..d5d00f4c83 --- /dev/null +++ b/src/main/java/seedu/duke/storage/NusModuleLoader.java @@ -0,0 +1,12 @@ +package seedu.duke.storage; + +import seedu.duke.NusModule; + +import java.util.HashMap; + +/** + * Represents Storage for nus modules. + */ +public interface NusModuleLoader { + HashMap loadModules(); +} diff --git a/src/main/java/seedu/duke/storage/Storage.java b/src/main/java/seedu/duke/storage/Storage.java new file mode 100644 index 0000000000..6e398512df --- /dev/null +++ b/src/main/java/seedu/duke/storage/Storage.java @@ -0,0 +1,17 @@ +package seedu.duke.storage; + +import seedu.duke.EventList; +import seedu.duke.NusModule; +import seedu.duke.Schedule; + +import java.util.ArrayList; +import java.util.HashMap; + +/** + * API for Storage + */ +public interface Storage extends EventListStorage, NusModuleLoader{ + void saveToFile(EventList eventList); + ArrayList loadEvents(); + HashMap loadModules(); +} diff --git a/src/main/java/seedu/duke/storage/StorageManager.java b/src/main/java/seedu/duke/storage/StorageManager.java new file mode 100644 index 0000000000..6e3501d894 --- /dev/null +++ b/src/main/java/seedu/duke/storage/StorageManager.java @@ -0,0 +1,59 @@ +package seedu.duke.storage; + +import seedu.duke.EventList; +import seedu.duke.NusModule; +import seedu.duke.Schedule; + +import java.util.ArrayList; +import java.util.HashMap; + +/** + * Manages storage of EventList data and loading of NusMods data. + */ +public class StorageManager implements Storage{ + private EventListStorage eventListStorage; + private NusModuleLoader nusModuleLoader; + private boolean hasLoadMods = false; + private HashMap nusMods; + + /** + * Constructor for the Storage Manager Class + * @param eventListStorage EventListSTorage is responsible for loading/saving the event List from/to save.json + * @param nusModuleLoader nusModuleLoader is responsible for loading module information from nusmods.json + */ + public StorageManager(EventListStorage eventListStorage, NusModuleLoader nusModuleLoader) { + this.eventListStorage = eventListStorage; + this.nusModuleLoader = nusModuleLoader; + } + + /** + * Writes EventList to save.json + * @param eventList the EventList object to be saved in JSON format. + */ + @Override + public void saveToFile(EventList eventList) { + eventListStorage.saveToFile(eventList); + } + + /** + * Loads Events from save.json as a array list + * @return ArrayList consisting of saved events. + */ + @Override + public ArrayList loadEvents() { + return eventListStorage.loadEvents(); + } + + /** + * Loads Modules from nusmods.json + * @return HashMap containing all modules offered by NUS in AY22/23. Accurate as of March 17, 2023. + */ + @Override + public HashMap loadModules() { + if (!hasLoadMods){ + nusMods = nusModuleLoader.loadModules(); //only load once. + } + return nusMods; + } + +} diff --git a/src/main/resources/nusmods.json b/src/main/resources/nusmods.json new file mode 100644 index 0000000000..08318bbaca --- /dev/null +++ b/src/main/resources/nusmods.json @@ -0,0 +1,697539 @@ +[ + { + "acadYear": "2022/2023", + "description": "This module introduces the architectural history of Singapore from the pre-colonial era to the contemporary period from an interdisciplinary perspective. It explores the social and cultural role of architects, and to how that role has been interpreted and has evolved. It also offers critical views on the role of architecture in constructing the national identity of Singapore.", + "title": "Architectural History of Singapore", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to current conservation approaches such as Historic Urban Landscape, Heritage Impact Assessment, Conservation Management Plan, Historic Area Assessments approach and applications and their application and relevance in the Asian context. The focus will be to understand how and why these concepts and methods have evolved and applied in practice in the Singapore context. Students will be strongly encouraged to contextualise this with other international heritage conservation scenarios in the region and worldwide to reflect broader shifts in conservation approaches.", + "title": "Conservation Approaches and Philosophies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will equip students with a comprehensive understanding of the key theoretical debates, challenges, and practices of urban conservation and regeneration. In addition to examining the architectural issues, the module\nwill also investigate the social, economic and environmental problems which have resulted in current Asian urban and suburban landscapes, and how government policy can affect change to these landscapes for urban and economic renewal. By exploring exemplary examples mainly from Asia, students will critically discuss\nthe suitability, significance, and strategies employed to tackle emerging urban conservation and regeneration issues and challenges faced in the region.", + "title": "Urban Conservation and Regeneration", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the history and concept of cultural heritage, fundamental heritage conservation approaches and their underlying ethics and\nphilosophies. This module will provide the students with an understanding of the idea of \u201cheritage,\u201d and multiplicity of meanings, values and priorities attributed to heritage; interpretation and politics of representation and the role of community in it; and the current debates and potential futures of architectural heritage planning and management in Singapore and the region.", + "title": "Architectural Heritage Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "SDE-ER5", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module spans built heritage and local traditional issues arising from contexts where sustainable land development and urban conservation are at issue. To understand the need for an integrated planning that includes conservation to preserve the character of the historic city, this module will critically analyze various existing tools to manage conservation and the need for change in an urban landscape. The module will focus on: the context of the Vienna Memorandum; the concept of historic urban landscapes; guidelines for the conservation of historic urban landscapes; and guidelines for the integration of contemporary architecture in historic urban landscapes.", + "title": "Conservation Policy Methodology for Sustainable Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5005", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER5", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide the students with an understanding of three closely interlinked components: disaster risk management, cultural heritage management and urban planning and development. It will address the general principles of disaster risk management for cultural heritage. It will also provide focused learning for students to deal with various challenges related to disaster risk management of cultural heritage within their local context in particular, and Asian context in general.", + "title": "Disaster Risk Management of Cultural Heritage", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The dissertation is an opportunity for students to engage in a critical reflection on what they already know. It should be seen as an exciting venue to apply further research methods and critical thinking tools to extend their understanding of the various topics relevant to architecture as a discipline, especially about conservation.\n\nStudents will be encouraged to build upon and further develop the body of knowledge gained from their taught coursework, in a dissertation (a detailed written discourse of 8,500-10,000 words) under the guidance of assigned supervisors.", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5007", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will be a community-service-learning studio in which the students will work with private owners/authority representatives to programme and design buildings in Singapore. This design studio will emphasise the need for a community-oriented design process that is collaborative, inclusive, and shape ways of living for the entire community.", + "title": "Design for Conservation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AC5008", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This design studio will focus on conservation and adaptive reuse of historic buildings. This studio will be an outstanding opportunity to overcome the gaps between theoretical approaches to and practice of heritage conservation in the context of national and international challenges. This module will assist students in understanding the heritage values and developing abilities for investigation, understanding, analysing, setting strategy for conservation and creative thinking methods through documentation and recording, urban rehabilitation, renovation, adaptive reuse, reconstruction, restoration, and in-fill projects.", + "title": "Design for Adaptive Reuse", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AC5009", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will equip the students with the specialised skills required for researching, analysing and recording historic buildings. It will also familiarise them with current professional guidance on standards and reports, including desk-based assessments, historic building reports, condition assessments and heritage statements. Working on-site the students will gain experience in a range of survey and recording techniques such as rectified photography, photogrammetry and other 3D recording methods, CAD drawing and BIM for heritage.", + "title": "Historic Buildings Survey and Recording", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5010", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module reviews the existing knowledge about the conservation of C20th buildings in Singapore and region, SE Asia. The module will include an introduction to conservation principles, methodology, and technical solutions to deterioration and failure of C20th building materials such as concrete, new industrial materials (glass, plastic, composites) and building systems. Topics explored will also include the history of modern architecture, its associated technologies, and principles of modernist design. The module will conservation of the architecture of the recent past, heritage challenges posed by the architecture and technology of C20th buildings.", + "title": "Conservation of C20th Buildings", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5011", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Working with experienced conservation practitioners, the students will understand the principles and practices involved in conserving historic buildings and materials, mainly in Southeast Asia. The range of topics to be covered includes visual analysis, scientific investigation and understanding of materials, assessment of conservation needs, the range of remedial solutions relating to the use of traditional building materials, and hands-on experience to develop practical skills and techniques in lime mortars, plasters and renders, Shanghai plasterwork, masonry, terracotta, decorative plasterwork, and painted surfaces.", + "title": "Practical Building Conservation Skills I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5012", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through lectures, site visits and working with experienced conservation practitioners, the students will gain knowledge and hands-on experience to develop repair techniques and strategies in timber, ferrous metal, tiles, stained glass, historic finishes and paintwork, and cleaning methods mainly used in Southeast Asia.", + "title": "Practical Building Conservation Skills II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AC5013", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It aims to provide students with practical professional experience involving at least five weeks in heritage conservation sector either government or private. The hosting institution, in collaboration with the department, will define the work scope of students on internship. Students are required to submit a project, the topic of which must be approved in advance, together with a 2,500-word report on the internship experience at the end of the work period. The student is required to spend three hours, three days per week for a total of five weeks at the hosting institution.", + "title": "Internship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "AC5014", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-MEZZ", + "day": "Saturday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course provides an introduction to accounting from a user perspective. Financial reporting is covered from the viewpoint of an external investor. The focus is on how accounting can help investors make better decisions. Book-keeping and preparation of financial statements are also covered at an introductory level, as investors need to be aware of how the financial statements are derived.", + "title": "Accounting for Decision Makers", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC1701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "V09", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "V2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "V14", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V02", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V05", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V06", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V20", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V19", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V07", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V08", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V13", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V11", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V01", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V21", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V18", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "V17", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "V12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V14", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V15", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V16", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V17", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V18", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V20", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V01", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V02", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V06", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V08", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V10", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V11", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "V2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "V13", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V09", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V19", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "V05", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course provides an introduction to accounting from a user perspective. Financial reporting is covered from the viewpoint of an external investor. The focus is on how accounting can help investors make better decisions. Book-keeping and preparation of financial statements are also covered at an introductory level, as investors need to be aware of how the financial statements are derived.", + "title": "Accounting for Decision Makers", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC1701X", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "X03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X08", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X09", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X07", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Thursday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "X1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Thursday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "X16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X05", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X06", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X01", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X02", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X18", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X11", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X12", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "X04", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "X07", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X08", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X09", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X11", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X12", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X18", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X01", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X02", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X04", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X05", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X06", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "X2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Monday", + "lessonType": "Lecture", + "size": 226, + "covidZone": "B" + }, + { + "classNo": "X1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Monday", + "lessonType": "Lecture", + "size": 226, + "covidZone": "B" + }, + { + "classNo": "X16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers major concepts, tools and techniques in managerial accounting. It provides students with an appreciation of how managerial accounting evolves with changes in the business environment and why the usefulness of managerial accounting systems depends on the organisational context. The emphasis is on the use of managerial accounting information for decision-making, planning, and controlling activities. Students are introduced to both traditional and contemporary managerial accounting concepts and techniques.", + "title": "Managerial Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC2706", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers financial accounting at an intermediate level, with special reference to accounting for property, plant & equipment, investment properties, assets held for sale, intangible assets, asset impairment, changes in accounting policies and estimates, post-balance-sheet events, revenue accounting, segment reporting and interim reporting.", + "title": "Corporate Accounting & Reporting I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC2707", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers financial accounting at an intermediate level, with special reference to accounting for financial instruments, deferred tax, leases, provisions, employee benefits, and share-based compensation.", + "title": "Corporate Accounting & Reporting II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC2708", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to help students understand the role of information systems in accounting and other areas of business. \n\nIn particular, it examines the innovative applications of information systems to streamline business operations and enhance competitive advantage. \n\nStudents will understand various accounting/business cycles and learn about how information systems are used in different functional areas such as finance/accounting, marketing, operations and supply chain, and HR/management.", + "title": "Accounting Information Systems", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC2709", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the knowledge and understanding of the audit process required by assurance and attestation engagements. It aims to ensure students acquire the necessary attitude, skills, and knowledge for a career in auditing, in the accounting profession or in business management.", + "title": "Assurance and Attestation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC3701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary aim of this course is to develop a solid understanding of the legal framework required in the operations of business entities especially companies. It covers the entire life-span of a business entity, namely from the formation of the entity to its liquidation. It also includes the various legal obligations and implications in operating the business entity. A secondary objective is to introduce the pertinent provisions of securities legislation such as the Securities & Futures Act and the Takeover Code.", + "title": "Corporate and Securities Law", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC3702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the basic concepts of income taxation in Singapore. Since a large portion of a business organisation's profits goes towards the payment of income tax, it is absolutely crucial for students to have an understanding of how tax works and how to legally minimize it. This module is relevant to those who wish to work in the fields of accounting, consulting or financial management.", + "title": "Taxation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC3703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers financial accounting at an advanced level, with a focus on\nbusiness combination accounting, group accounting (subsidiaries, associates and joint arrangements), foreign currency accounting (transactions and translation) and related party disclosures.", + "title": "Advanced Corporate Accounting and Reporting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC3704", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "BIZ2-0510", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "BIZ2-0413B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with an understanding of the various valuation issues and methodologies available to accountants and managers. It specifically discusses valuation issues pertaining to the enterprise, assets for use, and liabilities. After taking this course, the students should be able to value certain classes of assets and liabilities which are of significant interest and importance to the modern business. Coverage includes fair value and value-in-use concepts, earnings multiple analysis, discounted cash flow analysis and real option analysis.", + "title": "Valuation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC3705", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers corporate governance from a multidisciplinary perspective including law, finance, accounting and economics. The module covers enterprise risk management in terms of the Integrated Framework issued by the Committee of Sponsoring Organizations of the Treadway Commission (COSO).", + "title": "Corporate Governance and Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC3706", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a capstone module that to some extent mirrors the aims of the Integrated Business Systems module in the Singapore Qualifying Programme. The module gives students a chance to apply their technical knowledge in different areas to a set of multi-disciplinary cases that capture complex real problems faced by accountants particularly in Singapore and the neighbouring region.", + "title": "Integrated Perspectives in Accounting and Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC3707", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course examines various means by which control can be exercised and the types of accounting information that allow for different means of control. Topics to be covered include the nature of control, responsibility centers, economic value added, transfer pricing, strategic planning, budgeting, performance evaluation systems, executive compensation, control for differentiated strategies, control for multinational organisations. Students learn how control is exercised through case analyses, case presentations and in-class discussions. The case approach makes control \"come alive\" for the students with descriptions of control at various real organisations. The case presentations make the students think critically and strategically. The in-class discussions allow the students to evaluate the pros and cons of different approaches and solutions to control problems.", + "title": "Managerial Planning and Control", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC3711", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Assurance and Attestation", + "title": "Advanced Assurance and Attestation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC3712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Accounting Theory", + "title": "Accounting Theory", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC3713", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module extends the basic concepts of enterprise risk management by focusing on the use of technology to facilitate the identification of key risk indicators and near misses. Through the use of hands-on laboratory sessions and case studies, the module will have a special emphasis on identifying key risk indicators and near misses on social media platforms such as Facebook, Twitter and blogs. The analysis of sentiments on these platforms will be used to illustrate the link of these sentiments to the identification and prediction of key risk indicators and near misses.", + "title": "Seminars in Accounting: Risk Management Technology", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4162E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a foundation in tax planning. Part 1 discusses tax planning opportunities for the business entity in a local (Singapore) context, by making use of available tax incentives, different business structures, etc. Part 2 covers tax planning in an international business context, and will deal with double tax agreements, choice of foreign investment vehicles, repatriation of income and capital, tax havens, tax arbitrage, etc. Part 3 deals with tax planning for the individual operating across international boundaries.", + "title": "Advanced Taxation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4611", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Depending on the expertise available in particular semesters, this module can take on different areas. For example, one stream may be ACC4612(A) Seminars in Accounting: Advanced Issues in Financial Accounting, which will cover topics such as advanced consolidation, pension accounting, extractive industries, agriculture and emerging issues. Another stream may be ACC4612(B) and deal with insolvency and liquidation accounting, plus forensic accounting. Yet a third stream may focus on accounting for non-corporate entities such as partnerships, trusts, estates and charities. A fourth possible stream is\nmethodology and research in accounting. The particular stream offered in a specific semester will be advertised in advance.", + "title": "Seminars in Accounting (SIA)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4612", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Internal auditing helps the Board of Directors, Audit Committee and Management of an organisation to add value and improve on the organisation\u2019s results and operations. It does this by reviewing and recommending processes for better governance and accountability. This includes giving assurance that polices and procedures are in place to ensure the organisation\u2019s objectives are achieved, risks are managed, controls are complied with, and resources are used efficiently and economically. This module provides students with the knowledge, both theory and practice, of how internal audits are done to achieve these objectives.", + "title": "SIA: Internal Auditing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4612A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to prepare accounting honours students with the necessary knowledge and skills to complete their honour theses. It is also suitable for students with an interest in gaining an understanding of important accounting issues such as earnings management, analyst and management earnings forecasts, voluntary disclosure, and accounting-based valuation.", + "title": "SIA: Advanced Accounting Theory", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4612D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Depending on the expertise available in particular semesters, this module can take on different areas. For example, one stream may be ACC4612(A) Seminars in Accounting: Advanced Issues in Financial Accounting, which will cover topics such as advanced consolidation, pension accounting, extractive industries, agriculture and emerging issues. Another stream may be ACC4612(B) and deal with insolvency and liquidation accounting, plus forensic accounting. Yet a third stream may focus on accounting for non-corporate entities such as partnerships, trusts, estates and charities. A fourth possible stream is\nmethodology and research in accounting. The particular stream offered in a specific semester will be advertised in advance.", + "title": "SIA: Risk Management Technology", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4612E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module discusses the regulations and practices in\nexternal and internal audits for public sector entities in\nSingapore. The emphasis may vary at the instructor\u2019s\ndiscretion.", + "title": "Seminars in Accounting: Public Sector Audit", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4612F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module seeks to extend students\u2019 understanding of\ncorporate governance derived from ACC3611 or ACC3616\nby in-depth discussion of selected topics that reflect the\ninstructors\u2019 interests and expertise.", + "title": "Seminars in Accounting: Advanced Corporate Governance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4612G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module seeks to extend students\u2019 understanding of\nrisk management derived from ACC3612 or ACC3616 by\nin-depth discussion of selected topics that reflect the\ninstructors\u2019 interests and expertise.", + "title": "Seminars in Accounting: Advanced Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4612H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to strengthen students\u2019 accounting knowledge and skills necessary to read and analyse the financial information of banks. The banking industry is one of the key pillars of modern economy and plays the unique role as an intermediary providing liquidity for the economy, facilitating commerce and providing credit to business enterprises and individuals.", + "title": "Sem. in Acctg: Accounting & Business Analysis for Banks", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4612K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is designed to broaden the career prospects of the accounting graduates in the realm of forensic accounting. This case-based syllabus includes the investigation and detection of financial crime, fraud, insurance claim, legal dispute, Insolvency, money laundering, serious tax crime, terror financing, corruption, identity theft, market manipulation, hidden assets, etc. Knowledge and skills to be taught in the module include data analytics, common modus operandi of financial crime, loss recovery, admissibility of evidence, interviewing suspects and witnesses, presentation in the court of law, and career opportunities as a forensic accountant.", + "title": "Forensic Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4613", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with internal audit, risk and compliance knowledge and skills. With a slant towards internal auditing, students will learn the key risks and controls in the major banking products such as global markets, credit and lending, wealth management, as well as the major banking regulations such as anti-money laundering/countering of terrorist financing rules. Students will learn how to design internal audit programmes to\nassess the adequacy and effectiveness of internal controls in these areas. Topics covered include data analytics, common modus operandi of banking frauds and control lapses, internal auditing standards, and internal audit\nreport writing.", + "title": "Financial Institution Audit & Compliance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4614", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To equip students with a good understanding of the theoretical and practical knowledge/techniques for a variety of assurance and attestation work other than the statutory audit. Such work is often more complex and requires advanced methodologies.", + "title": "Advanced Assurance and Attestation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4615", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Accounting theory is a body of rules and theories which governs the practice of financial accounting. Many of the rules and theories are well reasoned economic rationales and tested over time. On the other hand, the state of accounting theory also changes as new accounting and financial transactions are created in the new economy. This module seeks to examine some of the core theories that underpin financial accounting. This is essential to a proper theoretical understanding of the discipline of financial accounting.", + "title": "Accounting Theory", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4616", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA(Acc) honors programs with the requisite background to work closely with an \ninstructor on a well-defined project in the accounting area. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling an accounting related issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4619", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the accounting area. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling an accounting related issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ACC4629", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a foundation in tax planning. Part 1 discusses tax planning opportunities for the business entity in a local (Singapore) context, by making use of available tax incentives, different business structures, etc. Part 2 covers tax planning in an international business context, and will deal with double tax agreements, choice of foreign investment vehicles, repatriation of income and capital, tax havens, tax arbitrage, etc. Part 3 deals with tax planning for the individual operating across international boundaries.", + "title": "Advanced Taxation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4711", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It is designed to broaden the career prospects of the accounting graduates in the realm of forensic accounting. This case-based syllabus includes the investigation and detection of financial crime, fraud, insurance claim, legal dispute, Insolvency, money laundering, serious tax crime, terror financing, corruption, identity theft, market manipulation, hidden assets, etc. Knowledge and skills to be taught in the module include data analytics, common modus operandi of financial crime, loss recovery, admissibility of evidence, interviewing suspects and witnesses, presentation in the court of law, and career opportunities as a forensic accountant.", + "title": "Forensic Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4712", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with internal audit, risk and compliance knowledge and skills. With a slant towards internal auditing, students will learn the key risks and controls in the major banking products such as global markets, credit and lending, wealth management, as well as the major banking regulations such as anti-money laundering/countering of terrorist financing rules. Students will learn how to design internal audit programmes to assess the adequacy and effectiveness of internal controls in these areas. Topics covered include data analytics, common modus operandi of banking frauds and control lapses, internal auditing standards, and internal audit report writing.", + "title": "Financial Institution Audit & Compliance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4713", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To equip students with a good understanding of the theoretical and practical knowledge/techniques for a variety of assurance and attestation work other than the statutory audit. Such work is often more complex and requires advanced methodologies.", + "title": "Advanced Assurance and Attestation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4714", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Accounting theory is a body of rules and theories which governs the practice of financial accounting. Many of the rules and theories are well reasoned economic rationales and tested over time. On the other hand, the state of accounting theory also changes as new accounting and financial transactions are created in the new economy. This module seeks to examine some of the core theories that underpin financial accounting. This is essential to a proper theoretical understanding of the discipline of financial accounting.", + "title": "Accounting Theory", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4715", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the accounting area. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling an accounting related issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the accounting area. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling an accounting related issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Accounting (2 MCs)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ACC4752", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Depending on the expertise available in particular semesters, this module can take on different areas. For example, one stream may be Seminars in Accounting: Advanced Issues in Financial Accounting, which will cover topics such as advanced consolidation, pension accounting, extractive industries, agriculture and emerging issues. Another stream may deal with insolvency and liquidation accounting, plus forensic accounting. Yet a third stream may focus on accounting for non-corporate entities such as partnerships, trusts, estates and charities. A fourth possible stream is methodology and research in accounting. The particular stream offered in a specific semester will be advertised in advance.", + "title": "Seminars in Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Internal auditing helps the Board of Directors, Audit Committee and Management of an organisation to add value and improve on the organisation?s results and operations. It does this by reviewing and recommending processes for better governance and accountability. This includes giving assurance that polices and procedures are in place to ensure the organisation?s objectives are achieved, risks are managed, controls are complied with, and resources are used efficiently and economically. This module provides students with the knowledge, both theory and practice, of how internal audits are done to achieve these objectives.", + "title": "Seminars in Accounting: Internal Audit", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4761A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to prepare accounting honours students with the necessary knowledge and skills to complete their honour theses. It is also suitable for students with an interest in gaining an understanding of important accounting issues such as earnings management, analyst and management earnings forecasts, voluntary disclosure, and accounting-based valuation.", + "title": "Seminars in Accounting: Advanced Accounting Theory", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4761C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\"This module extends the basic concepts of enterprise risk\nmanagement by focusing on the use of technology to\nfacilitate the identification of key risk indicators and near\nmisses. Through the use of hands-on laboratory sessions\nand case studies, the module will have a special emphasis\non identifying key risk indicators and near misses on social\nmedia platforms such as Facebook, Twitter and blogs.\nThe analysis of sentiments on these platforms will be used\nto illustrate the link of these sentiments to the identification\nand prediction of key risk indicators and near misses.\"", + "title": "Seminars in Accounting: Risk Management Technology", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4761D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module discusses the regulations and practices in external and internal audits for public sector entities in Singapore. The emphasis may vary at the instructor's discretion.", + "title": "Seminars in Accounting: Public Sector Audit", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4761E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module seeks to extend students' understanding of corporate governance derived from ACC3706 by in-depth discussion of selected topics that reflect the instructors' interests and expertise.", + "title": "Seminars in Accounting: Advanced Corporate Governance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4761F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module seeks to extend students' understanding of risk management derived from ACC3706 by in-depth discussion of selected topics that reflect the instructors' interests and expertise.", + "title": "Seminars in Accounting: Advanced Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4761G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to strengthen students\u2019 accounting knowledge and skills necessary to read and analyse the financial information of banks. The banking industry is one of the key pillars of modern economy and plays the unique role as an intermediary providing liquidity for the economy, facilitating commerce and providing credit to business enterprises and individuals.", + "title": "Sem. in Acctg: Accounting & Business Analysis for Banks", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACC4761H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to ideas, concepts and conditions underpinning Arts & Cultural Entrepreneurship. How does arts & cultural entrepreneurship depart from arts/cultural management? Can arts & culture share complementary aims and beliefs with business and mercantilism? This interdisciplinary module will coalesce material from business studies, cultural studies, the social sciences and the arts to ideate notions of Arts and Cultural Entrepreneurship rooted in a global, historical and local context. The module will also draw knowledge from social enterprises, tourism studies and design studies.", + "title": "Approaches to Arts & Cultural Entrepreneurship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This application-led module allows students to work on an individual project that blends industry experience with theoretical research. It situates the learning within an application framework by partnering students with a supervisor to develop a project related to arts and cultural entrepreneurship, which may be critical or practice-based. Students will access a platform for one-on-one supervision with professors, key industry leaders, and peer-to-peer networking. Students will engage critically in theoretical, social, legal, historical, and cultural contexts with reference to the arts and cultural industries, using available resources to tackle industry issues and reflect on the outcomes and process.", + "title": "Final Year Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5402", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Internship Module for Master\u2019s students is a key experiential learning platform for students who have less than two years of experience in the industry. It provides a formal opportunity for students to join organisations for 12 weeks and 1 week of orientation (over sem. 3-4) to take on an internship position in an area relevant to their field of study, research and/or specialisation. Organisations are vetted and approved by the CNM Department, and their positions must have relevance to the issues undertaken; they involve the application of subject knowledge and theory in reflection upon the work will be assessed.", + "title": "Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "ACE5403", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Within the context of constructing self, communal and national identities, heritage is of great interest to varying groups of peoples and institutions in societies. Drawing \nexamples from Southeast Asia and beyond, this module looks at the multiple and sometimes conflicting meanings attached to heritage by different stakeholders and consumers. It highlights inequities in the control of heritage objects, places and practices. It pays attention to strategies of fostering discourse between the various \nstakeholders.", + "title": "Heritage: Peoples and Institutions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5404", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad introduction to international legal frameworks governing and adjudicating arts and cultural practices and productions. This module covers the principles and concepts governing rights and indemnities related to arts and culture. Issues covered in the module may include: copyright and intellectual property laws; international contract law; regulations framing arts and \ncultural practices; contract-writing and negotiations; legal due-diligence pertaining to arts and cultural resources; international business regulations pertaining to the capitalisation of arts and cultural resources, amongst others.", + "title": "Cultural Industries and the Law", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5405", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Arts Business provides students interested in the arts and/or business with an opportunity to acquire analytical tools as well as practical toolkits. Building upon an art historical survey of intersections between art and the socio-economical milieu, the module introduces a broad spectrum of funding models from artist to art institutions while carefully examine notable artistic productions challenging these existing mechanisms. Students will not only expand their understanding of the creative output from a socioeconomic perspective but also will have a chance \nto apply their theoretical lessons by turning their studies into a practical and functioning budget scheme.", + "title": "Arts Business", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5406", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students understand a range of practical and theoretical concerns in a museum, the role and expression of curatorial practice, and the procedure in exhibition making. It covers fundamental concepts in museology, curatorial studies, and exhibition development. This module also investigates how a museum\u2019s history defines its policies and narrative practices by introducing students to subjects including collecting strategies, modes of displaying and exhibition organisation. A set of field-based experiences will give students opportunities to become familiar with a specific approach to curatorial practice, such as permanent exhibitions, thematic exhibitions, and alternative curatorial practice.", + "title": "Museums, Exhibitions and the Curatorial", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5407", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "UTSRC-GLR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Managing Cultural Events provides students interested in the arts and/or business with an opportunity to develop an idea for a cultural event and turn it into a sustainable community. This module examines the types of arts and cultural festivals and events worldwide, exploring the history and significance of such these events. It provides practical information and case studies on producing a live event or festival, including programming, budgeting, obtaining funding, risk assessment and evaluation. Along with encouraging innovation and creative/critical thinking \nabout the role of arts and culture in society, the module examines theories and practical techniques for project management.", + "title": "Managing Cultural Events", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5408", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "UTSRC-GLR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will engage in an in-depth manner with a particular heritagescape (or heritage landscape). They will apply, and experiment with, theories and approaches towards critically evaluating the design, management and marketing practices of the heritagescape in achieving specific mandates. The selected heritagescape, which will generally be in Singapore, will vary from year to year, and the course will entail an intense engagement with the heritagescape. By the end of semester, students will come up with a detailed feasibility study and proposed vision and action plan for the heritagescape, addressing its identified problems and enhancing its mandates.", + "title": "Applied Heritage", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5409", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Culture is a key driver for diplomacy and intelligence. This module examines how the soft power of cultural diplomacy has fundamentally shaped global trade elations and cultural complexity. It will also introduce cultural intelligence as a framework to understand the international and organisational complexities of culture. Students \ncompleting the module will learn: soft power applications to culture; management approaches to cultural intelligence; cultural complexity theory; everyday multiculturalism and cultural diversity planning, across a range of sites and case studies including education, art, media and tourism, the multi-ethnic workplace, the cross-cultural marketplace, social contact learning, cultural statistics and creative \nindustries.", + "title": "Cultural Diplomacy and Intelligence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5410", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces key computational theories and applications in analysing and mediating culture. Students will gain both theoretical and practical knowledge of how cultural objects can be quantitatively analysed and how their meanings are dynamically shaped by applications of new media and technologies. The theme of analytics and informatics are explored throughout the module, and interrogated through four major blocks representing the key stages of culture: cultural production, experience and encounters, dissemination and interpretation in Asia. Students will be encouraged to think critically about the intersections of technology, stakeholders and culture. Prior computational knowledge is not required for this module.", + "title": "Cultural Analytics and Informatics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5411", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 13 + ], + "venue": "CLB-04-01H", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Mentorship is a key experiential learning platform for students who have more than two years of industry experience. This provides a formal opportunity for students to join organisations for 12 weeks plus 1 week of orientation (over special terms) to take on a mentored position with a senior leader on aspects of cultural entrepreneurship in the arts, culture and heritage (ACH). These leaders and organisations are vetted and approved by the Department, and the students\u2019 positions must have relevance to the issues undertaken that involve the application of subject knowledge and theories in cultural entrepreneurship. The Committee would like to seek clarification on the differences between the Mentorship module and the Internship module.\n\nURL aboutblank", + "title": "Mentorship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "ACE5412", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics in Arts and Cultural Entrepreneurship introduces special, advanced or rotating topics currently not included in the regular curriculum, or builds on the basic modules in the curriculum. Topics in this module offer instruction on various specialisations related to creative entrepreneurship, more advanced instruction on the topics/issues covered in the current modules, and/or research, discussion and analysis of issues of current interest related to the cultural and creative industries. The content of the module will therefore vary according to the specialised interests of the lecturer teaching the module.", + "title": "Topics in Arts and Cultural Entrepreneurship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ACE5480", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to art history both as a field of academic knowledge concerned with works of art (including painting, sculpture and architecture) and as a discipline with a distinctive methodology, vocabulary and theoretical foundations. The course surveys the main trends in the artistic traditions of Europe and Asia paying special attention to cross-cultural comparative analysis (i.e. how the human body and landscape are represented in different artistic traditions).", + "title": "Introduction to Art History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Friday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Monday", + "lessonType": "Lecture", + "size": 77, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory-level course, providing students a historical survey of three thousand years of Chinese visual arts with emphasis on painting. Through the course, students will gain a basic understanding of the historical transformation of Chinese art from the classical towards the modern and contemporary, as well as key aesthetic and philosophical conceptions underpinning the production of visual arts in the Chinese culture. In addition, the course provides some comparative studies of Chinese and Western visual arts. There will also be a component introducing the special linkages between the history of Singapore art and the Chinese context.", + "title": "Chinese Painting: Styles and Masters", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is modern art? How has it been understood and interpreted by artists, critics and art historians? What is the relationship between modern art, modernism and modernity? Is the history of modern art \u201cmultiple\u201d? The course will explore these questions through a chronological introduction to modern art, from the 19th century to the 1950s. Students will be encouraged to critically-analyse visual and textual primary-source material to develop a nuanced understanding of different developments in modern art. Case studies on modern art in Asia will also be included to encourage students to appreciate the multiplicity and global diffusion of modern art.", + "title": "Modern Art: A Critical Introduction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys art and architectural genres produced in British colonies, chiefly India, Singapore and Malaya through diverse visual forms such as painting, calendar art, photography, craft objects and buildings. Visual analysis is accompanied by an investigation into the shifts in materials, technologies and contexts of display and consumption, which often expressed British control, native resistance and a desire for self-rule. The module also considers the role of British institutions, namely, art schools, archaeological surveys, museums and exhibitions in grooming art production and tastes; native projects and responses are unravelled simultaneously to understand East-West interactions.", + "title": "Empire and Art: India, Singapore, Malaya", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines historically significant sculptures, architecture and paintings that are produced in Southeast Asia and span the timeframe of about one thousand years. It surveys artistic fields shaped by Hindu-Buddhist ideals. These testify to the creative, technological capacities of designers and communities of artists, as well as the ambitions and resources of patrons. They also reveal links within the region, and connections with India. The course cultivates methods for analysing the composition and formation of images, designs and built forms, gaining understanding of their symbolic import, and fostering insights into complex relationships between religious ideals and their artistic representations.", + "title": "Art in Southeast Asia, 4th-14th centuries CE", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH2204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to key movements and tendencies in late modern and contemporary art, primarily in Europe and North America, but also extending to related developments around the world. Through a close analysis of significant artists, exhibitions and texts, the course will encourage a historical understanding of the emergence of Western contemporary art and its role within the globalised art world of today. The influences of social, political and cultural forces will also be discussed, providing a wider framework for students to interpret artworks and to examine their context and reception.", + "title": "A History of Contemporary Art", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to equip students with curatorial methodologies and theories drawn from the history of exhibitions in Southeast Asia. Students will be introduced to postcolonial theories, approaches and methodologies with an inter-disciplinary focus that can be used to frame the art histories of the region. This module will provide opportunities for students to gain hands-on experience of curatorial practices through workshops with curators, conservators, educators and public programmers by drawing resources from the NUS Museum and the National Gallery Singapore.", + "title": "Time Traveller: The Curatorial in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH3202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the development of a wide range of private and institutional collecting practices in Europe and Asia, from the late medieval period to the present day. It draws on diverse theoretical approaches to collection studies. The course seeks to understand the contributions of collectors to art-production, display and taste-making and value-arbitration, and, consequently to the overall contours of art history and its canons. It adopts an inter-disciplinary approach to demonstrate how collectors have actively shaped other histories of modernities, nationalisms and cosmopolitanisms.", + "title": "Collecting Art in Europe and Asia (1500 CE \u2013 2000 CE)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This coursee examines the history of art history as a discipline looking at its origins, evolution and shifts across time. It seeks to understand how genres in art history are sequenced, compared and analysed in the European tradition. The course also examines how art history evolves differently in Asian texts and Asian contemporary writing. These differences in the methods and approaches to art history provide diverse frameworks to appreciate art-production and consumption globally.", + "title": "Methods and Approaches to Art History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH3204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is \u201cmodern art\u201d in \u201cSoutheast Asia\u201d? When and how did it emerge? In what ways have modern art and its histories been discussed, as distinct yet also connected to the modern art of other regions? This module explores these questions by guiding students through key historical approaches to the relationship between art and modernity in Southeast Asia, since the 19th century. The module\u2019s thematic structure pairs historical and methodological concepts with diverse case studies from visual art and other cultural forms. This equips students with the skills for critically reflexive considerations of relationships between art, modernity, and Southeast Asia.", + "title": "Southeast Asian Art and Modernity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH3205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 31, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How do we discuss \u201cIslamic art\u201d history within the context of modern and contemporary Southeast Asia? How do we recontextualize the category of \u201cIslamic art\u201d through looking closely at objects and exhibitions from Southeast Asia? Through art historical methods of writing about objects and images, this module discusses how modern and contemporary artworks reveal the complex negotiations between Islam and modernity and the subtle conversations that traverse cultural practices and ethnic identifications. The module will be structured through artworks that also bear traces of Islamic trade and ritual objects as well as artists\u2019 engagement with contemporary issues.", + "title": "Islam and Modern and Contemporary Art in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH3206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Internships take place within the National Gallery of Singapore and relevant museums in Singapore and are vetted and approved by the Minor in Art History\u2019s convenor. All internships will focus on an aspect/aspects of art history to be decided by the student in consultation with his/her academic advisor and the museum of choice. The internship must involve the application of subject knowledge and theory in reflection to the work done.", + "title": "Art History Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AH3550", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module considers evidence-based techniques for\nlearning derived from the fundamental science and\nunderstanding of how we learn. It reveals steps on the\npath to more effective learning by using a set of simple,\npragmatic rules: rules to build motivation and to speed up\nthe learning process over both the short and long term.\nLearners will appreciate learning rules and the scientific\nevidence behind them. They will also understand why,\ndespite sometimes being counterintuitive, they work so\nwell. This understanding will lead to individualised\napplication of techniques to improve learning.", + "title": "Learning to Learn Better", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "ALS1010", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 360, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 360, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 480, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 480, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module considers evidence-based techniques for\nlearning derived from the fundamental science and\nunderstanding of how we learn. It reveals steps on the\npath to more effective learning by using a set of simple,\npragmatic rules: rules to build motivation and to speed up\nthe learning process over both the short and long term.\nLearners will appreciate learning rules and the scientific\nevidence behind them. They will also understand why,\ndespite sometimes being counterintuitive, they work so\nwell. This understanding will lead to individualised\napplication of techniques to improve learning.", + "title": "Learning to Learn Better", + "faculty": "NUS", + "gradingBasisDescription": "Audit", + "moduleCredit": "2", + "moduleCode": "ALS1010CP", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Have you ever regretted a choice you made?\n\nEvery day, we make many decisions. However, are you aware that we all possess cognitive biases that influence our choices without us knowing? These natural biases can lead us into making seemingly prudent decisions that are illogical. \n \nIn this module, we will explore some of the biases that we are naturally programmed. You will understand why we don\u2019t even realize that we behave irrationally and make choices that are unintended. \n \nWith a better knowledge of these inherent natural biases, we can think more clearly and make better decisions in our lives.", + "title": "Learning to Choose Better", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "ALS1020", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "See the world afresh through the lens of anthropology and its distinctive ways of studying, thinking and understanding the social and cultural underpinnings of human behaviour, institutions, and practices. Once described as a science of man, anthropology confronts the facts of human diversity, inviting you to delve deep into questions of what it means to be human. How do language, culture and the\nenvironment shape us? How do we understand people and societies vastly different from our own? Anthropological thinking offers a grounded, human-centred approach to contemporary problems in fields like education, health, media, urban planning, organizations, policy, and businesses.", + "title": "Anthropology & Human Condition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover foundational anthropological and ethnographic methods. These processes include fieldwork, documentation, and the presentation and production of the eventual text that typically carry description, representation and interpretive analysis. How is anthropological fieldwork conducted in the study of different cultures? How do anthropologists detail social relations and human behaviour in the field? What are the methods and modes of evidence which anthropologists deploy in the presentation of their arguments and data? Students will therefore be imparted with key methodological skills and techniques of how anthropologists practice their craft when carrying out research.", + "title": "Research Methods in Anthropology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0601", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We are living in a world marked by cultural diversity. We encounter different cultural norms and practices every day, which may enable us to become more reflexive, curious, and open\u2010minded or, in some cases, lead us to become defensive. This course provides an analytical lens to learn how cultures affect social behaviour and how different cultures interact with each other in the contemporary world. We shall discuss issues related to \"ethnocentrism\", \"cultural relativism\", \u201chybrid cultures\u201d, \u201csub cultures\u201d and \"multiculturalism\". This course will furthermore discuss how cultures are socially constructed. In this sphere, the module will explore such topics as travel and encounters, the construction of personal and collective identities, ethnic minorities and the state, gender relations and family systems, workspaces and hierarchy, and globalization.", + "title": "Culture and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides, using an anthropological perspective, a general introduction to select peoples and cultures in Southeast Asia. The course examines, among others, issues of economic adaptation to the varied physical environments of SEA; the interaction between indigenous cultures and those cultures from outside the geographical context (which may include Chinese, Indian, European and other cultures); the organization of states; and the interrelationship between religious and political systems.", + "title": "Peoples and Cultures of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Did nature make humans, or have humans made nature? Or, are both continuously co-evolving, each changing in relation to the other? This module explores the socio-political dynamics, practices and institutions through which societies endeavour to understand and appropriate the natural world. We examine how different societies engage with nature, and how these engagements have in turn shaped social thought. In addition to exploring the way humans across time and space have constructed their understandings and relationships with nature, topics also include urban ecology and infrastructure, biotechnology, bio-capitalism, international energy politics, climate change, \u2018natural\u2019 disasters, global environmental inequality, conservation and environmentalism.", + "title": "Humans and Natures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2741", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2742", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2743", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2744", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2745", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2746", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2747", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2748", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2749", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2841", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN2842", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to some of the major social theories and debates that inspire and inform anthropological analysis. We investigate a range of topics such as agency, structure, subjectivity, history, social change, power, culture, and the politics of representation. We will approach each theoretical perspective or proposition on three levels: (1) in terms of its analytical or explanatory power for understanding human behavior and the social world; (2) in the context of the social and historical circumstances in which they were produced; and (3) as contributions to ongoing dialogues and debate.", + "title": "Anthropology and Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we examine major theories and approaches in the anthropological study of development. Key questions we investigate include: what are development and underdevelopment? What is the 'third world', and how was it made? What are the causes of failure and success in development programs? In doing so, we will look at the history of development theory, with special attention to the political context and content of each model, alongside anthropological models of culture change. We aim to understand the strengths and weaknesses of an ethnographic focus on development for purposes of policy-making, analysis and theory.", + "title": "Critiquing Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN3208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores a range of intersecting socio\u00adtechnological domains in both historical and contemporary settings. What is the relationship between technology and work? How do technological advances intersect with work infrastructures? What is the impact of emergent technologies upon our identities, social relations and material conditions? By harnessing anthropology as a social scientific discipline, we query, through ethnographic analyses of science and technology, the sociocultural value and import of technology upon social actors in their everyday life experiences. Core themes and discourses revolving around such areas as communications, biotechnology, genetics, technoscience and big data will be addressed.", + "title": "Anthropology of Technology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN3209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The internship provides students with an opportunity to apply anthropological knowledge to the workplace. In particular, students learn about the challenges of workplace situations, and reflect upon how practising anthropology may provide clarity to problems encountered. Internships must take place in organizations or companies, be relevant to anthropology, consist at least 120 hours for SC3550 (or 240 hours for ISC3550), and be approved by the Department to be considered for credit. This module is not compulsory and will be credited as a Major Elective or a combination of Major Elective and Unrestricted Elective.", + "title": "Anthropology Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN3550", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN3841", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN3842", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module critically engages theorising about material culture. Objects have biographies and histories and carry different resonances as they are used by actors who develop complicated relationships with these apparently inanimate, passive and inert entities. Students of material culture have spoken of the \"material turn\" and have nudged towards rethinking how \"materiality\" itself is to be understood and theorised. This module makes a call for unpacking materiality analytically and thus transcending the \"material\" /\"non material\" binary. Important work on \"agency of materiality\" is foregrounded here, presenting an alternative narrative that approaches things as animated, spirited and energised.", + "title": "Making Space for Things", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "AN4204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines key themes and issues associated with death and dying from the historical through the contemporary periods. Cultural practices surrounding death have embedded information to offer not only about the deceased, but also shift in ideologies of living populations. This module explores the social and cultural nature of life and death and the variety of debates and assumptions surrounding the biological phenomenon. This course will present a wide range of topics relating to the beliefs and treatment of the dead, across cultures and through time. Examples include mortuary rituals, funerary behaviour and the cultural construction of death.", + "title": "Perspectives on Cultures of Death", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "AN4205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the changing nature of the political economy of music in shaping opportunities and challenges for individuals and families in the age of neoliberalism and cultural globalization. Developments of music genres are linked to selfidentities, labour practices, senses of time and place, gender dynamics, ethnic attitudes, state policies, socio-economic structures, religious beliefs, political ideologies, national aspirations, and technological changes. These issues will be explored via the education, equipment and employment aspects of the music industry vis-a-vis the policymaking, production, performance processes of vocals/choral music; blues and jazz; popular music; and classical music.", + "title": "The Political Economy of Music", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "AN4206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the three cultures of belonging that have driven the transformation of contemporary human societies and underpinned our primary identities nation, empire, world. We will interrogate the relationship between anthropology and empire, 1870-1950, in the production of race, religion, gender and sexuality in the colonies. We will examine the extent anthropological knowledge of these subjectivities became practical problems for the transition of colonies into nations. We will then move to the ethnography of the nation to understand the contradictions at the heart of its making in postcolony and the tendency for it to bleed into the world.", + "title": "Nation, Empire, World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "AN4207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a critical engagement with both anthropological and multi-angle analyses of tourism, culture and people. It examines diverse dimensions of tourism and its impact on host societies and local cultures. In particular, it probes interactions between tourists and local populations as well as locals' identity reformation, cultural adaptability and strategies with respect to the transformative power of tourism, among multiple local and extra-local socio-political forces at work. Major topics to be covered include tourism imaginaries, tourism display, tourism hospitality, heritage and museums, tourism and nature and tourism, modernity and risk.", + "title": "Tourism and Culture: A Global Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "AN4208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In recent years, businesses have increasingly turned to anthropology to understand their organizational processes and cultures, as well as to understand consumer life-worlds and develop user-centred products. This module introduces this emerging new field of practical anthropology by discussing the contribution of anthropological theory to business practices and the adaptation of ethnographic research to corporate settings. Drawing on case studies of anthropological applications to businesses from tech companies to social enterprises, the module equips students with conceptual tools and holistic ethnographic methods to address issues such work processes, diversity, globalization, product design, user behaviour, and corporate social responsibility.", + "title": "Business Anthropology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "AN4209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module requires students to conduct an independent research project on an approved topic under the supervision of an academic staff. The research project, which usually includes some fieldwork, will be submitted as an Honours Thesis. The maximum length of the thesis is 12,000 words.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "AN4401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to identify an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and agreed between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "AN4660", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN4841", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Department Exchange Module", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AN4842", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a foundation module that serves to introduce basic communication techniques, the fundamental principles of design and design methods. Topics ? The module will deal with the subject of human perception in the reading and understanding of design. Issues related to space, form, order will serve as essential design generators. The module will also provide the requisite grounding in visual language, design thinking and graphic communication. Graphic communication will include basic drawing skills and the use of common rendering media for two and three-dimensional representation.", + "title": "Design I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "9", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build upon the module AR1101 by focusing on the development of basic design skills as an interface for activities between people, furniture, fittings and the use of space within the built environment. Topics - The module will focus on issues related to the measure of man to serve as essential design generators. The module will also deal with the use of materials and methods for making and constructing. The module will also deal with context. Graphic communication and the use of technical drawings to illustrate design will form part of this module. The module will expand on the development of media in graphic communication.", + "title": "Design 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR1102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 160, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 160, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Paramount to the creation of the spatial environment is sensitizing of sensorial sensitivity to the everyday life. Essential to this is the capability to express the sensitivity visually and verbally to ultimately bring into being the sensitized phenomena. The communication, the transmission process is a vital objective of this module. The ways and means for the above to happen will be explored in the module.", + "title": "Spatial - Visual Communication", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR1121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ARCHITECTURAL TECHNOLOGY I - BASIC PRINCIPLES", + "title": "Architectural Tech. 1 - Basic Principles", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AR1324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ARCHITECTURAL TECHNOLOGY II - ENCLOSURE TECHNIQUES", + "title": "Arch. Tech. Ii - Enclosure Techniques", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AR1325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To heighten students' awareness of the concepts and components of building structure and technology. Major topics include the roles of architect in the construction industry, basic principles of structural mechanics, primary and secondary building systems including building foundation, floor and roof framing systems, building components such as walls, stairs, doors and windows, and the fundamentals of timber and masonry constructions.", + "title": "Architectural Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR1326", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module for architecture students introduces the students to structural principles in architectural design. It covers the effects and properties of structural forces, structural systems and their interfaces with building functions in served and servant spaces. It also examines issues of construction and assemblage, in relation to special building types and building systems", + "title": "Structural Principles", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR1327", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines both the constructional and environmental design strategies that shape the architectural envelope in the tropical climate. It discusses the inter-relationship between passive environmental design performances and construction with its choice of materials and methods. It also emphasizes the interdependence of design and technique/technology.", + "title": "The Tropical Envelope", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR1328", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines the relationships of climate and ecology with architecture. It introduces climate responsive passive strategies and ecological considerations in architectural design.\n\nIt discusses the impact of passive environmental design performance and synergy with ecological system at achieving sustainable or regenerative objectives.\n\nThe module uses the tropical climate and its ecology as a framework to establish broad design principles to address climatic and ecological issues in our built environment", + "title": "Climate, Ecology & Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR1329", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ER1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ER1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the principles of environmental responsive architecture, focusing on passive mode and other low energy design strategies for architecture in the various climates. Topics included address the impact of sun, daylight, wind, rain on architectural design. The module enables students to formulate holistic approaches in generating design solutions.", + "title": "Climate Responsive Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR1721", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ARCHITECTURAL ENVIRONMENT 1 - NATURE AND PLACE", + "title": "Architectural Env. 1 - Nature and Place", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AR1722", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ARCHITECTURAL ENVIRONMENT II - BUILDING AND LANDSCAPE", + "title": "Arch. Env. Ii - Building and Landscape", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AR1723", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces basic concepts in landscape design through a series of lectures and site visits. Urban landscape architecture and tropical climatic considerations are emphasised.", + "title": "Introduction To Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR1724", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will emphasize design in response to environment and site. It will enable students to learn to design small-scale buildings within the context of hot humid tropical environments. Topics - The module will deal with issues related to climate, the tropical environment and sustainability as generators of design. It will also focus on design with an understanding of spatial and functional relationships of spaces such as small and big spaces, private and public spaces.", + "title": "Design 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 165, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "NAK-AUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 165, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will emphasize the integrative nature of architectural design. Students are to focus on the integration of architectural design with materials, structure and construction. Topics ? The module will deal with appropriate materials, structure and construction for the architectural design intent through the design of a small-scale building. Responses to program, climate and site context of urban fringe sites are also to be considered in the design.", + "title": "Design 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR2102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "8", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE3-LT423", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 160, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces various architectural and urban design concepts in history which relate and connect Singapore with the region and the world at large. Through understanding the different realisations of these concepts\nin different countries including Singapore, we may understand those in Singapore on a comparative scale and not just in isolation.", + "title": "Architecture and Community: from Singapore to the World", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve the study of technology integration with design project/s under AR2102 at year two level.", + "title": "Technology Integration I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2151", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to architecture and the built environment in Southeast Asia: their variety, the material, historical and cultural contexts of their production, and the theories and debates.\n\nUnit I explores the pre-modern, pre-colonial, and colonial architectural legacies of Southeast Asia and introduces the terms and categories that are used to discuss them.\n\nUnit II looks at the theories, debates, and arguments on contextual response in modern and contemporary architecture in Southeast Asia since the early 20th century (coinciding with late colonial rule) through the post-independence period to contemporary times.", + "title": "History and Theory of Southeast Asia Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This core introductory module looks at the production and development of architectural ideas in the Western European and Northern American historical context, from the Antiquities, the pre-modern to early modern, and the modern to postmodern/contemporary periods. The rich and complex historical trajectory underpins the constructedness of architectural knowledge. While by no means exhaustive, the specific thematic focus adopted for each lecture allows students to grasp the connections between epochal periods of architectural innovations and equally, their counter-movements.", + "title": "History & Theory Of Western Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the fundamental principles of urban design and planning. It will enable students to understand and appreciate the issues and process of urban design & planning. The module introduces students to the concepts of urban form, urban function, urban change and how urban spaces are designed through different urban design models. The module will include the study of the western urban development in general and of Singapore. It will examine the driving force behind urban transformation. Important urban design models will be introduced, including the traditional city, medieval city, garden city, modern city and ecological city.", + "title": "Theory Of Urban Design & Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides and introduction to some of the basic concepts in and approaches to architecture as a practice and as an academic discipline. It also highlights the nature and historical development of architecture especially with respect to \"vocabulary\" and \"ideas\", and introduces their use in the analysis of the works of architecture. Topics ? The module will (1) imbue the knowledge of architecture as a special category of man-made objects, replete with ideas, social contexts and intellectual processes; (2) introduce architecture through some of its basic concepts such as \"periods\", \"styles\", \"language\", etc.; (3) encourage an active and a critical approach to analyzing the works of architecture; (4) show the relevance of architecture in contemporary and immediate real-life problem sets like sustainability, subjectivity, identity, meanings, etc.", + "title": "Ideas and Approaches in Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to ways of looking at and discussing works of art. The focus is chiefly on painting and sculpture; the emphasis is on analyzing the composition or design of art works and in constructing meanings for them. The study of this module enables students to acquire critical skills for interpreting and connecting with works of art. The module encourages students to read art works in relation to a range of interests, intentions and issues; the aim here is to suggest or propose contexts or environments in which art works are made and received. There are three sections. In the first, three (3) topics from Asian art traditions are discussed. The are 1. Indian sculpture 2. Chinese landscape painting 3. Islamic calligraphy In the second section, ideas and movements from the Renaissance in Italy to the end of the 20th century in Europe, are surveyed.", + "title": "Reading Visual Images", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2225", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To develop a basic understanding of the major principles of contemporary architecture and urbanism from mid-nineteen century to the present; To study the making of architectural and urban language as they have been evolved and developed within specific social, political, cultural, technological and economic contexts; and to develop critical perspectives regarding contemporary architectural practice, the design process, and perceptions of the built environment. Major topics to be covered Arts and Crafts movements, Art Nouveau, Chicago School, modernity, the avant-garde, international style, High tech, Populism, regionalism, critical regionalism, post-modernism, deconstructivism?etc.", + "title": "History & Theory Of Modern Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the first part of a two-part module introducing students to the history and theory of architecture and urban design. It is shaped around themes grouped by environmental features to emphasize the ways that societies have built in response to the landscapes, resources, and tools available to them. Covering almost two millennia of global architectural and urban history, the module begins in approximately 500 BCE, ending in approximately 1400 CE. The material is presented in such a way as to encourage comparative cross-readings of architectural history between geographies, societies, climates, cultures, religions, and socio-political registers.", + "title": "History & Theory of Architecture I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "11", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT425", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second part to a two-part module introducing students to an Asia-centred transnational history and theory of architecture and urbanism. It is shaped around weekly themes to emphasize the ways that societies interacted with environments, resources, cultures and technologies to co-produce the built environment across different geographies. This module begins in approximately 1400 CE, on the verge of several seismic shifts in global history that profoundly influenced the planetary (built) environment. The module traces these shifts across six centuries to see how imperialism, industrialisation, modernisation, and globalisation connected the world unevenly, leading to the present climate crisis.", + "title": "History & Theory of Architecture II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Architectural Technology Iii", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AR2324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ARCHITECTURAL TECHNOLOGY IV - CONSTRUCTION SYSTEMS", + "title": "Arch. Tech. Iv - Construction Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AR2325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objectives are firstly to reinforce students' knowledge on reinforced concrete (RC) and steel construction technology, including framed, in situ, precast and composite methods and secondly, to develop the students' understanding of how considerations of construction affect architectural design and the process of construction, with special emphasis on the integration of primary and secondary elements for low rise buildings. This module aims to lead to Appreciation of the importance and value of the role of technology in architectural design; Understanding of principles of assembly, detailing, and the interfacing of various building components; Integration of technology into their studio design projects", + "title": "Architectural Construction II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2326", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architectural form is a result of its construction, structure and materiality. Architecture emerges in a symbiosis of historical understanding of structural theory, construction, engineering and automation.\nThe Module focuses on materials and construction techniques within different environmental and climatic conditions. The fundamentals, rules of systems and principles in Construction Architecture explain constructed form. Using additive manufacturing new possibilities in prefabrication and modular elements will be explored. Lectures on Structural and Design Logic accompany seminar assignments and cover in greater depth, important aspects of Architectural Construction and Systems of Prefabrication, whereby 3D printing is used to generate new structural typologies, applicable and necessary for the integration into the Architectural Design Studio.", + "title": "Architectural Tectonics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2327", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the basic principles of construction in architecture by examining the physical properties of materials and its relationship with fabrication techniques & technology. Building components are presented as integrated systems. Tectonics is discussed as an expressive quality of architecture & structure, achieved by materials, construction and integration of building components. The module also addresses sustainability by considering the choice of materials, construction methods or strategies, waste management and life cycle thinking.", + "title": "Architectural Construction & Tectonics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2328", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objectives: This module will introduce how digital media can be used to explore design possibilities. The module will question how these techniques can shape the design process and change the language of design.\n\n\n\nTopics: The module will be broken down into five parts: \n\n\u2022 tools will give a broad overview of the different types of tools and their role in design; \n\n\u2022 modelling will focus on the digital representation and manipulation of 3D form, \n\n\u2022 mapping will focus on mapping between 2D and 3D representations; \n\n\u2022 visualizing will focus on the use of image generation techniques to evaluate designs; and \n\n\u2022 prototyping will focus on the use of prototyping technology to explore issues of constructability.", + "title": "Digital Design Media", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2511", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In architectural practice, digital design has grown in importance and is fundamentally changing the nature of the design process itself. This module will focus on the theoretical foundations of digital modelling and performance simulation. It will enable students to develop a critical understanding of relevant digital tools and techniques, and the role that they can play in the design process. The theoretical understanding will be enhanced by hands-on experimentation with a subset of tools and techniques.", + "title": "Digital Modelling and Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2521", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In architectural practice, computation has grown in importance and is fundamentally changing the nature of the design process itself. Performance Based Design is a computational design approach in which design options\nare iteratively explored based on feedback from performance simulations. This module will introduce the overall design approach and will teach both theoretical and practical aspects of building performance simulation. Simulations will include shadowcasting, daylighting, and solar radiation.", + "title": "Computational Thinking: Performance Based Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AR2522", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In architectural practice, computation has grown in importance and is fundamentally changing the nature of the design process itself. Building Information Modelling is a computational design approach in which 2D drawings and other types of analyses can be automatically generated from information models. This module will introduce the overall design approach and will teach both theoretical and practical aspects of creating and using\nBuilding Information Models.", + "title": "Computational Thinking: Building Information Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AR2523", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Spatial Computational Thinking is increasingly being\nrecognised as a fundamental method for various spatial\ndisciplines. It involves idea formulation, algorithm\ndevelopment, solution exploration, with a focus on the\nmanipulation of geometric and semantic datasets.\nStudents will use parametric modelling tools for generating\nand analysing building elements at varying scales. Such\ntools use visual programming interfaces to allow complex\nalgorithms to be developed and tested. Students will learn\nhow to structure their ideas as algorithmic procedures that\nintegrate data-structures, functions, and control flow.\nThrough this process, students will also become familiar\nwith higher-level computational concepts, such as\ndecomposition, encapsulation and abstraction.", + "title": "Spatial Computational Thinking", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2524", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Friday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Architectural Environment Iii", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AR2721", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a discussion of environmental issues as they apply to design. A broad range of design fields are covered ? architecture, industrial design, urban design and landscaping. Drawing from exemplary design cases worldwide, relevance and attention is drawn to the local context ? both Singaporean and Asian.", + "title": "Design And The Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2722", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with topics in ecological and sustainable architecture, focusing on environmental issues as they apply to design. Basic technical knowledge on energy, water, materials, etc are covered in the context of how buildings operate. The module enables students to operationalize the principles when generating design solutions.", + "title": "Strategies for Sustainable Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2723", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the principles and knowledge of building services systems and energy efficiency, focusing on the active and composite mode of environmentally responsive design. Topics included building services systems, total building performance, fire management, architectural lighting, architectural acoustics etc and the integration of these principles in the design strategies. The module aims to inculcate deeper understanding of how architectural and engineering elements operate in synergy.", + "title": "Designing with Environmental Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR2724", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will emphasize the integrative nature of architectural design. It will enable students to understand how technology should be applied to building design and construction. Topics: The module will focus on projects that require consideration for realism imposed by functional, technical and statutory constraints. Buildings will be of medium complexity set within less intensively developed urban sites. Design projects will demand a holistic awareness of the issues related to the environment, climate, context, technology and building regulations", + "title": "Design 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "14", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Wednesday", + "lessonType": "Design Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_D", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops basic skills in landscape design and marks the \u2018first-time experience\u2019 of architecture students in the field of landscape architectural studio work. It leads the students into urban and suburban contexts, where landscape \u2018meets\u2019 city and city \u2018eats\u2019 landscape.", + "title": "Design 5 (Landscape Architecture Emphasis)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR3101A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the program is to develop a level of competence in design skills and thinking. It involves the integration of technology with the natural environment, and urban context. Students address a generic brief by building upon it with emphasis in Urban, Environment, and/or Technological issues in a given site to demonstrate the acquisition of a level of competence in research, design thinking, operational skills and communication.", + "title": "Design 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR3102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Wednesday", + "lessonType": "Design Lecture", + "size": 160, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "SDE3-LT423", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops basic skills in landscape design and marks the \u2018second-time experience\u2019 of architecture students in the field of landscape architectural studio work. It leads the students into central urban contexts, where architecture \u2018meets\u2019 landscape architecture and built city \u2018defines\u2019 public open space.", + "title": "Design 6 (Landscape Architecture Emphasis)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR3102A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Design Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design - ISM", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3151", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve the study of technology integration with design project/s under AR3102 at year three level.", + "title": "Technology Integration II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3152", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics In History & Theory Of Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the foundational and holistic knowledge and understanding of urbanism\u2015the study of relationships between people in urban areas with the built environment. It provides a comprehensive inquiry\nof urban history, key theories, topics, design principles and practices related to urban design, urban planning and landscape design. The emphasis is on developing critical and analytical skills of reading, documenting, analysing and synthesising complex information regarding contemporary urban issues and conditions.", + "title": "Introduction to Urbanism", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Technology Integration", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AR3321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AR3322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module builds upon the knowledge attained from previous lessons in Building Structures and Architectural Construction and expands and extends this knowledge to a level where analysis and problem solving are achieved. Through exposure to the principle of various structural systems and selected buildings as case studies, students are expected to acquire as sophisticated or as broad an understanding of the interface between technological systems and how these appropriate systems integrate with design and performance.", + "title": "Architectural Construction 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module builds upon the knowledge attained in PF2102 Structural Systems and expands and extends this knowledge to a level where application and problem-solving can be achieved. The structural principle learning will be suitably augmented with this module providing knowledge on structure systems applicable to design of building structures.\n\n Through exposure to the principles of various structural systems students are expected to acquire as sophisticated or as broad an understanding of the interface between structural systems and how these appropriate systems integrate with design and performance. \n\n \n\nMajor topics include structural systems for high-rise buildings and large span structures, prestressed concrete and prefabrication systems for building construction.", + "title": "Architectural Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The internship programme aims to provide opportunities\nfor third year undergraduates to work in architectural or\nallied firms or organisations with design centric focus to\ngain the exposure and experience and apply the\nknowledge learnt in school in the professional setting\nStudents are required to perform a structured and\nsupervised internship in a company/organization for a\nminimum of 8 weeks during Special Terms. Weekly\nlogbook as well as internship reports will be used a part\nof the evaluation of their internship experience.", + "title": "Architecture Internship Programme", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "AR3411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time undergraduate students who have completed at least 60MCs and plan to proceed on an approved internship of at least 10 weeks in duration in the vacation period. This module recognizes\nwork experiences in fields that could lead to viable career pathways that may be remotely and not directly to the student\u2019s major. It is accessible to students for academic credit even if they had previously completed internship stints for academic credit not exceeding 12MC, and if the new workscope is substantially differentiated from previously completed ones.", + "title": "Work Experience Internship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "AR3412", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "2040", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR6", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will gain knowledge of how buildings are designed and built in the context of architectural and professional practice and the framework of the construction industry within which it operates", + "title": "Introduction to Architectural Practice", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3421", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Conservation & Adaptive Re-Use", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3611", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cultural Heritage Studies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3612", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed as an introduction to Southeast Asian cosmopolitan urbanism, and is targeted at students with an interest in the region and who wish to get hands-on, in-depth and on-site direct learning experience, especially in cultural heritage conservation and management. \n\nThe course will challenge students to investigate the complexity, nuances and contradictions of cosmopolitan urban heritage, both in its tangible and intangible dimensions, through lectures, field work, synchronic/diachronic mapping, critical analysis, interactive presentation, and collection of found objects. An intensive 9-day lecture/workshop and fieldwork program is followed by a week of presentation and discussions of findings, as preparations for a public exhibition.", + "title": "Southeast Asian Cosmopolitan Urbanism", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3613", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is sustainable urbanism in Asia? How is it shaped by the diverse socio-cultural and\neconomic political configurations in Asia? This module will investigate the above questions\nby exploring the different paradigms of sustainable development and urbanism. This\nmodule will understand how different actors and organisations \u2013 from state agencies to\ncorporations, from non-governmental organisations to community organisations \u2013 construct and practice sustainable urbanism through first-hand experience from site visits and field investigations.\n\nThis module offers a situated interdisciplinary understanding of the complexity of sustainable urbanism in Asia. It is designed for students who are interested in both Asia and environmentalism.", + "title": "Sustainable Urbanism in Asia", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3614", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces fundamental building physics (thermal, lighting, acoustics), building materials, and systems to achieve environmental performance-targets and sustainability. Technology integration is emphasized via understanding how materials and systems are related, detailed, and assembled.\nStudents will learn quantitative means to evaluate environmental requirements, and develop familiarity with system strategies and construction details to integrate the various building systems (such as structure, mechanical and electric services, architecture exteriors and interiors). Additionally, codes of practice (such as fire safety) and considerations on sustainable environment will be addressed. The goal is to integrate those technologies in a symbiotic manner to achieve human well-being.", + "title": "Building Environmental System Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3721", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 105, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide students with an understanding of the concepts of environmental systems and their spatial requirements in an architectural context. The increasing need for building technologies integration within multidisciplinary projects in a modern construction environment will be addressed. The course first focuses on understanding how basic environmental systems (or building services systems, such as mechanical, electrical, plumbing and drainage) are related to the building program and broader built environments. Codes of practice, such as fire safety, will also be addressed. Furthermore, renewable energy and water system in architecture in the green building movement will be discussed.", + "title": "Sustainable Environmental System", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR3722", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and in Architecture, Architecture & Urban Heritage and Design Computing.", + "title": "Advanced Architectural Study 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR4001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is intended to evaluate the students\u2019 ability to carry out independent research under the supervision of a faculty member. Students will identify subject in the area of Architecture Theory/History, Architecture & Urban Heritage, Urban Studies and Design Computing.", + "title": "Advanced Architectural Study 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR4002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 0, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 0, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide the opportunity for students to demonstrate their understanding and ability in integrating technology with architecture. Topics - The module will demand more comprehensive response in developing an appropriate technological response to the particular demands of architecture, climate and context. Students have to demonstrate ability in the design development process and a degree of innovation in integrating technological ideas and components into the architectural project.", + "title": "Design 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR4101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "AR4101A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will study the issues and methods involved with the urban community and high-density housing. It will enable students to explore the forms and typologies of housing in high-dense cities and the methods that may be pursued in the design of these building types. Topics - The module examines the design issues connected with the urban context of Asian cities and the development of housing in Singapore, including public housing. It will include site investigation and analysis, urban design considerations and the design of appropriate housing types in response to the urban and social context. New concepts of dwelling in the city will be explored, and students have to demonstrate their ability to integrate urban, social and environmental factors into their housing proposals. Emphasis is also placed on the ability to resolve the relationship of public, community and private spaces in these developments.", + "title": "Design 8", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR4102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The studio aims to provide the students with an opportunity to learn design detailing, technological development and resolution of architectural schemes up to a stage where the design information in the project submission may be understood as being equivalent to pre-tender drawings or drawings for construction. The scope of learning comprises of i) Understanding the conceptual intentions of design scheme. ii) Translating aesthetic intention into technological design issues. iii) Identifying separate technical design activities, eg lighting iv) Communicating resolved design solutions as technical specification, architectural/construction drawing.", + "title": "Architectural & Technology Design 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR4103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Architectural & Technology Design 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "AR4103A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows the students to employ digital design processes eg. Revit, CFD to simulate building performance impact on building form and configuration as an interactive design process in the development and study of optimal solutions.", + "title": "Architectural & Technology Design 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR4104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Design Futures are intense special design studio workshops that examine some of (but not limited to) the following topics in line with the four Design sections in the Department\u2019s design curriculum:\n\na) Future of Learning Spaces\nb) Future of Work Spaces\nc) Future of Public Spaces\nd) Future of Residential Environments\n\nThe primary aim of the module is to provide opportunity for the students to explore in detail, under the careful guidance of a staff's issues, concepts and preliminary proposals connected to one of the themes above.", + "title": "Design Futures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The B.A. Arch Research Report is a culminating academic exercise in the final year of B.A. Arch study. It is intended to evaluate the students\u2019 ability to carry out independent research under the supervision of a faculty member. Students will identify subject in the area of architecture theory/ history or Urban Design/ study.\n\n\n\nThe report will be forged and realized under the History, Theory and Criticism or Urban Studies Research Teaching Groups.", + "title": "Research Report", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR4142", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers topics in Architecture and Urban History with special focus on Asia, from ancient to classical and modern periods. It is aimed to give students in-depth understanding the development of thoughts and manifestations into architectural and urban forms for a specific time and place in Asia.", + "title": "Asian Architecture and Urban History", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Architecture and Urban Heritage", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Simulation & Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an understanding of the fundamentals of\nperformance assessment applied to sustainable design, which encompasses design intentions and performance targets. Quantitative and qualitative assessment methods and surrogate indicators are introduced and the module aims to enhance student\u2019s ability to adapt quantification to inform early design decisions for more sustainable design outcomes.", + "title": "Assessment of Sustainable Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The internship programme aims to provide opportunities for fourth year undergraduates to work in architectural or allied firms or organisations with design centric focus to gain the exposure and experience and apply the\nknowledge learnt in school in the professional setting. \n\nStudents are required to perform a structured and supervised internship in a company/organization for a minimum of 6 months. Weekly logbook as well as\ninternship reports will be used a part of the evaluation of their internship experience.", + "title": "Architecture Internship Programme", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "AR4421", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "New Public Space In The Asian Metropolis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4611", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public Waterfronts In The Asian Metropolis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4612", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture.", + "title": "Topics in History & Theory of Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4951", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to provide opportunities for students to work collaboratively on school-related publications and events, with the aim of developing critical and curatorial skills in the discourse of architecture. Students are expected to publish books and organise events of academic quality, as their deliverables.", + "title": "Topics In History And Theory Of Architecture - Curating Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4951G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbanism, Urban Design methodologies and practice.", + "title": "Topics in Urban Studies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4952", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4953", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecture in Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation.", + "title": "Topics in Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4954", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in\narchitectural design. Examples of topics that may be discussed are Universal Design, Participating Design, Elderly Housing, Post Occupancy Evaluation,\nCommunity Architecture, Architectural Practices, Places of Learning, Healthcare Design and Design Methodology.", + "title": "Topics in Architectural Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4955", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is one semester long. Its content is on narrative skill matched to video technique.", + "title": "Architectural Design- Video and Presentation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR4955G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Sep Elective 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Create a placeholder course (module) for general elective mapping to 8 MC (i.e. AR5003X)", + "title": "Placeholder Course (Module)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR5003X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines parameters that are set and/or claimed for undertaking research leading to the writing and presentation of a dissertation for a degree in a university. It begins by sketching a brief history of research and then proceeds to highlight changing definitions, premises and approaches. The principal interest and task of the instructor is to lead & develop discussions of definitions, premises and approaches. In dealing with them, aspects of methods, structure and language will gain focus.", + "title": "Research Methodology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5011", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1601", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Studio", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5058", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Thesis Independent Study", + "title": "Thesis Independent Study", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR5100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce relevant topics in total building performance, fire management, specification writing and buildability and their application to design management and development. \n\nThis module is conducted through two intensive one-week workshops. The first workshop starts right after submission of the Dissertation and deals with Total Building Performance and Fire Management relevant to the early design phase of the Final Design Project. The second workshop is conducted in the first week of S2 and deals with Specification Writing and Buildability, issues more relevant for the advanced stage of the Final Design Project.\n\nThrough this module, students will become aware of the individual requirements of the above topics and codes. Selected examples will be introduced and students learn how these topics can be applied and that their successful consideration does not compromise on the design.", + "title": "Special Topics in Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5121", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The dissertation offers the opportunity to conduct independent research and to demonstrate analytical and communication skills by investigating a topic of interest and of relevance to the discipline of architecture. A topic may be chosen from one of the following subject areas: Design Technologies; History Theory & Criticism; Urban Studies. The length of the dissertation shall be no more than 10,000 words.", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR5141", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Dissertation is intended to evaluate the students ability to carry out independent research in technical design issues and systems relevant to building and architectural design. The student is expected to identify a significant problem in any of the following areas: detailing for weathering performance, reduction in assembly and construction time and cost, detailing for energy efficiency, material limits and potentials in built application. The study will be based on precedent studies before proposing original solutions to identified problems related to constructional/ engineering performance issues. The dissertation is to include analytical and assembly drawings not exceeding 8000 words. Alternatively, the dissertation may involve technical experimentation (digitally or laboratory) based or involving fieldwork, to verify technical findings.", + "title": "Technical Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR5142", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Contemporary Theories", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT423", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides learning experiences on multi-disciplinary collaboration and problem-solving between architects and engineers to prepare students for contemporary architectural practice. It commences with case studies to understand overviews and foundations for interdisciplinary collaboration. A series of roundtables on advanced architectural technologies illustrates how innovative architecture could be emerged from multidisciplinary collaborations. Students are to participate design charrette to create innovative proposals for optimization, performance, and aesthetic goals, in collaboration with the lecturers and consultants who are architects and engineers.", + "title": "Advanced Architectural Integration", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5321", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT423", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module intends to provide students with a general understanding about the interrelationship between natural resources and architecture including building materials and energy sources. The need to shift from present fuel-based energy use and construction practices toward the application of renewable resources strategies is highlighted. Different renewable energy strategies as well as the use of renewable resources and sustainable design practices are going to be discussed both at single-house, building and city scales.", + "title": "Renewable Resources and Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with the knowledge and understanding to enter into architectural practice. It will enable students to understand the roles and responsibilities of the architect in professional practice. Major topics covered are the organisation of the construction industry, office and project management, statutory requirements, cost control and contract administration.", + "title": "Architectural Practice 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5421", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with the knowledge and understanding to enter into architectural practice. It will enable students to understand the legal roles and responsibilities of the architect, the branches of laws applicable to the construction industry, the Singapore Institute of Architects and Public Sector contracts. Major topics covered are the law of contracts, tort, property land law and copyright, duties of architects, the Singapore Institute of Architects and Public Sector form of contracts.", + "title": "Architectural Practice 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5422", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students fundamental knowledge and understanding of the architectural practice in Singapore. Lectures are structured under 3 categories\nnamely:\nA. Context of Architecture Practice \u2013 topics include state of construction industry, changing landscape in construction industry and emergent technologies, future trajectory\nB. Law & Architect \u2013 topics include ethics, professional duties and responsibilities, codes and practices, planning and building control agencies\nC. Contract & Architect \u2013 Legal system and forms of building contract", + "title": "Architectural Practice", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5423", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ER1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Monday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide a comprehensive and in-depth examination of the theories, methodologies and praxis of urban design, introducing ideas that are instrumental in establishing the foundations of urban design, examining\nrationales and strategies for creating vital and lively urban spaces, exploring key issues and myriad challenges facing urban design today and in future.\nSpecifically, viewing urban design from a place-making perspective, ranging from physical to social, tangible to intangible, global to local, the primary focus of this module are topics about urban form, density, diversity, identity, public space, community, sustainability etc.", + "title": "Urban Design Theory and Praxis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5601", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 125, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides research students with work attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5666", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminar", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "AR5770", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Design module builds on the foundational curriculum established in the first undergraduate three years. The module allow the faculty research clusters to integrate research knowledge with design investigations. It provides the students with an opportunity to select from a variety of studio topics; to choose the themes which are aligned with their own interest and intellectual drive.", + "title": "Options Design Research Studio 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR5801", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "21", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Design Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Design module builds on the foundational curriculum established in the first undergraduate three years. The module allow the faculty research clusters to integrate research knowledge with design investigations. It provides the students with an opportunity to select from a variety of studio topics; to choose the themes which are aligned with their own interest and intellectual drive.", + "title": "Options Design Research Studio 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR5802", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "2040", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT421", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The studio aims to provide the students with an opportunity to learn design detailing, technological development and resolution of architectural schemes up to a stage where the design information in the project submission may be understood as being equivalent to pre-tender drawings or drawings for construction. The scope of learning comprises of i) Understanding the conceptual intentions of design scheme. ii) Translating aesthetic intention into technological design issues. iii) Identifying separate technical design activities, eg lighting iv) Communicating resolved design solutions as technical specification, architectural/construction drawing.", + "title": "Architectural & Technology Design 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR5803", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows the students to employ digital design processes eg. Revit, CFD to simulate building performance impact on building form and configuration as an interactive design process in the development and study of optimal solutions.", + "title": "Architectural & Technology Design 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR5804", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "T1", + "startTime": "1700", + "endTime": "2359", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Design Lecture", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The design module xxx students to contribute to the thinking and design of architecture and the city by opening up new thread of inquiry and design processes in practice.\n\nThe studio pursues architectural design that reflects intensive exploration of issues and substantive thought processes in the material world. It introduces advanced ways of thinking, modes of inquiry, methods and processes for design validation and acquiring the advanced skills to translate thinking into ways of making.", + "title": "Advanced Architecture Studio", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AR5805", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "14", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module supports design thesis by critically exploring significant issues to architecture involving social, political, cultural, environmental, economic and technological consideration. \nKey activities include: \n(a) Research embodying the acquisition of knowledge through precedent studies and literature. (b) Critique and evaluation of acquired knowledge. (c) Problem Statement mapping the fundamental aspects of the issues. (d) Hypothesis delineated in terms of a small set of no more than 3 key issues that can be addressed through architectural intervention. (e) Programme Formulation. (f) Site Selection. (g) Preliminary Design Studies.", + "title": "Architectural Design Research Report", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "AR5806", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students are assigned a Thesis supervisor who will assist the student in identifying and developing the Thesis topic. Students spend the early part of the thesis researching the topic and identifying key issues and design agenda. Students will then proceed to formulate an architectural project to explore the Thesis. In the later stages of the studio, each student will develop a comprehensive architectural design solution in response to the issues and brief identified earlier. In this later stage of the Thesis project students are required to develop technological and material responses to the thesis issue(s) developed earlier. The thesis submission comprises of a report, drawings, and models.", + "title": "Architectural Design Thesis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "20", + "moduleCode": "AR5807", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "19", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Design Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "36", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "37", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "33", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "34", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "35", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT421", + "day": "Tuesday", + "lessonType": "Design Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "32", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "29", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "25", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "38", + "startTime": "0900", + "endTime": "2040", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "30", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "26", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "27", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "28", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "31", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The final Design Project for the M (Arch) with a specialization in Design Technology and Management is the culmination of the technical and design learning predicated on the instrumental value of technical design as a means of to a wider agenda of sustainable building, resource conservation and creating positive environmental impacts. Students are expected to demonstrate research in design technology as a basis for addressing emergent and perceived need in the aesthetic, cultural and social field. The use of design as a form of research applied to building infrastructure or the environment relevant to practical design issues in industry. Students are required to produce drawings and models illustrating technical exploration and resolution with digitally aided or lab based experimentation. Projects will be supervised by tutors of students choice assisted by a panel of technical specialists.", + "title": "Final Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "20", + "moduleCode": "AR5808", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Design Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "36", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "37", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "38", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "33", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "34", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "30", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "31", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "32", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "26", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "27", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "28", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "29", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "25", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "35", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture.", + "title": "Topics in History & Theory of Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5951", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture.", + "title": "Topics in History and Theory of Architecture 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5951A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture.", + "title": "Topics in History & Theory of Architecture 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5951B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture.", + "title": "Topics in History and Theory of Architecture 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5951C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture.", + "title": "Topics in History & Theory of Architecture 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5951D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture.", + "title": "Topics in History & Theory of Architecture 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5951E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture.", + "title": "Topics in History & Theory of Architecture 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5951F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5951G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 8", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5951H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture.", + "title": "Topics in History and Theory of Architecture 12", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5951L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice.", + "title": "Topics in Urbanism", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbanism, Urban Design methodologies and practice", + "title": "Topics in Urbanism 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbanism, Urban Design methodologies and practice", + "title": "Topics in Urbanism 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbanism, Urban Design methodologies and practice.", + "title": "Topics in Urbanism 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide a comprehensive understanding of the complexity and distinctive characters of emerging urbanism in Asia, through examination of emergent urban issues related to community & participation, conservation & regeneration, ageing & healthcare, built form, modelling & big data, and resilience & informality. These topics are offered from multiple perspectives and inter- and transdisciplinary approaches to question conventional norms and conceptions and establish new visions for a sustainable urban future. Students are exposed to sustainable models and innovative urban strategies to cope with various environmental, social, economic and technological challenges that Asian cities face today and in future.", + "title": "Topics in Urbanism 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide a comprehensive understanding of the complexity and distinctive characters of emerging urbanism in Asia, through examination of emergent urban issues related to community & participation, conservation & regeneration, ageing & healthcare, built form, modelling & big data, and resilience & informality. These topics are offered from multiple perspectives and inter- and transdisciplinary approaches to question conventional norms and conceptions and establish new visions for a sustainable urban future. Students are exposed to sustainable models and innovative urban strategies to cope with various environmental, social, economic and technological challenges that Asian cities face today and in future.", + "title": "Topics in Urbanism 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide a comprehensive understanding of the complexity and distinctive characters of emerging urbanism in Asia, through examination of emergent urban issues related to community & participation, conservation & regeneration, ageing & healthcare, built form, modelling & big data, and resilience & informality. These topics are offered from multiple perspectives and inter- and transdisciplinary approaches to question conventional norms and conceptions and establish new visions for a sustainable urban future. Students are exposed to sustainable models and innovative urban strategies to cope with various environmental, social, economic and technological challenges that Asian cities face today and in future.", + "title": "Topics in Urbanism 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide a comprehensive understanding of the complexity and distinctive characters of emerging urbanism in Asia, through examination of emergent urban issues related to community & participation, conservation & regeneration, ageing & healthcare, built form, modelling & big data, and resilience & informality. These topics are offered from multiple perspectives and inter- and transdisciplinary approaches to question conventional norms and conceptions and establish new visions for a sustainable urban future. Students are exposed to sustainable models and innovative urban strategies to cope with various environmental, social, economic and technological challenges that Asian cities face today and in future.", + "title": "Topics in Urbanism 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 8", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice.", + "title": "Topics in Urbanism 9", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice.", + "title": "Topics in Urbanism 10", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice.", + "title": "Topics in Urbanism 11", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice.", + "title": "Topics in Urbanism 12", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice.", + "title": "Topics in Urbanism 13", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5952M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5953", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5953A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5953B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5953C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5953D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5953E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5953F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5953G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 8", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5953H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance", + "title": "Topics in Design Technology 9", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5953I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecture in Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation.", + "title": "Topics in Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5954", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecture in Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation.", + "title": "Topics in Landscape Architecture 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5954A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecturein Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation.", + "title": "Topics in Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5954B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecture in Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation.", + "title": "Topics in Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5954C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-11", + "end": "2022-11-10", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "SDE1-CL3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecture in Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation.", + "title": "Topics in Landscape Architecture 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5954D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecture in Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation.", + "title": "Topics in Landscape Architecture 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5954E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecture in Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation.", + "title": "Topics in Landscape Architecture 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5954F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecture in Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation.", + "title": "Topics in Landscape Architecture 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5954G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture and landscape architecture students are\nexposed to a wide range of contemporary and emerging\nconcepts and methods such as ecological planning and\ndesign, landscape ecology, ecological urbanism, designing\nfor resilience, regenerative design, climate sensitive urban\ndesign, etc. At the same time, new techniques and tools\nare also being developed, such as in remote sensing,\nvisualization and representation techniques, etc. that are\nincreasingly being used in the landscape architecture\npractice. These highly specialized topics are offered in this\nmodule to provide students with a deeper understanding of\nthese areas.", + "title": "Topics in Landscape Architecture 8: Methods & Concepts", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "AR5954H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecture in Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation.", + "title": "Topics in Landscape Architecture 9", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5954I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER5", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955D", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955E", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955F", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 8", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 9", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 10", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 11", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 13", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 14", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 15", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955O", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 16", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5955P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This \u201cParent\u201d module will involve a critical and thorough discussion of specific topics in design and the built environment. Examples of topics that may be discussed are universal design, techniques and constructs of thinking, sustainable urban design, landscape and urban ecology,", + "title": "Topics in Design and Built Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5956", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and\nthorough discussion of specific topics in\ndesign and the built environment. Examples of topics that may be discussed are universal design, techniques and constructs of thinking, sustainable urban design, landscape and urban ecology,", + "title": "Topics in Design and Built Environment 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5956A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and\nthorough discussion of specific topics in\ndesign and the built environment. Examples of topics that may be discussed are universal design, techniques and constructs of thinking, sustainable urban design, landscape and urban ecology,", + "title": "Topics in Design and Built Environment 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5956B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in design and the built environment. Examples of topics that may be discussed are universal design, techniques and constructs of thinking, sustainable urban design, landscape and urban ecology,", + "title": "Topics in Design and Built Environment 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5956C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in design and the built environment. Examples of topics that may be discussed are universal design, techniques and constructs of thinking, sustainable urban design, landscape and urban ecology,", + "title": "Topics in Design and Built Environment 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5956D", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in design and the built environment. Examples of topics that may be discussed are universal design, techniques and constructs of thinking, sustainable urban design, landscape and urban ecology,", + "title": "Topics in Design and Built Environment 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5956E", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in design and the built environment. Examples of topics that may be discussed are universal design, techniques and constructs of thinking, sustainable urban design, landscape and urban ecology,", + "title": "Topics in Design and Built Environment 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5956F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough\ndiscussions of specific topics in History, Theory and\nCriticism in Architecture.", + "title": "Topics in History and Theory of Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 8", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957H", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 9", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957I", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 10", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957J", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 11", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957K", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 12", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 13", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 14", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve critical analyses and thorough discussions of specific topics in History, Theory and Criticism in Architecture", + "title": "Topics in History and Theory of Architecture 15", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5957O", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion\nof specific topics in Urban Studies, including Urban Design\nand Planning. Examples of topics that may be studied are:\nTropical Urban Design, Sustainable Urban Design,\nEcourbansim, Urban Design methodologies and practice.", + "title": "Topics in Urbanism", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 8", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958H", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 9", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958I", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 10", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958J", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 11", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958K", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 12", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958L", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 23, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 13", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 14", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Studies, including Urban Design and Planning. Examples of topics that may be studied are: Tropical Urban Design, Sustainable Urban Design, Ecourbansim, Urban Design methodologies and practice", + "title": "Topics in Urbanism 15", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5958O", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion\nof specific topics in Design Technology. Examples of topics\nthat may be discussed are: the evolving role of tools,\ntechniques and constructs of thinking, new typologies,\nsystems and processes, relationships of form, fabric and\nmaterials, visualisation and validation of performance.", + "title": "Topics in Design Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 22, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959F", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 8", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 9", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 10", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 11", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 12", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 13", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 14", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Design Technology. Examples of topics that may be discussed are: the evolving role of tools, techniques and constructs of thinking, new typologies, systems and processes, relationships of form, fabric and materials, visualisation and validation of performance.", + "title": "Topics in Design Technology 15", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5959O", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Architecture students are exposed to a wide range of contemporary and emerging concepts and methods in research by design including theories, strategies, and research precedents in 1) novel aesthetics of climatic calibration and performance, 2) contemporary architectonics of fabrication, material, and resources contingent on South East Asia, 3) emergent spaces of inhabitation and production surrounding the equator. Students are afforded case studies, histories, and theoretical underpinnings to inform research by the act of design and making on the Equator.", + "title": "Topics in Research by Design 12", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AR5995L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Phd Seminar", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "AR6770", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Form is the language of architectural design. Offered in Semester 1, this studio-based module introduces fundamentals of architectural design through the exploration of divergent processes of thinking and making. Built around the theme of \u2018form\u2019, this studio will challenge students to think about architecture (its methods, its outputs, its typologies) first in formal terms, allowing them then to expand that study into areas concerning narrative, atmosphere, structure, function, and programme. Conducted in a studio environment, this module will offer students the space to explore critical issues in the three Ecologies of the programme - Climate, Agency, and Equality - through formal paradigms.", + "title": "Core Design Studio 1: Formal Paradigms & Aberrations", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ARD5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Carbon is in everything we build but today, it destroys. In the second semester of the core sequence, this studiobased module will challenge students to think about the practice of building and architecture through the substance of carbon and its life cycles. In narrative-driven projects, students will consider carbon as a material ecology, as an embodied product of the building process, and as an instrument of sustainability. The studio project will expand on this question of sustainability in lateral ways by tapping on the three Ecologies of the programme, allowing students to translate sustainability through environmental, social, and cultural pathways.", + "title": "Core Design Studio 2: Carbon Substance & Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ARD5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based, design module builds upon the foundational Design Studio modules in the Core Sequence of the M.Arch by Design programme. As part of the threesemester design studio sequence, this module allows faculty research clusters and their research knowledge to integrate with design investigations, which will be undertaken by students. Students will have the opportunity to select from a variety of topics offered and choose themes which align with their own research interest and Ecological specialisation. It allows student to explore critical issues in the three Ecologies of the programme \u2013 Climate, Agency and Equality, in relation with a design exercise.", + "title": "Options Design Studio 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ARD5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based, design module builds upon the foundational Design Studio modules in the Core Sequence of the M.Arch by Design programme. As part of the threesemester design studio sequence, this module allows faculty research clusters and their research knowledge to integrate with design investigations, which students will undertake. It allows a student to explore critical issues in the three Ecologies of the programme \u2013 Climate, Agency and Equality, related to a design exercise. Students will have the opportunity to select from various topics offered and choose themes that align with their research interest and design & ecological specialisation.", + "title": "Options Design Studio 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ARD5004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based, design module builds upon the foundational Design Studio modules in the Core Sequence of the M.Arch by Design programme. As part of the threesemester design studio sequence, this module allows faculty research clusters and their research knowledge to integrate with design investigations, which students will undertake. Students will have the opportunity to select from various topics offered and choose themes that align with their research interest and Ecological specialisation. It allows student to explore critical issues in the three Ecologies of the programme \u2013 Climate, Agency and Equality, in relation with a design exercise.", + "title": "Options Design Studio 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ARD5005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This research focused module prepares students for the Thesis Project, by establishing a robust base which provides context and a plan of action for the Design Thesis Project. In consultation with advisors, students in the module evaluate existing knowledge and the community of practice in their area of study and develop research outcomes that can be used for the Thesis Project. This module allows students to undertake an independent research enquiry into their interested research areas, nested within the program's three Ecologies \u2013 Climate, Agency and Equality.", + "title": "Architectural Design Thesis: Research Report", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ARD5006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module establishes the final design criteria to achieving the degree of M.Arch by Design. Building on the result of ARD5006, a research report, this design module drives students to take a critical position of their research and hypothesis. The module extends the research from Semester 1, allowing students to translate and transform their research outcomes into architectural approaches and strategies, to form an architectural design. This module allows students to expand upon their interested research areas, nested within the three Ecologies \u2013 Climate, Agency and Equality, of the programme, and create an architectural product or design method from self-directed learning.", + "title": "Architectural Design Thesis: Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "20", + "moduleCode": "ARD5007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This graduate level proseminar will introduce students to research methodologies in the architectural discipline, focusing on the interdisciplinary skillset of research by design that includes architectural design, history-theory, representation, ethnography, and more. Students will read texts and analyse projects from both the worlds of practice and academia, understanding how architectural practice constitutes a form of research in its various and varied expressions. During seminars, students will present work from the studio, contextualise the work in the methodologies covered during the module, and/or the methodologies they bring from undergraduate expertise.", + "title": "Proseminar 1: Methodologies in Research by Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ARD5008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Though the architect often communicates through images and objects, the written and spoken word can never be a neglected skill. Explication, narration, narrativization\u2014 these are all part of the architectural project. In this proseminar, students will learn and practice essential skills in architectural writing, ranging from academic techniques and conventions used to convey traditional research, to speculative writing practices including the likes of autotheory and site-writing. During seminars, students will discuss set texts and present their own texts based on work being conducted in the studio, applying methods and modes of writing covered by the syllabus.", + "title": "Proseminar 2: Writing Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ARD5009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As a product consuming large amounts of resources from raw materials to human labour, architecture creates massive ripples in the ecologies it belongs to. How can we begin to image this web? How does architecture change the face of our planet, for those who live on it, and that which they create? The Ecologies Workshop will facilitate an intellectual space for students to contextualise and discuss studio projects further than that achieved in the option design studio. These workshops will encourage cross-learning between students from different studios, projects, and briefs, providing the breadth necessary to situate architecture within its ecologies.", + "title": "Design Ecologies Workshop", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ARD5010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "While architects are said to be authors of buildings, the architect never puts brick together with brick. Often, the architect only produces representations of a building yet unmaterialised. Where does this practice originate? When did it begin? This graduate level module will interrogate the curious centrality of representation to the practice of architecture, unpacking its different facets as a function of projection, a tool for imagination, and a medium of instruction. Students will study and learn technical skills involved in producing architectural representations while simultaneously engaging with discourses and questions about representation spanning the 15th century to the present day.", + "title": "Architectural Representation: Projection, Imagination, Instruction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ARD5011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When trying to understand a problem or derive a solution, the architect turns first to making. In using one\u2019s hands, the physical engagement with material, the architect develops a keen sense of how to design\u2014its inherent meaning, aesthetic appeal, and ability to understand gravity. This graduate level module will challenge students to think about techniques and discourses of making in architecture in material, structure, and construction dimensions. Students will study and learn the technical skills involved in the architectural making of objects, including parti models, structural models, presentational models, and more.", + "title": "Architectural Making: Material, Structure, Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ARD5012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As emphasis on traditional forms of history and theory wanes in the architectural world, new frameworks that draw from issues in cultural, material, and media studies have arisen to take their place. In this graduate level module, students will study the history of architecture through one such framework, through its technics, understanding the technologies and techniques that enable the authorship and construction of architecture. Students will engage with visual and textual historical material, analysing both architectural history itself and the writing of architectural history and how both of these transform and mutate between past and present, and east and west.", + "title": "Architecture Technics: Technologies and Techniques of Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ARD5013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As the climate crisis worsens, sustainability has become a buzzword in the architecture industry. Techniques, metrics, and parametrics are often cited to determine the success of a contemporary building and its performance vis-\u00e0-vis the environment. Yet, sustainability possesses dimensions beyond the physical health of the planet. This module will look at how architects have designed different systems for sustainabilities in the environment, society, and culture. Students will analyse case studies, with a particular focus on Southeast Asia and the equator at large, demonstrating how architecture integrates with systems beyond the building through means technological or otherwise.", + "title": "Designing Equatorial Sustainabilities", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ARD5014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Has nature ever existed? Or is nature what man conceived of to divide two worlds we believed to be different? Framed by the programme\u2019s three Ecologies, this module calls upon students to consider the false separation of nature and culture and interrogate the fabrications we have made about nature, particularly in the discipline of architecture where dichotomies between built and unbuilt are oft taken for granted. From romantic pastoralism, gender determinism, to technological posthumanism, students will learn about this contentious binary of nature and culture as it has influenced the architectural discipline in its discourse and practice.", + "title": "Cultures of Nature: Architecture and Its Ecologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ARD5015", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the part of the U.S. media in shaping American society and culture beginning with the New York Journal's advocacy of the Spanish-American War of 1898 through to the role played by CNN in the 1990s. The module will review the growth of mass circulated newspapers, magazines, radio and television and examine how new media forms, such as the Internet, shape and are shaped by society. Students will learn to critically evaluate media forms and media content in a historical context. This module is well suited for students interested in the USA or media.", + "title": "US Media in the 20th Century & Beyond", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AS2236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide students with a basic grounding of American historical and cultural developments from European colonisation to the end of the twentieth century. It will examine both the internal developments in the United States as well as its growing importance in international politics. By offering a range of social, economic, and political perspectives on the American experience, it will equip students with the knowledge for understanding and analysing the dominance of the United States in contemporary world history and culture. This course is designed for students throughout NUS with an interest in American history.", + "title": "The U.S.: From Settlement to Superpower", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AS2237", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 3, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0106", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the place of business and technology in American culture. Beginning with the transformation of the American economy during the Civil War (1861-1865) students will examine changes in manufacturing systems, the development of corporations and big businesses, the growth of the national and international markets, the invention and marketing of new products, brand names, and advertising. The module asks students to evaluate the place of business in shaping American values and culture and whether companies such as Coca-Cola and Microsoft are typical or untypical of U.S. values. For students interested in the USA, business, and society.", + "title": "American Business: Industrial Revolution-Web", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AS3230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines selected texts of 19th century American writing through Reconstruction; it examines typical aspects of American character/imagination, and it trains students to read literary texts closely and to express their understanding of texts both in class discussion and in writing. The module is aimed at undergraduate English majors, but cross-faculty students who enjoy literature are welcome.", + "title": "American Literature I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AS3231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course concerns 20th century American writing from Reconstruction through present; it examines typical aspects of American character/imagination. The course trains students in the close reading of a variety of literary texts (naturalist, modernist, postmodernist) and a variety of literary forms (poetry, fiction, drama). The course is aimed at undergraduate English literature majors, but cross-faculty students who enjoy literature are welcome.", + "title": "American Literature II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AS3232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course surveys American cinema from its early years to later productions. Individual works of American cinema will be studied from the standpoint of film aesthetics and film history. Emphasis will be on the close analysis and interpretation of the meaning and style of these individual films.\n\nTopics to be covered include the evolution of film narrative, silent film, classical Hollywood cinema, film noir, auteur theory, film art, and film language. Directors to be studied include Woody Allen, Francis Ford Coppola, D. W. Griffith, Frank Capra, Alfred Hitchcock, Stanley Kubrick, Louis Lumiere, Georges Melies, Edwin Porter, David O. Russell, Erich von Stroheim, Orson Welles and Billy Wilder.\n\nLectures will introduce the basic concepts of film art, such as mise-en-scene, editing and cinematography, in order to enable students to carry out film analysis and interpretation. Lectures will also make references to international (including European and Singaporean) films in order to\n\nmake co", + "title": "Regionalism in American Landscapes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AS3233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of Asian American literature, with texts chosen from the main genres and across the period of the last half-century or so. It outlines the specific thematic concerns of this literature, but also the assumptions underlying the term \"Asian American literature\" itself. The relationships between society, culture, and text will be foregrounded in our consideration of these concerns. The module is designed for Literature students interested in a visibly emerging area of literary and ideological production within the larger controlling rubric we refer to as \"American literature.\"", + "title": "Asian American Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AS3234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the political evolution of the US. The pre-eminence of the US in world affairs suggests that knowledge of the evolution of American society and its culture is crucial to understanding American motivations and actions. In tracing how Americans have, from 1776, resolved issues and debates regarding the role of the federal government, racial and economic justice, gender roles, and political participation, budget and resource allocation and environmental concerns, students will gain insight into the historical processes which have shaped the US. By the end of the semester, students would have the necessary perspectives and contexts to assess and interpret American cultural, social and economic developments, as well as the continuing dialogue that Americans have about the nature of their society and democracy. This course is designed for students throughout NUS with an interest in American history.", + "title": "The Political History of the US", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AS3238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 3, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the role of the US in the Asia-Pacific region from the nineteenth to the twenty?first century. The evolution of political, military and economic ties between the America and three sub?regions of Asia will be explored. The nature of US involvement in the conflicts of the East Asian nations of Japan, China and Korea will form the first part of the module. The involvement of America in the decolonization and nation?building of the Southeast Asian nations will also be examined. Finally, the American influence in the sectarian and power differences in the South Asian nations of India and Pakistan will be addressed. This course is designed", + "title": "The United States in the Asia-Pacific", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AS3239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In 1901 only 14% of American homes had a bath and 8% a telephone. The country however was undergoing a process of economic, social, and cultural modernity that laid the basis for it emerging as the pre-eminent power in the world by 1945. This module examines the transformation of America from 1880. Students will study the processes of modernity in America both as economic modernisation and cultural modernism. The module asks students to evaluate the relationship between various aspects of American modernity. The module is for students interested in the culture and society of the USA.", + "title": "Making America Modern", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AS3240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module, which is aimed at upper level English Literature majors and cross-faculty students who have some experience with literary analysis, will focus on American literary orientalism in order to continue to examine questions of race, gender, ethnicity and literary form in the (mainly postwar) American imaginary.", + "title": "Topics in American Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "AS4232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on select topics within American culture as a means of exploring aspects of American history, national identity and social formation. Documents drawn from a variety of media and across discourses will be examined.", + "title": "Topics in American Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "AS4233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The H3 Humanities and Social Sciences Research Programme is offered to Junior College students who have exceptional ability and aptitude in Economics, Geography, History, Literature in English, Chinese Language and Literature, and Malay Language and Literature. The student will embark on an independent study and research under the supervision of a NUS academic and will be assessed via an extended essay.", + "title": "H3 Humanities & Soc Sci Research Prog", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ASP1201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The H3 Humanities and Social Sciences Research\nProgramme is offered to Junior College students who\nhave exceptional ability and aptitude in Chinese\nLanguage and Literature. The student will embark on\nan independent study and research under the\nsupervision of a NUS academic and will be assessed via\nan extended essay.", + "title": "H3 Humanities & Soc Sci Research Prog", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ASP1201CH", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The H3 Humanities and Social Sciences Research\nProgramme is offered to Junior College students who\nhave exceptional ability and aptitude in Economics.\nThe student will embark on an independent study and\nresearch under the supervision of a NUS academic and\nwill be assessed via an extended essay.", + "title": "H3 Humanities & Soc Sci Research Prog", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ASP1201EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The H3 Humanities and Social Sciences Research\nProgramme is offered to Junior College students who\nhave exceptional ability and aptitude in Literature in\nEnglish. The student will embark on an independent\nstudy and research under the supervision of a NUS\nacademic and will be assessed via an extended essay.", + "title": "H3 Humanities & Soc Sci Research Prog", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ASP1201EN", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The H3 Humanities and Social Sciences Research\nProgramme is offered to Junior College students who\nhave exceptional ability and aptitude in Geography.\nThe student will embark on an independent study and\nresearch under the supervision of a NUS academic and\nwill be assessed via an extended essay.", + "title": "H3 Humanities & Soc Sci Research Prog", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ASP1201GE", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The H3 Humanities and Social Sciences Research\nProgramme is offered to Junior College students who\nhave exceptional ability and aptitude in History. The\nstudent will embark on an independent study and\nresearch under the supervision of a NUS academic and\nwill be assessed via an extended essay.", + "title": "H3 Humanities & Soc Sci Research Prog", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ASP1201HY", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The H3 Humanities and Social Sciences Research\nProgramme is offered to Junior College students who\nhave exceptional ability and aptitude in Malay\nLanguage and Literature. The student will embark on\nan independent study and research under the\nsupervision of a NUS academic and will be assessed via\nan extended essay.", + "title": "H3 Humanities & Soc Sci Research Prog", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ASP1201MS", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the physics of the generation, propagation and measurement of sound.", + "title": "Acoustics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AUD5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding of the structure (anatomy) and function (physiology) of the ear and the brain as well as the peripheral balance organ. Students will also be introduced to the peripheral organs involved in normal speech production.", + "title": "Anatomy & Physiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AUD5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students an understanding of the basis of diseases that are commonly affecting the hearing and balance system, and the impact of the different types of pathology (e.g. conductive and sensorineural hearing loss, central auditory processing disorder, peripheral and central vestibular lesion) on the patient\u2019s life.", + "title": "Pathologies of the Auditory System", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AUD5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding of the psychological theory of pitch and loudness perception, the relationship between physically measurable parameters of sound (e.g. frequency, intensity) and the psychological concepts of pitch and loudness, the psychoacoustic methods for determining the detection and discrimination ability of the auditory system, the acoustic features of different speech sounds, binaural hearing and the effect of masking.", + "title": "Perception of Sound & Speech", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AUD5104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the basic understanding of how hearing aid operates and describes the different style of ear moulds and hearing aids (custom aid, behind-the-ear), as well as the electroacoustic features of hearing aids (such as gain, maximum power output). This module also describes the various outcome measures used for verifying amplification and identify potential sources of error in amplification. Student will have hands-on sessions to practice hearing aids programming, fitting, and verification following the lectures.", + "title": "Hearing Devices and Rehabilitation A - Part 1", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AUD5105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to various methods of diagnostic audiological assessment (objective and subjective tests) and management of adult patients. This module involves lecture and clinical practicum, whereby students will have guided and structured observation of experienced Audiologists assessing hearing impaired patients in the clinic (NUH) and they will get an opportunity to practice on each other in a real clinical environment.", + "title": "Clinical Audiology A - Part 1", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AUD5106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the normal auditory, speech and language, social and physical development of infants and young children. This module also describes the risk factors for hearing loss in children including neonatology, genetics and illnesses, as well as methods of assessing young children\u2019s hearing. This module is delivered through lecture and clinical observation in a real clinical environment (NUH). Students will have guided and structured observation of experienced Audiologists conducting behavioural hearing assessment in young children.", + "title": "Paediatric Audiology A - Part 1", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AUD5107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding of different type of electrophysiological assessment techniques (e.g. auditory brainstem response, middle and late latency response, P300, mismatch negativity) that can be applied on patients of different ages. Students will also learn about the conduct and pitfalls of these electrophysiological assessment techniques through clinical practicum.", + "title": "Electrophysiological Assessment A", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AUD5108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is introduced to help students explore the role of audiologists in counselling and multidisciplinary management of hearing impaired individuals and their family members. Students will also be taught a business concept on running a hearing care centre.", + "title": "Professional Practice Issues & Community Audiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AUD5109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding of the background, techniques, interpretation and the usefulness of caloric test, ocular motility, positional and positioning testing on patients with balance disorder. The module involves lecture and clinical practicum with guided and structured observation, whereby students will get an opportunity to observe experienced Audiologist performing caloric and ocular motor tests on patients with balance disorder.", + "title": "Vestibular Assessment and Management A", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AUD5110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the design principles of various types of implantable devices (e.g. cochlear implant, middle-ear implant). All aspects of the clinical application of these implantable devices including audiological evaluation, medical issues, counselling, programming of devices and outcome measures are covered.", + "title": "Hearing Devices & Rehabilitation A - Part 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AUD5111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This compulsory module is an extension of AUD5106 that introduces students to advance methods of diagnostic audiological assessment (objective and subjective tests) and management of adult patients. This module involves lecture in the morning and clinical practicum in the afternoon, whereby students will need to prepare and discuss session plans for cases to be observed on the day with clinical supervisor.", + "title": "Clinical Audiology A - Part 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AUD5112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation from AUD5107 that provides an introduction to the normal auditory, speech and language, social and physical development of infants and young children. The focus of this module is on children with hearing impairment. This module is delivered through lecture and clinical practicum takes place in NUH. Students are required to prepare session plans for cases scheduled on the day of observation and discuss them with clinical supervisors.", + "title": "Paediatric Audiology A - Part 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AUD5113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject builds on the knowledge obtained in the Electrophysiological Assessment A subject. Students will have the opportunity to examine the principles and practices associated with advanced auditory evoked potential assessment in the clinic (NUH).", + "title": "Electrophysiological Assessment B", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AUD5114", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This compulsory module provides an introduction to research design in the behavioural sciences related to hearing. Topics will include experimental design, basic statistical tools such as parametric and non-parametric tests, correlation and linear regression, and sample size calculation. In this module, students will also learn about research ethics, and identify a research topic and undertake scientific literature search related to the research topic.", + "title": "Experimental Design & Statistics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AUD5115", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an advanced knowledge about the assessment and management of central vestibular disorders, neuro-otological disorders due to migraine and the psychological problems of dizzy patient. This module also describes various rehabilitative management options for patients with vestibular disorders.", + "title": "Vestibular Assessment and Management B", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AUD5216", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students the opportunity to learn about the psychological and social problems of hearing aid users and to develop and implement rehabilitation programs to suit individual needs.", + "title": "Hearing Devices and Rehabilitation B (Part 1)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AUD5217", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This subject builds on the knowledge obtained in the Clinical Audiology A subject. Students will participate in problem based learning case discussions encompassing the evaluation and management of patients in the areas of advanced diagnostic assessment of hearing and balance disorders and hearing aid fitting and evaluation. This module comprises the following topics: professionalism, ethics and clinical communication, industrial audiology, acoustic shock and the prevention of hearing loss in the music industry; and a review of audiological integration and management.", + "title": "Clinical Audiology B (Part 1)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AUD5218", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the basic paediatric assessment skills gained in Paediatric Audiology A. Students will have the opportunity to learn the principles and practice of audiological assessment of children of all ages. In particular, they will refine and expand their understanding of advanced paediatric testing techniques; educational and communication issues for hearing impaired children; assessment and management of children with special needs; assessment and management of hearing impaired neonates & infants.", + "title": "Paediatric Audiology B - Part 1", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "AUD5219", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to prepare student for the applied research project that must be submitted in Semester 4. This module builds on the knowledge obtained in AUD5115 Experimental Design and Statistics. Students will be asked to identify a client a research topic, and two supervisors, develop a research design and appropriate testing tools, make a class presentation to teaching staff and students and then submit a written proposal (max 5000 words) before obtaining ethics clearance and conducting a pilot study.", + "title": "Independent Studies in Audiology (Research project - part 1)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AUD5220", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the foundation knowledge acquired in Hearing Devices and Rehabilitation A. In particular, this subject will cover:\n- advanced issues in the selection of hearing aid features;\n- advanced verification techniques;\n- issues in the use of prescriptive and non-prescriptive setting of amplification of hearing aids;\n- paediatric hearing aid fitting considerations and issues;\n- use of vibrotactile devices;\n- use of devices within tinnitus management program; advanced outcome assessment", + "title": "Hearing Devices and Rehabilitation B (Part 2)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AUD5221", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Clinical Audiology B (Part 1). Students will participate in problem based learning case discussions encompassing the evaluation and management of patients in the areas of advanced diagnostic assessment of hearing and balance disorders and hearing aid fitting and evaluation. This module comprises the following topics: professionalism, ethics and clinical communication, industrial audiology, acoustic shock and the prevention of hearing loss in the music industry; and a review of audiological integration and management.", + "title": "Clinical Audiology B (Part 2)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AUD5222", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of AUD5219 Paediatric Audiology B. Students will have the opportunity to learn the principles and practice of audiological assessment of children of all ages. In particular, they will refine and expand their understanding of advanced paediatric testing techniques; educational and communication issues for hearing impaired children; assessment and management of children with special needs; assessment and management of hearing impaired neonates & infants.", + "title": "Paediatric Audiology B - Part 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AUD5223", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students prepare a final draft of the main applied research project that should be submitted in semester 4. Through regular meetings with supervisors and feedback from peer group, students will make appropriate modifications to the planned study, complete data collection and analyses, and submit a dissertation (< 20,000 words) in APA style prior to a presentation and oral examination on the content.", + "title": "Independent Studies in Audiology (Research project - part 2)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "AUD5224", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Faculty Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AX1821", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AX3722", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AX3723", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Faculty Exchange Module", + "title": "Faculty Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "AX4811", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Faculty Exchange Module", + "title": "Faculty Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "AX4821", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Anatomy", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "AY1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module encompasses core material on aspects of human anantomy and physiology with reference to relevant clinical examples. Topics for the module include the following human systems: 1. cell, integumentary and musculoskeletal, 2. cardiovascular, 3. Haematology and related immunology 4. Respiratory and 5. endocrine", + "title": "Human Anatomy and Physiology I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "AY1130", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Accounting Research Seminars I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BAA6001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of the course is to introduce Ph.D. students to advanced research topics in accounting. The course will focus on selected areas of research in accounting, including but not limited to the following:\n1. Information in Accounting Numbers\n2. Earnings Response Coefficient (ERC)\n3. The Post-Earnings-Announcement Drift\n4. Cost of Equity Capital\n5. Trading Volume, Non-Directional\n6. Trading Volume, Directional\n7. Insider Trading\n8. Taxation and the Capital Market, Payout Policy\n9. Taxation and the Capital Market, Capital Structure\n10. Corporate Social Responsibilities Disclosure\n11. Accounting Standards and Reporting Quality\n12. China Related Topics", + "title": "Accounting Research Seminars II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BAA6002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) in an area of specialization are for students with the requisite background to work closely with an instructor on a welldefined project in the respective specialization areas. Students will conduct independent critical reading and research work on organizational behavior under the guidance of the instructor. Evaluation is based on 100% Continuous Assessment.", + "title": "Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BAA6005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advance Placement Credit 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BBB8100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar surveys the major theoretical perspectives and issues studied in strategic management research. The course draws upon theoretical perspectives from economics, sociology and organisation theory to supplement more traditional strategy approaches towards understanding firm performance and related issues. An illustrative list of the issues addressed in strategy research includes identifying the profit potential of industries, exploring relationships between firm resources, behaviour and performance, and understanding the managerial and organisational determinants of firm level outcomes. Many of the issues examined, for example, vertical integration, firm diversification, industry structure, and inter-organisational cooperation, are also common themes in other disciplines such as industrial organisation economics, marketing, and organisational and economic sociology.", + "title": "Theory of Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BBP6781", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 26, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The job scope of the Consulting Practicum is part of the initial negotiations between the students and the company. Through this, the students learn how to define a job scope, negotiate the resources, and negotiate the timeline and deliverables. The instructor is only involved in confirming the final agreement between the students and the company. It is an interactive process as the students have to make a preliminary survey of the company before finalising the job scope. The project is divided into stages -- planning, research and assessment, and recommendations. It is not the same as an industrial attachment as the students take a strategic approach to dealing with a real company issue - it is a consulting project, pure and simple. It is not an academic exercise as the research is focused on real work issues. Students use their skills learnt in library work and market research.", + "title": "Consulting Practicum", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "BCP4002B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover important topics in optimization theory including linear, network, discrete, convex, conic, stochastic and robust. It will focus on methodology, modeling techniques and mathematical insights. This is a core module for PhD students in the Decision Science department.", + "title": "Foundations of Optimization", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Probability space and random variables\nOutcomes, events, and sample space; probability measure and integration; distributions and expectation.\n\nConditional expectation\nConditioning on events; conditioning on random variables; general properties of condition expectation; introduction to martingales.\n\nExponential distribution and Poisson process\nMemorylessness; counting processes; construction of Poisson process; thinning and superposition of Poisson processes; nonhomogeneous and compound Poisson process.\n\nDiscrete-time Markov chains\nMarkov property; stopping times and strong Markov property; classification of states; hitting and absorption probabilities; stationary and limit distributions.", + "title": "Stochastic Processes I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6112", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an in-depth study of a variety of production and inventory control planning problems, the development of mathematical models corresponding to these problems, approaches to characterize solutions, and algorithm designs for finding solutions. We will cover deterministic as well as stochastic inventory models. Although many of the topics we will cover are of great interest to managers, our focus will not be on practice but on theory.", + "title": "Foundations of Inventory Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6113", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to expose students to the issues that need to be considered in designing and operating logistics and supply chains. We will start with an introduction including definition of logistics and supply chain management, key supply chain costs and metrics, and fundamental issues and trade-offs in supply chain management. \nWe will then discuss the interactions between stages in a supply chain, double marginalization and contracts for supply chain coordination, strategic alliances and incentive alignment, channels of distribution, coordinating distribution strategies, pricing/promotions. We will also discuss supply chain planning, facility location models, and vehicle routing models.", + "title": "Logistics and Supply Chain", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced PhD\u2010level module on Optimization that builds on the foundations developed in BDC6111. Specific content of this module will depend on student and faculty interests. This module will provide an opportunity for students to be exposed to cutting\u2010edge research topics related to Optimization that are not otherwise included in the curriculum.", + "title": "Seminars in Optimization I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BDC6218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced PhD\u2010level module on Optimization that builds on the foundations developed in BDC6111. Specific content of this module will depend on student and faculty interests. This module will provide an opportunity for students to be exposed to cutting\u2010edge research topics related to Optimization that are not otherwise included in the curriculum.", + "title": "Seminars in Optimization II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BDC6219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Stochastic models are used extensively to analyze and optimize in a wide variety of applications including business operations, economic systems, finance and engineering. This module provides the core knowledge for graduate students specializing in operation management and management sciences. Topic covered includes dynamic programming, stochastic ordering and their applications.", + "title": "Stochastic Modelling and Optimization", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced PhD level module on stochastic processes that builds on the foundations developed in BDC 6221. Specific content of this module will depend on student and faculty interests. This module will provide an opportunity for students to be exposed to cuttingedge research topics related to stochastic modeling or stochastic optimization that are not otherwise included in the curriculum.", + "title": "Seminars In Stochastic Processes I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BDC6228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced PhD level module on stochastic processes that builds on the foundations developed in BDC 6221. Specific content of this module will depend on student and faculty interests. This module will provide an opportunity for students to be exposed to cuttingedge research topics related to stochastic modeling or stochastic optimization that are not otherwise included in the curriculum.", + "title": "Seminars In Stochastic Processes II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BDC6229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced PhD level module on operations management that builds on the foundation courses. Specific content of this module will depend on student and faculty interests. This module will provide an opportunity for students to be exposed to cutting-edge research topics related to stochastic modeling or stochastic optimization that are not otherwise included in the curriculum.", + "title": "Seminars In Operations Management I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BDC6248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced PhD level module on operations management that builds on the foundation courses. Specific content of this module will depend on student and faculty interests. This module will provide an opportunity for students to be exposed to cutting-edge research topics that are not otherwise included in the curriculum.\n\nThis module may complement BDC6248 (Seminars in Operations Management I)", + "title": "Sem in Op Mgtm II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BDC6249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This PhD module explores how Bayesian rational people behave under uncertainty, largely in dynamic matching, learning environments, and dynamic contracting.", + "title": "Bayesian Modeling and Decision-Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Discrete optimization is the study of problems where the goal is to find an optimal arrangement from among a finite set of possible arrangements. Discrete problems are also called combinatorial optimization problems. Many applications in business, industry, and computer science lead to such problems, and we will touch on the theory behind these applications. The course takes a modern view of discrete optimization and covers the main areas of application and the main optimization algorithms. It covers the following topics (tentative) \u2022 integer and combinatorial optimization introduction and basic definitions \u2022 alternative formulations \u2022 optimality, relaxation and bounds \u2022 Graph Theory and Network Flow \u2022 integral polyhedral, including matching problems, matroid and the Matroid Greedy algorithm \u2022 polyhedral approaches theory of valid inequalities, cutting-plane algorithms The course also discusses how these approaches can be used to tackle problems arising in modern service system, including static and dynamic matching markets, ad words allocation, pricing and assortment optimization etc.", + "title": "Discrete Optimization and Algorithms", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the theoretic foundations, models,\nand analytical techniques of queueing theory. Topics\ninclude continuous-time Markov chains, Little\u2019s law and\nPASTA property, Markovian queues and Jackson\nnetworks, fluid models, heavy-traffic analysis, and diffusion\napproximations.", + "title": "Queues and Stochastic Networks", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover the necessary theoretical foundations of modern robust optimization and its applications.", + "title": "Robust modelling and optimization", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental models, theory, and\nalgorithms for dynamic programming with an emphasis on\nMarkov decision processes (MDPs). We give particular\nattention to overcoming the \u2018curse of dimensionality\u2019 and\nfocus on modern techniques for solving large-scale dynamic\nprograms.", + "title": "Theory and Algorithms for Dynamic Programming", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6305", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide the first-year PhD students with\na rigorous introduction to the fundamentals of stochastic\nprocesses. Topics include (i) Continuous-time Markov\nchains, (ii) Renewal processes, (iii) Brownian motions, and\n(iv) Stochastic orders", + "title": "Stochastic Processes II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide operation researchers a holistic introduction of classic statistics theories and modern statistical learning toolbox. It also lays the necessary foundations for more advanced machine learning courses.", + "title": "Introduction to Data Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6307", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) in an area of specialization are for students with the requisite background to work closely with an instructor on a welldefined project in the respective specialization areas. Students will conduct independent critical reading and research work on organizational behavior under the guidance of the instructor. Evaluation is based on 100% Continuous Assessment.", + "title": "Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BDC6501", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the Honours Dissertation is to provide the student with an opportunity to select and study a research problem of importance and present his findings logically and systematically in clear and concise prose. The research topic can be either the study of a business problem involving the use of analytic or predictive models, or a research study using field research techniques or data analysis leading to sound generalisations and deductions, or a scientific analysis of a theoretical problem. The student is expected to demonstrate (a) a good understanding of relevant methodology and literature (b) the significance and relevance of the problem (c) a logical and sound analysis and (d) a clear and effective presentation.", + "title": "Honours Dissertation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "BHD4001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the Honours Dissertation is to provide the student with an opportunity to select and study a research problem of importance and present his findings logically and systematically in clear and concise prose. The research topic can be either the study of a business problem involving the use of analytic or predictive models, or a research study using field research techniques or data analysis leading to sound generalisations and deductions, or a scientific analysis of a theoretical problem. The student is expected in this exercise to demonstrate (a) a good understanding of relevant methodology and literature (b) the significance and relevance of the problem (c) a logical and sound analysis and (d) a clear and effective presentation.", + "title": "Honours Dissertation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "BHD4001C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at\n300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at\n300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3001A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at\n300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3001B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at\n300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3001C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at\n300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3001D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at\n300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3001E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at\n300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3001F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at\n300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3001G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 16 weeks. The minimum number of hours of work is set at\n600 hours.", + "title": "Business Internship II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BI3002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 16 weeks. The minimum number of hours of work is set at 600 hours.", + "title": "Business Internship II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BI3002A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 16 weeks. The minimum number of hours of work is set at 600 hours.", + "title": "Business Internship II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BI3002B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 16 weeks. The minimum number of hours of work is set at 600 hours.", + "title": "Business Internship II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BI3002C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 16 weeks. The minimum number of hours of work is set at 600 hours.", + "title": "Business Internship II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BI3002D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time NUS business school undergraduate students who have completed at least 60MCs and plan to do an approved internship between 10-12 weeks in duration, during the vacation period. The aim of this module is to recognize work experiences in fields that could lead to viable career pathways that are not directly related to the student\u2019s major. It is accessible to students for academic credit even if they had previously\ncompleted BI3001 or BI3002. (In contrast to BI3003, BI3001\nand BI3002 deal with internships that are related to\nbusiness).", + "title": "Work Experience Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3003", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time NUS business school undergraduate students who have completed at least 60MCs and plan to do an approved internship between 10-12 weeks in duration, during the vacation period. The aim of this module is to recognize work experiences in fields that could lead to viable career pathways that are not directly related to the student\u2019s major. It is accessible to students for academic credit even if they had previously completed BI3001 or BI3002. (In contrast to BI3003, BI3001 and BI3002 deal with internships that are related to business).", + "title": "Work Experience Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3003A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time NUS business school undergraduate students who have completed at least 60MCs and plan to do an approved internship between 10-12 weeks in duration, during the vacation period. The aim of this module is to recognize work experiences in fields that could lead to viable career pathways that are not directly related to the student\u2019s major. It is accessible to students for academic credit even if they had previously completed BI3001 or BI3002. (In contrast to BI3003, BI3001 and BI3002 deal with internships that are related to business).", + "title": "Work Experience Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3003B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time NUS business school undergraduate students who have completed at least 60MCs and plan to do an approved internship between 10-12 weeks in duration, during the vacation period. The aim of this module is to recognize work experiences in fields that could lead to viable career pathways that are not directly related to the student\u2019s major. It is accessible to students for academic credit even if they had previously completed BI3001 or BI3002. (In contrast to BI3003, BI3001 and BI3002 deal with internships that are related to business).", + "title": "Work Experience Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3003C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time NUS business school undergraduate students who have completed at least 60MCs and plan to do an approved internship between 10-12 weeks in duration, during the vacation period. The aim of this module is to recognize work experiences in fields that could lead to viable career pathways that are not directly related to the student\u2019s major. It is accessible to students for academic credit even if they had previously completed BI3001 or BI3002. (In contrast to BI3003, BI3001 and BI3002 deal with internships that are related to business).", + "title": "Work Experience Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3003D", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at 300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3704", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at 300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3704A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at 300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3704B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at 300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3704C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at 300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3704D", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 8 weeks. The minimum number of hours of work is set at 300 hours.", + "title": "Business Internship I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BI3704R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 16 weeks. The minimum number of hours of work is set at 600 hours.", + "title": "Business Internship II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BI3708", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 16 weeks. The minimum number of hours of work is set at 600 hours.", + "title": "Business Internship II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BI3708A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 16 weeks. The minimum number of hours of work is set at 600 hours.", + "title": "Business Internship II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BI3708B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 16 weeks. The minimum number of hours of work is set at 600 hours.", + "title": "Business Internship II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BI3708R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is professional internship module lasting a minimum of 24 weeks. The minimum number of hours of work is set at 900 hours.", + "title": "Business Internship III", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "BI3712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is professional internship module lasting a minimum of 24 weeks. The minimum number of hours of work is set at 900 hours.", + "title": "Business Internship III", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "BI3712A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is professional internship module lasting a minimum of 24 weeks. The minimum number of hours of work is set at 900 hours.", + "title": "Business Internship III", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "BI3712B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is professional internship module lasting a minimum of 24 weeks. The minimum number of hours of work is set at 900 hours.", + "title": "Business Internship III", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "BI3712R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module in Business provides the opportunity for student to pursue an in-depth study of a Business topic or issue independently, but under the close supervision and guidance of an instructor. Through such a learning experience, not only will the student gain an indepth knowledge of the topic of interest, the skills acquired through such a process of independent knowledge\nacquisition will be invaluable for a career in the Business world. The personalized interaction with the instructor will also facilitate mentorship.", + "title": "Independent Study Module in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BIS3001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module in Business provides the opportunity for student to pursue an in-depth study of a Business topic or issue independently, but under the close supervision and guidance of an instructor. Through such a learning experience, not only will the student gain an indepth knowledge of the topic of interest, the skills acquired through such a process of independent knowledge\nacquisition will be invaluable for a career in the Business world. The personalized interaction with the instructor will also facilitate mentorship.", + "title": "Independent Study Module in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BIS3001A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module in Business provides the opportunity for student to pursue an in-depth study of a Business topic or issue independently, but under the close supervision and guidance of an instructor. Through such a learning experience, not only will the student gain an indepth knowledge of the topic of interest, the skills acquired through such a process of independent knowledge acquisition will be invaluable for a career in the Business world. The personalized interaction with the instructor will also facilitate mentorship.", + "title": "Independent Study in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BIS3751", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - The module introduces the scientific basis for environmental management. It discusses the earth's environmental dimensions of air, water and land, and the interaction between living and non-living components. Earth is considered as a system through which materials are continuously cycled. Impacts caused by natural or human influences affect the state of balance, leading to environmental problems, with human impacts causing more serious consequences to the environment and human society. The module covers the properties of air, water and land, ecosystems, biogeochemical cycles, ecosystem integrity and environmental capacity, pollution pathways and impacts, conservation science, integrated management approaches. The emphasis is to provide a sound understanding of the scientific basis for better environmental decision-making. Targeted Students - For students on the M.Sc. (Environmental Management) program. Research students and students from other graduate programmes in NUS may apply subject to suitability of candidate and availability of places.", + "title": "Environmental Science", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The main purpose of this module is to help graduate students to improve their presentation skills and to participate in scientific seminars/exchanges in a professional manner. The module will be spread over one semester and will be graded ?Satisfactory/Unsatisfactory? on the basis of student presentation and participation. In recent years research in life sciences is gaining importance. It is essential for the graduate students to have a `bigger? picture of this multi-disciplinary research field. This module, is designed as one in which students are select specific research papers published within the last two years in the leading journals in life sciences and present a seminar on this paper including suitable literature search and critical analysis. The research paper will be further discussed with their fellow graduate students and lecturers. This seminar style approach is very conducive to spreading new information and getting graduate students aware of and interested in other associated disciplines.", + "title": "Graduate Seminar Module in Biological Sciences", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BL5198", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 33, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 33, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a project-based module for students taking the M.Sc. in Biodiversity Conservation and Nature-based Climate Solutions. Students will take this module or BL5299 (Internship in Conservation and Nature-based Climate Solutions). In this module, students will conduct research on topics related to conservation science, under the supervision of a faculty member and/or co-supervisors with our industry partners. Through this independent project, students will gain hands-on practical knowledge in solving conservation-science related problems using scientific techniques. The research project is concluded with a written report and an oral presentation.", + "title": "Research Project in Conservation and Nature-based Climate Solutions", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "BL5199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will focus on recent advances in topics related to structural biology and proteomics. The topics to be discussed will include structure-function relationships, protein-protein interactions, protein folding, protein design and engineering and proteomics. Students will be required to participate actively in the form of presentations/discussion as well as analyses of recent research articles in the area.", + "title": "Structural Biology And Proteomics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with biological macromolecules and complexes or arrays of macromolecules. The contents deal with conveying the major principles and concepts that are at the heart of the field. These principles and concepts are derived from physics, chemistry, and biology. The various topics to be discussed will cover some of the techniques used in studying structure and function of biological macromolecules, excitable cell membranes and ion channel activities. The emphasis is on a detailed discussion of a few techniques rather than an attempt to describe every known technique.", + "title": "Biophysical Methods in Life Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5202A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Molecular recognition forms the basis of the regulation of cell-biological responses to extracellular and intracellular stimuli. This course focuses on recent progress in our understanding of how macromolecular machines are organized and interact with one another inside of cells. To illustrate the intricate details and consequences of molecular interactions, the course will use the cell nucleus as the organizing theme, but the principles are applicable to all aspects of cell biology. Students with background in biology and chemistry and protein-protein and protein-nucleic acid interactions are recommended to read this course.", + "title": "Molecular Recognition and Interactions", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Biotechnology is a rapidly growing field encompassing many disciplines and the objective here is to give broad exposure to students to encouraging multi-disciplinary thinking. Four broad areas are identified to allow some flexibility in the choice of contemporary topics. A broad introduction to this module is given under Emerging Disciplines in Biology. Interfacing Biology and Engineering delves into some of these diverse topics in some detail. Biocomputing focuses on the central role of software tools that complement experimental approaches in many applications. Under Entrepreneurship, innovation processes and the characteristics of the various related industry sectors such as Pharmaceuticals, Biotechnology and Healthcare will be discussed.", + "title": "Graduate Bootcamp for Biotechnology Industry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Developmental biology is the study of the process and mechanism of a single cell developing into a complex organism. This module will focus on animal models. We will start with the background knowledge in the first half of the module, followed by selected topics in hot areas in developmental biology, e.g. neural development, angiogenesis and vascular development, endoderm development, endocrine glands, signal transduction, embryonic stem cells etc. These topics will be rotated in different years. Thus this module aims at those students who have missed the developmental biology module in their undergraduate programmes as well as those who are working in this and related fields.", + "title": "Topics In Developmental Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5207A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The trouble with ecology is that there are too many variables: too many species, types of relationships, and environmental factors. This course will introduce new next-generation-sequencing methods that are able to address these challenges. The \u201ctoo many species\u201d problem can be solved with NGS barcoding and metabarcoding. \u201cTypes of relationships\u201d are addressed with species-interaction analysis based on trace DNA. Responses to \u201cenvironmental factors\u201d can be analysed with comparative transcriptomics and population genomics. The module starts with introducing basic NGS analysis concepts (e.g, QC, assembly, coverage). Afterwards, different types of NGS data will be analysed (e.g., tagged amplicons, RNASeq, RADSeq).", + "title": "Directed Studies in Molecular Ecology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Biogeography, the study of where organisms live and why, is a multidisciplinary science central to evolutionary biology and conservation. It encompasses both historical and ecological factors and employs a wide range of analytical methods. This course will introduce key concepts of biogeography and ongoing developments such as molecular dating of biogeographic events and modelling of species occurrence in relation to global change. Students will explore one topic in detail, and work in a group to reference current literature, analytical methods, and online resources (e.g., specimen databases) to address a biogeographic question, and teach the class about this. Many examples will pertain to Sundaland with particular emphasis on the relevance of biogeography to the discovery and conservation of biodiversity", + "title": "Biogeography", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to lead the students through the basics of (1) scientific writing, (2) writing, presentation and defence of research grant proposal, (3) critical reading and discussion of research papers, and (4) analysis and presentation of arguments (debate) on contentious issues raised by recent developments in biological sciences.", + "title": "Critical Thinking in Biological Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Protein Design & Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to enable students to understand the principles behind various protein NMR experiments and allow them to apply those experiments to study protein structural and dynamical properties. The major topics covered includes NMR phenomenon and parameters; multi-dimensional multinuclear NMR experiments; relaxation and dynamics; NMR protein sample preparation; backbone and side chain assignment; and restraints for NMR protein structure calculation. Graduate students who are or will use NMR for biological research are strongly encouraged to take this module. This module will also be useful for students in structural biology and protein engineering. (Alternate with BL5215)", + "title": "Advanced Proteins Nmr", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Macromolecular X-Ray Crystallography", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is directed toward graduates with basic molecular biology and genetic backgrounds who are interested in conducting genomics-based research. The module will also introduce the unique aspects of different model organisms and approaches to understand their gene function.The module aims to equip the students with the latest knowledge on characterizing and understanding genomes in the broadest sense.Upon completion of the module, the students will be able to appreciate the strengths and weaknesses of large scale genomic studies. They will also be able to apply the modern genetic techniques across different model organisms.", + "title": "Advanced Genetics and Genome Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5216", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will examine how genome-wide datasets can be applied to questions relating to the evolutionary history of animal and plant lineages. Some of the major topics discussed will be \n(1) genome-wide datasets used to entangle rapid radiations, \n(2) genome-wide SNPs deployed to discover patterns of gene flow between neighbouring lineages, \n(3) introgression and admixture across hybrid zones, and many more.", + "title": "Population Genomics and Phylogenomics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5217", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Behavioural ecology combines ideas from evolution, ecology and behaviour. This course is to expose students to some of the most important and technical advances in the field and provides them an opportunity to develop professional skills in reading, researching, discussing, presenting, and writing about a selection of contemporary topics in behavioural ecology. All the assignments are tailored to student-directed inquiry.", + "title": "Directed Studies in Behavioural Ecology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ecological research often requires some form of vegetation quantification at the habitat or plant level. Plant ecology research requires skill in several different techniques. This course will incorporate theoretical discussions on research design with practical in-field experience on the techniques associated with plant and vegetation ecology at the habitat and individual level.", + "title": "Field Research Techniques for Plant Ecology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In recent years, research in life sciences and biomedical research in particular is gaining importance. Hence, it is essential for graduate students to have a good understanding of animal development. This module is designed to provide students with a series of lectures on invertebrate as well as vertebrate development. It also encompasses recent and relevant advances in the field of animal development and differentiation. In addition to the lectures, the students have time for critical discussion sessions with the lecturers, many of whom are pioneers in the topics being covered in the course.\n\nIntended for both new and advanced graduate students familiar with basic animal development", + "title": "Advanced Animal Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5220", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The lectures and subsequent tutorials and/or discussions will introduce the students to key concepts in plant and microbial development. It will then go on to provide in-depth insight into the molecular mechanisms underlying cell fate determination during major developmental events in various systems such as plants, fungi and microbes. The module encompasses special topics such as fungal dimorphism, microbial dormancy, quorum sensing, transfer and intracellular transport of pathogens, pathogenesis, gametogenesis, endosperm development, apomixis and RNA interference. \n\nIntended for fresh graduate students familiar with basic knowledge about cell biology and development\nObjectives:\nTo provide background knowledge as well as cover recent and significant advances in the field of Plant and microbial development\n\nTo inculcate the importance of Developmental biology in general and stimulate research interest in life sciences\n\nTo allow first year graduate students to interact with experts in the field of plant, fungal and microbial development\n\nTo provide a platform for interaction between graduate students interested in the study of developmental biology\n\nTo complement the module on Advanced animal development", + "title": "Plant and Microbial Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5221", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It is increasingly clear that a full appreciation of the chemical and physical properties that govern individual cells is essential for the understanding of development and disease. Emphasis will also be placed on reading primary research publications.\n\nThis module is designed to expose students to topics such as cell cycle control, cell polarization, membrane trafficking, actin and microtubular cytoskeleton, and cellular mechanisms contributing to disease. A biochemical and Biophysical view of the cell and its functions will be explored. In addition to the lectures, the students have time for critical discussion sessions with the lecturers, many of whom are pioneers in the topics being covered in the course.\n\nIntended for fresh or advanced graduate students familiar with basic cell biology", + "title": "Cellular Mechanisms", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5222", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The lectures and subsequent tutorials and/or discussions will allow in-depth survey and critical analysis of molecular genetics, beginning with basic principles and extending to modern approaches and special topics. The module will draw on examples from various systems such as Drosophila, C. elegans, yeasts, human, plants and bacteria. The module encompasses advanced treatment of the Central Dogma of molecular biology and covers recent developments in the molecular understanding of genetic information transfer from DNA to RNA to protein, using current examples. Building upon this platform, the module will then proceed to special topics such as Prions, epigenetics, modular signaling cascades, ion channels, membrane dynamics and cellular energetics. It will also provide a broad overview of Protein folding and function.\nIntended primarily for new graduate students familiar with basic molecular biology and genetics", + "title": "Advanced Molecular Genetics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5223", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cancers and metabolic diseases including diabetes and obesity are major health issues facing the whole world. The course will examine the various signalling mechanisms that are implicated in the manifestation of the disease processes, the interlink between the different pathways and the identification of potential drug targets. This course will start by focusing on the major signalling pathways that are implicated in cancers and metabolic disorders. Covered topics include cancer-related molecular signalling (the tumor suppressor p53, wnt, TGF-beta signalling and deranged metabolism in cancers) Molecular basis of caners. Also, the cancer stem cells, RNA biology and Drug design for Cancers.", + "title": "Signalling Mechanisms in Cancers and Metabolic Diseases", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The marine environment covers 70% of the earth's surface yet much of it remains unexplored. It performs an important role in regulating global climate and supports a bewildering diversity of life. Its resources are constantly being exploited by people and it suffers impacts from human activities. Management is needed to sustain the goods and services provided by the marine environment, but has to be built on a proper understanding of its properties. The module examines the dynamism of the marine environment, the biodiversity it harbours, its utilization by people, the impacts from human activity and various management systems and options.", + "title": "Marine Conservation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the discussion of most recently developed imaging techniques and their application in biological sciences. It is directed towards graduates with basic cell and molecular biology backgrounds. Upon introduction into the technical background of the most relevant modern imaging methods (such as Super-Resolution Microscopy, Cryo-EM, Advanced Confocal Microscopy etc.) graduate students will give presentations on application of these techniques as published in the most recent literature. Reference to own research projects is strongly encouraged. It will be discussed how such techniques can help to\naddress open questions in the student\u2019s research studies.", + "title": "Novel applications in Bioimaging Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is for you to be able to integrate two disciplines, Evolutionary Biology and Developmental Biology into a common framework. We will explore the evolution of animal bodies, e.g. legs, segments, eyes, wings, etc., by focusing on changes at the molecular and developmental levels. This course will introduce you to important concepts such as hox genes, selector genes, homology, serial homology, modularity, gene regulatory networks, genetic architecture, developmental basis of sexual dimorphism, and phenotypic plasticity, and give you a broad organismic-centred perspective on the evolution of novel traits.", + "title": "Introduction to Evolution of Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5227A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is for you to be able to integrate two disciplines, Evolutionary Biology and Developmental Biology into a common framework. We will explore the evolution of animal bodies, e.g. legs, segments, eyes, wings, etc., by focusing on changes at the molecular and developmental levels. This course will introduce you to important concepts such as hox genes, selector genes, homology, serial homology, modularity, gene regulatory networks, genetic architecture, developmental basis of sexual dimorphism, and phenotypic plasticity, and give you a broad organismic-centred perspective on the evolution of novel traits.", + "title": "Evolution of Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5227B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is directed towards graduates who have acquired background knowledge of cell and molecular biology and are interested in new developments in the field. The module will introduce the unique aspects of different cells and model organisms at molecular levels and approaches to understand their features. The module aims to equip the students with the latest knowledge on characterizing and understanding the functions of cells and molecules in the broadest possible sense. Upon completion of the module, the students will be able to appreciate the critical point of scientific progress in one particular area of cell and molecular biology. They will also be able to appreciate the strengths and weaknesses in applying modern life science techniques in their own\nresearch.", + "title": "Advances in Cell and Molecular Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is directed towards graduates who have\nacquired background knowledge of Biology but are interested in more advance mathematical and physical concepts that are fundamental to Biophysical Sciences. \n\nThe module will introduce topics like algebra, fourier transformation, quantum mechanics, thermodynamics, optics, microscopy and computational programming and simulation, etc.", + "title": "Fundamentals in Biophysical Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5229", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Invasive alien species are a leading global threat to native biodiversity and ecosystem function. They can also have costly impacts on economies, and affect human health and well-being. This module aims to introduce the field of invasion biology and relevant topical and local issues through lectures, directed \nreading and discussion, and project work. Selected topics will include invasion pathways, prevention and management of biological invasions, invasive plants, urban invasive species, aquatic invasive species, and climate change and invasive\nspecies.", + "title": "Biological Invasions", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is directed towards graduates who have acquired background knowledge of scientific writing and are interested in developing the skill further.\n\nThere are 4 components to this course:\n(1) Scientific rhetoric: understanding the contextual factors that make communication in science effective \n(2) Scientific thinking: harmonizing the communicative purposes of writing in science with careful formation of claims and use of evidence\n(3) Scientific style: revising and editing to maximize effective communication, including use of visual displays of information\n(4) Scientific presentation: effectively communicating in person using visual and written aids", + "title": "Writing in the Biological Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Bioimaging is one of the major emerging research areas in biological research due to the wide range of methods available with excellent temporal and spatial resolution. This allows us nowadays to test biological events at the single molecule level. The module aims at introducing the interested student to basics in the field. It will cover the basic physical principles of the diverse bioimaging techniques (electron microscopy, nuclear magnetic resonance, atomic force microscopy and light microscopy) and will cover the basic mathematical needs for a quantitative interpretation of bioimaging data (data\nevaluation techniques, error treatment).", + "title": "Introduction to Bioimaging", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5232", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bioimaging is one of the major emerging research areas in biological research due to the wide range of methods available with excellent temporal and spatial resolution. This allows us nowadays to test biological events at both the cellular and single molecule level. The module aims at introducing the interested student to the practical basis to achieve good images in both light microscopy and electron microscopy. Students will perform hands-on experiments on the different microscopes in the Centre of Bioimaging Sciences and will get a basic training to allow them to take images and perform basic data analysis independently.", + "title": "Practical Bioimaging A: Light & Electron Microscopy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5232A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Bioimaging is one of the major emerging research areas in biological research due to the wide range of methods available with excellent temporal and spatial resolution. This allows us nowadays to test biological events at the single molecule level. The module aims at introducing the interested student to the practical basis to achieve good images. Students will perform hands-on experiments on the different microscopes in the Centre of Bioimaging Sciences and will get a basic training to allow them to take images independently.", + "title": "Practical Bioimaging B: Light Microscopy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5232B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Bioimaging is one of the major emerging research areas in biological research due to the wide range of methods available with excellent temporal and spatial resolution. This allows us nowadays to test biological events at the single molecule level. The module aims at introducing the interested student to the practical basis to achieve good images in microscopy. Students will construct their own microscopes and perform hands-on experiments on the different microscopes in the Centre of Bioimaging Sciences and will get a basic training to allow them to take images independently.", + "title": "Practical Bioimaging C: Hands-on Microscopy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5232C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Analysis and modeling of environmental biology data are essential skills in environmental biology in general and ecological research in particular. The range of statistical and modeling techniques necessary to analyze real data and the complexities inherent to natural systems will be covered. The module will provide graduate students with the expertise to perform modeling and statistical inference on environmental biology datasets at a publishable standard. Topics covered include generalized linear models, generalized additive models, generalized linear mixed-effects models, analysis of communities structure, time series and spatial statistics.", + "title": "Data Analysis for Conservation Biology with R", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-04LAB5", + "day": "Friday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-04LAB5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Quantitative methods are increasingly used in biology. This module focuses on quantitative methods including dynamical systems, individual-based models, and general quantitative reasoning. The module also strongly emphasises critically thinking about when and why to use quantitative methods in biology. Each topic will be taught in the context of a few relevant high-impact papers. Topics include biodiversity, cell biology, population genetics, evolutionary game theory, and circadian rhythms. For each topic, we will learn key quantitative methods, have a critical discussion about how the quantitative methods were applied in the papers, and discuss the real-world implications.", + "title": "Quantitative Methods and Critical Thinking in Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of the course is to describe the physical principles at stake in a microscope. The principles of light emission, the notion of coherence, of diffraction, of adsorption, of interferences and of spatial filtering will be\npresented in the context of imaging of biological samples. The course aims at providing a deeper understanding and physical grounds to the various practical approaches implemented in a microscope. The idea is to follow the imaging path of a light microscope and to introduce physical principles and mathematical simplest formalism to understand the underlying mechanism in the acquisition of biological relevant images.", + "title": "Advanced Optics for Microscopy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5235", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bioimaging is one of the major emerging research areas in biological research. Some of the most interesting biological systems like viruses and certain large molecules are 1 to 100 nm in size, and cannot be studied using optical microscopy methods. To image these biological systems, electron microscopy must be employed. This module aims to introduce students to the basics of electron microscopy and its application in life sciences. Students will learn basic principles of electron optics, and the electron microscopy techniques used in the study of biological systems.", + "title": "Introduction to Electron Microscopy for Life Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus on introduction to the application of computational structural biology. The topics to be discussed will include sequence-structure-function relationships, evolutionary aspects of proteins, allostery in interactions,\nprotein dynamics, drug design and engineering. Students will be required to participate actively in the form of presentations/discussion as well as analyses of recent research articles in the area.", + "title": "Computational Biology: Sequences, Structures, Functions", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Infectious disease modelling has a distinguished history going back to the 1700s and is becoming ever more relevant to human society. This module teaches core skills of infectious disease modelling, focussing on the mathematical analysis of dynamical systems and computer programming of individual-based models in R. The first half of the module will cover classic models, such as Bernoulli\u2019s smallpox vaccination model from the 1700s, Ross\u2019s malaria model from the early 1900s, and Kermack\u2013McKendrick\u2019s susceptible\u2013infected\u2013recovered (SIR) model. The second half of the course will focus on more-recent case studies of currently relevant diseases.", + "title": "Infectious Disease Modelling", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BL5238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Although science and environmental information of\nrelevance to Singapore (e.g. climate change, biodiversity)\nis available from scientific journals, such detailed\ndocumenting is traditionally tailored for the scientific\ncommunity but are otherwise \u2018indigestible\u2019 to the general\nreader. As more people rely on social media for\nenvironmental news, this module strives to teach students\nthe \u2018art\u2019 of science and environmental storytelling via\ncaptivating still images and sensory-filled videos. This\nmodule will introduce story-writing, basic photography and\nvideography skillsets (including image, video and sound\nediting via selected software/hardware), and the use of\nsocial media to share environmental stories of Singapore", + "title": "Science and Communication", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5239", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a project-based module for students taking the M.Sc. in Biodiversity Conservation and Nature-based Climate Solutions. Students will take this module or BL5199 (Research project in Conservation and Climate Solutions). In this module, students will engage in an internship project with our industry partners. Through this independent project, students will gain hands-on practical knowledge in solving conservation-science related problems using scientific techniques. The internship project is concluded with a written report and an oral presentation.", + "title": "Internship in Conservation and Nature-based Climate Solutions", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "BL5299", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A broad introduction to global conservation issues (marine, terrestrial and freshwater) focusing on threats underlying the loss of species and habitats globally. This module aims to explore the economic, social and biological context of biodiversity loss and conservation. Major topics will include deforestation impacts and drivers such as mining, agribusiness, hydropower, wildlife trafficking, ecosystem services, human-wildlife conflict and climate change. Further, the course will include an emphasis on conservation practice and current approaches and strategies to tackling conservation problems.", + "title": "Conservation Problems and Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Climate change has become the defining issue of the 21st century, with far-reaching implications for both natural and human systems. Nature-based climate solutions are an important part of global strategies to address climate change. This module covers current issues related to the impacts of climate change, the potential and limitations of nature-based climate solutions, and the co-benefits they deliver.", + "title": "Topics on Nature-based Climate Solutions", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Freshwater ecosystems are extremely important habitats, housing vast species diversity and providing potable water, energy (hydro-electric dams) and revenue (fisheries) for the global population. With impending threats of urban development, climate change, pollution and invasive species, freshwater conservation is vital to maintaining the health and function of these ecosystems. This module will include hands-on use of conservation tools, case studies of current freshwater conservation projects, designing biomonitoring for conservation outcomes and future challenges to freshwater conservation. Effective freshwater management approaches will also be covered with possible applications for understudied regions.", + "title": "Freshwater Conservation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5311", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Can the dead save the Earth? Natural history collections, being crucial repositories of biological specimens, are indispensable for scientific research and public education. This module highlights the importance of research and display of natural history collections to biodiversity conservation, with emphasis on Southeast Asia, which is one of the most biotically threatened regions. Topics include the changing roles of natural history collections from the past to the future, and different aspects of specimen-based research\u2014from the field to the museum shelves and public gallery, to the world beyond via applications in research (e.g., ecology, evolution, global change) and scientific communication.", + "title": "Natural History Collections and Conservation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The growing local and global population is increasing world food demand. As Singapore\u2019s population is projected to reach 6.9 million by 2030, it faces significant food security challenges considering that most of its food supplies are imported. How will we feed our population under these challenges? This course covers the history of food security in Singapore and the Southeast Asian region, sustainability of current practices and challenges (growing threat of climate change, export bans, pandemics, impacts on biodiversity conservation) facing Singapore now and in the next 50 years. This course will include field trips to agrotechnology facilities and guest lectures.", + "title": "Food Security and Sustainability", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5313", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Conservation actions are costly to implement. In order to optimize the use of scarce resources, conservation teams and organisations need to constantly assess how effective their strategies and management policies have been, so that they can learn and adapt; they also need to show stakeholders that the resources are well-spent in order to maintain or increase support. This module will impart the concepts and techniques of analysing the effectiveness of conservation policies and strategies, which is especially challenging in observational studies where it may be impractical (or unethical) to have properly randomized or controlled replicates. Examples of such techniques include meta-analyses, propensity score matching, and interrupted time-series analysis. The students will have hands-on practice on applying these techniques by formulating a relevant research question on conservation effectiveness, assembling a real-world dataset to address the research question, and then analyzing the dataset concurrently while the techniques are being taught.", + "title": "Quantitative Analysis of Conservation Effectiveness", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Studies on biological systems encompasses biotic and abiotic components. Techniques to obtain data from these systems are extremely varied. This module offers insights into current techniques adopted by practitioners in the field of biological conservation and nature-based climate solutions. The module content is especially designed to provide an overview on the necessary tools to quantify abiotic parameters, organisms, interactions, and processes in natural and modified habitats. Field techniques are the crucial first steps in sound study designs to ensure robust datasets for later analyses and interpretation. Core concepts are shared during lectures sessions with hands-on opportunities during fieldtrips", + "title": "Field Techniques in Biological Conservation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5322", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-03LAB7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-03LAB7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Spatial data management and analysis are essential to support environmental sustainability interventions. Information on carbon stocks distribution, biodiversity,\nland-use change and opportunity costs help devise, monitor and assess the effectiveness of conservation and nature-based climate solutions interventions.\nEnvironmental sustainability practitioners that are able to handle and analyse large quantities of spatial data generated by remote sensing and social media are in high\ndemand, especially towards the monitoring and verification of carbon credits. To fill this demand gap, the module trains students in the integration of spatial programming skills, remote sensing and geographic information systems to answer environmental sustainability questions.", + "title": "Spatial modelling for environmental sustainability", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5323", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The ways that humans have shaped the biodiversity of this planet are complex, multi-faceted and heterogeneous. Efforts to protect biodiversity and ecosystems thus requires a critical understanding of how ecological processes are disrupted by anthropogenic impacts and its implications across various spatial and temporal scales. This module will cover the foundations of ecology and biodiversity theory, how human impacts are affecting ecological processes, and the downstream implications of these effects.", + "title": "Ecological Perspectives on Global Change", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5324", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S2-04LAB5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce environmental governance and policy frameworks relevant to the global context of biodiversity conservation. Major topics include governance in relation to climate change, and international conservation policy (CITES, CBD etc.), resource politics and transboundary environmental problems. The course will also focus on innovative solutions being applied to solve environmental issues and promote sustainability through an overview of corporate social responsibility, innovative approaches to sustainable financing and incentive- based approaches to conservation.", + "title": "Sustainability Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5331", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will examine a diverse range of biotechnology ventures including diagnostics, agriculture, devices and services, and therapeutics. Students will develop critical perspectives on both technical and entrepreneurial aspects of biotechnology through projects in which students research and develop materials for realistic case studies.", + "title": "Case Studies in Biotechnology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5601", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2000", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on development of variable genetic engineering technologies in microorganisms, plants and animals as well as their applications in agriculture, medicine and environmental management. We will present popular examples of genetically modified organisms and discuss their impacts on biotechnology and society. This module will also cover the regulatory aspects of generation and marketing transgenic organisms, controversy and bioethics. We will also offer two simplified practical classes for students to have hand on experience to deliver genes into animal and plant cells and for observation of expression of foreign genes in transgenic organisms.", + "title": "Genetic Engineering in Biotechnology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5602", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1 + ], + "venue": "S1A-0217", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Almost 90% of the infectious diseases related deaths in the world are caused by pneumonia, tuberculosis, diarrhea, malaria, measles and AIDS. When the pathogen (e.g. bacteria or virus) interacts with the host (human or animal), it will divert the function of the host cells for the survival and benefit of the pathogen; causes infection and becomes disease. The major aim of this module is to discuss the causes, prevention, remedies, and economic implications of the common infectious diseases as well as the vectorborne infectious diseases such as Dengue and Zika fever.", + "title": "Infectious Diseases and Host-Pathogen Interactions", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5623", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will develop skills for genomic data analysis in biotechnology using realistic problems in target validation and precision medicine. The working environment will be in the programming language R on desktop workstations. This module will prepare students for more advanced analysis with larger data sets and more diverse genomic data.", + "title": "Practical Analysis of Genomic Data using R", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5631", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Large genomic data sets are ubiquitous in modern biotechnology studies, and so large computing problems are increasingly handled using cloud computing instead of desktop workstations. This module will develop skills for genomic data analysis using realistic problems in analysing drug action and target validation studies. The working environment will be in the programming language R and cloud-based Amazon Machine Instances (AMIs) running Linux.", + "title": "Genomic Data Science in the Cloud", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5632", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will cover the key challenges to sustainable food production arising from climate change. The need for indoor agriculture will be examined along with the cutting-edge precision agricultural technologies associated with this form of urban agriculture. The importance of scientific research in food security will be discussed with genetic solutions, including GWAS, marker-assisted breeding, and genome editing. Furthermore, the key challenges unique to urban indoor farming such as diseases, pests, abiotic stresses will be reviewed. There will be talks by guests from local industry, along with mini projects and seminars by students to enrich their learning outcomes.", + "title": "Urban Agriculture and Crop Biotechnology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BL5661", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an independent, project-based course that can be completed in most cases without experimental laboratory work. Students will complete a Master\u2019s-level project related to biotechnology. Rather than a one-size-fits-all project course, students will initiate, carry out, write up, and present their project in one of several possible frameworks, with learning outcomes and assessment criteria appropriate for a master\u2019s level programme. Faculty will serve as student mentors. Frameworks for projects include the following: - Systematic review and meta-analysis. - Emerging technology review - Business development or new technology proposal - Computational analysis project - Computational methods project", + "title": "Capstone Project in Biotechnology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "BL5699", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The theme of Nature-based Climate Solutions provides an excellent opportunity for teachers to apply and illuminate the principles and applications of geography. In this course, participants will learn the current research in Nature-based Climate Solutions with specific applications in spatial analysis methods with emphasis on the subjective and ethical awareness of creating and presenting maps and data. It will also provide anecdotes, case studies, and policy to bring together the various approaches to global sustainable development and will provide a scaffold to develop students as global citizens.", + "title": "Nature-based Climate Solutions for Geography Teachers", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BL5731", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for students who want to learn about the complex responsibilities and contextual factors facing business leaders today. It will enhance students? awareness of the role that context plays in the making of business leaders. Through interactive in-class case analyses and actual field work, students are expected to come to realize how context influences business leadership over time. The module will introduce how the interactions among the elements in the environmental context (government intervention, technology, globalization, labor market, etc.) impact the effectiveness of business leadership.", + "title": "Business Leadership Case Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BLD3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\"This is an independent study module about leadership at the highest level of an organization. As the ultimate \u201csynergizing force\u201d to create value for the organization by uniting, coordinating, and synchronising all\nelements of an organization to strive to attain organizational objectives, the CEOs are the most critical component in the leadership \u201cfood chain\u201d. What must a leader add to the system to ensure that the organization will function like a welloiled machine to generate value for shareholders?\"", + "title": "CEOs as Leaders", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BLD3002", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "\"This independent study module delves into the leadership experiences a leader may go through as an individual. Leaders are also individual persons like you and me. How to deal with the leadership role and personally make sense of what a person does as a leader thus constitutes an essential part of leadership training. This module will address these topics:\n\u2022 The Leader as an Individual\n\u2022 Personality Traits and Leader Behavior\n\u2022 Leadership World View and Attitude\n\u2022 Leadership Mind and Heart\n\u2022 What Does It Mean to be a Follower\n\u2022 Developing Personal Potential\"", + "title": "Personal Leadership Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BLD3003", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an independent study module meant to cover any topics that are not covered by any other modules on leadership. The supervisor will provide the details according to the needs of the students and the subject matter.", + "title": "Topics in Leadership Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BLD3004", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide a rigorous foundation in economic theory for analyzing the key managerial decision problems of firms and other economic organisations. The course develops the analytic tools of microeconomic theory for modeling the economic behaviour of economic agents (consumers, firms, asset owners etc.) and the functioning of markets, and shows how these tools can be applied to deal with problems of practical relevance to managers. The course takes a \"modernist\" approach, incorporating recent theoretical developments such as transaction costs theory, markets with asymmetric information, principal-agent models to enhance the student's appreciation of the analytic power and practical applicability of economic theory.", + "title": "Managerial Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course demonstrates how Analytics based on the scientific paradigm of data, models and assumptions produce Business Intelligence that can be used to support managerial decisions. \n\nFocus is on the appreciation of a battery of quantitative tools: their scientific concepts, their applications straddling Finance, Marketing, SCM, HR etc. as well as their limitations. \n\nTopics include Decision and Risk analyses, Linear and Nonlinear optimization models, Exploratory CRM (i.e. effective extraction and communication of information from data), Statistical Thinking (data variability, margins of error and hypothesis testing), ANOVA (comparison of group averages), Forecasting using Regression and Time Series models. \n\nThe utility of MS Excel and dedicated add-ins will be demonstrated throughout the course.", + "title": "Analytics For Managers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course demonstrates how Analytics based on the scientific paradigm of data, models and assumptions produce Business Intelligence that can be used to support managerial decisions. Focus is on the appreciation of a battery of quantitative tools their scientific concepts, their applications straddling Finance, Marketing, SCM, HR etc. as well as their limitations. Topics include Decision and Risk analyses, Linear and Nonlinear optimization models, Exploratory CRM (i.e. effective extraction and communication of information from data), Statistical Thinking (data variability, margins of error and hypothesis testing), ANOVA (comparison of group averages), Forecasting using Regression and Time Series models.", + "title": "Topics In Analytics For Managers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5002A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1A", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E-Hybrid_C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the course is to introduce the basic concepts and principles of both financial and managerial accounting, without being excessively technical and procedural in emphasis. The coverage of topics aims to equip non-accounting managers with a basic understanding of accounting concepts and systems, the limitations of accounting data and financial statements, and the uses of accounting information for decision-making and performance evaluation.", + "title": "Financial Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Management & Organization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5004A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers accounting for management decisionmaking as well as cost accounting in manufacturing firms. Major topics include\u2014job order, process and standard costing; budgeting and variance analysis; break-even analysis and relevant cost analysis; and management accounting in new manufacturing environment.", + "title": "Management Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is to provide students with the knowledge of financial resource management and the role of financial manager in maximizing the value of the firm. The main topics covered include: basic concepts and principles of financial management; standard techniques of financial analysis and control; financial markets and business environments; valuation and capital budgeting; capital structure and cost of capital; sources of financing and management of current assets and liabilities of the firm.", + "title": "Financial Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5008", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course is designed to provide the students an understanding of basic marketing concepts, tools and techniques and their application in the analysis of marketing problems. The focus is on creativity and appreciation of the role of marketing in an enterprise and its relationship with other functions of business. The course deploys a combination of teaching methods, including lectures, cases, exercises, and projects and covers topics such as the marketing concept, analysis of the marketing environment, buyer behavior, segmentation and targeting, development of marketing programmess and the specific elements of the marketing mix of product, pricing, promotion and distribution. Issues in integrating the marketing mix and implementing, evaluating and controlling the market programme are also addressed.", + "title": "Marketing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5009", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P2", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Managing Operations", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5010A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the tools and techniques of macro- and international economic thinking as applied to business. It provides a foundation for international management, particularly country risk analysis, finance, and other business disciplines. Specific learning outcomes are understanding of \n(i) Tracking the macro-economy; \n(ii) Sources of growth; \n(iii) Short-term fluctuations -- business cycle; (iv) Government policy; and (v) International trade and finance.\u201d", + "title": "Macroeconomics in the Global Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the basic analytical tools macroeconomics and complements these core tools with a wide range of case studies on key contemporary economic issues, with emphasis on Asia. Specific learning outcomes include: (i) What drives the business cycle; (ii) Policy tools for stabilization; (iii) Monetary policy and inflation (iv) Fiscal policy and government debt sustainability (v) Determinants of long-term growth", + "title": "Topics in Macroeconomics in the Global Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5011A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the work of top management in business organisations. The primary perspective adopted is that of the general manager at the head of a business entitya?\"the corporation, business, division or planta?\"whose main responsibility is the overall success of his or her organisation. The course concentrates on the skills and actions required of the general manager for the development, communication and implementation of strategic organisational choices in the context of complex business situations. Two related areas comprise the core of the course. The first, strategy formulation, address the goals and objectives of the course, and the means by which these goals and objectives are to be achieved. The second area, strategy implementation, concentrates on how the general manager deploys the organisationa??s resources to implement, control and improve the formulated strategy. In order to capture the pragmatic, action oriented nature of the general managera??s task and the complexity of the environment in which he or she operates, part of the course is taught through the case method. In addition, students will be exposed to a range of practitioner or theoretical readings on the subject.", + "title": "Corporate Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5013", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1230", + "weeks": { + "start": "2023-05-13", + "end": "2023-06-17" + }, + "venue": "BIZ1-0206", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1630", + "weeks": { + "start": "2023-05-13", + "end": "2023-06-17" + }, + "venue": "BIZ1-0206", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to help students improve their proficiency in Business English so as to meet the demands of communicating as students and as future managers.\n\nStudents will engage in a wide range of activities which emphasise fluency and accuracy. They will be involved in various oral and written tasks in order to practise the skills of speaking, listening, writing and reading.", + "title": "Advanced Business Communications", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Leading with Impact invites you to your journey as a leader. The opening questions for the module are: How am I doing as a leader? How can I lead more effectively, with more impact? Related to this question are others such as \u201cWhat does it mean to be an effective leader?\u201d \u201cWhat is the impact of leaders, and how to assess leaders\u2019 effectiveness and impact?\u201d This module will address different social entities that leaders encounter. \n\nTo answer the above questions, the module offers an extensive examination of leadership in and outside organizations. It aims to provide you with a set of\nexperiences that are designed to enhance your selfawareness and your capacity for effective leadership.", + "title": "Leading with Impact", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5016", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Leadership in Organizations", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5016A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Operations refers to the collection of actions that a firm takes to channels its resources into outputs (products/services) of value. Although not every manager\nwill have direct control over a firm\u2019s operating processes, all managers are, invariably, indirect stakeholders in the operations of a firm, its subsidiaries, and/or its partners. \n\nThis module aims to equip students to understand of the processes of a firm in order to assess its operations thoughtfully, identify root causes of operational failure, and develop recommendations using analytics as a means of structured decision-making, with the ultimate goal of achieving impactful and sustainable operational improvement.", + "title": "Managerial Operations and Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5017", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the basics of laws and legal reasoning, particularly in the context of business. Topics covered under this course include the role of law and international organizations in business, sources of international and domestic law, classification of law, dispute resolution, conflicts of\nlaw and contract law. Students will be able to understand the legal risks involved when entering into contracts with parties from another jurisdiction and the different ways they can seek redress when the other party defaults.", + "title": "Legal Issues in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the basics of laws and legal reasoning, particularly in the context of business. Topics covered under this course include the role of law and international organizations in business, sources of international and domestic law, classification of law, dispute resolution, conflicts of law and contract law. Students will be able to understand the legal risks involved when entering into contracts with parties from another jurisdiction and the different ways they can seek redress when the other party defaults.", + "title": "Topics in Legal Issues in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMA5102A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to provide participants with the basic theoretical knowledge, skills, and sensitivities that will help them deal effectively with key management issues and challenges in today's global business environment. We intend to explore the major issues and challenges facing companies with worldwide operations as seen by the managers themselves. The questions addressed include:\n1) Why do firm globlize?\n2) What are the various demands of operating in a global environment?\n3) What are the operating tasks involved in implementing multidimensional global strategies? and\n4) What is the nature of the general management challenge involved in managing a complex organization in a rapidly evolving global environment?", + "title": "Global Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to provide participants with the basic\ntheoretical knowledge, skills, and sensitivities that will help\nthem deal effectively with key management issues and\nchallenges in today\u2019s global business environment. We\nintend to explore the major issues and challenges facing\ncompanies with worldwide operations as seen by the\nmanagers themselves.", + "title": "Topics in Global Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5104A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides a comprehensive overview of the major elements of high technology entrepreneurial activity, including evaluation and planning of a new business, intellectual property protection, financing, team building, product development, marketing and operational management issues, alternative models for revenue and growth, and exit strategies\n\nThe course is targeted primarily at graduate students with technical backgrounds, particularly those from engineering, science and computing who are interested in commercializing their inventions or technical know-how by starting up their own ventures.", + "title": "New Venture Creation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The class goal is to build understanding of strategies that respond to Asia\u2019s business environments\u2014a set of business environments as diverse as there is in the entire world. The first part of the coursefocuses on major components of the business environment. Key components include government policies and institutions, macroeconomic factors such as foreign exchange rates and resource endowments, and the influence of local communities and culture. The second part of the course then explores business responses to contextual features, which themselves form part of the environment for doing business in Asia. Specific business responses examined may vary year to year in keeping with shifting realities.", + "title": "Asian Business Environments", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5112", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Asian Business Environment", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5112A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1A", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E-Hybrid_C", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the foundations of managing technological innovation. The readings and discussion will focus on the concepts and frameworks for analyzing how firms can create, commercialize and capture value from technology-based products and services.", + "title": "Management of Technological Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5115", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the foundations of managing technological innovation. The readings and discussion will focus on the concepts and frameworks for analyzing how firms can create, commercialize and capture value from technology-based products and services.", + "title": "Topics in Management of Technological Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5115A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1A", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E-Hybrid_C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Strategy and Policy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5118", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to environment impact, Business Sustainability is now seen through the lens of Social (Labour and Human Rights), Anti-Corruption and Corporate Social Responsibility practices. These components are recognized as fundamental to business strategy and execution. C-Suites, Boards of Directors, your organization/teams look to you as an individual and as a leader in doing it right, ever time, in all your interactions with internal and external stakeholders. \nThis course seeks to provide a platform for sustainability oriented professionals to understand and implement a business strategy towards achieving a triple bottom line \u2013 through Environment, Social and Governance (\u201cESG\u201d) actions. You will understand what you can do to drive and embed sustainability within your organization \u2013 established corporations, start-up ventures, consulting firms, for profit, not for profit, SMEs etc. You can take the knowledge and skills that will be shared during this course and use it as a platform for ethical decision making and risk management.\n\nUnder the CA Components, the Final Test will be replaced with two MCQ Quizzes (midterm and end term) with a total mark of 40% (20% each). The other two components remain unchanged.", + "title": "Special Topics in Strategy and Policy: Sustainability Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5118A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course intends to provide an overview of the key strategies linking management, economic and policy issues facing the industry. The main emphasis is put on Pharmaceutical, Medical devices & Biotech sectors where\nwe focus on functional areas where these industries differ significantly from other industries such as intensive R&D and rapid technological change; a complex global market place in which \u201ccustomers\u201d include physicians, pharmacists and third party payers, as well as individual consumers; evolving M&A strategies and government regulation of every dimension of the business. The perspective is global but with emphasis on Asia Pacific.", + "title": "Strategies in Healthcare Industry An Asian Perspective on Pharma, Devices & Biotech sectors", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5118B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Family Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5119", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As emerging markets are dynamically altering the economy, it\u2019s important for us to study only the most recent information available to us, in the form of newly published case studies to look at how international and domestic firms operate in emerging markets and what new opportunities are being created to circumvent institutional voids in these growth markets. Guest speakers will be industry experts directly related to the cases being discussed in class, panel discussions will be arranged for more direct interaction for students with industry. The final group project will capture the essence of the key learnings. To incorporate all the additional learnings and extensive industry engagement, this course will carry 4 MC and be taught over the full semester.", + "title": "Current Trends in Emerging Growth Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Asian Business Insights III", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the link between economic growth, financial markets and policy in Asia, from a structural as well as cyclical perspective. The course draws on many analytical tools of macro and international economics covered in BMA5011, which is a pre-requisite. Major topics covered include: (1) The role of financial system and regulation in Asia\u2019s economic development; (2) Asian\nfinancial crisis and its legacies; (3) The evolution of Asian exchange rate regimes and real exchange rate adjustment; and (4) Opportunities and policy challenges posed by globalization, regional integration and cross-border\ntransmission of shocks.", + "title": "Macroeconomics and Finance: Perspectives from Asia", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the link between economic growth, financial markets and policy in Asia, from a structural as well as cyclical perspective. The course draws on many analytical tools of macro and international economics covered in BMA5011, which is a pre-requisite.", + "title": "Topics in Macroeconomics and Finance: Perspectives from Asia", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5122A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Businesses must manage their affairs subject to a number of external pressures, including government regulation, particularly in the area of environmental and natural\nresources. While businesses cannot escape environmental regulation, they can influence the course of government intervention in their operations, both by weighing in on the goals of public policies and by influencing the mechanism by which governments intervene in markets. To be effective players in government-business relations, how ever, managers need to understand the concepts that underpin environmental policy.", + "title": "Environmental and Resource Management in a Regulatory Environment", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5124", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an MBA elective course in the management of networks. It will utilize articles in the business press, case studies, discussion, exercises, and guest speakers in examining a variety of networks that managers and entrepreneurs must design, access, mobilize, and otherwise lead. These include entrepreneurial networks of resource providers and alliance partners; networks of communication and coordination within established organizations; supply chain and marketing channel networks; informal networks in and outside organizations that confer influence and advance careers; cross-border networks for doing business globally. The management of networks requires a distinct and critical set of capabilities, among them: powers of persuasion and trust-building; charisma and vision; spontaneity and flexibility; and tolerance for change and uncertainty.", + "title": "Managing Business Networks", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5125", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The application of computing power to the collection and analysis of detailed information relating to wide variety of processes and issues \u2013 summarized as big data \u2013 has the potential to change how business problems are evaluated\nand solved. In turn this has the potential to change how organizations operate and succeed. This module introduces students to big data constructs and uses in strategy and decision making. It will focus on the implications of big data for all aspects of business strategy, focusing primarily on customer interactions, competitive advantage, capabilities development, and how these influence the content and implementation of strategy.", + "title": "Strategy and Big Data", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5126", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover the drivers and essential capabilities required in managing consulting tasks. The course will focus on management consulting in particular and provide an in-depth examination of dozens of consulting case studies as well as to have students participate in roleplaying the consulting process.", + "title": "Consulting: Process, Industry and Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5127", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Venture capital and other sources of private equity play a critical role in the founding and development of new enterprises. Over the past 25 years, there has been an enormous surge in the financial resources allocated to venture capital. This course covers all major aspects of starting and operating a venture capital firm and the role venture capital firms play in the startup ecosystem. It will cover fund raising, sourcing & screening investments, managing investments, exiting investments, strategy for the venture capital firm itself, and public policy.", + "title": "Venture Capital", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5128", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2159", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "BIZ1-0302", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "BIZ1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Entrepreneurship and innovation are buzzing around the world. In recent times, we see how entrepreneurs have transformed communities by introducing radical products, services and business models. It is expected that Asia will continue to ride this momentum with rising affluence, better connectivity and increased government support. \n\nIn this course, we will take on two lens: that of an entrepreneur looking for VC funding, and that of a VC looking for great businesses. Think of it as an ntersection\nof supply and demand \u2013 supply of amazing ideas, and demand for venture funding. The focus of course will be highly practical, with several guest speakers and real-time industry cases to deep-dive, discuss and solve.", + "title": "Special Topics in Venture Capital", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5128A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Major technological innovations and inventions like Artificial Intelligence, Blockchain, 3D printing and Robotics are maturing to the point where the way we work and the way we live will be changed forever, just like businesses today cannot function effectively without the internet, email and the mobile phone.\n\nIt is imperative that business leaders must keep pace with these waves of change in order to survive and prosper in this new business environment. This module will focus on addressing the challenges of the digital firm.", + "title": "Leading with Strategy in Digital Firms", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5129", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "BIZ1-0301", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "BIZ1-0301", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on addressing the challenges of the digital firm. The class will explore some of these maturing technologies and their impact on society and how businesses must deal with these major technologies and focus on developing strategy to compete successfully both domestically and internationally. The class will explore the underlying concepts, analytical techniques, and evaluation of strategic options that form the basis for strategic analysis and action.", + "title": "Topics in Leading with Strategy in Digital Firms", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5129A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Organizations that subscribe to the best practices in the\nera of smart technology may be behind the times. It is far\nmore sustainable to be concerned about next practices.\nIn traditional management consulting, best practices was\nking, now the ability to leverage insights to redefine\nexperiences and reinvent business models using data,\ndigital and cloud technologies reign. This suite of new\napproach - that we refer to as Consulting 2.0 (Next\nPractice consulting) - represents a major change from the\nolder approaches to apply a toolbox of methods. Focus will\nbe placed on developing proficiencies required to practice\nConsulting 2.0", + "title": "Client-Centred Consulting", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5130", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s digital landscape, businesses are \u201cborn global.\u201d This is a game-changer for micro and small businesses, as they can instantly access the global digital commons and leverage an infinite amount of resources-- at little or no cost.\n\nThis course is for risk-takers and entrepreneurs looking to enginner a small business from scratch, as well as for corporate thinkers looking to apply fast, nimble and creative approaches to jump start parts of their existing organizations.\n\nThe course will focus on formulation, exploration and validation of an idea, and how to turn that idea into a functional, scalable micro-national business. Emphasis will be on Asia as well as emerging market opportunities. Students will gain first hand access and insights from Mr Capri\u2019s recent research and experiences regarding MSMEs in Indonesia and throughout SouthEast Asia.", + "title": "Micro-National Champions in the Digital Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module retraces the emergence of artificial intelligence, connected devices, blockchain and quantum computing and analyzes their role in the data economy. A variety of corporate case studies and industry examples will shed light on the transformation of existing business models through technology and the creation of new services along global data supply chains. Data valuation models and the importance of trust in information sharing and cross-border digital trade will be discussed. The module will examine the risks of emerging technologies and derive governance and policy implications.", + "title": "Emerging Tech and the Value of Data", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5132", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "BIZ1-0203", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses the impact of emerging technologies on business models, work, management and the global economy. We will assess the opportunities and risks of artificial intelligence (AI) and other emerging technologies in a business and societal context. Conceptualizing data as an asset will allow us to understand the rise and dominance of digital platforms in the last twenty years. It will also inspire a discussion about surveillance and privacy", + "title": "Topics in Emerging Tech and the Value of Data", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5132A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Entrepreneurs must understand the business structure which best suits their business plans. Similarly, managers must appreciate the liabilities and decision-making mechanisms in the business structure they manage. This module will equip entrepreneurs and managers with the legal fundamentals to propel them in their start-up journeys or new management roles. Through case studies, participants will gain insights into real-life corporate tussles, and acquire skills to navigate their way effectively through different stakeholder relationships. This module will also give participants a headstart in new developments e.g. new laws in Singapore (which commenced on 30 July 2020) that affect management actions.", + "title": "Legal Fundamentals for Entrepreneurs and Managers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5133", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Entrepreneurs face several challenges in identifying opportunities and venture building. Operating in an environment of risk and uncertainty, they must seek relevant human and financial resources and are confronted daily with complex management decisions. This course thus teaches various strategic perspectives and tools implemented to navigate the entrepreneurial ecology to approach success.", + "title": "Entrepreneurial Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5134", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Adapting to the ongoing digitization of the economy, and of society in general, is arguably the most challenging transformation every business is currently facing. Digital technologies have become the core of almost every industry. Rapidly advancing technologies and digital trends, changing customer behaviours, and disruptive competitors are making it increasingly difficult for organisations to drive sustainable and profitable growth. CEOs report that many of their digital transformation efforts fail and our research is showing that up to 70% of organisations failed to exceed their return on digital investment goals. Leaders are well aware of the need to transform but are desperately in need of direction as to how to change and even where change is required. This specific course will focus on execution of digital strategy in the \u201creal world\u201d and equip students with some of the tools to be kept in mind in this rapidly changing paradigm.", + "title": "Execution of Digital Strategy in the real world", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5135", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Adapting to the ongoing digitization of the economy, and of society in general, is arguably the most challenging transformation every business is currently facing. Digital technologies have become the core of almost every industry. Rapidly advancing technologies and digital trends, changing customer behaviours, and disruptive competitors are making it increasingly difficult for organisations to drive sustainable and profitable growth. CEOs report that many of their digital transformation efforts fail and our research is showing that up to 70% of organisations failed to exceed their return on digital investment goals.", + "title": "Topic - Execution of Digital Strategy in the real world", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5135A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1A", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In an ideal world, managers could reliably make optimal business decisions, with sufficient time and information to support their case. Unfortunately, important strategic and business decision-making often happens without ample time or complete information, increasing the risk of suboptimal outcomes. This course focuses on teaching the essential consulting tools that are required to effectively address business decisions through a holistic synthesis of different functional frameworks. Many of these frameworks and perspectives will be equally valuable to corporate managers, who may take on \u2018internal consultant\u2019 tasks or roles in their future tenure.", + "title": "A Consulting Toolkit For Strategic Decision-Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5136", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with the required knowledge and skills in the study of executive leadership from a strategic choice perspective, or more concisely, strategic leadership, which focuses on the top executives who have overall responsibility for an organisation; their characteristics, what they do, how they do it, and particularly, how they affect organisational outcomes. The module emphasises the central role of strategy and leadership in organisational outcomes. It focuses on the top leadership level in an organisation that exerts the most influence on its strategy through their behaviours and decisions.", + "title": "Strategic Leadership", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5137", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1630", + "weeks": { + "start": "2023-06-24", + "end": "2023-07-29" + }, + "venue": "BIZ1-0202", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1230", + "weeks": { + "start": "2023-06-24", + "end": "2023-07-29" + }, + "venue": "BIZ1-0202", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Strategic Information Technology", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the strategic roles of information systems and technology (including Internet) in business organizations. Frameworks for analyzing the strategic impact of information technology on organizational and industry structures are introduced. Information systems that support or shape an organization's competitive strategy, as well as information systems that are used to re-engineer business processes in organizations are discussed.", + "title": "Topics in Strategic Information Technology", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5232A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In an increasingly competitive world, companies must focus on the investments, outsourcing options, organization and staffing of technology to drive and support business. The critical path to business success is however not the technology itself, but changing the business process and the work supported by the technology.\n\nService transformation around technology is one of the methods by which organizations evolve/sustain themselves and also grow to delight their customers, and to expand their core product/service offerings.\n\nSuch transformations are underpinned by an attention to the customer, judicious application of information and communications technologies, strategic marketing. and numerous other management tools.\n\nDrawing on years of experience managing leading companies based in Singapore and the regions, this module will walk the students through the different scenarios and challenges faced, to provide a holistic approach and an in-depth study of organizations that have transformed themselves using a mix of purpose/strategy, business process (both for productivity or new businesses) and people strategies.", + "title": "Transformational Service Innovations", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As companies go regional and go global, they will face challenges associated with operating in diverse environments with different levels of infrastructure development, geopolitical systems, and business cultures. Especially in the context of Asia, these challenges are twofold: operating in Asia, as well as for Asian companies aspiring to grow regionally and globally. \n\nThe course will look at an organization\u2019s international strategy, operational planning, and execution. It will also look at look at driving corporate strategy across countries and business divisions. This will be in the context of planning for market entry, global supply chain strategy, and setting up distribution and service networks.", + "title": "Global Operations Strategy In The Digital Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ1-0201", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ1-0201", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Asian based MNE\u2019s face growing challenges regarding the management of their international value chains (IVCs). This course explores how a business can successfully combine and balance key elements in an IVC model (financial, logistical, regulatory and operational) to achieve optimal results. The course will look at how information technology is being harnessed to alter competitive landscapes and manage compliance risks. In both an Asian and global context, students will examine such factors as free trade agreements (FTAs), customs duties, VAT/GST regimes, corporate tax structures, export controls and sanctions, labour and ethical laws. Additionally, the course will explore environmental and social issues impacting IVCs.", + "title": "Managing Global Value Chains and Networks", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the dynamics involved in an MNE\u2019s quest for global value chain optimization and risk management, with a focus on the Asia Pacific region. We will go beyond fundamental supply chain management and explore how other so-called \u201csecondary\u201d drivers influence the core \u201cprimary\u201d drivers of international value chains.\n\nThe class will explore how information technologies are impacting IVCs, and how real-time data management, social media and other \u201cdisruptive\u201d technologies are redefining IVCs. Students will also study economic trends and regulatory environments involving global trade and tax regime management.", + "title": "Topics in Managing Global Value Chains and Networks", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5237A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course deals with the formulation and execution of\nData Monetization strategies. This relatively new\norganizational competence needs the integration of\ncomplementary views on data from four different domains,\nnamely, Business, Legal, Operations and Technology. The\ninterplay also cuts across different capabilities involving\nleadership, organizational culture, process digitisation,\nlegal and regulatory, analytics and information technology.\nExperience around the world demonstrates that a holistic\napproach is essential to deliver Data Monetization\nsuccessfully. The content in the course will focus on\nstrategies and actual market opportunities in different\nindustries, covering a variety of Lines-of-Business and\nexpanding practical value-creation in ecosystems.", + "title": "Data Monetisation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Digitization \u2013 e.g. machine learning, AI, automation \u2013 is transforming how firms operate. Firms stand to gain efficiencies from digitally supporting their existing\nprocesses. Incumbent and new businesses are leveraging these technologies to upend existing processes and sectors altogether. We will take a three step approach: First, we will develop frameworks that enable us to evaluate digitization opportunities. Second, we will gain hands on experience with some digital/analytical tools such as social media analytics. Third, a bolder step, we will develop an action plan for how you can leverage these technologies for business model innovation.", + "title": "Digitization for Business Model Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Management Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5255", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Supply Chain Management has been identified in today's corporations as the new competitive edge. What is a Supply Chain? Why is it important to the success of corporations? How do cross functional organizations operate effectively in a supply chain? What are the supply chain successes and challenges in various worldwide corporations and why? These are some of the examples of discussions this course will address to help participants make effective management decisions.", + "title": "Leadership in Supply Chain, Operations & Sustainability", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5271", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1230", + "weeks": { + "start": "2023-05-13", + "end": "2023-06-17" + }, + "venue": "BIZ1-0202", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1630", + "weeks": { + "start": "2023-05-13", + "end": "2023-06-17" + }, + "venue": "BIZ1-0202", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to today\u2019s business as the new competitive edge.\nThe topics covered under this course include:\n- What is a Supply Chain?\n- Why is it important to the success of corporations?\n- How do cross-functional organizations operate effectively in a supply chain\n- What are the supply chain successes and challenges in various worldwide corporations and why?", + "title": "Topics in Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMA5271A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Project Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We analyze price formation and economic performance in\ncompetitive and monopolist markets by using optimization,\nstatistical and stochastic methods. Microeconomic\ntechniques are used to analyze various pricing decisions\nand problems such as price discrimination and price\nelasticity estimation. We also discuss causal inference by\nusing instrumental variables and difference-in-differences\ndesign. Finally, we briefly discuss multi-armed bandits and\ntheir algorithms.", + "title": "Analytics in Managerial Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5275", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "BIZ1-0301", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 68, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "BIZ1-0301", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 68, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For more and more enterprises, competitive advantage is obtained via data analytics and idea sharing in the current fast-paced, data-intensive, and open-source business environment. The capability of understanding data, digging \nout valuable insights from data, and thus making right marketing decisions accordingly has gradually become an essential skill that marketing professionals must master in order to excel in their career. This course prepares students with fundamental knowledge of using R to organize, visualize, and analyze \ndata. It covers the complete data analytics cycle to train students to be future ready, data sensitive, and data minded marketing professionals.", + "title": "Big Data in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5276", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-24" + }, + "venue": "BIZ1-0301", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "BIZ1-0301", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5300B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5300C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMA5300D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMA5300E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMA5300F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5300I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5300J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5300K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5300L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMA5300M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "1", + "moduleCode": "BMA5300X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to international finance and international financial management. Its purpose is to train students to relate financial analysis at the firm level with economic analysis at the macroeconomic level. In other words, the course tries to help financial analysts to relate their work to those of strategists and economists. Due to the objective of the course, the course has more weight on breadth than on depth regarding the coverage of the subjects.", + "title": "International Financial Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is an introduction to portfolio management theory and practice covering aspects of investments and analysis relevant to asset management companies. Most of the core areas covered are in line with the CFA core body of knowledge for investment analysts and portfolio managers. We will focus on the main asset classes ? stocks and bonds and will also be covering derivatives and swaps. Starting from security analysis, sector and market strategies, the course will extend into portfolio management. \n\nThough valuation techniques and theories are foundations to any investment analysis, the over-riding factor hinges on market knowledge and experience and the process of translating this knowledge into investment strategies. This course will not only introduce the basic concepts and the nuts and bolts of investments but will also focus on real-time market analysis. Besides covering investment theory, the class will be required to apply the methodology into real life applications and translate these applications into actual portfolio strategies. These assignments will subsequently be channeled into an investment portfolio that the candidate will manage in a team environment. Participants will have to enroll into a stock market stimulation game with emphasis on the implementation of course study materials into market actions.", + "title": "Investment Analysis and Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Investment Analysis & Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5302A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1A", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E-Hybrid_C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a conceptual framework for effective financial statement analysis and the use of financial statement data in a variety of business contexts. This framework helps to interpret the quality of the accounting and the imperfections and distortions in financial statements that are issued by firms. Case studies are used to apply the concepts and tools of financial analysis to practical issues. The course does not emphasise the detailed accounting rules and conventions. However, it provides a good understanding of the broad principles underlying the preparation of financial statements. The focus is on general conceptual approaches to analyzing assets, liabilities, shareholders? equity, revenue, and expenses in order to evaluate a firm?s accounting choices, to understand the effects of alternative accounting techniques on results of operations and financial position, and to determine how financial statement information is used in analysis.", + "title": "Financial Statement Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5303", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "BIZ1-0206", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "BIZ1-0206", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help you to understand tha basic characteristics of options, futures and other derivative securities. The issues addressed in this module include the market structure, pricing and hedging using derivative securities. Througout the module, the emphasis is placed on the understanding of concepts rather than on the memorization of formulas. A working knowledge of spreadsheets and internet access, and a basic knowledge of statistics and finance are presumed.", + "title": "Options and Futures", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover various types of derivative securities including forward, futures, options, swaps, swaptions etc. Students can appreciate the fundamental intuition involved in valuation of derivative securities by using Binomial Lattice (Binomial Tree)\n\nThe course will also cover various applications of derivative securities in managing various types of risks faced by corporations, non-profit institutions as well as sovereign entities. The discussion will cover the management and hedging of interest rate risks as well as commodity price risks including the use of stock index futures in changing CAPM beta and the use of bond futures in changing the duration of liabilities or bond portfolios.", + "title": "Topics in Options and Futures", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5307A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers majpr topics in fixed income securities. The emphasis of this module will be on valuation. The module will tend to be quite quantitative. The area of fixed income comprises of study of bonds, bond derivatives, interest rate derivatives, interest rate swaps, mortgage and asset backed securities. We will be focusing principally on interest rate riask and valuation of these instruments. Towards the end of the course, we will briefly touch on credit risk", + "title": "Fixed Income Securities", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5308", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Fund Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5309", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1230", + "weeks": { + "start": "2023-06-24", + "end": "2023-07-29" + }, + "venue": "BIZ1-0301", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1630", + "weeks": { + "start": "2023-06-24", + "end": "2023-07-29" + }, + "venue": "BIZ1-0301", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This objective of this module is to gain insight into the operations and concepts of investment management beyond the theory and fundamentals.", + "title": "Topics in Fund Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5309A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1A", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E-Hybrid_C", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "P1A", + "startTime": "1300", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E-Hybrid_C", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide a thorough study of corporate governance from an international perspective, drawing from the perspectives of academics, regulators, practitioners and policy-makers. Corporate governance refers to the processes and structure by which the business and affairs of the company are directed and managed, in order to enhance long term shareholder value through enhancing corporate performance and accountability, whilst taking into account the interests of other stakeholders? (Corporate Governance Committee, 2001).\n\nThe course will commence with an overview of corporate governance, factors giving rise to its importance, and an overview of the corporate governance mechanisms that help control managerial behaviour. Different models and systems of corporate governance internationally are compared and contrasted, and policy responses of different countries to corporate governance concerns are examined. The course will then examine specific corporate governance mechanisms and issues, including board of directors, board committees, auditing, executive and director compensation, disclosure and transparency, ownership structures, and also corporate governance issues in specific contexts, such as government linked companies, family owned companies, IPO firms, mergers and acquisitions, management buyouts, etc. Case presentations and discussions will be a critical part of the course. Practitioners, such as directors, will be invited to share their perspectives with students.", + "title": "Corporate Governace", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help you develop a deeper understanding of the issues and the basic tools needed for corporate finance managers. The issues addressed in this course include capital structure and payout policy, how to raise external capital, mergers, Economic Value Added (EVA), real options and corporate risk management. It is designed for everyone who have taken introductory corporate finance course and/or an investment course. This module will cover cases as well as academic/ practitioner papers on the issues being covered in the class", + "title": "Advance Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The 2MC module will cover some foundation topics in Corporate Finance such as cost of capital, valuation, capital structure theory and mergers and acquisitions. The course will not cover advanced topics such as corporate restructuring, options, warrants and convertibles and venture capital issues.", + "title": "Topics in Advanced Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5312A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers major private equity investment types including venture capital, growth capital and buyouts. The Course format will include lectures, interactive discussions, case studies and hands-on simulation. Topics will cover the entire private equity investment cycle from fund raising, structuring to deal screening, valuation, investment negotiations to post-investment value add and exits. \n\nAn underlying theme of the course is to evaluate to what extent venture capital and private equity markets can create value and wealth, generate social return and promote economic growth.", + "title": "Venture Capital and Private Equity", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5313", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-24" + }, + "venue": "BIZ1-0302", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "BIZ1-0302", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Valuation and Mergers & Acquisitions", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5313A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to survey the financial methods used in\nmergers and acquisitions, buyouts and corporate\nrestructuring. Related legal, strategic, organizational and\nmanagement issues will also be considered.", + "title": "Topics in Valuation and Mergers & Acquisitions", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5313C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1A", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E-Hybrid_C", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 4 MC, 3-week intensive course seeks to provide a basic framework of the Private Equity industry, expand on the principles of Private Equity, with a particular focus on leveraged buy outs, and bring to life these principles through a \u201cpractitioners guide\u201d to the subject by the illustration of several live case studies, guest CEO speakers, and panel discussions.", + "title": "Private Equity", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5313D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers major private equity investment types including venture capital, growth capital, buyouts and corporate venturing.\n\nThe Course format include Lectures interactive discussions, Case Studies and Hands-on Simulation.\n\nTopics will cover the entire private equity investment cycle from fund raising, structuring to deal screening, valuation, investment negotiations to post-investment value add and exits.", + "title": "Topics in Private Equity", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5313E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will touch upon a broad range of fields in entrepreneurial finance. This course analyzes essential issues and problems facing entrepreneurial enterprises from starting-up, raising financial resources, managing and sustaining growth, as well as exiting stategies. The course is case oriented, with real-world cases studied beforehand and analyzed and discussed in class. \n\nThe aim of this course is to prepare students for careers related to entrepreneurial enterprises\u2014as founder, employee, investor, banker or provider of consulting or financial services to these businesses.", + "title": "Entrepreneurial Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5314", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Entreprenuerial Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5314A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Valuation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5315A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5316A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Investment Banking", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5318", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a non-technical course on investment banking designed to introduce students to the world of investment banks. Investment banks have played a pivotal role in the recent financial tsunami starting in the USA and extending to every part of the world. Special attention will be paid to discuss how investment banks contributed to the crisis through their integration with various other financial\nmarkets and institutions, and how they have, in return, been affected by the crisis.", + "title": "Topics in Investment Banking", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5318A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the principals of financial risk management from the perspective of non-financial corporations. It discusses why firms should or should not hedge, how to identify and measure risks, as well as how to hedge risk exposures. Attention will be paid to manage risks such as foreign exchange risk, commodity price risk, interest rate risk and credit risk. The course will include many case studies of financial risk management.", + "title": "Corporate Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5319", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the concept of risk management from the perspective of non-financial corporations. It discusses why firms should or should not hedge, how to identify and measure risks, as well as how to hedge risk exposures.", + "title": "Topics in Corporate Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5319A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this course is on the international financial environment where business firms operate and financial service providers compete, with specific reference to Asia. It is tailored to students interested in careers in international banking, international financial institutions, or with the finance departments of multinational corporations -- or anybody else for that matter who recognizes that a knowledge of international financial markets is essential to doing business intelligently in the Asian Region and indeed in an increasingly \u2018globalized\u2019 world. Since the onset of the Global Financial Crisis markets are subject to rapid institutional and regulatory change, against a background of dynamic shifts in relative economic growth among different parts of the world, putting great stress on the financial architecture that supports financial markets. The course aims at providing a deep understanding of the dynamic forces that shape policy, institutions and markets in the future.", + "title": "International Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this course is on the international financial environment where business firms operate and financial service providers compete, with specific reference to Asia. It is tailored to students interested in careers in international banking, international financial institutions, or with the finance departments of multinational corporations -- or anybody else for that matter who recognizes that a knowledge of international financial markets is essential to doing business intelligently in the Asian Region and indeed in an increasingly \u2018globalized\u2019\nworld.\n\nSince the onset of the Global Financial Crisis markets are subject to rapid institutional and regulatory change, against a background of dynamic shifts in relative economic growth among different parts of the world, putting great stress on the financial architecture that supports financial markets.", + "title": "Topics in International Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMA5321A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to provide students the opportunity to develop analytical skills and understanding of the theory and practice that underlie corporate governance (CG) systems and the CG effects on corporate financial decisions. This course will focus on various issues in CG with specific reference to the Asian firm context. Topics are namely the ownership and CG structures in Asia and around the world, the effects of agency problems on various corporate financial policies, and CG mechanisms to solve agency conflicts. This knowledge is particularly essential for conducting business intelligently not only in Asia and other emerging economies but also developed countries.", + "title": "Corporate Governance & Financial Policy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced Seminar in Finance module will serve as a comprehensive real world examination of the quantitative fundamental behavioural and model-based approaches utilised for performing security valuation in the financial industry. Major topics covered include Discounted Cash Flow Valuation, Relative Valuation, Valuing Private Firms, Acquisitions and Value Enhancement Strategies. Lectures will involve frequent interaction with practitioners from the industry hands-on lab projects and real-life examples. Suitable for students interested in a career as a financial analyst (both on the buy-side and sell-side), or as a portfolio manager.", + "title": "Applied Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to highlight the skills necessary from a theoretical and practical standpoint necessary for investing using a \u201cvalue\u201d and \u201cfundamental\u201d approach. The course aims to apply traditional value investment theory with the practical challenges of investing in Asian equity markets.", + "title": "Value Investing In Asia", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, the emphasis is placed on the international financial system, international investments, and international financial management, particularly in Asia. It is especially helpful for a student pursuing a career in international banking, global asset management, or international corporate finance. Our course begins with a thorough analysis of the structure and the management of the international monetary system. We will then cover the following topics: the foreign exchange market; exchangerate forecasting; international investments; currency and rate risk management; international capital budgeting; international political risk and corporate governance in Asia; and international banking and liquid asset management. The Global Financial Crisis has changed the global financial landscape tremendously. The course not only provides an understanding of the existing international financial architecture, but the rapidly evolving global institutions and markets.", + "title": "International Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course on China\u2019s Capital Markets that will examine China\u2019s listed equity, private equity, bond and derivative markets from\na development perspective and its convergence towards international standards. The course will use a combination of cases, professional and\nacademic articles to provide an understanding of the concepts, issues and investors involved in China\u2019s capital markets. An underlying theme of this course is how China\u2019s capital markets have developed and improved, despite the grievances and misgivings widely espoused by the investment community.", + "title": "Selected Topics in Finance: China\u2019s Capital Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5326", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provids in-depth conceptual and practical knowledge for managing family business and wealth. Family business is commonly thought to be small and unprofessional; and not lasting three generations. There are, however, a number of \nsuccessful family firms, for example, Hermes, Tata, Toyota, and Ford Motors. This course highlights the challenges uniquely faced by business families and focuses on how to transform the family business to a family enterprise operating professionally; and how to preserve and transfer family business and wealth across generations.", + "title": "Family Business & Wealth Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5327", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on actionable measurement in government, non-profit organizations, social enterprises, philanthropy, and impact investing. \"Actionable\" means that the measurement is used by managers, investors, and other stakeholders in making decisions. The course explores the intersection of three premises that seem to be in some tension with each other. (1) That you can\u2019t manage what you can\u2019t measure, (2) that not everything that counts can be counted, and (3) Campbell\u2019s law that \u201cthe more any quantitative social indicator is used for decision making, the more subject it will be to corruption pressures and the more apt it will be to distort and corrupt the social processes it is intended to monitor.\"", + "title": "Measuring and Improving Social Impact", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5328", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\u2010 This module aims to do the following\n\n\u2010 To provide students with an overview of the commodity markets as an asset class\n\n\u2010 To introduce key concepts for commodity trading and investing businesses\n\n\u2010 To provide a framework for assessing risks and opportunities of commodity investing for traders and investors.", + "title": "Topics in Finance: Trading and Investing in Commodities", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5330", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a practical workshop where the emphasis is on application of corporate finance fundamentals. The focus is on \u201clearning by doing\u201d. The course will use numerous proprietary and contemporary case studies based on lectures experiences and situations to distill out current market practices. It will prepare students for a career in investment management, investment banking and corporate finance.\nThe module aims to do the following\n\u2010 To provide students with different security valuation approaches and their relative merits\n\u2010 To introduce students to security valuation for different kinds of businesses and for differing stakeholder objectives.\n\u2010 To provide a framework for assessing risks and interpreting the market.", + "title": "Applied Investment Valuation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Finance is a key pillar of modern business organisations.\n\nThis module examines why and how financial markets and transactions are regulated, with a focus on corporate fundraising and how the regulatory reforms following the 2008-9 Global Financial Crisis are changing the financial landscape.\n\nThe module also looks at how technological developments (e.g. blockchains, cloud computing, artificial intelligence) are rapidly transforming finance, and highlights regulatory issues that need to be addressed to leverage the potential of Fintech.", + "title": "Financial Regulation in a Digital Age", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course for the landscape of investment in FinTech, Cryptocurrency, Blockchain, and Inclusion. In particular, the students will learn about emerging cryptography technology that will transform the financial sector. Students will learn how and where to apply inclusive FinTech for distribution of trust, privacy protection, and sustainability in digital finance. The role of digital assets as a diversification asset class within the traditional portfolio allocation will be investigated. The course will focus, not on the mathematical and technical aspects of the underlying asset class, but on the translation aspects of these technologies to finance.", + "title": "Inclusive FinTech", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5333", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "(NEW) This course covers innovations and new business models in finance. The objective is to develop insights into how financial technology reshapes the financial landscape. The topics include (1) disruption theory, (2) platform economics, (3) sustainability, (4) artificial intelligence, (5) digitalization, (6) real option, (7) digital payments, (8) cryptography and cybersecurity, (9) blockchain, and (10) decentralized finance.", + "title": "Technological Disruptions in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5334", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-24" + }, + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers analytical tools and innovations in finance that solve practical problems. The objective is to connect theory with practice by building models, testing them with data, and using them for financial decision- making. The topics include (1) efficient market hypothesis, (2) behavioural finance, (3) event studies, (4) Monte Carlo simulation.. The course adopts a cookbook approach to model, code, and solve problems in finance.\n\nThis course aims to nurture a product mindset in developing data analytical solutions in finance. Students should be comfortable with statistics, the fundamental concepts in finance, the stock market, and programming (i.e., Python).", + "title": "Fintech and Financial Data Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5334A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to non-technical fundamentals and economics of digital assets and blockchain. The goal of the course is to provide students with a basic set of skills to understand the foundations and concepts of the blockchain technology which underlies digital assets and its applications in finance. We will focus on the applications, not the technology itself. We will occasionally invite an industry expert(s) to and interact with students and give a guest lecture(s) on the real-world application(s).", + "title": "Digital Assets and Blockchain in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5335", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "BIZ1-0202", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "BIZ1-0202", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sustainability factors are becoming more influential for the\nfinancial returns and long-term value creation of a\ncorporate. The environment, social and governance (ESG)\nrisks have to be properly managed by various\nstakeholders such as corporate, suppliers, customers,\ninvestors, governments, and regulatory bodies. This\nmodule aims to provide the comprehensive understanding\non the sources of the risks as well as financial tools,\ntheoretical principles and various risk management\nframeworks to be employed to control various risks, such\nas corporate crisis, natural disaster, pandemic crisis ,\nhuman error crisis, and technology related crisis. Asianbased\ncase studies are included.", + "title": "Sustainability Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5336", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "BIZ1-0206", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "BIZ1-0206", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Strategy & Organization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMA5400F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Strategy & Organization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5400H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Strategy & Organization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5400I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Strategy & Organization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5400K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Strategy & Organization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5400L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Strategy & Organization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5400M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Strategy & Organization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMA5400N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Strategy & Organization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMA5400P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In a competitive environment, entrepreneurship is an essential and indispensable element in the success of every business organization - whether small or large, new or long-established. This course focuses on entrepreneurship, the processes involved in creating and exploiting new, innovative resource combinations and opportunities. The emphasis of innovation is made explicit in the course title.\n\nThis course focuses on two primary objectives. First to understand how one can enhance and increase innovativeness in any context. Innovation means that a new product, a new service or a new process is developed and pushed into the market. The range, scope, and complexity of the\nissues related to the creating and implementing something new is discussed. At the end of the course, the students will have learnt how to innovate.\n\nThe second objective of this course is to provide students with an opportunity for \u201chands-on\u201d knowledge on starting an entrepreneurial firm. This objective will be accomplished by developing new ideas and asking the question on how one can implement them in the market and by doing\nhands-on interviews with entrepreneurs who have gone through the experience of founding a new venture.\n\nThe course utilizes class discussions of weekly assignments, brief lectures and case discussion. The course is based on an evidence-based management perspective in which there is careful discussion of what is known, what is conjecture, what is (useful) gut feeling and where does new knowledge come from and how it can be used. Discussion of assigned readings and cases and the completion of a field project are integral to meeting the course objectives.", + "title": "Entrepreneurship & Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5404", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Managing Change", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5405", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 2 MC module will focus on the imperatives for organizational change as well as some key ideas for bringing about organizational changes\u2014including developing a vision and cross-cultural implementation of change.\nThe 2MC module will not address specialized topics such as recipients\u2019 reactions, personal aspects of leading change and managing change in a crisis.", + "title": "Topics in Managing Change", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5405A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course objectives are:\n1. To teach and enhance negotiation and conflict resolution skills;\n2. To get a good mix of participants from different backgrounds and allow participants to interact and share different perspectives to conflict resolution;\n3. To adopt an open and experiential to allow participants to reflect, contribute, and relate their life experiences to participation;\n4. To provide a good classroom environment in which participant creativity and spontaneity can be encouraged and fostered.\n\nThe course draws from the experiential workshops on Negotiation conducted at the Program on Negotiation at Harvard Law School and Mediation programs by LEADR in Australia, and also the work on ?difficult conversations? by the Harvard Negotiations Project. The theory of negotiation and conflict resolution will be introduced through short lectures, discussions, and papers. Participants are then expected to apply and demonstrate the acquired knowledge through practice negotiations, mediations, and one-on-one difficult conversations.", + "title": "Negotiations and Conflict Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5406", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a broad overview of managerial decision-making from both a descriptive perspective as well as a prescriptive perspective.\n\nThe topics that will be discussed will be decision making under uncertainty, overconfidence, mental accounting, decision making across time horizons, investor behaviour, organizational competition, bargaining and negotiations.", + "title": "Topics in Managerial Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5409A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The key to unlock true potential of organization is talent. However, it has to be the right talent and this right talent needs to be managed strategically. A wrong talent managed rightly or a right talent managed wrongly will derail organization from reaching its full potential. Topics such as agile workforce, measurement of talent impact, human capital analytics, diversity, employer branding, succession planning and the future of talent management will be covered. Managing talent during organizational change and leveraging talent for organizational learning will be also covered.", + "title": "Talent Development and Performance Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the attraction, acquisition, and retention of talent in organizations. The module will focus on the alignment of the talent management process with business strategy, with culture, and with people. It will focus on global sourcing, employer and employee branding, retention, and succession planning. As a manager\u2019s success largely depends on how he or she negotiates with subordinates, peers, and superiors, we will also cover the negotiation problems that managers may face in decision-making processes; for example, the hiring negotiation, the promotion negotiation, the firing decision, and HR-relevant cross-cultural negotiation issues.", + "title": "Topics in Talent Management in a Globalised Environment", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5411A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a hands-on course in which exercises, cases give answers to the following questions: What skills are needed by global business leaders? What is required to do cross-border business? What essential strengths and weaknesses do you have as a cross-cultural leader and how can you maximize your potential? for MBA students (3-day weekend course).", + "title": "Global Business Leader Across Cultures", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5412", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module objective is to focus on evidence-based\nmanagement to try and understand what drives the\nbehavior of groups and their members. Our job is to try\nand understand when, if, and how phenomena change as\nwe place people in situations where they need to rely on\nothers to get the job done. The module will loosely follow\nTuckman\u2019s (1965) forming, storming, norming, and\nperforming model of group development. However, much\nof our attention will be focused on the forming stage, as\neverything that follows depends on successfully building\nthe team. In this module we will discuss the topics\nspecifically in the group and team context.", + "title": "How to Successfully Lead Your Groups and Teams", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5422", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Managers, professionals and other business people are increasingly faced with the challenge of operating across borders as companies large and small, established and entrepreneurial, strive for global competitiveness. The challenge of managing successfully, self, and others, in an increasingly complex and global environment is the focus of this module. The module leads students to develop a deeper understanding of how management practices and\nprocesses can often differ across national and regional boundaries, and why. Leveraging on this understanding, managers will be led to consider and formulate strategies and tactics for negotiating these differences to develop\nglobal management capabilities.", + "title": "Managing Across Borders", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5423", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Interest in entrepreneurship within established organisations has intensified due to various events taking place on business and social levels. On the social front, there is a rising interest among employees to create something meaningful on their own. Increasingly, employees have a strong need for individual autonomy and expression in their workplace. In the absence of such freedom, talented employees may leave out of frustration to search for an institution that can provide the meaning and the environment to achieve their self-actualization. Corporate entrepreneurship is one method of stimulating and capitalizing on employees\u2019 need to think of new ideas and do things better for their organisation. On a business level, an organization needs self-renewal, which involves transformation through redefinition of its business concepts, reorganization of its business relationships and reengineering of its business processes. Creating a new venture from scratch is challenging, but developing it within an existing organization is a totally different ball game. This module focuses on corporate entrepreneurship with four key elements: new business venturing, innovativeness, selfrenewal and proactiveness. It has two primary objectives. First, the module aims to enable the students to apply corporate entrepreneurship-related concepts in practice. Second, it seeks to broaden the students\u2019 education by helping them to appreciate the application of corporate entrepreneurship knowledge to companies. The students will also have the opportunity to meet corporate entrepreneurs to understand their challenges and strategic approaches in creating and capturing value for their organizations.", + "title": "Corporate Entrepreneurship and Business Model Evaluation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5424", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1230", + "weeks": { + "start": "2023-05-13", + "end": "2023-06-17" + }, + "venue": "BIZ1-0201", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1630", + "weeks": { + "start": "2023-05-13", + "end": "2023-06-17" + }, + "venue": "BIZ1-0201", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Despite the proliferation of commercial enterprises out there, we still witness huge segments of the human population that cannot meet their basic human needs. Access to healthcare, sanitation, education, knowledge, water and other basic services remain challenging to most of the world\u2019s population. Social exclusion of the disadvantaged groups (such as special needs, ex-offenders and youth-at-risks) are still thorny issues that societies have to grapple with. While most would consider the pivotal role of the governments in managing these challenges, individuals can also make a difference to underserved populations. This module focuses on social entrepreneurship that creates and implements effective, scalable and sustainable solutions to address such issues and meet the needs of the disadvantaged groups in the society. In the module, students will learn about different models, examples and ways of thinking about social entrepreneurship.", + "title": "Social Entrepreneurship", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5425", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with the required knowledge and skills in strategic foresight tot support the activities involved in long-range planning for the\ncorporation. As organisations are forced to transform in response to social, technological, economic and political changes, it is important for business leaders and managers to acquire knowledge and skills in foresight methods to competitively identify new opportunities and set an appropriate direction for the mid- to long-term time horizon. Their ability to interpret weak signals and anticipate possible scenarios about future trends in technology and market are critical in preparing their organization for the future.", + "title": "Strategic Foresight", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5428", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How can you effectively influence people? Over the last 30 years, psychologists, economists, and business scholars have joined forces to investigate what actually influences people\u2019s decisions. We will use insights from this research program (called \u201cbehavioral science\u201d or \u201cbehavioral economics\u201d) to improve your ability to influence the behavior of others. We will explore many influence tools, from economic incentives to psychological nudges. We will discuss when using these tactics can be effective, as well as when they can fail or even backfire. We will analyze mistakes that people make when trying to influence others, and how you can avoid them.", + "title": "Mastering Influence", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5429", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "BIZ1-0203", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The decisions you make every day will shape your life. In an organization, the decisions you make will impact outcomes for you, your team, and cumulatively affect the trajectory of your career. This module will help you navigate the pathways of decision making in organizations. We adopt an integrative evidence-based approach, drawing from research in the fields of behavioural psychology, economics, and organization theory. These tools will empower you to make better\ndecisions in a complex and uncertain world, to influence, and to lead.", + "title": "Judgment and Decision Making Under Uncertainty", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5430", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "BIZ1-0201", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "BIZ1-0201", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the key concepts in artificial intelligence (AI) and machine learning. The module also introduces easy-to-use computing technqiues in R and/or Python for implementing AI solutions in talent management and organizational design.", + "title": "AI for Talent Management and Organizational Design", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5431", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 68, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5500B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMA5500D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMA5500E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMA5500F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5500G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5500H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5500N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5500O", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "1", + "moduleCode": "BMA5500X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course in marketing strategy that focuses on competitive strategy analysis and formulation. Students are introduced to both the Art and the Science of \"Strategic Thinking\" in devising competitive strategies. This course aims to:\n\n1. enhance student's ability to think and to act strategically in marketing,\n2. provide students some decision heuristics based on Sun Tzu's \"Art of War\" to assist them in making marketing strategy decisions,\n3. introduce students to some fundamental Game Theoretic tools and models for analysing and understanding problems involving strategic interactions, and\n4. introduce students to some advanced strategy concepts and theories.\n\nStudents are expected to apply both the Art and Science of strategy learnt to solving marketing problems, through case analyses, critiques, and presentations. There will also be a case research project requirement, which requires students to identify and analyse an actual marketing problem or case, and to make recommendations as to how the problem can be resolved, based on concepts taught in class.", + "title": "Competitive Marketing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5501", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Consumers make decisions regarding the acquisition, use and disposal of a variety of products, services and experiences. In this course, we seek to understand and appreciate consumers as unique individuals and as members of their social and cultural groups. We will examine the many facets of consumer behavior (e.g., from the experiential perspective, incorporating insights from sociology and anthropology), with an emphasis on symbolic forms of consumption, and the use of qualitative research methods.", + "title": "Understanding & Influencing Consumers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5502", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on understanding that consumer behavior is essential to the development of marketing strategies.\n\nA clear understanding of the principles of consumer behavior and the factors that shape consumer behavior is critical to developing effective marketing strategies.", + "title": "Topics in Consumer Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5502A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1A", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E-Hybrid_C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In today's modern marketplace, advertising and promotions is a fast moving business that is constantly changing. Developing an integrated marketing communications program is usually a complex and exciting process that involves various players and participants. The course will introduce the students to the organizations that create the end products that we experience on a day-to-day basis. Students will learn about the various types of promotional concepts, activities and the processes that go on in the evolution of a promotional campaign. A range of topics, including the advertising management process, the role and tasks of an agency, setting ad objectives, managing creativity, media planning, direct marketing and sales promotions will be covered. Students will also get a chance to develop promotional strategies for real-life businesses and to understand better the importance of creativity and the intricacies of executing promotional plans through hands-on projects. While the module will cover theories in integrated marketing communications, it is generally approached with a practical and applied orientation. Lectures and readings will be supplemented with cases, ad critiques, video clips and talks. Students will acquaint themselves with current and future A & P environments and developments in Singapore and other countries as well as the processes that go on behind the scenes in the management of promotions.", + "title": "Promotional Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5503", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Promotional Management", + "title": "Promotional Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5503A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Building on your knowledge of basic marketing principles, we embark on a journey to understand the global impact of marketing. In the module, we will analyze the various environments in which marketing operates in, including economic, legal and political, and cultural environments. Then, we learn about the intricacies of coordinating and conducting cross-cultural marketing research efforts. We will also cover the various modes of foreign market entry.\n\nWe will also be discussing the marketing mix (product, price, promotion and place) from a global perspective. In summing up the module, we will learn how to lead and organize global marketing activities. To achieve these goals, we will be using a variety of learning tools, including readings, case studies and projects.", + "title": "Global Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5504", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Global marketing as an art and a science is an area of increasing importance to corporations, non-profit organizations, institutions and governments the world over. To succeed as a global executive, one must develop a global perspective with a clear global mindset. The essence of marketing is communications. Effective marketing requires having empathy for one\u2019s target audience, or stakeholders from company employees to customers to partners to investors. Global marketing, therefore, requires developing an understanding not only of the various regions and markets in the world but also, an awareness and understanding of the distinctive characteristics of consumers and corporate buyers in different markets. Because of the many components in marketing, doing it on a global scale involves having to work with different levels of economic, educational, infrastructural, legal, political and cultural development. Global marketing adds exponential complexity to the task of marketing.", + "title": "Topics in Global Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5504A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an in-depth appreciation and understanding of the unique challenges inherent in managing and delivering service excellence at a profit. Participants will be introduced to and have the opportunity to work with tools and strategies that address these challenges. It develops an understanding of the `state of the art? of service management thinking and promote a customer service-oriented mindset.", + "title": "Service Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5505", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1740", + "weeks": { + "start": "2022-09-23", + "end": "2022-09-23" + }, + "venue": "HSS-04-03", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1740", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "HSS-04-03", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1740", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-22" + }, + "venue": "HSS-04-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1740", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-21" + }, + "venue": "HSS-04-03", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1730", + "weeks": { + "start": "2023-06-03", + "end": "2023-06-03" + }, + "venue": "HSS-04-03", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1730", + "weeks": { + "start": "2023-05-31", + "end": "2023-05-31" + }, + "venue": "HSS-04-03", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1730", + "weeks": { + "start": "2023-06-02", + "end": "2023-06-02" + }, + "venue": "HSS-04-03", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1730", + "weeks": { + "start": "2023-06-01", + "end": "2023-06-01" + }, + "venue": "HSS-04-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course takes a holistic approach towards product and brand management by examining the process from a new brand/product perspective. It is designed for students who are looking for an in-depth exposure to the development and management of products. Through theories and concepts, case analyses, problem sets, class discussions, and project assignments, this course prepares students for the customer-driven marketing challenges of a product/brand manager. A special feature of this course is its emphasis on hands-on learning of the new product development process.", + "title": "Product & Brand Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5506", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course adopts a game-theoreticapproach to strategic marketing issues. Marketing effort, far from being a homogeneous input, is a combination of the 4ps, namely 1) pricing and price promotion, 2) promotional activities such as advertising, personal selling and public relation, 3) distribution and channel activities related to the availability of goods and servicing of orders, and 4) product- development and product-improvement activities. In this course, we will study the strategic interactions within the 4Ps and discuss the latest issues.", + "title": "Marketing Strategy and Game Theory", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5509", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a course that is meant for two important marketing mix variables, channel management and pricing. In Channel Management, not much attention is usually paid to understanding marketing channels in detail. In fact people used to call channels the `dark continent of marketing, that is best left to `truckers?. But, is this true? One can make at least four observations: long term commitment of channel related decisions, existence of channel power play, market dynamics caused by channel changes, and the impact of internet on channel intermediaries. All these issues are very difficult to comprehend and solve if we do not understand what channels are for. Channel management is not just managing the retailers and the trucks and delivery personnel, but it is much larger than that. In Pricing, the one element of marketing strategy that is least understood and hence constantly feared by many managers is pricing. This is because pricing is a very complex issue. On one hand, it is supposed to reflect all the strategic steps the company has taken to bring the product to the consumer and convince him/her to buy it as well. On the other hand, it is supposed to reflect what the consumer would get out of the product by paying that price to acquire it. Will there be a match between the two? Perhaps and perhaps not. This dilemma makes it imperative for a manager needs to understand and analyze various factors in arriving at an appropriate pricing strategy. And, pricing does not operate in vacuum. It has to be married with other elements of the marketing strategy, including the channel management we discuss in this course. Thus, understanding the broader picture of the various elements of pricing, and building a scientific framework on pricing will always be reliable and better in the long run.", + "title": "Strategic Pricing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5511", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a course meant for two important marketing mix variables, Channel Management and Pricing. Channels are a dominating power in the marketing chain. Compared to other strategic elements of marketing, channels differ in at least three ways:\n\u2022\tlong term impact of channel related decisions; \n\u2022\tthe existence and implications of channel \u2018power play\u2019; \n\u2022\tthe market dynamics caused by channel changes such as the internet.\n\nThis course is designed to help students to systematically analyze the various channel functions and strategies. The one element of marketing strategy that is malleable but least understood is pricing. This is because pricing is a very complex issue. It has to be married with other elements of the marketing strategy, including the channel management. Thus, understanding the broader picture of the various elements of pricing, and building a scientific framework on pricing will always be reliable and better in the long run.", + "title": "Special Topics in Channels & Pricing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5511A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To provide participants with basic understanding of the marketing research process and the scientific approach to information identification, collection and analysis for marketing decision-making. \nTo provide participants with the opportunity to design and execute a marketing research project.\n\nTo provide students with opportunities to examine, understand and interpret marketing research information.", + "title": "Research for Marketing Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5515", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The one element of marketing strategy that is malleable, but is least understood and hence constantly feared by many managers is pricing. Thus this module will help bring an understanding to the broader picture of the various elements of pricing, and building a scientific framework on pricing will always be reliable and better in the long run.", + "title": "Pricing Strategies", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5517", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Customer Relationship Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5523", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will look at CRM as an enterprise wide effort\nthat generates increased loyalty and higher margins. It will\nlook at segmentation techniques to ensure that the\nresources are properly allocated to the customer base.\nPractical examples of how CRM has been applied in the\nB2C and B2B environment including the application to\nstrategy, people, process, technology and metrics will also\nbe examined.", + "title": "Topics in Customer Relationship Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5523A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Marketing Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5524", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "BIZ1-0205", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "BIZ1-0205", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course is primarily designed for marketing professionals to train them to use market knowledge for day-to-day marketing decisions. It will provide good understanding of many prevalent research techniques and their application.", + "title": "Topics in Marketing Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5524A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Competitive Strategies For Smes and Startups", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5525", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Ethics/ Corporate Social Responsibility", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5526", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Technology Transfer and Commercialization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5527", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the successful transfer of technologies from a research environment for commercialization as successful & sustainable products or\nservices to the global market, via a knowledge-based entrepreneurial wealth-creation process. Technology commercialization capabilities are essential for an increasingly competitive environment where existing markets undergo creative destruction and new markets emerge based on new knowledge and developments in the research laboratories.", + "title": "Topics in Technology Transfer & Commercialization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5527A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Business to Business Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5528", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Business-to-Business (B2B) Marketing is designed to provide students with a basic understanding of the concepts of marketing in the context of other businesses, governments, and institutional customers. It encompasses those management activities that enable a supplier firm to understand, create, and deliver value to these business markets.", + "title": "Topics in Business-to-Business Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5528A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1A", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E-Hybrid_C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The central theme of this course is what to measure and how to measure, when assessing the effects of marketing tactics. Evaluation and control are essential strategic marketing processes and the basis of evaluation and control is measurement. We will examine such questions as:\n\u2022 How to measure customer satisfaction and brand attitudes?\n\u2022 How much will sales have to increase to justify expanding the sales force?\n\u2022 What will be the effect on total firm profit from eliminating the poorest performing customers? \n\u2022 What is the lifetime value of a customer?\n\u2022 How will a price cut affect sales?\n\u2022 How can conjoint analysis be used to evaluate new product concepts?\n\u2022 What are the long term effects of sales promotions?\n\u2022 What are the effects of advertising?\nThe course will also focus on performance \u201cdashboards\u201d, which allow executives to monitor, analyze and manage the business. Dashboards can be both tactical and strategic in their orientation, but always involve collecting and summarizing data, preparing key performance indicators (KPI\u2019s), and bringing this information together in a form relevant to marketing decisions on an ongoing basis.", + "title": "Marketing Metrics - Measuring Marketing Performance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5529", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The central theme of this course is what to measure and\nhow to measure, when ssessing the effects of marketing tactics. Evaluation and control are essential strategic marketing processes and the basis of evaluation and control is measurement. We will examine such questions as:\n- How to measure customer satisfaction and brand attitudes?\n- How much will sales have to increase to justify expanding the sales force?\n- What will be the effect on total firm profit from eliminating the poorest performing customers?\n- What is the lifetime value of a customer?\n- How will a price cut affect sales?\n- How can conjoint analysis be used to evaluate new product concepts?\n- What are the long term effects of sales promotions?\n- What are the effects of advertising?\n\nThe course will also focus on performance \u201cdashboards\u201d, which allow executives to monitor, analyze and manage the business. Dashboards can be both tactical and strategic in their orientation, but always involve collecting and summarizing data, preparing key performance indicators (KPI\u2019s), and bringing this information together in a form relevant to marketing decisions on an ongoing basis.", + "title": "Topics in Marketing Metrics-Measuring Marketing Performance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5529A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on integrating Design Thinking into the creative development of innovative products and services. It is a human-centric approach with emphasis on user desirability, technology feasibility and business viability.", + "title": "Design Thinking & Product Innovations", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5530", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on integrating Design Thinking into the creative development of innovative products and services. It is a human-centric approach with emphasis on user desirability, technology feasibility and business viability.\n\nIncreasingly, companies compete beyond technologies, and the use of Design Thinking (such as Apple\u2019s iTune, iPOD & iPhone) has created world-leading products. The Singapore\u2019s Economic Strategies Committee has proposed design-driven innovation as a national competitive strategy.\n\nThis module is developed with the support of DesignSinagpore Council (Dsg), Ministry of Information, communication & the Arts (MICA). Dsg is the national\nagency on design promotion for the Singapore\u2019s economy. Students will also attend industry forums and networking sessions.\n\nModule will be delivered via case studies", + "title": "Topics in Design Thinking & Business Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5530A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course systemically introduces sales management from process and procedure perspective. It helps students develop a clear sales framework that contains account/channel planning, opportunity evaluation, sales team-building, in-depth relationship-building and sales strategy execution.", + "title": "Sales Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5531", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course systemically introduces sales management from process and procedure perspective. It helps students develop a clear sales framework that contains account/channel planning, opportunity evaluation, sales team-building, in-depth relationship-building and sales strategy execution.", + "title": "Sales Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5531A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Big Picture is an integrated Framework that helps marketers transform the way they analyze and solve the challenges and opportunities they face in their business.\n\nThe framework takes the form of a funnel, where each successive set of decisions brings increased focus to the strategy development and implementation planning process. These four steps help the student in answering four critical questions:\n1. What is the firm\u2019s overall business objective?\n2. What are the primary tenets of the firms\u2019 strategy?\n3. What is the firm\u2019s executional plan?\n4. How will the firm analyze and integrate results?", + "title": "Big Picture Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5532", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This objective of this module is to identify the needs of the consumer followed by the creation of products and services to satisfy the needs.", + "title": "Topics in Big Picture Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5532A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Marketing in the Digital Age is a real challenge. Technology is evolving at such a rapid pace that marketers now more than ever must understand the evolution of\nmarketing that technology is driving. Technology in itself is democratizing the brand and putting control in the hands of consumers.This course will provide students with deep insight into this shift, help them become more relevant real world marketing practioners and at the same time, help them understand how to operationalize this in their organizations.", + "title": "Digital Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5533", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1230", + "weeks": { + "start": "2023-06-24", + "end": "2023-07-29" + }, + "venue": "BIZ1-0302", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "1300", + "endTime": "1630", + "weeks": { + "start": "2023-06-24", + "end": "2023-07-29" + }, + "venue": "BIZ1-0302", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Marketing dollars have been shifting to digital channels for several decades. This trend has further accelerated after COVID-19. The course is designed to introduce you to advanced concepts of digital marketing that are relevant not just to marketers but to all business managers interested in the economics of the internet. Students will be exposed to current practices in the digital marketing landscape, academic research that bridge theory with practice, and quantitative tools that measure and help inform the effectiveness of digital marketing campaigns. We will cover these topics using a mixture of hands-on exercises, case studies and lectures.", + "title": "Topics in Marketing in The Digital Age", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5533A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Marketing in the Chinese market requires an understanding of the Chinese culture, the rapid changes in technology adoption and its impact on buying behavior. Successful marketing in China demands a clear comprehension of the various demographic idiosyncrasies of the Chinese market. Effective marketing entails having empathy for and communicating with the target market. This course will explore the Chinese market environment, study the Chinese consumer and corporate buyer, compare how the Chinese market differs from other markets and examine the various components of marketing, from product development to pricing before evaluating the present and future challenges in marketing in China.", + "title": "Marketing in China", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5534", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module draws a distinction between a business and an\nenterprise.\nThe knowledge base needed by an entrepreneur, especially\nin marketing is covered in this module. Participants learn\nentrepreneurship with emphasis on identifying and creating\nvalue, especially in a technology worshipping economy.\nStudents learn in a variety of ways, participating in projects\nto assess and conceptualize their business utilizing sound\nmarketing principles, and to secure funding for the\nenterprise.\nThis module is applicable for those keen to start an\nenterprise of their own. Many of the marketing concepts are\nalso applicable to large established businesses developing\na more entrepreneurial mindset.", + "title": "Marketing for Entrepreneurs", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5535", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Behavioral Economics combines economic and psychological principles to explain economic behaviors that violate the rationality assumption and deviate from standard prediction. There are two streams of works in Behavioral Economics: Behavioral Decision Theory (BDT) and Behavioral Game Theory (BGT). BDT explains inconsistent choice behaviors in individual decision making. BGT explains boundedly rational actions in strategic decision making. \n\nThe goal of the course is to equip students with the theory and framework to understand the inconsistent choices and boundedly rational actions observed in experiments, to identify inconsistency in real life choices and actions, and to design nudges for behavioral change.", + "title": "Behavioral Economics in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5536", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Customer Centricity\nWith hyper-competitiveness, companies must be customer-centric and leverage technology to deliver meaningful customer experiences across offline and online channels. Companies must integrate corporate social responsibility and sustainability into their value proposition to build financial and social capital.\n\nBrand Alignment\nOrganisations need to strategically invest in brand alignment to build passionate, high-performing cultures and to achieve sustainable profitability.\nExternal alignment triangulates the pursuit of market-share, brand leadership and customer intimacy to achieve sustainable market leadership. Internal alignment weds the values of the organisation with the brand, such that employees live by these values and consistently deliver great customer experiences.", + "title": "Customer Centricity and Brand Alignment", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5537", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To better differentiate from the competition, organizations need to strategically invest in internal and external brand alignment to build passionate and high-performating cultures and to achieve sustainable and profitable growth. External alignment requires companies to triangulate the pursuit of market share leadership, brand leadership and customer intimacy to achieve sustainable market leadership. Internal alignment requires companies to align the purpose and values of the organization with the brand promise to ensure every employee in the organization lives the values and consistently deliver great customer experiences.", + "title": "Brand Alignment for Sustainable Growth", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5537A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As markets become hypercompetitive, companies need to accelerate the transformation of their organizations to become more customer-centric and leverage on technology and digitalization to deliver seamless and meaningful customer experiences across offline and online channels. Companies also need to demonstrate their ability to integrate social purpose \u2013 corporate social responsibility and sustainability \u2013 into their total value proposition to build financial and social capital.", + "title": "Customer centricity in the Digital Age", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5537B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Channels and platforms are the distribution structures that match demand and supply. These structures (both physical and virtual) enable the transactions between buyers and sellers through the exchange of information, product \n(service) and payment. This course investigates these structures, paying particularly attention to the efficiency and effectiveness of their distribution. \nThis course has theoretical, empirical, and practical components. It equips the students with the theoretical background to evaluate empirical phenomena. Students use the knowledge to appreciate the challenges and opportunities of the existing distribution structures in various product categories, and possibly to design an efficient alternative.", + "title": "Distribution Management: Channels and Platforms", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5538", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 68, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the frameworks, research and case studies to develop and execute marketing strategies that integrate social purpose (environmental and social responsibility) and are better aligned with the organization\u2019s values and purpose. Increasingly, companies are required to embrace higher ESG standards. Marketing plays a key role in accelerating \nthe organization\u2019s purpose-led transformation which enables it to deliver value to multiple stakeholders. There is growing evidence that companies which pursue social purpose marketing can better differentiate themselves from the competition and achieve profitable and sustainable growth. Purpose-led brands benefit from price leadership, stronger brand equity, advocacy and loyalty.", + "title": "Social Purpose Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5539", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "1100", + "endTime": "1800", + "weeks": [ + 10 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "1100", + "endTime": "1800", + "weeks": [ + 10 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "1100", + "endTime": "1800", + "weeks": [ + 10 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "1100", + "endTime": "1800", + "weeks": [ + 10 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "1100", + "endTime": "1800", + "weeks": [ + 10 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module provides MBA students the opportunities to study particular business management topics or issues in-depth in collaboration with an existing business, but under supervision of an instructor. The practical skills acquired through such a process of independent knowledge acquisition might be difficult to obtain in the classroom. The extended and personalized interaction with the instructor will also facilitate mentorship and provide an additional dimension to the predominant mode of classroom instruction. Extended interactions with managers in a business will improve the student\u2019s networking skills.", + "title": "Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5701", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for students who are in the MBA program with the requisite background in finance to work closely with an instructor on a well-defined project in the respective specialization areas. Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMA5702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will launch the students transformation as they embark on their MBA journey. Students will discover and become self-aware of their communicative style, learn effective communication by stretching themselves outside their comfort zone and against the backdrop of high-stress situations and cultural diversity, and eventually becoming better at decision-making, negotiation and influencing others.", + "title": "Launch Your Transformation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMA5801", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "BIZ1-0301", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "BIZ1-0204", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "BIZ1-0204", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F7", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "BIZ1-0304", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "BIZ1-0201", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "BIZ1-0202", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "BIZ1-0301", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "BIZ1-0301", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F8", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "BIZ1-0305", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "BIZ1-0204", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "BIZ1-0204", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F9", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "BIZ1-0307", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "BIZ1-0202", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "BIZ1-0203", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "BIZ1-0301", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F8", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "BIZ1-0305", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F8", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "BIZ1-0305", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "BIZ1-0204", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F9", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "BIZ1-0307", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F9", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "BIZ1-0307", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F6", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "BIZ1-0302", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F8", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "BIZ1-0305", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "BIZ1-0201", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "BIZ1-0202", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "BIZ1-0301", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F7", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "BIZ1-0304", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F7", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "BIZ1-0304", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F8", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "BIZ1-0305", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "BIZ1-0202", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F9", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "BIZ1-0307", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F9", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "BIZ1-0307", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F6", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "BIZ1-0302", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F6", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "BIZ1-0302", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F6", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "BIZ1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F6", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "BIZ1-0302", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F7", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "BIZ1-0304", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F7", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "BIZ1-0304", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "BIZ1-0201", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "BIZ1-0202", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to equip MBA students with the practical tools & skill sets required to lead and manage 21st century organizations. It helps them to develop a growth mindset to prepare for the future of work. The revised module uses a combination of class sessions in the formats of experiential learning, career workshops and online learning. Students will learn skills in interpreting and managing challenging situations in organizational and corporate settings. The module enhances students\u2019 performance through workshops on case cracking, cross-cultural teamwork and communication, and learning the art of pitching. It also provides excel training as an essential tool that is useful for any business student.", + "title": "MBA Survival Kit", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMA5802", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2023-04-22", + "end": "2023-04-22" + }, + "venue": "BIZ1-0201", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "P2", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2023-04-22", + "end": "2023-04-22" + }, + "venue": "BIZ1-0202", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a subpart of a core MBA module (BMA5802) carrying 4 modular credits. Each subpart carrying 1 Modular Credit. The module enhances students\u2019 performance through topics on working & managing businesses across different cultures, learning to manage projects using basic consulting toolkit, as well as effective delivery of solutions for businesses.\nPart A of the module euips students with knowledge on managing business across cultures by understanding the eight scales of global business, learn techniques and application of the eight scales.\nBMA5802A focuses on Managing Business Across Culture (1MC).", + "title": "MBA Survival Kit", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMA5802A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F4", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "1630", + "endTime": "1930", + "weeks": [ + 1, + 2 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a subpart of a core MBA module (BMA5802) carrying 4 modular credits. Each subpart carrying 1 Modular Credit. The module enhances students\u2019 performance through topics on working & managing businesses across different cultures, learning to manage projects using basic consulting toolkit, as well as effective delivery of solutions for businesses.\nPart B of this module aims to equip students with knowledge on team dynamics and navigating through the business hierarchy through realising one\u2019s strengths and areas for improvement and learning working with different stakeholders inside & outside an organisation.\nBMA5802B focuses on Working with A Team (1MC).", + "title": "MBA Survival Kit", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMA5802B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 3, + 4 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 3, + 4 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1630", + "endTime": "1930", + "weeks": [ + 3, + 4 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 3, + 4 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a subpart of a core MBA module (BMA5802) carrying 4 modular credits. Each subpart carrying 1 modular credit.\nPart C of this module aims to equip students with consulting toolkits through using hypotheses led-thinking and project planning, structuring value creation model, use of correct visual aids to tell story and exploring 3Vs for presentation.\nBMA5802 consists of 4 subparts:\n- BMA5802A: Managing Business Across Culture(1MC)\n- BMA5802B: Working with A Team (1MC)\n- BMA5802C: Consulting Toolkit (1MC)\n- BMA5802D: Solutions Delivery (1MC)", + "title": "MBA Survival Kit", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMA5802C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F4", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 7, + 8 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F4", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 5, + 6 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "1630", + "endTime": "1930", + "weeks": [ + 5, + 6 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "1630", + "endTime": "1930", + "weeks": [ + 7, + 8 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 5, + 6 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 5, + 6 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 8 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 6 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 7, + 8 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 7, + 8 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a subpart of a core MBA module (BMA5802) carrying 4 modular credits. Each subpart carrying 1 Modular Credit. The module enhances students\u2019 performance through topics on working & managing businesses across different cultures, learning to manage projects using basic consulting toolkit, as well as effective delivery of solutions for businesses.\nPart D of the module equips students with knowledge in solutions delivery through analysing the problem statement, conduct gap analysis, understanding & deriving market dynamics and eventually proposing value\nBMA5802D focuses on Solutions Delivery (1MC)", + "title": "MBA Survival Kit", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMA5802D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F4", + "startTime": "1630", + "endTime": "1930", + "weeks": [ + 9, + 10 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 9, + 10 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 10 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "1630", + "endTime": "1930", + "weeks": [ + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 9, + 10 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 10 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "F4", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "C-Suite Life is an intensive management simulation and roleplay. Working in teams, students take-over and manage a struggling business, making decisions around pricing, marketing, production, employees, customers and more.\n\nDuring the simulation, teams will be confronted with management challenges (eg. a factory fire, union action, supply chain problems) to test their ability to integrate knowledge, reassess their situation, and make smart decisions under pressure.\n\nTopics covered span the full breadth of management, including finance & accounting, process & operations, marketing, customer and employee relations to mention a few.", + "title": "C-Suite Life", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5803", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0800", + "endTime": "2200", + "weeks": { + "start": "2023-01-04", + "end": "2023-01-04" + }, + "venue": "BIZ1-0307", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0800", + "endTime": "2200", + "weeks": { + "start": "2023-01-05", + "end": "2023-01-05" + }, + "venue": "BIZ1-0307", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0800", + "endTime": "2200", + "weeks": { + "start": "2023-01-03", + "end": "2023-01-03" + }, + "venue": "BIZ1-0307", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0800", + "endTime": "2200", + "weeks": { + "start": "2023-01-06", + "end": "2023-01-06" + }, + "venue": "BIZ1-0307", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Management Practicum (MBA Consulting Project) is a module aims to achieve: \n(1) Increase the practical relevance of The NUS MBA program, (2) Provide opportunities for students to apply concepts and theories to business situations, (3) Strengthen linkages with the industry by offering the expertise available in NUS Business School on specific projects, (4) Broaden the menu of course offerings in terms of pedagogical approaches, (5) Students will learn first-hand the real world business complexities that cannot be captured through academic courses, and get trained to work through them, and (6) The real-life busines s project the students may be tasked to come up with will not only enrich the knowledge bank of our school but also serve as cases for MBA courses in the future.", + "title": "MBA Consulting Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5901", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F25", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F19", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F20", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F21", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F22", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F23", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F24", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F10", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F7", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F8", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F9", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F3", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F4", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F12", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F13", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F14", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F15", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F18", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F16", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F11", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F17", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F5", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F2", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-12" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F16", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F20", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F19", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F10", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F8", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F14", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F31", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F33", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F34", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F35", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F36", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F24", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F30", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F27", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F28", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F25", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F29", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F23", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F18", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F21", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F22", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F11", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F6", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F9", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F32", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F26", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "F5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Riding on the NUS Enterprise\u2019s Lean Launchpad program, this module is an elective to provide MBA students opportunities to participate & engage in real-world entrepreneurship, and learn how to commercialize an innovative idea. Since there is no better way to learn than through practice, the students will have to get out of the classroom and talk to potential customers, partners and\ncompetitors to experience the uncertainty that comes with commercialising and creating new ventures.", + "title": "Entrepreneurship Practicum", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5902", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This in an internship module lasting a minimum of 16 weeks. The minimum number of hours of work is set at 640 hours.", + "title": "MBA Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMA5903", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-08-13", + "end": "2022-11-19", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 66, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Silicon Valley is synonymous with entrepreneurship and innovation. Geographically, Silicon Valley is the region south of the San Francisco in California, U.S.A., where many of the world\u2019s largest and most influential technology companies like Hewlett\u2010Packard, Intel, Oracle, Facebook, and Google had their start. In Wall Street Journal\u2019s Billion Dollar Start\u2010up list1, 50 of the 73 start\u2010up unicorns are from the U.S., with the majority located in Silicon Valley/San Francisco bay area. San Francisco, South of Market Street (or \u201cSOMA\u201d), is also simultaneously developing as a new cultural center for startups, attracting the younger entrepreneurs who gravitate to the more diverse, gritty, urban SOMA/Mid\u2010Market area. \n\nWhat is unique about San Francisco SOMA/Silicon Valley and how does this uniqueness translate into a vibrant ecosystem in the creation of these billion\u2010dollar start\u2010ups? This module is designed to give you a view into this unique ecosystem. This course is based on learning by active engagement and learning by doing. You will spend one week in San Francisco/Silicon Valley, where you will be given a project by a startup company. By working on this project, you will engage, first hand, with entrepreneurs in this ecosystem and build insights into the rewards and challenges of building a startup in SV/SOMA", + "title": "ENTREPRENEURSHIP STUDY MISSION \u2013 Silicon Valley, USA", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMA5904A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the comparative (East-West) psychological perspectives on management. The psychological perspective addresses such topics as: comparative views on leadership; roles and functions of the chief executive; the role of power, influence and politics; establishing supportive communications;\nenhancing employee performance through motivation and empowerment; delegating for responsiveness; managing conflict, change and varied stakeholders. The psychological perspective will emphasize experiential\nlearning to enhance leadership skills.", + "title": "Leadership", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMC5001A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the work of a leader for a business entity, the corporation, business, division or plant. The module concentrates on the skills and actions required of the general manager for the development, communication and implementation of strategic organizational choices in\nthe context of complex business situations. Typical topics include: perspectives on the role of firms in society; setting of mission and objectives; the concept of strategy; industry analysis, generic strategies; firm competencies; corporate\nstrategy and diversification; environmental analysis; strategy and structure; culture and other implementation processes; strategic leadership; organizational learning; stakeholder analysis and corporate ethics.", + "title": "Corporate Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMC5002A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module uses the strategic frameworks to explore specific contemporary issues faced by the general managers in different industries in the different regions of the world. The module will adopt a comparative perspective by first examining the evolution of strategic management practice in the West and in Asia, and then reconciling differences in practices from the viewpoint of an Asian manager.", + "title": "Contemporary Issues in Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMC5002B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides for an appreciation of the quantitative aspects of business decision-making from the perspective of senior executives as requesters and users of such analyses. The module will familiarize students with tools for arriving at solutions to problems and as means for communicating analyses and decisions within and outside the organization. This is not a course in number-crunching. Focus is on understanding the concepts and how these can be gainfully applied.", + "title": "Information Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMC5003B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides for an understanding of cross-border economic activities, especially international trade and foreign direct investment. It examines how culture and politics influence the processes and outcomes of international business, especially the contemporary sociopolitical economy of trade and investment. Other topics include international monetary system, regional economic integration and the strategy and structure of multinational enterprises. The aim is to sensitize the student to a wide array of concepts that, taken together, explain the phenomenon of globalization.", + "title": "International Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMC5005A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents an overview of the principles of financial management, with a view to providing executives, who may not possess prior financial training, with an understanding of financial management concepts. Topics include: knowledge of financial resource management; the role of managers in maximizing the financial value of the firm; the standard techniques of financial analysis; financial markets and the environment in which businesses operate; capital structure and the cost of capital; and the choice of sources of financing.", + "title": "Financial Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMC5007B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Supply chain management is the management of all external activities related to the creation of goods and/or services. The business competition is no longer competition among firms, it is about competition among supply chains. The interaction and interrelationship of all entities in the supply chain makes the management of supply chain a challenging task. To be competitive in today\u2019s global marketplace, a company must have effective and efficient operations management across and along its supply and demand network.", + "title": "Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMC5009B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the frameworks and approaches to diagnose the financial status and health of a company by analyzing its financial statements. Based on the diagnostic, various potential remedies to improve the\nfinancial health of a company are discussed. The module will pay particular attentions on the similarities and differences among Singapore, Chinese and other foreign companies, focusing on publicly listed companies. The module will also explore specific issues such as merger and acquisition, and various forms of corporate financing.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "3", + "moduleCode": "BMC5010A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will achieve this objective in two ways. First, it will provide you with key insights into how leaders can be more effective. It will review key leadership theoretic and provide a practical framework for you to understand the leadership effectiveness. who you are as a person and a leader. We will tie concrete situations (as reflected in cases and in your experiences) to essential theories on organizational behaviour and effective leadership practices. Second, it will provide you with assessment, feedback from experts and insights in how you could optimize your personal and leadership effectiveness.", + "title": "Leadership: exploration, assessment & development", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5021", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 7 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-21", + "end": "2022-11-21" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 7 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-19", + "end": "2022-11-19" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-22", + "end": "2022-11-22" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-07-08", + "end": "2023-07-08" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-07-07", + "end": "2023-07-07" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-07-06", + "end": "2023-07-06" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on understanding how a firm can achieve success in complex and changing environment, from the perspective of a leader for a business entity, a corporation or division. The module will introduce concepts and frameworks based on theory of strategy, management and innovation, which are valuable in practice. The module will introduce the skills and actions general managers need for the development, communication and implementation of strategic decisions in different types of organizations, focusing on technological innovation. Taking a case-based approach, students will develop corporate strategies and business models for firms through group projects and business case analysis.", + "title": "Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5022", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-23", + "end": "2022-11-23" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-21", + "end": "2022-11-21" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-22", + "end": "2022-11-22" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to help decision makers understand and improve the quality of managerial. The course will take a systematic view of decision making from both prescriptive and descriptive perspectives. The prescriptive approach may help decision makers to identify, structure, and analyze decision problems in a systematic and logical manner. The descriptive approach has provided insightful understandings of how people deviate from rational decision-making and fall into common decision traps. This course will teach students how to improve decision making skills and become a better decision maker.", + "title": "Business analytics and decision making", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5023", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-20", + "end": "2022-09-20" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-15", + "end": "2022-11-15" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-19" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-16", + "end": "2022-11-16" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-14", + "end": "2022-11-14" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-21" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-22" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-17", + "end": "2022-11-17" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the analytical tools of macroeconomics and international finance, and demonstrates the application to real-world contexts with an emphasis on Asia. The module is designed to help business leaders better understand monetary policy and central bank decision making, and how these factors impact the countries in which they operate, especially in times of crises.", + "title": "Asia and global economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5024", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-14", + "end": "2022-11-14" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-19" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-21" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-20", + "end": "2022-09-20" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-15", + "end": "2022-11-15" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-17", + "end": "2022-11-17" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-22" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-16", + "end": "2022-11-16" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This topic covers major issues related to the internationalization of businesses in South East, East and South Asia, alongside the management issues endemic to multinational enterprises operating in the same region. Major decisions that will be examined include the choice of entry mode (greenfield, joint venture or M&A), the choice of region, product choice and design for entry as well as the timing of the entry decision. With respect to the management of the multinational enterprises, students will understand better how to manage the cultural, regulatory and political intricacies of multinational firms situated in the many diverse markets of Asia. Students who complete this module will be well-equipped to guide the internationalization of SMEs, or manage effectively in an MNC context.", + "title": "International business and internationalisation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5025", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-21", + "end": "2023-02-21" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers key issues that are highly relevant to firms\u2019 strategic marketing decisions. To equip the students with the critical mind-sets to cope with the constantly changing business environment, this module offers a systematic understanding of key challenges in marketing: 3C (customer, company, competition), STP (Segmentation, Targeting, and Positioning), and 4P (product, price, place, and promotion). The module combines classic theories with the most recent trends in the field, and integrates theoretical frameworks with most relevant cases.", + "title": "Marketing strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5026", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-21", + "end": "2023-02-21" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to equip students with key concepts and understanding in accounting and help students develop the ability to us accounting information for decision making.", + "title": "Accounting and information management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5027", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers theories, concepts, practices and current issues in the management of human capital in organizations. Topics include strategic human resource management, organizational culture, recruitment & selection, performance management, compensation & benefits, etc. It will also discuss the impact of globalization and technology such as AI on human capital.", + "title": "Managing human capital", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5028", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 9 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 9 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 9 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the strategic operating issues (decisions) involved in managing value chains and logistics systems in any organization. A value chain transforms resources into goods, service, or both. Effective and efficient management of the value chain is a major competitive advantage. Such advantages, however, can only be realized to the fullest when the whole logistics system is managed holistically. Hence, the capability to manage operations to achieve system objectives is a key ingredient for success. An understanding of it is essential for all managers. Principles for transforming organizations to operational excellence will be emphasized.", + "title": "Value chains, logistics and operations", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5029", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-12-20", + "end": "2022-12-20" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-12-17", + "end": "2022-12-17" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 7 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 7 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-12-19", + "end": "2022-12-19" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a deep understanding of corporate governance from an international angle. It draws from the perspectives of research and practice, and places a strong emphasis on the current affairs of corporations. The module includes an overview of corporate governance mechanisms that help control managerial behaviour under different ownership structures. It deals with the policy responses to corporate governance concerns, including board of directors, board committees, accountability and auditing, compensation, disclosure and transparency, and communication with investors. In addition, the module covers emerging issues in sustainability, particularly the challenges of sustainability disclosures as well as ethics and social responsibility.", + "title": "Governance and sustainable business", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5030", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-22", + "end": "2022-11-22" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-21", + "end": "2022-11-21" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-19", + "end": "2022-11-19" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to offer students an overseas learning experience with a focus on technology, innovation and entrepreneurship. This module consists of the following three major parts: (1) company visits with senior executives sharing their practices and insights into innovation in organizations, (2) workshops on innovation and creative leadership, and (3) lectures focusing on innovation and entrepreneurship. Through this study trip, students will get exposed to best practices in different industries and learn about cutting\u2010edge knowledge on innovation.", + "title": "Technology, innovation and entrepreneurship", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5031", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 11 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 11 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 11 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 11 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 11 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 11 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers managerial economics theory and applications. It develops tools of quantitative and qualitative analysis for decision-making in situations of scarce resources, competition, and imperfect markets, with applications to business management and policy. Core topics include marginal analysis, competitive markets, market power and game theory. The techniques provide building blocks for other disciplines, including cost accounting, corporate finance, marketing, and business strategy.", + "title": "Economic analysis for managers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5032", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-04-18", + "end": "2023-04-18" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-04-20", + "end": "2023-04-20" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-04-19", + "end": "2023-04-19" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-04-21", + "end": "2023-04-21" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-06-29", + "end": "2023-06-29" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-07-01", + "end": "2023-07-01" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-06-30", + "end": "2023-06-30" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a holistic picture of creativity and innovation within organization. It contains two main parts. The first introduces creative organizing in cultural and creative industry, while the second part elaborates innovation in various sectors. These lessons attempt to integrate leading concepts in creativity and innovation using practical case studies, including creative destruction, user-centric innovation, customer journey, disruptive innovation, open innovation, technology brokering, hybrid business model, creative organizing, bricolage and technology sense giving. This course follows three core steps (Learn, Apply and Transfer) to engage students in acquiring new knowledge of domain subjects.", + "title": "Managing creativity and innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5033", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this study trip is to offer students an overseas learning experience with a focus on technology and business innovation. The module consists of the following three major parts: (1) company visits with senior executives sharing their practices and insights into technology management and business model innovation, (2) workshops on creativity and innovation, and (3) lectures and seminars focusing on latest technology trends and developments. Through this study trip, students will get exposed to the frontiers of technology management and innovation and their implications for business.", + "title": "Special topics 1: Technology and business frontiers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5034", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-18", + "end": "2023-05-18" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-11", + "end": "2023-05-11" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-16", + "end": "2023-05-16" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-17", + "end": "2023-05-17" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-15", + "end": "2023-05-15" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-10", + "end": "2023-05-10" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-09", + "end": "2023-05-09" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-12", + "end": "2023-05-12" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this heading will address one or more of a range of important issues in the management of technology and business.\n\nExamples of special topics include, but not limited to:\n- globalization of Asian business\n- managing family business\n- big data and artificial intelligence\n- Industry 4.0,\n- international relations\n\nThis module may also include topics with an industry focus, such as, opportunities and challenges in retail, healthcare, and creative industry.", + "title": "Special topics 2", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this heading will address one or more of a range of important issues in the management of technology and business.\n\nExamples of special topics include, but not limited to:\n- globalization of Asian business\n- managing family business\n- big data and artificial intelligence\n- Industry 4.0,\n- international relations\n\nThis module may also include topics with an industry focus, such as, opportunities and challenges in retail, healthcare, and creative industry.", + "title": "Special topics 2A", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMC5035A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-12-01", + "end": "2022-12-01" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this heading will address one or more of a range of important issues in the management of technology and business.\n\nExamples of special topics include, but not limited to:\n- globalization of Asian business\n- managing family business\n- big data and artificial intelligence\n- Industry 4.0,\n- international relations\n\nThis module may also include topics with an industry focus, such as, opportunities and challenges in retail, healthcare, and creative industry.", + "title": "Special topics 2B", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMC5035B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this heading will address one or more of a range of important issues in the management of technology and business.\n\nExamples of special topics include, but not limited to:\n- globalization of Asian business\n- managing family business\n- big data and artificial intelligence\n- Industry 4.0,\n- international relations\n\nThis module may also include topics with an industry focus, such as, opportunities and challenges in retail, healthcare, and creative industry.", + "title": "Special topics 2C", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMC5035C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-12-02", + "end": "2022-12-02" + }, + "venue": "Exam", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this heading will address one or more of a range of important issues in the management of technology and business.\n\nExamples of special topics include, but not limited to:\n- globalization of Asian business\n- managing family business\n- big data and artificial intelligence\n- Industry 4.0,\n- international relations\n\nThis module may also include topics with an industry focus, such as, opportunities and challenges in retail, healthcare, and creative industry.", + "title": "Special topics 2D", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMC5035D", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module intends to help students to develop their conceptual frameworks on organization and change and provide opportunities for them to harness their change management skills. The module has a strong practical component of consultation. Students in one class will form teams, which will be paired with focal companies that are ran or own by students from the same class. Through field visit, interview, survey, and focus group discussion in focal companies, students will gain deep understanding of the strategy and operation of the organizations. The student team will provide diagnosis and consultation to companies to improve their organization and change management. The student team will focus on one or two important management topics during their consultation, which can include but not limited to organizational management topics such as organizational control, talent management, performance management, high performance work team and organizational culture and value.", + "title": "Business Consultation Project on Change Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMC5035E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Many organizations and industries are entering the digital age where businesses are primarily conducted in the virtual universe. This module will provide students with the essential knowledge, theories, and management techniques needed for a successful digital transformation of a business organization. After finishing the module, students will gain a good understanding of the global trends that have been shaping current and future businesses, recognize the potential opportunities presented by the ongoing digital transformation, and appreciate the significant challenges resulting from the digital transformation. The module will offer students a roadmap on how to manage the digital transformation process.", + "title": "Digital Transformation and Intelligent Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BMC5035F", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 10 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 10 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a general overview of the recent development in global economy and financial markets. It covers a wide variety of the current issues, such as international trade, economic growth, international capital flow, etc. The module will explore in depth the structural forces that trigger the waves of crises starting from 2007 and the ramifications of policy responses. The the module will also discuss the origin of global economic integration, the challenges it poses to the governance of sovereign states and international policy coordination, the sources of its recent setback, and the opportunities and prospect of regional economic integration. In particular, the module will provide an outlook for the future development of the global economic landscape and financial market amid the ongoing pandemic.", + "title": "Current Topics in Economics and Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMC5035G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-18", + "end": "2022-11-18" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-19", + "end": "2022-11-19" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the mobile business era, majority of current business models and operations are affected by technologies such as mobile devices, social media, big data and cloud computing. \n\nA large number of new business models emerge, their business characteristics are online, mobile, social and digital. \n\nThis course explains how successful startups adopting new business models supersede their traditional counterparts, and systematically demonstrates how to adopt those new technologies, processes, tools into current business in order to transform models.", + "title": "Business Model Design in New Era", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMC5035H", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 9 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 85, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 9 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 85, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module demystifies cultural and creative industry (hereafter \u201cC&C industry\u201d) by analyzing its best practices, and and elucidates the key methodologies to establish long-term trust-based relationships with consumers/users. This sets up a framework for students from various industries to incorporate and enable innovative business practices.", + "title": "Business innovation inspired by creative industry", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMC5035J", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 4 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 8 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 85, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-06-26", + "end": "2023-06-26" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-06-27", + "end": "2023-06-27" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Crafting successful business deals that deliver optimal results is more than just being persuasive. Today\u2019s business leaders need the right skills to influence and bring the right partners together in order to navigate the complex business world. Strategic negotiation is as much the art of the deal as it is tactical play.\n\nThe best way to learn is by practising. During this course, students will role play and receive feedback to reframe their strategies and narrative to increase their confidence in handling tensions and conflicts. They will also analyze real life negotiation cases to enhance their negotiation skills.", + "title": "Negotiation Strategies and Skills", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMC5035K", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-24", + "end": "2023-02-24" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-23", + "end": "2023-02-23" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module elaborates on the essence of business strategy based on extensive case studies. This module aims to develop a dynamic perspective into the classic issue of business strategy amid the volatile socioeconomic environment, shifting business landscape, and rapid technological advancement. The content encompasses a number of key areas of management, ranging from strategy setting, innovation, governance, organizational restricting and transformation, and corporate culture.", + "title": "Strategic Management in Practice", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMC5035L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is challenging to sustain the organic growth and operation of an enterprise. Successful management requires that a CEO address a wide variety of managerial problems: namely, external uncertainty, internal complexity, organizational fragmentation, unidentified causal chain, business life cycle, organization\u2019s excessive dependence on individuals, and employees\u2019 accountability. This module develops a unique set of methodological tools\u2014which have been proven in practice\u2014to help corporate executives navigate these problems.", + "title": "Methodology and Practice", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMC5035M", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 2 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Singapore is one of the most successful countries that manages to strike a balance between government-led and market-led growth. This hybrid economic model is possible because of the governance and political philosophy that the Singapore government adopts. Different from other countries where policies are made along political lines and ideologies, the Singapore government has chosen pragmatism as the principal governance philosophy, prioritising long-term stable growth over short-term gains. This module adopts an inter-disciplinary approach to study the political economy of Singapore by examining how macro issues like growth, distribution, and welfare are shaped by political behaviours, public institutions, and laws.", + "title": "Singapore Governance\u2019s Success", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMC5035N", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-18", + "end": "2022-11-18" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-17", + "end": "2022-11-17" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the frameworks and approaches in Corporate Finance with many practical cases. The module will explore specific issues such as financial forecasting and estimating the fund needed, capital structure, IPO, merger and acquisitions, corporate valuation, and various forms of corporate financing. We will also examine the financial risks related to a company and the usefulness of Executive Stock Options in controlling the agency problem. The module will pay particular attentions on the similarities and differences among Singapore, Chinese and other foreign companies, focusing on publicly listed companies.", + "title": "Corporate finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5036", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-12-19", + "end": "2022-12-19" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-12-17", + "end": "2022-12-17" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-21", + "end": "2022-11-21" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-11-22", + "end": "2022-11-22" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-12-20", + "end": "2022-12-20" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 5 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the financial management of firms with an additional emphasis on an understanding of the financial markets in which the firms and investors operate in. The main objective of this module is to understand the ways in which firms can create value for their shareholders by applying appropriate financial strategies.\n\nTopics covered include time value of money, relationship between risk and return, valuation of bonds and stocks, the bond market and the stock market in Asia and globally", + "title": "Financial management and markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5037", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-21" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-22" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-19" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2022-09-20", + "end": "2022-09-20" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-04-21", + "end": "2023-04-21" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-04-20", + "end": "2023-04-20" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-04-19", + "end": "2023-04-19" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S4", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-04-18", + "end": "2023-04-18" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-07-01", + "end": "2023-07-01" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-06-30", + "end": "2023-06-30" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-06-29", + "end": "2023-06-29" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is based on conceptual frameworks and the best practice of organizational management and change management. The module intends to help students to develop their conceptual frameworks on organization and change and provide opportunities for them to harness their change management skills. The module has a strong practical component of consultation. Students in one class will form teams, which will be paired with focal companies that are ran or own by students from the same class. Through field visit, interview, survey, and focus group discussion in focal companies, students will gain deep understanding of the strategy and operation of the organizations. The student team will provide diagnosis and consultation to companies to improve their organization and change management. The student team will focus on one or two topics in their consultation work from five key themes including organizational control, talent management, performance management, high performance work team and organizational culture and value.", + "title": "Managing organizations and change", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMC5038", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the theories, concepts, practices and current issues in the management of human capital in organizations. Key topics include strategic human resource management, organizational culture, strategic workforce planning, employee motivation and creating more human workplaces. It will also discuss the impact of globalization, AI and sustainability on human capital.", + "title": "Managing Human Capital Today", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMC5040", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-07-05", + "end": "2023-07-05" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-07-04", + "end": "2023-07-04" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Family business is the more common type of firm around the world. This is especially so in Asia, where family firms not just dominate the small firm category but also constitute the majority of companies listed on most Asian stock exchanges. This course provides students the opportunity to develop a deep understanding of family firms across Asia, with a special focus on Southeast Asia. Aside from a better understanding of how to sustain a family firm from the perspective of the family, the course will also take an outsider\u2019s perspective, including investors, partners, executives, and policy makers.", + "title": "Family Business in Asia", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMC5116", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0800", + "endTime": "1800", + "weeks": [ + 6 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S5", + "startTime": "0800", + "endTime": "1800", + "weeks": [ + 6 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0800", + "endTime": "1800", + "weeks": [ + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will allow participants hands-on experience on doing business in Indonesia through experiential learning.", + "title": "Family Business in Indonesia (Immersion)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "BMC5117", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S5", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We are now at the era of AI and . Data and algorithms dominate the day. Competitive advantage, for more and more enterprises, is enabled via digitalization and automation to make the business more agile and more intelligent. big data This course introduces to students the current trends in the business world with respect to AI and Big Data and prepares them with a framework of strategies and tactics to adopt AI and Big Data in their own businesses. It will also raise their awareness of the risks and mistakes in doing so.", + "title": "Corporate Innovation in Big Data and AI Era", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMC5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S3", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-07-11", + "end": "2023-07-11" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "S2", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-07-12", + "end": "2023-07-12" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with the foundation to understand the key concepts and tools used in Finance, which are necessary for managers and analysts to make sound financial decisions. Topics covered include discounted cash flow models, risk and return, capital budgeting, valuation of stocks and other financial securities, as well as an overview of financial markets and financial institutions.", + "title": "Introduction to Finance for FinTech Professionals", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMD5301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces Finance models used in corporate finance, portfolio management, derivatives and bonds. It takes an applied approach by implementing through Excel, VBA and Python.", + "title": "Financial Modelling for FinTech Professionals", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMD5302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module combines comparative (East - West) sociological and psychological perspectives on management to provide for an understanding of the imperatives of managing complex organisations as well as enhancing leadership and managerial skills. The sociological perspective includes coverage of: organisation structure and design; organisation culture; control and co-ordination systems; the nature and functioning of small groups in organisations; and organisation development and change. The psychological perspective addresses such topics as: comparative views on leadership; roles and functions of the chief executives; the role of power, influence and politics; establishing supportive communications; enhancing employeea??s performance through motivation and empowerment; delegating for responsiveness, managing conflict, change and varied stakeholders.", + "title": "Leadership", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the work of the general manager at the head of a business entity - the corporation, business, division or plant. The module concentrates on the skills and actions required of the general manager for the development, communication and implementation of strategic organisational choices in the context of complex environmental conditions. The module will adopt a comparative perspective by first examining the evolution of strategic management practice in the West and in Asia, and then reconciling differences in practices from the viewpoint of an Asian manager. Typical topics include: perspectives on the role of firms in society; setting of mission and objectives; the concept of strategy; industry analysis, generic strategies; firm competencies; corporate strategy and diversification; environment analysis; strategy and structure; culture and other implementation processes; strategic leadership; organisational learning; stakeholder analysis and corporate ethics.", + "title": "Corporate Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides for an appreciation of the basic tools of statistical and quantitative methods of business decision-making from the perspectives of senior executives as requesters and users of such analyses. The emphasis is on problem-formulation and model building, providing conceptual input for - and evaluating the output of - the more detailed work carried out by decision analysts. The module will also provide for familiarization with standard computer packages as tools for arriving at solutions to problems as means for communicating analyses and decisions within and outside the organisation.", + "title": "Business Analytics for Decision Makers", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers managerial economics theory and applications. It introduces the basic microeconomic theories of marginal analysis and competitive markets. It then develops analysis of market power and imperfect markets, with applications to business management and policy. The techniques provide building blocks for other disciplines, including cost accounting, corporate finance, marketing, and business strategy.", + "title": "Managerial Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to provide executives with an understanding of marketing concepts, tools and techniques and their application in the analysis of marketing problems. The module covers topics such as the marketing concept; analysis of the marketing environment; buyer behaviour; segmentation and targeting; development of marketing programmes and elements of the marketing mix: product, pricing, promotion and distribution. Issues in integrating the marketing mix and implementing, evaluating and controlling the marketing programme in the Asian context constitute a common theme of this module.", + "title": "Strategic Marketing and Brand Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents an overview of the principles of both accounting and financial management, with a view to providing executives, who may not possess prior accounting or financial training, with an understanding of accounting and financial management concepts. Topics include: the uses and limitations of accounting information for decision making and performance evaluation; knowledge of financial resource management; the role of managers in maximizing the financial value of the firm; the standard techniques of financial analysis and control; financial markets and the environment in which businesses operate; valuation and capital budgeting; capital structure and the cost of capital; the choice of sources of financing; and the management of current assets and liabilities of the firm.", + "title": "Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the responsibilities of senior executives for the effective management and utilization of human resources. The module will also deal with critical HR issues arising from new business challenges in the 21st century, such as anticipated demographic and value changes in the labour force, business diversification and globalization, organisational reorienting and restructuring and working relationships and corporate cultures in the process of transition. The central perspective is the cross-cultural management of people within Asian businesses. Topics include: the design and management of personnel systems; planning, employee development and retention, staff appraisal and the design of reward systems, employee relations and collective bargaining; the implications of an ageing population for human resources planning and management; comparative perspectives on HRM; and managing professional employees, whose competencies and specialised knowledge increasingly determine and sustain competitive advantage.", + "title": "Power, Politics, and Influence", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the participants to the functional areas of Operations and Logistics Management. It will cover topics such as Operations Planning and Control, Quality Excellence, Japanese Operations Systems, Theory of Constraints, Operations Research-Based Tools, Operations Strategy and Design, Supply Chain Management, Risk Pooling, Vendor Hubs, Physical Distribution and Transportation, Strategic Warehousing, Logistics Performance and Planning and Third Party Logistics.", + "title": "Strategic Operations Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the core concepts and practices of innovation management and entrepreneurship with a specific focus on the challenges and opportunities in the Asia-Pacific context. While the specific choice of topics may vary from one cohort to the next, the module is structured to equip the class participants with a fundamental understanding of the dynamics of technological and business model innovation, the key analytic tools for formulating and\nimplementing innovation strategy, the basic organizational approaches to managing innovation, and the core mindsets and skills of entrepreneurship to discover, evaluate and exploit innovation opportunities for business and social goals. While the module does not assume in-depth knowledge of specific technologies and will use examples and cases covering a diverse range of technological and industry contexts to illustrate the core concepts, it will encourage interactive learning among the class participants through sharing of insights derived from their own respective deep domain knowledge of different technological innovations and business/industry contexts. The module will give special emphasis on challenges and opportunities of innovation and entrepreneurship that are of particular relevance to the Asia-Pacific context, including low-cost disruptive innovation as a competitive strategy, intellectual property (IP) management issues in emerging market contexts, and the entrepreneurial use of social networks in Asian cultures. Besides bringing in experienced innovation managers and entrepreneurs to share their practical experiences with the class, the module will also facilitate knowledge sharing by classmates with start-up entrepreneurial or corporate intrapreneurial experiences.", + "title": "Management of Technology and Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modules offered under this heading will address one or more of a range of important topics and issues in the management of Asian organisations. Examples of modules or topics include: contemporary issues in Asian business, East Asian (Japanese, Korean, Chinese) business and management systems, business-government relations in Asia, managing the China venture, managing in South Asia, managing the Asian multinational corporation systems.", + "title": "Services Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modules offered under this heading address the concerns and developmental needs of senior executive with responsibility for the overall success of their organisations. Typical topics include: thinking creatively and strategically; global strategic management; managing value-creation through strategy; the strategic management of information technology; managing the organisation-Government interface; managing external relations; and managing inter-firm relations and strategic alliances.", + "title": "Scenario Planning", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to impart an understanding of how legal considerations and implications affect the conduct of business across national boundaries. It gives essential exposure to commercial contracts and international sales as the agreed basis of doing business and the vehicle for business planning and dispute resolution, the applicable law and forum for cross-border disputes and the most expedient and cost-effective ways of resolving them. Also included are topical issues in intellectual property and international trade; competition law and market regulations. Throughout the sessions, case studies will be extensively used to highlight real world business problems, their resolution and the commercial lessons that may be learnt.", + "title": "Legal Issues in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the analytical tools of macroeconomics and international finance and applies them extensively to real life case studies, with emphasis on Asia. The course begins with the analysis of business cycle dynamics (how output, employment, interest rate and price are determined) and the role of stabilization policy. It then moves on to the open economy with trade and capital flows. Key issues covered here include the determination of exchange rate in the short- and long-run, how currency risk can be hedged, how economic \u201cshocks\u201d are transmitted internationally and what policy can achieve in response. Additional topics covered include: determinants of economic growth in the long-run with lessons from Asia, rising economic integration in Asia and implications on currency regime, global imbalance and policy adjustments, and perspectives on financial crises.", + "title": "Macroeconomics and International Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5015", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students can earn credit by completing one of the following three options:\n\na. A Management Consulting project\nb. An industry case study\nc. An industry visit report", + "title": "Management Practicum", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5016", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines how firms and the markets on which they depend are affected by considerations related to global, national, and corporate sustainability.", + "title": "Managing Business For Sustainability", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide a strong conceptual foundation for finance. The main objective of this module is to understand the ways in which firms can create value for their shareholders by applying appropriate financial strategies. Towards this purpose, finance theory will be used to solve practical problems faced by financial managers using a series of examples and cases. Topics include discounted cash flow models, risk and return, valuation of stocks and projects, payout policy, and capital structure.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creating a new business is a challenging and complex task. The road to entrepreneurial success is long, winding and strewn with pitfalls, obstacles and blind turns. The risks of starting a new business are high. However, as is always the case, the rewards are commensurate with the risk: in addition to the psychic rewards of starting a business, witness the dominance of entrepreneurs in the Forbes 400 list. The purpose of this course is to:\n\u2022 Help students understand the process, challenges, risks and rewards of starting up a new business\n\u2022 Equip them with the tools required to start their own business\n\u2022 Improve their chances of successfully starting their own business", + "title": "Entrepreneurship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5020", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corporate Governance (CG) has been defined \u201cas a set of relationships between a company\u2019s management, its board, shareholders, the community at large, as well as other stakeholders, providing the structure through which the objectives for the company are set, and the means of attaining those objectives and monitoring performance are determined\u201d (paraphrasing OECD Principles of Corporate Governance, 2004).The objective of this course is to provide a solid understanding of CG from an international perspective \u2013with focus on Asia \u2013 drawing from insights of academia, regulators and practitioners.", + "title": "Corporate Governance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5021", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today's intensely competitive environment, the development and execution of market strategy is more critical than ever before. This course provides a framework for creativity and strategic thinking in a competitive setting that enhances participant\u2019s management and leadership abilities.", + "title": "Business Strategy Simulation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BME5022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Leadership Skills Assessment and Development Module aims to develop students\u2019 self-awareness. Selfawareness helps to understand why we do things the way we do. It also helps to understand the people around us. How they perceive us, our attitudes, and our behaviors and why they react to us the way they do. This understanding allows us to break routines and to learn new ways of dealing with the challenges we encounter. Hence, the more we know about our self, including our strengths, weaknesses, motivations, needs, thoughts, beliefs, emotions, desires, habits, and assumptions, the better we are able to adapt to change, learn, and direct our future.", + "title": "Leadership: Exploration, Assessment & Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "BME5033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module builds up the Analytical Quotient (AQ) to thrive in the Industry 4.0 era. Participants will acquire hands-on experience applying descriptive (What is going on?), prescriptive (What should we do?) and predictive (What will happen?) analytical tools to pertinent data in order to extract insights for smart decisions in an uncertain environment.\n\nA holistic methodology (encompassing problem-formulation, model building, data preparation, software application, What-If analyses and effective / ethical communications of findings and recommendations to a lay audience) will be routinely applied to cases arising in various organisational settings e.g. Finance, Marketing, Supply Chain, HR, Government etc.", + "title": "Business Analytics and Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5040", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Businesses create value by supplying products or services to satisfy customer demand. Mismatches between the available supply and demand leads to severe economic consequences due to either unsatisfied customers or wasted resources. This is further complicated when stakeholders with conflicting incentives interact to bring products or services to market. In this course, we will investigate how firms can leverage their Value Chains, Logistics and Operations to limit both the incidence and consequence of supply-demand mismatches. Using cases from a wide range of industries, we will illustrate that firms that employ these techniques to better match supply with demand enjoy a significant competitive advantage and deliver superior value.", + "title": "Value Chains, Logistics and Operations", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5041", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0530", + "endTime": "1530", + "weeks": { + "start": "2022-11-14", + "end": "2022-11-14" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0530", + "endTime": "1530", + "weeks": { + "start": "2022-11-15", + "end": "2022-11-15" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0530", + "endTime": "1530", + "weeks": { + "start": "2022-11-16", + "end": "2022-11-16" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0530", + "endTime": "1530", + "weeks": { + "start": "2022-11-17", + "end": "2022-11-17" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents an overview of the principles of both accounting and financial management, with a view to providing executives, who may not possess prior accounting or financial training, with an understanding of accounting and financial management concepts. Topics include: the uses and limitations of accounting information for decision making and performance evaluation; knowledge of financial resource management; the role of managers in maximizing the financial value of the firm; the standard techniques of financial analysis and control; financial markets and the environment in which businesses operate; valuation and capital budgeting; capital structure and the cost of capital; the choice of sources of financing; and the management of current assets and liabilities of the firm.", + "title": "Accounting and Information Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5042", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 2 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 2 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the financial management of firms with an additional emphasis on an understanding of the financial markets in which the firms and investors operate in. The main objective of this module is to understand the ways in which firms can create value for their shareholders by applying appropriate financial strategies. Topics covered include time value of money, relationship between risk and return, valuation of bonds and stocks, the bond market and the stock market in Asia and globally, evaluation of investment projects, payout policy, capital structure, capital raising strategies, the IPO process, and the initial issues market.", + "title": "Financial Management and Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5043", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-21", + "end": "2023-02-21" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-23", + "end": "2023-02-23" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce participants to the importance of Negotiations, Communication and Influence for Leadership. Often leaders underestimate the importance of these processes to implement their decisions. This module will help leaders build skills in communicating their decisions effectively, understand the dynamics of negotiations and recognize the importance of influencing at the workplace. The module will also incorporate new developments in how employee communicate with new technologies and the role that these digital trends will play in communication challenges that leaders face at the workplace.", + "title": "Communications, Influence and Negotiations", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5044", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0930", + "endTime": "1930", + "weeks": [ + 3 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0930", + "endTime": "1930", + "weeks": [ + 3 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0930", + "endTime": "1930", + "weeks": [ + 3 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Self-awareness helps us to understand why we do things the way we do and what is important to us. It also helps to understand the people around us. How they perceive us and our behaviors and why they react to us the way they do. Hence, self-awareness is key to breaking routines, to learn new ways of dealing with the challenges we encounter, and to better manager ourselves and lead others.\n\nThis module is designed for you to gain self-awareness (to explore and assess) and to help you develop both as a person and a leader (to develop). The module will achieve this objective in two ways. First, it will provide you with key insights into who you are as a person and a leader. Second, it will provide you with feedback from experts and insights in how you could optimize your personal and leadership effectiveness.In the module, we will tie concrete situations (as reflected in cases and in your experiences) to essential theories on organizational behaviour and effective leadership practices.", + "title": "Leadership: Exploration, Assessment & Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5045", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Leading individuals, groups, and organisations effectively is key to managerial excellence. Yet, it may pose the most difficult challenges for managers. This course is designed to help you meet this challenge. The course will achieve this objective in three ways. First, it will provide you with a framework for increasing individual, group and organisational performance. Second, it will help you understand and acquire critical leadership knowledge and skills required to shape and manage the behavior of people in organisations. Third, through self-reflection of your own practice at work (\u201cjournal\u201d), it will relate the relevance and usefulness of the concepts and management practices discussed in class to your work experiences.", + "title": "Managing Organisations", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5046", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-17", + "end": "2023-05-17" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1530", + "weeks": { + "start": "2023-04-15", + "end": "2023-04-15" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-18", + "end": "2023-05-18" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-16", + "end": "2023-05-16" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Managing change and disruption is a core leadership skill in today\u2019s constantly changing and VUCA (volatile, uncertain, complex and ambiguous) work environment. But few leaders manage change well. The brutal fact is \u2013 70% of all change initiatives fail \u2013 which is why mastering this skill will not only future-proof your organisation, but also your career.\n\nThis course has been specifically developed to arm you with practical skills and hands-on tools for planning, leading and managing change and disruption.\n\nThis course is centered on these questions:\n- Why change?\n- What needs to change?\n- How should the change process be managed?\n- What tools and frameworks could you use to manage change?\n- Why do some change management initiatives fail?\n- What pitfalls should you avoid?\n- How do organisations develop a change-adept culture?\n- How could you use these change principles to your career and life?", + "title": "Managing Change and Disruption", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5047", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-24", + "end": "2023-05-24" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "1000", + "endTime": "1500", + "weeks": { + "start": "2023-04-22", + "end": "2023-04-22" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-22", + "end": "2023-05-22" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-23", + "end": "2023-05-23" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-25", + "end": "2023-05-25" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers theories, concepts, practices and current issues in the management of human capital in organisations. Topics include strategic human resource management, organisational culture, recruitment & selection, performance management, compensation & benefits, etc. It will also discuss the impact of globalisation and technology such as AI on human capital.", + "title": "Managing Human Capital", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5048", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 1 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 1 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 1 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The revised module content integrates digital and social media marketing as well as social purpose (CSR and sustainability) with core marketing strategy concepts and tools. Asian and global case studies are effectively utilised to enhance marketing decision making rigour ranging from market entry strategy, new product marketing, branding and customercentricity. Projects are specifically designed to encourage students to integrate a social purpose when developing and executing marketing and branding strategies which impact positively on brand equity and benefit both society and business outcomes.", + "title": "Marketing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5049", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-15", + "end": "2023-05-15" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-16", + "end": "2023-05-16" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1230", + "weeks": { + "start": "2023-04-15", + "end": "2023-04-15" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-17", + "end": "2023-05-17" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the analytical tools of macroeconomics and applies them extensively to Asia. The course begins with the analysis of business cycles and the role of stabilization policy. It then moves on to the open economy. Key issues covered include: the determination of exchange rate in the short- and long-run, how currency risk can be hedged, how economic \u201cshocks\u201d are transmitted internationally and what policy can achieve in response. Additional topics include: determinants of economic growth in the long run with lessons from Asia, challenges facing the Chinese economy, and perspectives on financial crises and financial regulation.", + "title": "Asia and the Global Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5050", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 12 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Managerial Economics as an EMBA core course aims to explore how microeconomic analytical tools can be applied to business practices. The module focuses on analyzing the functioning of markets, the economic behavior of firms and other economic agents and their economic/managerial implications through a selected set of topics that are motivated by real-world observations of business operations. Topics covered include: fundamental market forces, consumer and firm behaviour under various market structures, sophisticated pricing strategies with market power, decisionmakings under uncertainty/risk/information asymmetry, strategic interactions in game-theoretic situations and a variety of behavioural insights.", + "title": "Economic Analysis for Managers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5051", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": { + "start": "2022-08-06", + "end": "2022-08-06" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 1 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-19", + "end": "2023-05-19" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-18", + "end": "2023-05-18" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1230", + "weeks": { + "start": "2023-04-22", + "end": "2023-04-22" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-20", + "end": "2023-05-20" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Corporate Governance (CG) has been defined \u201cas a set of relationships between a company\u2019s management, its board, shareholders, the community at large, as well as other stakeholders, providing the structure through which the objectives for the company are set, and the means of attaining those objectives and monitoring performance are determined\u201d (paraphrasing OECD Principles of Corporate Governance, 2004).The objective of this course is to provide a solid understanding of CG from an international perspective \u2013with focus on Asia \u2013 drawing from insights of academia, regulators and practitioners.", + "title": "Governance and Sustainability Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5052", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-15", + "end": "2023-05-15" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1230", + "weeks": { + "start": "2023-04-01", + "end": "2023-04-01" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-13", + "end": "2023-05-13" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "International Business & Internationalisation looks at the process for a firm to become international in its operations and sales, as well as the subsequent management challenges associated with operating in multiple geographic markets. The module complements the macro-economic principles covered in BME5050 in its analytical focus on other elements of business environments, such as the political, regulatory and social environments, that shape the nature and conduct of business in Asia and in the world. The module will further extend these core analytical elements through a consideration of the role of multilateral institutions (e.g., IMF, Asian Development Bank) and prominent national institutions on internationalisation strategy and multinational management.", + "title": "International Business and Internationalisation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5053", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 2 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 2 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 2 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The strategy module focuses on the concept of strategy, and examines how firms achieve, sustain,and renew competitive advantage, and what roles managers play in this process. The course covers the basic frameworks and decision making tools, which lay the foundations of strategic change and renewal. Strategy is shaped not only by the underlying market and competitive conditions that prevail in an industry, but also by the resources as well as by the firm\u2019s internal structure, systems, and culture. This integration of the external and internal perspectives provides the basic framework for strategic thinking, and opens the door for more strategic analysis in a variety of context.", + "title": "Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5054", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Technology, Innovation and Entrepreneurship\nThe objectives of this module is to provide senior managers with the analytic tools to analyse and anticipate the opportunities, threats and risks created by technological and business model innovation, the organisational challenges of incumbent firms facing disruptive innovation, and the entrepreneurial mind-set and change-maker skill-set needed to make innovation happen. The course will be structured around the following four (1) Understanding Innovation Opportunities, Threats and Risks; (2) Formulating Technological & Business Model Innovation Strategy (3) Managing the Innovation Process in Existing Organisations: Critical Functional Roles & Intrapreneurship, and (4) the Lean StartUp approach and Entrepreneurial New Firm Formation process", + "title": "Technology, Innovation and Entrepreneurship", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BME5055", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "0831", + "weeks": [ + 7 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "0831", + "weeks": [ + 7 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "0831", + "weeks": { + "start": "2023-02-25", + "end": "2023-02-25" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this module will address one or more contemporary issues in business management or discuss current business affairs that is not covered in the core curriculum.", + "title": "EMBA Special Topics 1", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BME5056", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this module will address one or more contemporary issues in business management or discuss current business affairs that is not covered in the core curriculum.", + "title": "Special Topic 1A", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BME5056A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0530", + "endTime": "1530", + "weeks": [ + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this module will address one or more contemporary issues in business management or discuss current business affairs that is not covered in the core curriculum.", + "title": "Special Topic 1B", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BME5056B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 2 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 2 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this module will address one or more contemporary issues in business management or discuss current business affairs that is not covered in the core curriculum.", + "title": "EMBA Special Topics 2", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BME5057", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this module will address one or more contemporary issues in business management or discuss current business affairs that is not covered in the core curriculum.", + "title": "Special Topic 2A", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BME5057A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0930", + "endTime": "1930", + "weeks": [ + 3 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0930", + "endTime": "1930", + "weeks": [ + 3 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0930", + "endTime": "1930", + "weeks": [ + 3 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-20", + "end": "2023-05-20" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered under this module will address one or more contemporary issues in business management or discuss current business affairs that is not covered in the core curriculum.", + "title": "Special Topic 2B", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BME5057B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sustainability reporting increases shareholder value by heightening an organization\u2019s awareness to remain robust and resilient through deployment of sustainable and efficient processes. ESG Investing has grown almost tenfold in just 3 years as investors realize that a strong ESG proposition can safeguard a company\u2019s long-term success. There is a clear link that the financial performance of companies correlates to how well they handle ESG risks. While ESG investing is not a miracle cure, this is the right thing for you to do, the smart thing to do, and the time to do so is now.", + "title": "Sustainability Reporting and ESG Investing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BME5101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "L1", + "startTime": "0800", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "E-Learn_C", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We discuss what constitutes data analytics, factors for successful analytics, and apply analytics in mature markets. We look best practices of descriptive analytics and predictive analytics and discuss how analytics changes business models. Finally, we study how to design a data project.", + "title": "Leading with Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BME5201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1730", + "weeks": { + "start": "2022-12-03", + "end": "2022-12-03" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces Excel and programming skills for application to finance. It covers mathematics involving statistics, optimization and interpolation applied into Finance.", + "title": "Financial Modelling", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5321", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with the foundation\nto understand the key concepts and tools used in Finance\nthat are necessary for managers to make sound financial\ndecisions. Topics covered include discounted cash flow\nmodels, risk and return, capital budgeting, valuation of\nstocks, as well as an overview of payout policy and capital\nstructure.", + "title": "Introduction to Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMF5322", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-23" + }, + "venue": "HSS-04-07", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-26" + }, + "venue": "HSS-04-02", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1130", + "endTime": "1500", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-22" + }, + "venue": "HSS-04-02", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1130", + "endTime": "1500", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-25" + }, + "venue": "HSS-04-02", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course stresses the theory of accounts, generally accepted accounting principles, and the interpretation of financial statements. The perspective of the course is that of managers and investors as knowledgeable users of accounting information.", + "title": "Accounting for Finance Professionals", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMF5323", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1830", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-26" + }, + "venue": "HSS-04-02", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1830", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-25" + }, + "venue": "HSS-04-07", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1130", + "endTime": "1500", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-23" + }, + "venue": "HSS-04-02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1830", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-22" + }, + "venue": "HSS-04-02", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with fundamental concepts in statistics and analytics, and their basic applications in finance. The module will be crucial for the rest of the MSc Finance modules and for students\u2019 future career in finance related sectors.", + "title": "Statistics and Analytics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5324", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "BIZ1-0201", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "BIZ1-0201", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops a conceptual framework for investment decisions and corporate transactions. The first part of the course centres on valuation & financing strategy, while the second half studies mergers, private equity, and restructurings of distressed and bankrupt firms. We will examine their role in both the private and public capital markets, how they perform from a shareholders\u2019 perspective, and possible agency problems with management.", + "title": "Applied Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5331", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops a conceptual framework for investment decisions, focusing on the responsibilities, concerns, and methods of analysis for investment professionals. Topics include portfolio construction, asset classes (equity, fixed income, options, futures, etc.), asset allocation, asset pricing, and market (in)efficiency. The rise of various institutional forms, e.g., mutual funds, hedge funds, ETRs, will also be discussed.", + "title": "Foundation of Investments", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5332", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the pricing, hedging, and use of derivatives and fixed income securities. These include bonds, forwards, futures, call and put options, and other derivative securities.", + "title": "Options and Fixed Income", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5333", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with data analysis tools and conceptual frameworks for analyzing international financial markets and capital budgeting. This course will be especially helpful for a student pursuing a career in international banking, global asset management, or international corporate finance. The course covers the following topics foreign exchange markets; models of exchange-rate determination; international investments; currency and interest rate risk management; international banking; international capital budgeting; political risk and corporate governance in Asia.", + "title": "International Finance and Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5334", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops a conceptual framework for evaluating various active investment strategies. Topics include factor models, comovement in returns, market\nanomalies, and liquidity considerations. We will also discuss behavioral patterns in trading by investors and its implications for asset prices.", + "title": "Advanced Investment Strategies", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMF5341A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module comprises the application of various active investment strategies. Topics include how to research, construct, back-test, combine, and evaluate different alpha generating investment modules and quantitative programs into a meaningful and practical investment portfolio. Different styles of managers, including strength and weakness, will be introduced and compared. We will also\ndiscuss how an investment manager can meet escalating objectives and concerns of investors and regulators.", + "title": "Applied Investment Strategies", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMF5341B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Technologies is transforming and disrupting the financial services industry. This module introduces financial data analytics by integrating finance domain knowledge and programming skills together. The module aims to give students an understanding on how technologicals can assist and improve functions in the financial services industry, and equip students with technical tools and programming skills to assisit their decision making in the financial services industry. It will also benefit students aspiring to enter the FinTech industry.", + "title": "Technological Disruptions in Finance and Data Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5342", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module in the MSc Finance programme will be structured around the theme of risk management in banks and financial intermediaries. Students will examine how financial intermediaries generate earnings and the nature of risks assumed in their operations. The instructor will cover topics including: why financial intermediaries are special, the role of depository institutions, various financial crises, and the management of various risks assumed in financial intermediation, including interest rate risk, credit risk, off-balance sheet risk, and liquidity risk.", + "title": "Banks and Non-Traditional Financial Intermediaries", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5343", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to equip students with key accounting concepts to gain deep understanding of corporate financial reports. The course enables students to develop essential skills to effectively apply accounting information and investment tools from the value investing perspective.", + "title": "Financial Statement Analysis and Value Investing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5344", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module in the MSc Finance programme will serve as a comprehensive real world examination of the quantitative techniques available and how these might be applied to portfolio management in the investment management industry. Major topics covered include exploring various quantitative tools and models for Estimating Expected Returns, Modelling Risks, Style Analysis & Bench-marking, and Strategic & Tactical Asset Allocation. Lectures will involve frequent interaction with practitioners from the industry hands-on lab projects and\nreal-life examples. Suitable for students interested in a career as an investment analyst or as a portfolio manager in the financial services sector.", + "title": "Analytical Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5345", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Venture capital and private equity are necessary to spur economic growth. This module covers private equity investment types including venture capital, growth capital, and buyouts. It also includes corporate venturing and cross-border structuring.\n\nTopics will cover the entire private equity investment cycle from fund raising and structuring; deal screening, due diligence, and valuation; investment negotiations; postinvestment value development; and eventual exits.\n\nStudents will obtain a firm grasp of the workings behind PE and VC funds, as well as corporate ventures. It will also prepare budding entrepreneurs in their fundraising\nefforts as they negotiate from the other side of the table.", + "title": "Venture Capital and Private Equity", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5346", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module in the MSc Finance programme will be structured around the theme of household financial decision making. Specifically, Household Finance studies (1) how households make financial decisions relating to the functions of consumption, payment, risk management, borrowing and investing; (2) how institutions provide goods and services to satisfy these financial functions of households; and (3) how interventions by firms, governments and other parties affect the provision of financial services. This functional definition shows that household finance is clearly a substantial component of the financial sector. These different functions shows that the scope of household finance spans multi disciplines, embracing not just finance and economics but also industrial organization (eg. automatic enrolment in workplace savings plan), law (eg. regulations of retail financial transactions), psychology (eg. decisions affected by framing and cognitive biases), and sociology (eg. decisions shaped by social networks).", + "title": "Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5351", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective in Advanced Applied Portfolio Management will serve as a comprehensive real-world examination of the quantitative, fundamental, behavioral, and model-based approaches utilized for performing security\nvaluation & portfolio management in the financial industry. Major topics covered include Relative Valuation,Multifactor Models, Liquidity and Value Enhancement\nStrategies. Lectures will involve frequent interaction with practitioners from the industry, hands-on lab projects, and real-life examples. Students are also expected to research, write, and publish either equity investment reports (preferably on Asian companies with limited research analyst coverage) and/or portfolio investment and dynamic asset allocation strategies. These individualized reports and a presentation in the form of a team-based pitch could subsequently be presented by the students to a panel of senior members from the Singapore\ninvestment management industry so as to showcase & ascertain students\u2019 translational research and alpha-generating skills in investments. This course is suitable for students interested in a career as a financial analyst (both\non the buy-side and sell-side), or as a portfolio manager.", + "title": "Advanced Applied Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5352", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module comprises the application of various active investment strategies with a concentration on developing an investment program which includes alternative asset classes. Topics will include how to research, evaluate and select different alpha generating investments into a practical ready to use investment program. Different manager styles will be discussed and will cover both quantitative and qualitative methods to assess the strengths and weaknesses of various investment managers and styles. Alternative asset classes studied will include hedge funds, real estate funds, infrastructure investments, private equity, private debt, managed futures and commodities. We will also discuss risk management and control issues in investment programs. The course will explore the impact of regulatory changes and emerging market variables on the performance of investment programs.", + "title": "Applied Investment Strategies", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5353", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Finance is a key pillar of modern business organisations. This module examines why and how financial markets and transactions are regulated, with a focus on corporate fundraising and how the regulatory reforms following the 2008-9 Global Financial Crisis are changing the financial landscape. The module also introduces how technological developments (e.g. blockchains, cloud computing, artificial intelligence) are rapidly transforming finance, and highlights regulatory issues that need to be addressed to leverage the potential of Fintech.", + "title": "Financial Regulation in a Digital Age", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5354", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce students to the systems and technologies used by financial institutions and markets. It will also explore future trends, opportunities, and threats that these systems and technologies provide.", + "title": "Financial Systems and Technologies", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5355", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces principals, concepts, and modern practices of financial risk management. This course addresses basic financial and statistical techniques that enhance risk management decisions. Topics include Value-at-Risk, historical simulations, stress-testing, backtesting, and credit derivatives. This course will be useful for students seeking professional positions at any part of the financial industry, especially fixed income and derivatives sales, trading, asset management, hedge funds, banking, and risk management.", + "title": "Applied Financial Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5356", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced finance module that aims to provide integrated perspectives on the topic of sustainability in the domain field of finance. Specifically, the course will cover the value implications of sustainability practices adopted by firms and those demanded by investors and financial institutions. Regulators, non-profit organizations (NGOs) and other intermediaries are also part of the ecosystem. Various financial valuation and investment tools and methodologies are modified and adapted for use.", + "title": "Sustainable Investment", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5357", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the art of problem identification, ideation, opportunity evaluation, product design, and prototyping in digital and decentralized finance. Kicking off with a review of the business models in these areas and their enabling technologies (e.g. distributed ledgers, open APIs, AI), students will first gain deep insights into how financial technology is reshaping the financial services industry. They will then identify gaps in traditional finance and develop a proof of concept for a specific use case.", + "title": "Entrepreneurship in Financial Technology", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5358", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides both a broad and intensive overview of mergers and acquisitions, buyouts and corporate restructuring. By the end of the module, students will understand the motivations, methods, benefits and pitfalls behind M&A economic activity, and as well, appreciate the role of the many parties involved in implementing and effecting these transactions. Although the lectures and cases will often focus on the financial aspects of these transactions (including deal design), students will also consider the various related legal, strategic, organizational and general management issues, as these in fact drive the financial analysis and ultimate fate of the transaction.", + "title": "Valuation and Mergers & Acquisitions", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMF5359", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analyzing and solving problems related to the financial sector through industry internships.", + "title": "Experiential Learning: Individual Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BMF5391A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analyzing and solving problems related to the financial sector through team projects provided by industry organizations.", + "title": "Experiential Learning: Applied Team Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BMF5391B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analyzing and solving problems related to the financial sector through individual projects supervised by faculty members.", + "title": "Experiential Learning: Applied Faculty Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BMF5391C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn how the coronavirus (Covid19) pandemic affects the financial sector and relevant workplaces through a series of (virtual) seminars by faculty members and industry experts.", + "title": "Financial Sector in the Post-Pandemic Era", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BMF5392", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analyzing and solving problems related to the financial sector through industry internships.", + "title": "Experiential Learning: Advanced Individual Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BMF5393A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops a conceptual framework for corporate decisions, focusing on the responsibilities, concerns, and methods of analysis for the chief financial officer. Topics include capital budgeting, financial modeling, M&A deal structures, syndicated loans, public equity offerings, and dividend policy. The impact of major external constituents, such as private equity and hedge funds, on corporate decisions are also considered.", + "title": "Foundational Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMG5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops a conceptual framework for investment decisions, focusing on the responsibilities, concerns, and methods of analysis for investment professionals. Topics include portfolio construction, asset classes (equity, fixed income, options, futures, etc.), asset allocation, asset pricing, and market (in)efficiency. The module also covers the rise of sustainability as an important concerns for financial intermediaries, e.g., mutual funds, hedge funds, and private offices.", + "title": "Foundational Investments", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMG5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Investors and regulators around the world are pushing companies to incorporate environmental, social and governance (ESG) factors into their strategies and practices. The growth in assets under management for ESG-focused funds now considerably outpace traditional funds. This module covers the key areas of corporate governance from the perspectives of investors, companies and other stakeholders; the importance of good corporate governance as the foundation for sustainability; and corporate governance policies and practices that companies should adopt to ensure that environmental and social considerations are truly embedded within the organisation.", + "title": "Corporate Governance and Sustainability", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMG5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The subject introduces students to the economics of sustainability. It will provide students with a clear understanding on what it means \u2018to think like an economist\u2019, and the skills to apply economic tools towards questions of economic sustainability and environmental planning. With sustainability being a global problem with local characteristics, the course will provide students with a holistic overview of environmental economics and sustainable development from a global perspective. Students are introduced to the economic concepts, theories and practices for analysing sustainable development. It also reviews the implementation and success (and failures) of existing policy instruments.", + "title": "Economics of Sustainability", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMG5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Impact investors seek measurable impact on their investments, but they are no longer the only entities seeking for positive impacts on the society and environment. Business activities also need to generate positive impacts through sustainable practices, in which capital allocation must deliver measurable financial and non-financial returns sought by stakeholders. This module examines investments seeking measurable, positive impacts. In addition to defining and identifying business impacts on society and environment, students will learn how to measure them properly. An underlying theme is identifying investment opportunities that can create sustainable business solutions benefitting the society and environment.", + "title": "Impact Assessment and Impact Investing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMG5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an elective sustainable finance module that aims to provide integrated perspectives on the topic of sustainable investment in the domain field of finance. Specifically, the course will cover the value implications of sustainability practices adopted by firms and those demanded by investors and financial institutions. Regulators, non-profit organisations (NGOs) and other intermediaries are also part of the ecosystem. Various financial valuation and investment tools and methodologies are modified and adapted for use.", + "title": "Sustainable and Green Investment", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMG5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sustainability factors are becoming more influential for the financial returns and long-term value creation of a corporate. The environment, social and governance (ESG) risks have to be properly managed by various stakeholders such as corporate, suppliers, customers, investors, governments, and regulatory bodies. This module aims to provide the comprehensive understanding on the sources of the risks as well as financial tools, theoretical principles and various risk management frameworks to be employed to control various risks, such as corporate crisis, natural disaster, pandemic crisis , human error crisis, and technology related crisis. Asianbased case studies are included.", + "title": "Sustainability Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMG5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module will be structured around the theme of sustainable household financial decision making. Specificially, Sustainable Household Finance studies (1) how households make decisions relating to the consumption of utilities; (2) how to households respond to environmental factors like pollution; (3) how institutions provide goods and services to satisfy these financial functions of households; and (3) how interventions by firms, governments and other parties affect the services to households. The scope spans from finance, economics, industrial organisation, laws, psychology, and sociology.", + "title": "Sustainable Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMG5204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analysing and solving problems related to the sustainable and green finance projects provided by industry organisations through the team work.", + "title": "Sustainable and Green Capstone Project A", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BMG5301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "00", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 5, + 6, + 6, + 7, + 7, + 8, + 8, + 9, + 9, + 10, + 10, + 11, + 11, + 12, + 12, + 13, + 13 + ], + "venue": "HSS-04-02", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the second half of the experiential learning module of capstone project. Students will engage in experiential learning in analysing and solving problems related to the sustainable and green finance projects provided by industry organisations through the team work.", + "title": "Sustainable and Green Capstone Project B", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "BMG5302", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Management and human resource practitioners often need to use, or interpret data that result from, research methods tools and techniques for a variety of organisational issues, such as recruitment and selection, performance assessment and evaluation, identifying high potential candidates for promotion, assessing the effectiveness of training and development programmes, and so on. The module aims to provide students with the necessary knowledge and understanding needed to design sound research projects for internal organisational purposes and also to critically appraise published work in the areas of human resource management and organisational behaviour. Application of statistical methods to problems in human resources. Analysis and presentation of results using computer software. Covers statistical techniques through analysis of variance and multiple regression.", + "title": "Quantitative Methods for HR", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMH5101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "HSS-04-01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "HSS-04-01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Talent assessment and selection is a key component of human capital management. Managers with human capital management responsibilities must be proficient at talent assessment and selection because the continued infusion, upward promotions, and lateral/downward transfers of competent personnel into/within the organization are key driving forces that will help ensure that the organization remains agile, changes to fit with the internal & external environments,", + "title": "Talent Assessment & Selection", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMH5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 39, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the power of adopting an analytical mindset to approaching people issues in organisations. Using case studies, we will use data as a tool to solve people-related challenges that managers face such as recruiting the right talent, assessing and managing performance, motivating and engaging employees and employee well-being. Students will also be sensitised to the importance of human resource functions to develop business acumen and use data as a means to support business leaders achieve the best outcomes for their subunits harnessing their most important asset-people.", + "title": "People Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMH5103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Artificial intelligence (AI) as emerged has a tool that has applications across different business domains. Human resource (HR) functions are increasingly adopting AI and machine learning as tools to solve many problems such as recruitment, payroll, deploying policies and procedures across the organisation. Given the shift in HR as a function and the rampant use of AI and machine learning, this module introduces students to the key concepts in AI. The module will introduce key concepts and computing techniques in machine Learning and equip HR managers with the vocabulary and understanding to interact with the technology function in their organisations.", + "title": "Artificial Intelligence for HR", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMH5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 39, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Good HR communication provides timely and reliable information, builds employee relations and trust, and helps employees succeed by enhancing their motivation, productivity, and well-being. This module guides students to develop communication skills that are essential for human resource professionals to not only fulfil transactional, functional HR roles, but also to effectively support strategic business objectives. Cases of challenging scenarios of HR communication and experiential activities will be used to facilitate learning and skill development.", + "title": "Communication for HR Professionals", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMH5105", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "HSS-04-01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the enriching experience of how Technology can improve the Effectiveness & Efficiency of the HR function, and thereby create the right \u201cTalent Experience\u201d. With a perfect blend of theoretical and practical knowledge, the students will be able to understand the powerful impact of the use of the new-age HR Technologies. As an integral and compulsory part of this module, students will have case studies and presentations by various subject matter experts in the area of HR Technology.", + "title": "HR Technology", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMH5106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "All of us would have been placed in situations where we have to deal with a challenging colleague, unmotivated subordinates, difficult bosses and other stakeholders. This module will help you to understand the factors that make people challenging to work with. At the end of the course, participants will be equipped with a toolkit of strategies and skills to manage and motivate difficult employees.", + "title": "Leading and Managing Difficult Employees", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMH5107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ1-0307", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 39, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Managing employees can involve all sorts of legal issues. While lawyers may be involved at some point, it is important for HR manages to have some understanding of the law to protect or further the interests of the employer. Aside from legal issues, this course will also highlight practical steps that can be taken to avoid various legal problems that may occur at the workplace such as leakage of confidential information or harassment. While Singapore law will be used as a base, international examples especially across Asia will be shared to give students a more global perspective.", + "title": "Labour and Employment Law", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMH5108", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": { + "start": "2023-06-24", + "end": "2023-07-29" + }, + "venue": "BIZ1-0201", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the fundamentals of Talent Management (TM). It challenges students to critically think about, discuss, and evaluate the complexities of managing talents within and beyond organisations. It reviews cutting-edge TM models and frameworks, as well as current ideas and practices in attracting, developing, and retaining people. It seeks to deepen students\u2019 ability and competency to apply TM knowledge to resolve real-life TM-related issues. It further considers human capital from a strategic perspective, as a means of creating a high-performance workforce for firms\u2019 sustainable competitive advantage. At the end of the course, students should possess a better understanding of people, processes, and organisations and how they relate to each other in an open system. More specifically, the course aims to provide students with: - An understanding of the trends of environmental challenges (e.g., globalisation, new technology, labour force, employment relationships, etc.) that affect internal talent management processes. - A solid foundation in the core areas of talent management processes such as talent attraction, talent development, and talent retention.", + "title": "Talent Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMH5109", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Compensation and performance management are key components in the HR system. They are key contributors to organisational effectiveness. This course addresses how organisations use compensation and performance management practices to drive strategic business success. This course is designed to examine how recent theoretical and research developments inform compensation decisions and performance management in developing and maintaining a motivated, committed and competent workforce.", + "title": "Compensation and Performance Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMH5110", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 39, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Becoming a strategic business partner requires HR leaders to play an active role in enabling business growth & transformation. This module builds on cross-disciplinary research across areas of strategic management, HR management, psychology, corporate innovation and entrepreneurship to help students form a more strategic perspective on the impact they can and must play in today\u2019s complex and dynamic businesses. We will learn from both research and practice with a focus on application in the diverse countries that make up the Asia Pacific region. Students also will gain insights into their own capabilities as a Growth Leader.", + "title": "HR as Strategic Partner for Growth & Transformation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMH5111", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 39, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will highlight the components of effective negotiation and will also teach students to analyse their own behaviour in negotiations. The course will be largely experiential, providing students with the opportunity to develop their skills by participating in negotiations and integrating their experiences with the principles presented in the assigned readings and course discussions. This course is designed to foster learning through doing, and to explore your own talents, skills, and shortcomings as a negotiator. The negotiation exercises will provide you with an opportunity to attempt strategies and tactics in a low-risk environment, to learn about yourself and how you respond in specific negotiation situations. If you discover a tendency that you think needs correction, this is the place to try something new. The course is sequenced so that cumulative knowledge can be applied and practiced.", + "title": "Negotiation & Dispute Resolution", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMH5112", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on developing your ability to understand and manage ethical conduct and social responsibility in business organizations. Learning will take place through active student engagement in reading, writing, in-class exercises, short lectures and case analyses.", + "title": "Ethics in Human Resources", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMH5113", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 39, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analysing and solving problems in Human Resources functions through individual internships.", + "title": "Experiential Learning: Individual Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMH5301", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analysing and solving problems related to Human Resources through individual projects supervised by faculty members.", + "title": "Experiential Learning: Applied Faculty Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMH5302", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analysing and solving problems related in HR functions through team projects provided by industry organisations.", + "title": "Experiential Learning: Applied Team Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMH5303", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers both the fundamental and advanced principles of biomedical informatics, the field concerned with the acquisition, storage, and use of information in health and biomedicine. The course begins with a basic introduction to health and biomedicine as well as computing concepts and theories including ethics and legal aspects and then moves on to advanced concepts in these topics.", + "title": "Advanced Biomedical Informatics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2022-08-16", + "end": "2022-11-15", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the biomedical informatics student to the health sciences. This encompasses an introduction to clinical practice, and an overview of the underlying biology and manifestations of selected disease states. Besides this an overview of the information gathering and reasoning processes used to detect, understand and treat diseases will be provided. This course aims to provide a functional background to non-clinicians who are new to the healthcare system.", + "title": "Health Sciences for Non-Clinicians", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2022-08-15", + "end": "2022-11-21", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 12, + 13, + 14, + 15 + ] + }, + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an in-depth review of decision supports systems in the healthcare setting.\n\nFundamental concepts such as decision analysis, decision science, and knowledge management will be covered. Aspects from designing to implementing and maintain clinical decision support tools will also be discussed in depth. Additionally, the course will cover Bayesian theory, decision trees, patient utilities, quality of life and cost related to health outcomes in order to contextualise clinical decision making. Finally, practical issues such as overcoming barriers to the adoption of clinical decision support tools will also be covered.", + "title": "Clinical Decision Support Systems", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-01-04", + "end": "2023-04-12", + "weeks": [ + 1, + 2, + 3, + 6, + 8, + 9, + 10, + 11, + 13, + 14, + 15 + ] + }, + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an in-depth guide to Evidence Based Medicine (EBM) which strongly influences daily clinical practice. Students will be introduced to the core principles of EBM such as the principles of information gathering, evaluating and summarising available evidence to guide patient care. Additionally, principles of original research, systematic reviews and meta-analysis will be covered in this program. Besides this, students will be instructed on commonly used statistical principles and will gain proficiency with statistical software to perform data analysis. Finally, the limitations of the EBM approach, and assessing for bias and error will also be discussed.", + "title": "Advanced Evidence Based Patient Care", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces participants to \u201cValue Based Healthcare\u201d concepts and framework, and how value based healthcare can be implemented in Singapore\u2019s context. Participants will learn structured data management framework, identification of key clinical quality measurements for specific medical conditions and tracking of improvements in quality and safety.", + "title": "Advanced Value Based Healthcare", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the basic and advanced principles of scientific research methods from literature review to designing research questions with a focus on clinical research informatics.\n\nTopics covered include the scientific theory of research, study methodology design as well as qualitative and quantitative research methods and designing a research questions.\n\nStudents will be provided with a practical approach to designing clinical research, clinical trial administration as well as types of health registries and records.", + "title": "Advanced Scientific Research Methods", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5109", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-01-09", + "end": "2023-04-17", + "weeks": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + }, + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an understanding of Molecular Bioinformatics from the user's perspective. BMI5110 at its core, will focus on the extraction of clinically relevant information from clinical, molecular and biological data, using a variety of bioinformatics applications. BMI5110 will cover the introductory aspects of bioinformatics and its applications in genomics, pharmacogenomics, transcriptomics, proteomics, molecular pharmacology, and system biology; enabling technologies (including genome-sequencing and DNA microarrays); big data processing (including experimental design and computational and statistical genetics); and more practical experience with basic programming and software language.", + "title": "Molecular Informatics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5110", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-01-05", + "end": "2023-04-06", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-01-03", + "end": "2023-04-11", + "weeks": [ + 1, + 2, + 3, + 5, + 6, + 7, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + }, + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The big data evolution provides an opportunity for managing huge amount of information and acting on it with analytics for improved outcomes. Understanding data science and data analytics in relation to arificial intelligence allow us to remain competitive and relevant in the rapidly changing healthcare landscape. Students need to understand and approach real world issues, from processing and exploring data to provide insights, developing a healthcare data product for their capstone project.", + "title": "Capstone Project", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5111", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To provide students with an overview of the lifecycle of clinical information systems from user requirements from conception to production and maintenance. Topics cover includes various expects of different system development life cycle and some widely use industry standards such as SDLC, ILM and CRISP-DM.\n\nMedical device development and regulation for Health Science Authority Singapore (HSA) will be taught. Data derived from medical devices and its effective use will be discussed.", + "title": "Advanced Clinical Data Systems", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-01-04", + "end": "2023-04-05", + "weeks": [ + 1, + 2, + 3, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides provide students with an indepth understanding of user engineering, human-computer interactions for the design of biomedical informatics applications. A focus on user centred design as well as usability assessment will be provided.", + "title": "Advanced Human Factors Engineering", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-01-10", + "end": "2023-04-11", + "weeks": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to introduce data standards, its sources (traditional and contemporary) and applications in healthcare. Some important standards covered here include SNOMED, ICD9\\10, HL7, OMOP and other international standards.\n\nFeatures of healthcare databases and processing of data would be covered. Concepts in databases and data mapping would be demonstrated in practice.", + "title": "Medical Data and Data Processing", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5207", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2022-08-18", + "end": "2022-11-17", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The current world is volatile, uncertain, complex and ambiguous. Technologies and digitalization are changing at an alarming pace and disruptors are constantly popping up to challenge the incumbents. To survive and grow in this environment, organizations need to be able to learn and adapt rapidly, execute faster, make better use of data and embrace changes aka agility. Agile practices emphasize flexible approaches and early, frequent releases of product to users. It employs an iterative, incremental approach to optimize predictability and control risk. This course offers essential advanced concepts and practices to use agile for building product and project delivery.", + "title": "Advanced Agile Project Management", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMI5306", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1730", + "weeks": { + "start": "2022-09-17", + "end": "2022-11-19", + "weekInterval": 2, + "weeks": [ + 1, + 3, + 8, + 10 + ] + }, + "venue": "Ambition_II", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1730", + "weeks": [ + 1, + 10 + ], + "venue": "Innovation_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The digital age has fundamentally altered the manner we collect, process, analyse and disseminate market intelligence. Driven by advances in hardware, software and communications, the very nature of market research is rapidly changing. New techniques are emerging. The increased velocity of information flow enables marketers to respond with much greater speed to changes in the marketplace. Market research is timelier, less expensive, more actionable and more precise ... all of which makes it of far greater importance to marketers.\n\nApplied Market Research is primarily designed for marketing professionals to train them to use market knowledge for day-to-day marketing decisions. It will provide good understanding of many prevalent research techniques and their application.\n\nThe course will be taught in an application-oriented fashion through lectures, class discussions and case studies. Students will acquire critical analysis and decision making abilities to prepare them to tackle the marketing and business issues they are likely to confront in a career in marketing.", + "title": "Marketing Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMK5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course combines theory with practice, linking the classroom with the consumer marketing workplace. It employs Destiny\u00a9, a business simulator that mirrors the buying behaviour of consumers, to give participants the unique experience of running a virtual organization. The module is designed to train marketing professionals in the application of market intelligence, analytic techniques and research practices, for taking day-to-day marketing decisions, and developing and executing marketing strategies. The course imparts a holistic learning experience in business management to help practitioners become more effective marketing decision makers.", + "title": "Marketing Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5100", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Information and communications technologies have brought fundamental changes to the business world. Being digitally smart and able to harness the digital technologies to effectively interact and engage with ever-changing consumers has become necessities for businesses to survive. The module takes the view that digital technologies have reshaped not just advertising, but all aspects of marketing. Students will first learn how digital technologies affect key elements of marketing strategy segmentation, targeting and positioning. They will then be exposed to how product management, brand management, pricing, promotions and channel management, are all fundamentally changing in a digital era.", + "title": "Digital Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Big marketing data are increasingly available for managerial decision making. This module introduces the concepts, techniques, and latest applications of big data in marketing. It covers the difference between big data and normal data and the potential of big data in marketing, the foundations of data structure, collection, and warehousing, and the latest applications of deriving marketing insights from big data. It engages the students in a capstone project in groups to provide a holistic hands-on experience of analysing big data in marketing.", + "title": "Big Data in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A clear understanding of consumer insights of consumer behavior is critical to firms who want to use the big data to predict consumer future behavior and determine the most effective marketing strategies. This module is designed to provide students with a comprehensive coverage of frameworks, concepts, tools, and techniques to gain consumer insights, with an emphasis on uncovering, generating, and interpreting business-relevant consumer insights. Relevant theories and research in behavioral sciences will be discussed with the goal of understanding and eventually influencing consumer behavior.", + "title": "Consumer Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 73, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 73, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Today's businesses are bombarded with data. It is a key skill to be able to tell a story from this data so that businesses can leverage on market intelligence for marketing effectiveness. To achieve this objective, this module is designed with two integrated components 1) data visualization, and 2) marketing strategy. We will start with understanding how humans interpret and perceive visual cues. Then, we introduce various tools and techniques for visualization. Subsequently, we apply these insights obtained to learn how to maximize the impact on communication to win the buy-in of the relevant decision makers within the organization.", + "title": "Marketing Analytics Visualisation and Communications", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 73, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 73, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Successful pricing strategy is a key to successful business. This module is designed to introduce the concepts, techniques, and latest thinking on pricing issues. The overall emphasis is not about the theory but the practice of pricing, although theoretical foundations will not be overlooked. This module is less about the mechanics of setting a price \u2013 it is more about understanding the process of formulating pricing strategies and making pricing decisions. In line with the current trend in pricing practice, we focus on pricing-related data analytics methods and cases.", + "title": "Pricing Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5200", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Customer Relationshp Management (CRM) focuses on customer acquisition, retention, and winning back. It highlights the need to move from merely satisfying customers to building strong bonds with them to maximize customer life time value. It uses data mining and customer analytics as well as econometric and statistical models to carry out customer segmentation, customer expectation, customer churn management, customer lifetime value management.", + "title": "Customer Relationship Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introductory course for Python programming and data analytics. It covers basic Python programming techniques and preliminary data analysis, with a great emphasis on addressing practical business problems and real datasets. As a basic level course, there is no prerequisite for students.", + "title": "Python Programming for Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 51, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides the essence of systematic and objective research designs, methods, analyses, report writing, and presentation for marketing insights. It covers both conventional methods for small data and cutting-edge methods for big data for marketing insights. It combines lectures, video case studies, group discussions, and self-reflections. The class together will discuss how to analyse the short-term and long-term impact of Covid-19 on the restaurant industry and the education industry, and provide recommendations.", + "title": "Research for Marketing Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course is designed to provide the students an\nunderstanding of basic marketing concepts, tools and\ntechniques and their application in the analysis of marketing\nproblems. The focus is on creativity and appreciation of the\nrole of marketing in an enterprise and its relationship with\nother functions of business. The course deploys a\ncombination of teaching methods, including lectures,\ncases, exercises, and projects and covers topics such as\nthe marketing concept, analysis of the marketing\nenvironment, segmentation and targeting and development\nof marketing programmes. Issues in implementing\nmarketing strategy, evaluating the market environment,\nand integrating marketing mix are also addressed", + "title": "Marketing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we adopt a (behavioural) game-theoretic\nperspective to explore and understand traditional strategic\nmarketing issues and learn how game theory can be\napplied these issues.\nThroughout the course, we will draw on various pedagogies\nto facilitate and enhance our learning objectives. These\ninclude the use of games, cases, articles from HBR as well\nas a group project.\nThe course is suitable for those with an interest in thinking\nstrategically.", + "title": "Game Theory and Strategic Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on emerging issues in Marketing Analytics, covering a diverse range of issues including quantitive methods, qualitative methods, technology, and Artificial Intelligence.\n\nWhile conventional analytical methods are still important, Special Topics will also include cutting-edge methods for big data for new businesses.\n\nStudents in the MSc Marketing Analytics and Insights will benefit from familiazing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunties.\n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing Analytics and Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an overview of the theory and practice of personal selling and sales management. This course will cover issues faced by sales practitioners and learn the practical competencies of how to sell products and services to a sophisticated marketplace. This course will address how to build and manage a sales force through topics such as motivation, training, and compensation programs, territory assignment, and sales performance assessment. The pedagogy may include lectures, practical exercises, cases, as well as presentations by guest speakers from the sales industry.", + "title": "Personal Selling & Sales Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5206A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on emerging issues and marketing strategies in platforms and sharing economies. It studies the special features, development, pricing, customer acquisition and management, representative firms, and future trends of platforms and sharing economies. It discusses how data analytics are applied in these businesses, and the special skills needed for such business models. It covers both conventional methods for small data and cutting-edge methods for big data for these businesses. This module combines lectures, HBS case studies, group discussions, self-reflection exercises, and student presentations.", + "title": "Platforms & Sharing Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMK5206B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Theories and Models in Behavioural Economics are used to understand the biases in consumer choice and design nudges that will results in welfare-improving change in decision. The goal of the course is to equip students with the theory and framework to understand the inconsistent choices and boundedly rational actions observed in experiments, to identify inconsistency in real life choices and actions, and to design nudges for behavioural change.", + "title": "Consumer Economics: Biases and Nudges", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5206C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on emerging issues in Marketing Analytics, covering a diverse range of issues including quantitive methods, qualitative methods, technology, and Artificial Intelligence.\n\nWhile conventional analytical methods are still important, Special Topics will also include cutting-edge methods for big data for new businesses.\n\nStudents in the MSc Marketing Analytics and Insights will benefit from familiazing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunties.\n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing Analytics and Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5206D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on emerging issues in Marketing Analytics, covering a diverse range of issues including quantitive methods, qualitative methods, technology, and Artificial Intelligence.\n\nWhile conventional analytical methods are still important, Special Topics will also include cutting-edge methods for big data for new businesses.\n\nStudents in the MSc Marketing Analytics and Insights will benefit from familiazing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunties.\n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing Analytics and Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5206E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on emerging issues in Marketing Analytics, covering a diverse range of issues including quantitive methods, qualitative methods, technology, and Artificial Intelligence.\n\nWhile conventional analytical methods are still important, Special Topics will also include cutting-edge methods for big data for new businesses.\n\nStudents in the MSc Marketing Analytics and Insights will benefit from familiazing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunties.\n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing Analytics and Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5206F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on emerging issues in Marketing Analytics, covering a diverse range of issues including quantitive methods, qualitative methods, technology, and Artificial Intelligence.\n\nWhile conventional analytical methods are still important, Special Topics will also include cutting-edge methods for big data for new businesses.\n\nStudents in the MSc Marketing Analytics and Insights will benefit from familiazing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunties.\n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing Analytics and Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5206G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on emerging issues in Marketing Analytics, covering a diverse range of issues including quantitive methods, qualitative methods, technology, and Artificial Intelligence.\n\nWhile conventional analytical methods are still important, Special Topics will also include cutting-edge methods for big data for new businesses.\n\nStudents in the MSc Marketing Analytics and Insights will benefit from familiazing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunties.\n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing Analytics and Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5206H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In recent years, as the quantity of business data has exploded and computing power has continued to improve, opportunities to automate many parts of the marketing function have emerged. In this course, we approach this ever-evolving topic wholistically, including identifying the business opportunities and pitfalls AI presents, the legal and ethical considerations associated with the use of AI and a close look at the algorithms that make such automation possible. The course will present business applications, some of the theory behind machine learning and implement standard machine learning methods in the R programming language.", + "title": "AI in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 52, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 52, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To facilitate well-informed marketing analysis and decision making, marketing scholars and practitioners have not only developed but also implemented a large variety of analytic models and tools to facilitate marketing decision making and oftentimes high-level strategic consultation. This course helps you to digest the underlying mathematics details of the most popular analytical marketing models, and more importantly will guide you through the development and use of applicable software and interpretation of results. The aim of course is to build your skills and confidence in undertaking analytics for marketing decision making.", + "title": "Marketing Analysis and Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMK5208", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analyzing and solving problems related to marketing and data analytics in various industries through industry internship.", + "title": "Experiential Learning: Industry Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMK5300A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analysing and solving problems related to the marketing and data analytics through team projects provided by industry organizations.", + "title": "Experiential Learning: Marketing Analytics Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMK5300B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analyzing and solving problems related to the marketing and data analytics in various industries through individual projects supervised by faculty members.", + "title": "Experiential Learning: Applied Faculty Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMK5300C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Although marketing analytics is now a mainstream idea, it has yet to be a mainstream practice. One common impediment in the transition is the relative inability to connect analytics insights to the decision-makers who need them.\nThis module offers a unique opportunity for enterprising students to apply the techniques and tools that they have learnt in the curriculum to address business growth needs. Students are expected to formulate an analytics-driven business plan to help turn new ideas and innovations to potentially viable business ventures.", + "title": "Marketing Venture Challenge", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMK5300D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study: Subjective Expertise and Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMK6105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide the student with systematic training in independent academic research in the field of marketing, by guiding him or her through the various stages in the research process: idea generation, literature review, experiment design, data collection, data analysis, and manuscript writing.", + "title": "ISM: A Social Cognitive Approach to Consumer Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMK6105K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide the student with systematic training in independent academic research in the field of marketing, by guiding him or her through the various stages in the research process: idea generation, literature review, experiment design, data collection, data analysis, and manuscript writing.", + "title": "ISM: Research On Second-hand Products", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMK6105L", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is to provide marketing doctoral students with an orientation to current research in the field of marketing. The primary objectives are to provide students with exposure to representative samples of significant research streams, current issues, and research priorities in the marketing field, and to introduce doctoral students to the research interests of the NUS marketing faculty and visiting professors.", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMK6110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is to provide marketing doctoral students with an orientation to current research in the field of marketing. The primary objectives are to provide students with exposure to representative samples of significant research streams, current issues, and research priorities in the marketing field, and to introduce doctoral students to the research interests of the NUS marketing faculty and visiting professors.\n\nBMK6111 will be taught over 6\u00bd weeks and not 13 weeks and the total workload will equal to 65 hours (half of a 4MC PhD module).", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMK6111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Marketing as a discipline is undergoing significant change. New technologies have resulted in novel data sources for research. Despite the pace of innovation in practice, the fundamental marketing questions that remain are the same. Marketing as a discipline is still concerned with how customers interact with organizations. In this seminar, we will examine the recent literature with an eye toward identify opportunities for future research.", + "title": "Empirical Marketing (I)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMK6111S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-29" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-26" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Marketing as a discipline is undergoing significant change. New technologies have resulted in novel data sources for research. Despite the pace of innovation in practice, the fundamental marketing questions that remain are the same. Marketing as a discipline is still concerned with how customers interact with organizations. In this seminar, we will examine the recent literature with an eye toward identify opportunities for future research.", + "title": "Empirical Marketing (II)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMK6111T", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2023-01-04", + "end": "2023-01-25" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 8, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Marketing as a discipline is undergoing significant change. New technologies have resulted in novel data sources for research. Despite the pace of innovation in practice, the fundamental marketing questions that remain are the same. Marketing as a discipline is still concerned with how customers interact with organizations. In this seminar, we will examine the recent literature with an eye toward identify opportunities for future research.", + "title": "Analytical Methods in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMK6111U", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Guided readings and discussion of current topics in secrecy inclusive but not exhaustive of the following: secrecy and competitive constructs, facts about secrecy antecedences of Secrecy,outcomes of secrecy,bring relational perspective into secrecy research, perceived secrecy in workplace, perceived secrecy and paranoia, perceived secrecy and gossip, manuscript preparation.\n\nFor the project component, the research project will involve an external stakeholder as partners of the research to garner the practioner\u2019s concerns and objectives of the study for the output of the project to be informative and relevant in terms of both theoretical contributions and practical implications.", + "title": "Independent Study: Special Topics in Workplace Secrecy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMO6006Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Guided readings and discussion of current topics in mindfulness inclusive but not exhaustive of the following: Mindfulness and individual work outcomes, well-being, team-level conflict, diversity management, thriving. This module provides a full suite of conceptual learning to project management from study design, data collection, data analysis to manuscript preparation.\n\nFor the project component, the research project will involve an external stakeholder as partners of the research to garner the practioner\u2019s concerns and objectives of the study for the output of the project to be informative and relevant in terms of both theoretical contributions and practical implications.", + "title": "Independent Study: Special Topics in Mindfulness", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMO6006Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a doctoral level seminar on leadership research, including topics such as individual, contextual, relational, and process approaches of leadership emergence and effectiveness, and covering research on leaders at various hierarchical levels.", + "title": "Organizational Behavior Seminar: Leadership", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6010A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on current issues related to work, employee and organizational well-being. We will discuss the employee-organization relations and examine issues and trends (e.g., advancements in information technology, population changes) that affect work-life linkages, employees\u2019 stress, work performance, antisocial behaviors and organizational functioning.", + "title": "Organizational Behavior Seminar: Work, employee and organizational well-being", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6011A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines interpersonal relations in work and organizational settings\u2014how interpersonal relationships are formed and maintained, the dynamics of trust and distrust and their attendant implications for social processes (e.g., collaboration, knowledge sharing, social supporting, social undermining), and the consequences that follow for employees and organizations.", + "title": "Organizational Behavior Seminar: Interpersonal Relations", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6012A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Motivation is a core competency of leadership and a central problem that needs to be addressed in management and organizational behaviour. This course examines what motivates employees to engage in performance related work behaviours, such as task performance and organizational misbehaviour. We address, amongst others, personal characteristics related to work motivation (e.g., needs, attitudes, emotions, cognitions), job characteristics related to work motivation (e.g., autonomy, challenge), situational characteristics related to work motivation (e.g., social support, organizational justice, reward and punishment), and the consequences that follow for employee\u2019s work behaviours.", + "title": "Organizational Behavior Seminar: Motivation and Work Behavior", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6013A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the course is to review the literature on ethical decision making, focusing on its applications in organizational settings. This covers a wide range of topics within the ethical decision making literature such as affect, intutition, cognition, moral foundations, etc. Class meetings will consist of brief overviews of selected topics (carried out by us jointly) and discussions of these topics with a focus on: (1) understanding the existing theory and research, and (2) developing research ideas that can and should be done to further our knowledge about a topic.", + "title": "Behavorial Ethics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6018A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "BIZ1-SR6-4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) in an area of specialization are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will conduct independent critical reading and research work on organizational behavior under the guidance of the instructor.\n\nThis ISM examines the use of artificial intelligence (AI) in training and development at workplace. In particular, it explores the employees\u2019 reactions towards the use of AI in training.", + "title": "Independent Study: Use of AI in Training & Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMO6020A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) in an area of specialization are for doctoral students with the requisite background to work closely with an instructor on a well-defined project.\n\nStudents will read closely relevant literature, including textbooks and research articles, and produce some academic work in their chosen domain under the guidance of the instructor.\n\nThis ISM in particular focuses on the role and effect of technology on creative processes. This includes both creative outcomes and subjective experiences during the creative process. The resulting outcome of this module will involve producing a pre-registered report in this research domain.", + "title": "Independent Study: Technology and Creativity", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMO6020B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this PhD seminar is to provide an overview of key theoretical frameworks in the field of organizational behavior (OB).", + "title": "Foundation of Organizational Behavior", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMO6021A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A Ph.D.-level seminar covering the theories, methods, and issues in leadership research. Topics to be covered include behavioral, cognitive, relational, trait, and team approaches.", + "title": "Seminar in Leadership", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMO6022A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This graduate-level seminar purports to facilitate in-depth discussions on factors in Occupational Health and Stress (OHS). Specific topics include stress and strains, individual differences in work stress, situational factors and job characteristics for employee well-being, emotional labor, violence, organizational injustice, work-nonwork interface and conflict, recovery from work, health-related behaviors, safety climate, and methodological issues in management, organizational behavior, and psychology research.", + "title": "Seminar in Occupational Health and Stress", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6023A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The fast changing technology and economics in the world have put pressure on organizations to adapt their HR system accordingly. The current module will sample\nclassic topics and emerging trends in personnel management and try to build practical relevance of HRM research. We will discuss issues such as different HRIR systems, staffing, development, innovation and global human capital management, etc. in the class.", + "title": "Seminar in Human Resource Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6024", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "BIZ2-0420", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 26, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar is intended for Ph.D. students who want to explore theoretical ideas and empirical findings related to judgment and decision making.", + "title": "Seminar in Judgment and Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6025", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-SR6-1", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Teams are a vital level of analysis in the world of work, with the overwhelming majority of employees working in teams at some point in their career. Teams have an added layer of complexity above and beyond individuals. Understanding this research both conceptually and methodologically. \n\nThis seminar will examine groups and teams from an organizational behavior perspective. A focus across the course will be examining how teams can be different than individuals even in similar topic areas.", + "title": "Groups and Teams", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6026A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) in an area of specialization are for students with the requisite background to work closely with an instructor on a welldefined project in the respective specialization areas. Students will conduct independent critical reading and research work on organizational behavior under the guidance of the instructor. Evaluation is based on 100% Continuous Assessment.", + "title": "Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMO6027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Guided readings and exercises in whole-genome analysis methods, with a particular focus on leadership and organizational behaviors, to acquire data and analyze the influence of genetic and environmental factors on leadership.", + "title": "Independent Study: Whole-Genome Analysis Of Leadership", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6027AA", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Human technology is changing, and the human mind is changing with it. Working robots have displaced human jobs and changed the nature of our workplace activities and relationships. Social media has allowed us to connect with and debate groups from across the globe. Algorithms determine what we watch, who we listen to, and what services we access. These technologies provide a window into psychological processes, and they may also be changing these processes\u2014with consequences for emotion, moral judgment, intergroup relations, and organizational behavior. Forecasting these changes is not an easy task, but a burgeoning uses interdisciplinary methods from the cognitive, social, and organizational sciences to test hypotheses psychology of technology", + "title": "Psychology of Technology", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMO6029", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module in Strategy & Policy provides students with the opportunity to pursue an indepth study of a strategy and policy topic or issue\nindependently.\n\nUnder the close supervision and guidance of an instructor, the student will learn to apply an advanced body of knowledge in a range of contexts which is invaluable for a career in the business world. The personalised interaction with the instructor will also facilitate mentorship.", + "title": "Independent Study in Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the strategic decisions new entrepreneurs take in order to start, finance, and guide their businesses. It will explore strategic frameworks that both successful and unsuccessful entrepreneurs undertake in order to operate in dynamic and uncertain competitive landscapes. A major tenet of this course is that experimentation plays a central role in entrepreneurial strategy and that correct strategic responses are not always clear. But through analysis of case studies and discussions with guest speakers we will understand how successful entrepreneurs execute decisions that maintain their competitive advantages.", + "title": "Entrepreneurial Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As emerging markets are dynamically altering the\neconomy, it\u2019s important to study emerging trends on how\ninternational and domestic firms operate in emerging\nmarkets and what new opportunities are being created to\ncircumvent institutional voids in these growth markets.\nStudents will have the opportunity to directly interact with\nindustry experts to complement class discussions. This\nmodule will captures the key learnings that organizations\nhave encountered while operating in growth economies. It\nwill focus on implications of participating in these markets\nincluding drivers of customer and stakeholder behaviour,\nhow to navigate the competitive landscape, developing\ntalent and other resource capabilities, how to influence\ngrowth market strategy, and implementation of that\nstrategy.", + "title": "Current Trends in Growth Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Big data and artificial intelligence have allowed platforms to become the dominant business model in the digital economy. Managers of incumbent organisations need to rethink their own strategies and business models along global data supply lines. This module introduces big data, analytics, data governance, AI, privacy, blockchain, robotics, IoT and edge computing from the ground up and in a non-technical way, focusing on concepts, business applications and real-life case studies. In the last two lessons of this module, we will derive implications for management: how to transform existing businesses and formulate winning strategies in a digital and data-driven economy.", + "title": "Big Data and Business Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "key theme in the course is that an understanding of doing business in any specific country involves consideration of two separate levels of analysis: the\ncountry perspective and the firm perspective. While these two levels of analysis significantly influence one another, it is important to consider them separately and acknowledge how they differ from one another. Second is to introduce\nthe diversity of business environments in Asia\u2014the range is as diverse as exists worldwide. There is no single Asian business environment, but instead\nmany different environments, each of which has different implications for business strategy. In canvassing global firm strategy, it is expected that students will learn a basic set of descriptive facts about various countries and top businesses in the region. Frameworks that fit one context may be useless for another. In this course, the emphasis is not on filling in frameworks and applying standard recipes. On the contrary, students will be expected to challenge recipes, question received wisdom, and exhibit unconventional thinking \u2013 all traits required to conduct effective global strategy worldwide.", + "title": "Global Firm Strategy: Emphasis on Asia", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a foundation for business sustainability and achieving a triple bottom line \u2013 economic success through Environment, Social (Labour/Human Rights) and Governance (\u201cESG\u201d) actions that current and future leaders can drive and embed within their organizations \u2013 established corporations, start-up ventures, family owned businesses, consulting firms, for profit, not for profit, SMEs etc. Students will take the knowledge and skills of this seminar and use it as a platform for ethical decision making and risk management.", + "title": "Ethical Leadership and Corporate Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the link between macroeconomics, financial markets and policy in Asia, drawing on many analytical tools of macroeconomics and international finance. Topics covered include: capital flows in Asia and policy challenges, foreign exchange hedging and speculation, real exchange rate adjustment and macroeconomic imbalances, Asian financial crisis and its legacies, and opportunities and policy challenges posed by\nglobalization, regional integration and cross-border transmission of shocks.", + "title": "Macroeconomics and Finance: Perspectives from Asia", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5108", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In industry, actual results often deviate from estimates.\nWhile there are courses that attempt to address this issue\nby focusing on strategic frameworks, or even on control\nand implementation systems, none have used a\nperspective-oriented approach to bridge the planningimplementation\ndivide.\nIndustry players like BCG, have identified these issues and\npublished a book titled:\u201dYour strategy needs a strategy\u201d.\nThis course utilizes propriety approaches that are\nperspective oriented. The focus is on building process\ncapabilities by using an experiential learning approach.", + "title": "Strategy: Bridging the Planning \u2013 Implementation Divide", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to explore how microeconomic analytical tools can be applied to business practices. The module focuses on analyzing the functioning of markets, the economic behavior of firms and other economic agents and their economic/managerial implications through a selected set of topics that are motivated by real-world observations of business operations. Topics covered include fundamental market forces, consumer behavior, firm behavior in various market structures, uncertainty and behavioral economics, pricing strategies with market power, game theory with business applications and market failure.", + "title": "Managerial Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5110", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Module seeks to raise an awareness of common legal issues confronting business managers and discusses the optimal solutions that both the law and business can offer. The Module introduces you to the global and domestic\nlegal environment and to some of the legal risks involved. In the course of business, disputes are bound to arise and it is essential to know the avenues for dispute resolution, what law applies and where to resolve disputes in the most\nexpedient and cost-effective manner. Other essential topics relate to commercial contracts, international sales and e Commerce.", + "title": "Legal Issues in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is a program initiation for students from diverse disciplines and cultures. It is designed to be a rigorous learning experience characterized by intensive dialogue and networking. It may cover themes and applications for strategic management in the global arena, with a distinctive Asian orientation. Topics may include issues in business environment such as competition dimensions, and resource and institution determinants. It may also include issues in international strategy such as market and collaborative dynamics, scoping and restructuring, governance and control, innovation and knowledge, and corporate social responsibility. The emphasis will be the state of practice in strategy.", + "title": "Global Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5112", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this module is on the principles and practice of managing a venture capital (VC) firm. This module seeks to help students develop a deep understanding of venture capitalism. It will help students understand how\nventure capital funds are raised and structured. It will also help students understand the interactions between venture capital firms and the entrepreneurs they finance. Lastly, students will also learn about managing the venture capital\nfirm.", + "title": "Venture Capital", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5113", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "HSS-04-05", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The \u201cAsian Business Environment\u201d course aims to provide students with an understanding of the business/economic environments in Asia. Overview on globalization, economic development and growth, as well as, business strategies on doing business in Asia will be covered. Topics include macroeconomic fundamentals, international trade and investment, public and industrial policies, economic integration and global institutions. The course will also examine how the political, cultural and ethical differences shape the Asian business environment. In depth discussions on region or country specific issues will be conducted through case studies and/or team project. Guest speakers may be arranged for selected topics to provide insights on business strategies in the Asian business environment.", + "title": "Asian Business Environment", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5114", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In business, everybody negotiates. Every strategy and transaction will have to be implemented through strategic negotiations with other stakeholders. In fact, holding any executive position is essentially about the identification and management of different interests, which also requires an understanding of negotiation, mediation, and persuasion processes. Moreover, most NUS students will at some time in their future career find themselves in a negotiations and sales role; either as entrepreneurs in their own firms, or as managers. The course is run as a\nseries of interactive seminars and negotiations exercises, combined with reading and reflection assignments distributed throughout the module.", + "title": "Strategic Negotiations", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5115", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Deploying human capital is very different from deploying financial capital. Dollars and Euros will go where you send them - and they never complain. People, on the other hand, are completely different. And in a digital era where great people are crucial to success, a right people strategy will be the key factor to conquer the digital force.\nGetting your people right is beyond HR. People are the key to understand how value can be created and, more importantly, appropriated in the era of Cloud, IoT and AI.\nThis course develops students\u2019 ability to evaluate, design, and execute the people strategy using the CEO\u2019s point of view.", + "title": "People Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5116", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Deploying human capital is very different from deploying financial capital. Dollars and Euros will go where you send them - and they never complain. People, on the other hand, are completely different. And in a digital era where great people are crucial to success, a right people strategy will be the key factor to conquer the digital force.\nGetting your people right is beyond HR. People are the key to understand how value can be created and, more importantly, appropriated in the era of Cloud, IoT and AI. \nThis course develops students\u2019 ability to evaluate, design, and execute the people strategy using the CEO\u2019s point of view.", + "title": "People Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5116A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In modern business environments, uncertainty and strategic interdependence among rivals surround competitive conducts. Conflict interfaces with mutual dependence naturally, and decision making in such situations requires one to take into account the moves and countermoves among them. This module provides a rigorous non-cooperative game theoretic view for managers to analyse rational decision makings under various conjectural behaviours in such strategic interactions together with strategic moves to possibly influence the outcome for one\u2019s own or mutual gains. Fundamental theory will be well balanced with economic, managerial and personal decision making situation applications. Game experiments will be performed as well.", + "title": "Game Theory For Managers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5117", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2 + ], + "venue": "HSS-04-01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the key strategic issues found for companies operating in global markets. All businesses in the present day have some level of engagement with international markets. In this module, we are concerned with the strategies that can be used to build and leverage a firm\u2019s advantages for successful competition in global markets. We focus primarily on competition, more so than the organizational structural and management issues that are typical to firms operating in global markets.", + "title": "Competing Globally", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5118", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "HSS-04-07", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "HSS-04-07", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Family firms play an important role in all economies, but especially so in Asia, where family firms not just dominate the small firm category but also constitute the majority of companies listed on most Asian stock exchanges. This course provides students the opportunity to develop a deep understanding of family firms across Asia, with examples from ASEAN countries, India, China, Korea, and Japan. Aside from a focus on how to sustain a family firm from the perspective of the family, the course will also analyze family firms from an outsider\u2019s perspective, including investors, partners, executives, and policy makers.", + "title": "Asian Family Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5119", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is divided into two parts. The goal of the first half is to help students develop an intuitive understanding of strategy as a process which will be useful in the second half of the module when we apply this process directly in the context of innovations for emerging markets. While we cover a set of strategic tools, the emphasis is not on filling in frameworks and applying standard recipes. On the contrary, students will be expected to challenge recipes, question received wisdom, and exhibit an understanding of how to apply the frameworks to solve strategic obstacles.\nWhile the cases and the examples used in the module are primarily based on Asia, the lessons from this module apply more generally to emerging markets across Africa and Latin America. Rather than looking for one \u201cright\u201d answer, this module encourages debates and discussions. In some ways, this module is a cross between an executive education module on strategy formulation and implementation and a module on Asian business. Our goal is to help students develop the strategic intuition and tools they need to succeed in these emerging battlegrounds for tomorrow.", + "title": "Innovation and Strategies for Emerging Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5120", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital transformation is happening at scale globally \u2013 reshaping industry and competitive dynamics. Corporates and startups alike demand their workforces to have the agility to navigate evolving business models and changing competitive landscapes. This course delves into core concepts underpinning digital transformation, explores the concurrent trends that drive new ways of working, covers change management skillsets being deployed by incumbents as a response, and spotlights real-world examples of leading organisations that have both excelled and faltered when adapting.", + "title": "Digital Transformation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Digital transformation is happening to all businesses today. The course approaches this from two perspectives how to build a digital transformation roadmap in a traditional industry as an incumbent and how to disrupt the incumbent by building the business plan as a disruptor. This course dives deep into the following aspects of digital strategy and transformation\n - Understanding different digital strategies and how to apply these theories as practitioners.\n - Building and developing the digital transformation roadmap for corporations and understanding the change management aspect across corporations.\n - Sharing real-life examples of organizations who succeeded and failed in digital transformations of traditional enterprises.", + "title": "Digital Transformation & Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5121S", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Entrepreneurs must know the business structure which best suits their business plans. Similarly, Managers must understand the decision-making mechanisms in the business structure they manage, to avoid potential personal liability. This module will equip entrepreneurs and managers with the legal fundamentals to propel them in their start-up journeys or new management roles. Through case studies, participants will gain insights into real-life corporate tussles, and acquire skills to navigate their way effectively through different stakeholder relationships.", + "title": "Legal Fundamentals for Entrepreneurs and Managers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5122", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This class is intended to equip students to think about being future entrepreneurs through applicable knowledge to increase the success in launching and commercialising new start-up ideas. The class will utilise product development methodologies to build out product prototypes and roadmap. It will also provide practical ways to translate product requirements to an initial product launch and then ongoing enhancements. As part of business growth it will teach students how to systematically approach customer identification, acquisition and retention through direct or partnership channels and marketing/sales tools. It will also teach\nstudents how to continually build out a product roadmap through customer feedback.", + "title": "Entrepreneurship Business Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5123S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Entrepreneurs face several challenges in identifying opportunities and venture building. Operating in an environment of risk and uncertainty, they must seek\nrelevant human and financial resources and are confronted daily with complex management decisions. This course thus teaches various strategic perspectives\nand tools implemented to navigate the entrepreneurial ecology to approach success.", + "title": "Entrepreneurial Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5124", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Entrepreneurs face several challenges in identifying opportunities and venture building. Operating in an environment of risk and uncertainty, they must seek relevant human and financial resources and are confronted daily with complex management decisions. This course thus teaches various strategic perspectives and tools implemented to navigate the entrepreneurial ecology to approach success.", + "title": "Entrepreneurial Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5124S", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to business sustainability, its benefits and reporting requirements, covering four components of sustainability, often denoted by EESG - Economic, Environment, Social and Governance. In addition, sustainability from the perspectives of corporate strategy, intellectual capital, best practices, process & risk management, and diversity & fair employment, which in turn are linked to transparency, business continuity and accountability practices of the organization will be reviewed. These components are recognized fundamentals to organizational strategy, operational efficiency and execution.", + "title": "Sustainability Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5125", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Most answers to important economic and business problems require an explicit and accurate description of how people, companies and governments in the economy act, and the interactions between them. For global companies to effectively navigate in an increasingly volatile global landscape, we need to be able to offer meaningful predictions or at least, some probability distribution over macroeconomic outcomes. Recent macroeconomics developments has made this tasks particularly more difficult.\n\nThe purpose of this course is to use the tools of modern international macroeconomics to assess the economic outcomes of countries and the economic environment faced by global businesses.", + "title": "International Macroeconomics and Global Economic Issues", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5126", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Technical change is at the root of economic growth. In this module, we investigate product, process, organizational and social innovations and their interdependence in five long waves of technological revolution. We analyse the roles of inventors, R&D laboratories, entrepreneurs, managers, financiers and the state in the evolutionary dynamics of innovations. In addition, we take a close look at creative destruction, technology transfer, diffusion, adoption, innovation strategy and disruption in dedicated lessons. Throughout the module, we employ a variety of historical and contemporary case studies to bring theoretical concepts to life.", + "title": "Management of Technological Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5127", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learn to build a sustainable funded new green business venture based on local/global opportunities, partnerships and metrics for success. Within a team setting, you will need to identify a green issue you are passionate about, build a business model, understand the ecosystem, identify investors and pitch for funding.", + "title": "Entrepreneurship Green Venture Business Funding", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5128", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module in Decision Science provides students with the opportunity to pursue an indepth study of a decision science topic or issue\nindependently.\n\nUnder the close supervision and guidance of an instructor, the student will learn to apply an advanced body of knowledge in a range of contexts which is\ninvaluable for a career in the business world. The personalised interaction with the instructor will also facilitate mentorship.", + "title": "Independent Study in Decision Science", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The internationalization of companies have created global supply chains, with opportunities for growth, and risks of disruption. In the context of Asia, these challenges and opportunities are twofold: operating in Asia, as well as for\nAsian companies aspiring to grow regionally and globally.\n\nCompanies will have to continuously evaluate their strategies and adapt their supply chains to deal with these changes and adapt their business models. Starting from the company\u2019s corporate strategy, we will look at how global\nchains can be configured to support the strategic goals of companies, and operationalizing their goals successfully and cost-effectively.\n\nWe will also look at how emerging and evolving macrotrends in trade, regulations and technologies, are causing changes to companies and whole industries in their traditional supply chains structures and assumptions, and\nhow to adapt to these changes.", + "title": "Global Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the dynamics of the platform economy and the transformative technologies driving the Industry 4.0 phenomenom.\n\nStudents will explore the merits of collaborative networks and open source business models, as well as contemplate entirely new ideas and strategies for the AI,IoT and datadriven virtual business landscapes of the future.", + "title": "The Knowledge & Innovation Economy 4.0", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the dynamics of the platform economy and the transformative technologies driving the Industry 4.0 phenomenom.\n\nStudents will explore the merits of collaborative networks and open source business models, as well as contemplate entirely new ideas and strategies for the AI,IoT and datadriven virtual business landscapes of the future.", + "title": "The Knowledge & Innovation Economy 4.0", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5203S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Managing a world-class business requires a broad\nunderstaning of the trends and dynamics that have\ntransformed international business.\n\nThis course focuses on contextual, real events and\nrequires students to craft operational strategy that\naddresses fast-moving risks and opportunities on a local,\nregional and global level.", + "title": "Cross-Border Business Management in the Digital Age", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module uses the \u201cModels, Data, Decisions\u201d framework to develop an analytical mindset and prepare participants to tackle business problems in a data-rich era. Focus is on sound model development and practical problem solving rather than software technicalities.", + "title": "Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students with fundamental knowledge of using R, a powerful complete analytical environment, to organize, visualize, and analyze data. It\ncovers the machin learning techniques such as regression, classification, clustering, text analytics, LDA, and PCA, and their applications in business areas across HR, management, marketing, etc.\n\nThrough practicing the complete data analytics cycle, students to trained to be future ready, data sensitive, and data minded managers.", + "title": "Business Analytics with R", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine and apply the principles of service design to various industries including health care, aviation, hospitality and finance. Using both theory and practical examples, students will learn how to approach the challenges in designing exceptional service. While it is useful to discuss examples in a classroom setting, there is no substitute for application of the material, and one of the major components in the module will be to apply service design principles to a student-selected industry.", + "title": "Service Design", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module uses case studies to demonstrate that focus on reducing environmental impact not only allowed companies to comply wth increase regulations to reduce footprints but also to reduce their costs, to improve the quality of their products/services and to enhance the reputation of their brands. Many multinational companies have started to reap the benefits from investing in clean technology and building sustainability into their supply chain operations. The objective of this course is to study how a company can reshape its supply chain and operations to improve environmental performance and contribute to business success at the same time.", + "title": "Sustainable Supply Chains", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Interest in supply chain management, both in industry and in academia, has grown rapidly over the past three decades, and continues to grow. While many companies recognize the importance of analysing their supply chains, most of them perform the analysis using experience and intuition with very few analytical models. In contrast, the academic community has developed various models and tools for supply chain management. This course intends to fill this gap by discussing state-of-the-art models, strategies, and solution methods that are important for supply chain management. Impact of trade tension and disruption caused by COVID-19 will be discussed too.", + "title": "Supply Chain Models and Strategies", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The role of procurement and supply management within the supply chain is (i) highly strategic, (ii) particularly impactful in the creation of new markets and (iii) crucial to understanding the future risks and challenges that face an organisation. Students of this course will learn how strategic sourcing is critical to successful procurement outcomes. They will evaluate the emerging role and influence of technology that drives automation, insight and efficiency of procurement & supply function. Case studies, supplemented with current best practices, are used to illustrate the issues discussed in lectures.", + "title": "Strategic Procurement in the Digital World", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module in Finance provides students with the opportunity to pursue an in-depth study of a finance topic or issue independently.\n\nUnder the close supervision and guidance of an instructor, the student will learn to apply an advanced body of knowledge in a range of contexts which is invaluable for a career in the business world. The personalised interaction with the instructor will also facilitate mentorship.", + "title": "Independent Study in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will place our emphasis on the\ninternational financial system, international investments,\nand international financial management, particularly in\nAsia. This course is especially helpful for a student\npursuing a career in international banking, global asset\nmanagement, or international corporate finance. Our\ncourse begins with a thorough analysis of international\nbusiness risks and the structure of the international\nmonetary system. We will then cover the following topics:\ncurrency risk management; international asset allocation;\nexchange-rate determination; international investments;\ninternational capital raising and budgeting; foreign direct\ninvestment; and corporate governance in Asia.", + "title": "International Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to give students a well rounded understanding of mergers & acquisitions (M&A), and the essential role that valuation analysis plays as part of an M&A transaction. Specifically, we will study the strategic, economic, financial and governance issues associated with M&A transactions, perform valuation analyses of different transactions, as well as learn how to assess whether a transaction is properly valued. Ultimately, this course will provide the students with a framework for analyzing M&A transactions, including understanding strategic rationale, valuation methodologies, deal structures and bidding strategies.", + "title": "Valuation and Mergers & Acquisitions", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers major private equity investment types including venture capital, growth capital, and buyouts. The Course format will include lectures, interactive discussions, case studies and hands-on simulation. Topics will cover the entire private equity investment cycle from fund raising, structuring to deal screening, valuation, investment negotiations to post-investment value add and exits. Cases highlighted are deliberately diverse; from technology to\ntraditional and spans different geographies (US, UK, China, Korea, Singapore).\n\nVenture capital and private equity are necessary to spur economic growth. A sound knowledge of private equity is essential for investors whether individual, institutional or corporate. A firm grasp of the workings behind private equity and venture capital will also better prepare budding entrepreneurs in their fundraising efforts as they negotiate from the other side of the table.", + "title": "Selected Topics in Finance: Private Equity", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5304", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "HSS-04-07", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is not only relevant for would-be entrepreneurs, but also for those considering a career in the venture capital industry. This module differs from a\ntypical corporate finance module in that it highlights the special and unique considerations when planning the financial needs of new or young ventures. Many conventional means of funding (such as bank borrowings, issuance of bonds or public equities) for established or public listed companies are generally not available to small and young companies due to their lack of business track record. This module will highlight the various means of\nfund raising for new or young ventures, with special emphasis on the analyses and requirements of the professional venture capital funds, which have made\nsignificant contributions in nurturing many promising young companies into multi-billion dollar listed corporations in the past decades.", + "title": "Entrepreneurial Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with data analysis tools and conceptual frameworks for analyzing international financial markets and capital budgeting. This course will be especially helpful for a student pursuing a career in international banking, global asset management, or international corporate finance. The course covers the following topics: foreign exchange markets; models of exchange-rate determination; international investments; currency and interest rate risk management; international banking; international capital budgeting; political risk and corporate governance in Asia.", + "title": "International Financial Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to give students a general understanding of the different financial markets and institutions. The financial services and instruments important financial institutions offer, the financial assets traded in major classes of financial markets, and the mechanisms and characteristics of these markets will be discussed.", + "title": "Financial Markets and Institutions", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5307", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sound knowledge of personal financial planning is an important business and life skill. Wealth accumulation and protection is also a valued financial goal of many\nindividuals and families. This course aims to equip individuals with skills to manage their personal finances and private wealth. As the course covers many current\ntopics in financial planning and wealth management, it will also particularly benefit students aspiring to enter the financial planning and wealth management industry.", + "title": "Personal Finance and Wealth Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5308", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cover theoretical and practical aspects of modern investment banking (IB). Delve into the structure, management and practices of IB - from larger more universal players to boutique operations. Look at two main divisions of IB: corporate finance and capital markets; their key characteristics, what they do, what services they provide and to who, how they make money and interaction between the two. Discuss several ethical issues and regulatory changes that the industry faces today. Will lightly touch upon private equity and hedge funds. Finally, discuss several jobs within an IB and the roles they play in successfully managing IB operations.", + "title": "Investment Banking", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5309", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course analyzes governance of family firms. This course highlights that family business is an organizational structure of large firms and for a large part are global and surprisingly similar across business environment, nations and cultures. This course investigates the underlying mechanisms that create the uniqueness of family firms. In addition, this course discusses the role of the founding family in the firm and analyses how the family\u2019s various preferences, psychology, family structures, and family affairs affect corporate policy such as CEO succession planning and financial policies, and the outcomes on the firm value. Finally, the course discusses the design of governance structure to constrain the family\u2019s influences over corporate policies as well as govern the family to preserve the firm value.", + "title": "Financial Management of Family Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5310", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a strong conceptual foundation in corporate finance. Main topics include risk and return of individual securities and portfolios, cost of capital, capital budgeting, valuations of bonds, stocks and firms, efficient market hypothesis, behavioral finance, and FinTech. Finance theory will be used to solve practical problems faced by financial managers. Students will find it beneficial to have knowledge of accounting, algebra, and statistics prior to enrolling in this course.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5311", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An overview of major technological trends reshaping the financial industry, including but not limited to wealth management, asset management, payment systems, financial intermediation, etc.", + "title": "Fintech Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5312", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The creation of new wealth in the past decades has pushed philanthropy into strategic philanthropy where social investors treat contributions as investments, and seek measurable impact and accountability on their investments. This new philanthropy borrows best practices from interdisciplinary areas, such as entrepreneurship and finance, to create more strategic practices with emphasis on operational efficiency and measurable returns that are aligned with the goals of all stakeholders. In this module, students gain a better understanding of investments with both financial and social returns.", + "title": "Measuring Success in Philanthropy and Impact Investing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module in Management & Organisation provides students with the opportunity to pursue an in-depth study of a management and organisation topic or issue independently.\n\nUnder the close supervision and guidance of an instructor, the student will learn to apply an advanced body of knowledge in a range of contexts which is invaluable for a career in the business world. The personalised interaction with the instructor will also facilitate mentorship.", + "title": "Independent Study in Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to help students acquire a range of management-related knowledge, skills and sensitivities that will help them deal effectively with key management issues and challenges in today\u2019s ever-changing business environment.", + "title": "Special Topics in Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts across the globe. The study of organizations involves examining processes at the individual, group and organizational levels. This course will focus on the individual and group level of analysis. As this is a class that focuses on Global Management, it will also emphasize cross\u2010national and cultural differences when appropriate.\n\nBoth theoretical and applied approaches will be developed. Theory development will be based on class lectures, discussion, and class activities and assigned readings. While the instructor will take a large share of the responsibility for theory development, extensive class participation for the applications part by the students is expected. Hence, the course will feature a substantial amount of class discussion and experiential exercises.", + "title": "Global Management Practice", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We explore some of the latest discoveries in behavioural science that are applicable to leading ourselves and organizations across the globe. Participants apply the research findings to design new ways of leading organizations that will create a\nsustainable competitive advantage for the business, as well as well-being for its members. Part of the discovery will be about how our own leadership behaviours might shape members of our team. Thus, the key to changing behaviours, norms, and organizational culture is to change our own behaviours so that others can react to them in desired ways.", + "title": "Becoming Future Prepared Global Leaders", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is based on learning by doing and learning by coaching. Students in team will develop own ideas around a transformative theme, and to convert these ideas into market opportunities and test against customer reactions.", + "title": "New Venture Creation Practicum: Lean Startup Method", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creating a new business is a challenging and complex task. The road to entrepreneurial success is long, winding and strewn with pitfalls, obstacles and blind turns. The risks of starting a new business are high, as illustrated by the high failure rates for new ventures. However, as is always the case, the rewards are commensurate with the risk.", + "title": "New Venture Creation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5405S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 56, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to equip current and potential leaders at all levels of organizations to excel in enhancing organizational performance in Asia. It delves into a wide array of topics to help ensure that leaders are competent to deal with the challenges and capitalize on the opportunities that are incessantly cropping up in the fast-growing region. The key topics include fundamental personal qualities characterizing effective leaders, management of followership quality, motivating and empowering followers, communications with stakeholders, handling work team dynamics, developing organizational and leadership diversity, applying leadership power and influence tactics, setting organizational vision and strategic direction, forging organizational culture and values, and leading organizational change and development, all in the context of Asia.", + "title": "Asian Leadership", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5406", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The NUS MSc (Mgt) and CEMS MIM (Master\u2019s in International Management) Double Masters Program follows the curriculum drawn up by CEMS Head Office. (CEMS is a global consortium of top business schools across 4 continents and stands for Global Alliance in Management Education. Its flagship MIM degree has been placed #1 in the world in the most recent 3-year ranking by Financial Times.) This module will be offered as an elective and is in line with one of the vision of CEMS \u2013 to provide a learning platform for issues pertaining to employees, work and organizations.", + "title": "Workplace and Corporate Deviance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5407", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will cover contemporary topics in the field of organizational behaviour.", + "title": "Special Topics in Organizational Behavior", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5408", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 6 + ], + "venue": "BIZ1-0205", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cultivate, challenge, and enrich a \u2018global managerial mind\u2019. Numerous conceptual and theoretical frameworks will be introduced to help the students explore and internalize the various complex organizational structures and processes facing all managers operating in today\u2019s turbulent global environment. Both theoretical and applied approaches will be adopted. Given that Asia is and will be the driver of global economic growth for the next few decades, we will adopt an Asian perspective as we explore ongoing global management and organizational issues.", + "title": "Principles of Multinational Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5409", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Negotiation is a permanent feature of business and everywhere in our working environment. Implicitly or explicitly, we negotiate everywhere in our daily working life with our business partners as well as our colleagues to make deals or solve conflicts. That\u2019s why knowing how to negotiate is so important for business professionals. Thanks to an interactive format, this workshop aims at improving participants\u2019 analytical and interpersonal skills in negotiation and conflict management. Combining lectures, interactive discussions and hands-on activities, it will enable participants to develop cutting-edge negotiation/ conflict management strategies and be equipped with powerful influencing, persuasion and conflict resolution skills.", + "title": "Negotiation and Conflict Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5410", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 6, + 7, + 10, + 11 + ], + "venue": "HSS-04-05", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 6, + 7, + 10, + 11 + ], + "venue": "HSS-04-01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 3, + 5, + 6, + 7, + 10, + 11 + ], + "venue": "HSS-04-05", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 3, + 5, + 6, + 7, + 10, + 11 + ], + "venue": "HSS-04-01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The decisions you make every day will shape your life. In an organisation, the decisions you make will impact outcomes for you, your team, and cumulatively affect the trajectory of your career. This module aims to help you navigate the pathways of decision making in organisations. We will adopt an evidence-based approach, tapping several streams of research \u2013 including behavioural psychology and economics, error management, and intuitive judgment \u2013 to give a rigorous account of what separates good decisions from the rest. These conceptual tools will empower you to make good decisions in an uncertain world, to influence, and to lead.", + "title": "Judgment and Decision Making Under Uncertainty", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5411", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to help students develop a deeper understanding of the issues that confront global managers today, and to prepare them for leadership roles in international organisations. The course is organised around six themes: 1. Leading people, teams and organisations 2. Developing self and others 3. Leading across borders 4. 21st century leadership 5. Responsible leadership 6. Leadership resilience The course strives to provide students with an understanding of the key principles by which leaders influence other people, and to gain insights on their personal journey as a leader.", + "title": "Global Leadership", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5412", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will highlight the components of effective negotiation and will also teach students to analyse their own behaviour in negotiations. The course will be largely experiential, providing students with the opportunity to develop their skills by participating in negotiations and integrating their experiences with the principles presented in the assigned readings and course discussions.\n\nThis course is designed to foster learning through doing, and to explore your own talents, skills, and shortcomings as a negotiator. The negotiation exercises will provide you with an opportunity to attempt strategies and tactics in a low-risk environment, to learn about yourself and how you respond in specific negotiation situations. The course is sequenced so that cumulative knowledge can be applied and practiced.", + "title": "Negotiations & Influence", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5413", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "HR today must provide data-driven insights on implementing and executing strategy through people. The course provides practical, hands-on approaches to connect HR policies and practices to business performance. We review key statistics and finance concepts, such as ROI and people productivity; become familiar with available tools to complement Excel; discuss data collection, clean-up, and warehousing; practice building descriptive and predictive models; and get hands-on experience in applications for workforce planning, recruitment, compensation, training, career planning and turnover. By the end of the semester, students will be able to put HR analytics skills and tools to good use.", + "title": "Human Resources Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5414", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores organizational (re)design at its most cutting-edge. As a result, Organization Analytics' innovative ideas represent a significant departure from conventional management practices and organizational structure design\u2014those that emphasize incentive compensation and reporting; those that rely on long-standing traditions and hearsay; and those that emphasize a \"copy best practice\" approach to building organizational charts' boxes and arrows. The new approaches apply scientific knowledge and methods (e.g., Machine Learning) to the improvement of organizational design, and are enabled by a combination of theoretical breakthroughs and increasing processing power and data availability as a result of digitalization.", + "title": "Org 2.0: People Analytics for Organizations", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5415", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The challenge of managing successfully, self, and others, in an increasingly complex and global environment is the focus of this module. The module leads students to develop a deeper understanding of how management practices and processes can often differ across national and regional boundaries, and why. Students are also led to consider the social identities that they and cultural others bring to cross-cultural interactions. Leveraging on such understanding, managers will learn to explore strategies and tactics for navigating these differences to develop global management capabilities.", + "title": "Managing Across Cultures", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5416", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the key concepts in artificial intelligence (AI) and machine learning (ML). The module will equip students with the vocabulary, understanding and simple techniques to interact with the technology function in their organisations.", + "title": "Managerial Applications of AI and Machine Learning", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5417", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module in Marketing provides students with the opportunity to pursue an in-depth study of a marketing topic or issue independently.\n\nUnder the close supervision and guidance of an instructor, the student will learn to apply an advancd body of knowledge in a range of contexts which is invaluable for a career in the business world. The personalised interaction with the instructor will also facilitate mentorship.", + "title": "Independent Study in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5501", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide you with a diagnostic framework to better understand the broader business context confronting a company before one can effectively apply classical marketing tools. It seeks to arm the marketer\nwith the lens of Business Stakeholders and helps anchor marketing solutions and proposals on solving the top priorities of the company as opposed to pursuing its silo metrics and goals. Just as Market Research helps define\nthe consumer, competitive and channel landscape. MPI enable the marketer to map the company\u2019s priorities, pressure points, culture and legacy so as to incorporate them into an impactful marketing proposals and solutions.", + "title": "Marketing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5502", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide you with a diagnostic framework to better understand the broader business context confronting a company before one can effectively apply classical marketing tools. It seeks to arm the marketer\nwith the lens of Business Stakeholders and helps anchor marketing solutions and proposals on solving the top priorities of the company as opposed to pursuing its silo metrics and goals. Just as Market Research helps define\nthe consumer, competitive and channel landscape. MPI enable the marketer to map the company\u2019s priorities, pressure points, culture and legacy so as to incorporate them into an impactful marketing proposals and solutions.", + "title": "Marketing Practice & Impact", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5502A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introductory course to pricing as a corporation function. The course will examine the basic concepts of how buyers respond to price stimuli, and how prices are key marketing tools. Students will learn the various dimensions of price and the role price plays in firm/product positioning. The course will explore in-depth the issues of developing and managing effective pricing strategies while questioning existing practices and widespread assumptions. Students will learn how prices present important information, what role the corporate executive must play in designing and implementing pricing strategies and how pricing strategies affect firm survival and sustainability.", + "title": "Pricing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5503", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To facilitate well-informed marketing analysis and decision making, marketing scholars and practitioners have both developed and also implemented a large variety of analytical models and tools. These tools are often used in high-level strategic consulting. This course helps you to digest the underlying mathematical details of the most popular analytical marketing models, and more importantly will guide you through the development and use of applicable software, as well as the interpretation of results. The aim of the course is to build your skills and confidence in undertaking analytics for marketing decision making.", + "title": "Marketing Analysis and Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5504", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The digital economy has posed new challenges to traditional marketing strategies. Social media, big data and mobile communications have opened up new opportunities for businesses to engage with consumers. Businesses need to both increase and strengthen their presence in the digital world, as the that is facing major disruptions in all industries. Digital Marketers need to be nimble, forward-looking and technologically savvy. They need to understand traditional marketing and its transition into the digital world. They need to go beyond the technologies to have a holistic view of the traditional and digital world, in order to be effective and efficient.", + "title": "Digital Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5505", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "True insight into how consumers feel, think, and behave is the foundation of many organizations\u2019 success. This module provides a comprehensive coverage of concepts, tools, and techniques with an emphasis on uncovering, generating, and interpreting business-relevant consumer insights. Topics include consumer needs analysis, consumer learning and information search, consumer decisionmaking,\nand social influence. The module is targeted at intellectually motivated students interested in pursuing careers in general management, marketing, entrepreneurship, business consulting, as well as not-forprofit marketing. The format will be action-learning-oriented with many individual exercises and a group project, in addition to more traditional lectures, readings, and case analyses.", + "title": "Understanding & Influencing Consumers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5506", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Behavioral economics is an interdisciplinary field which applies psychological theory and research to economics. Important behavioral economics findings which demonstrate persistent and systematic deviations from the \u201crationality\u201d assumption in economic decision making will be surveyed. Alternative theoretical accounts departing from the standard rational, self-interested maximization models will be introduced. The implications to business practices will also be discussed.", + "title": "Behavioral Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5507", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to raise the understanding of the significance of Design Thinking and its innovative applications to businesses. It would provide: a) insights on the cognitive issues of Design Thinking at the personal level; b) a broad review of the practice of Design Thinking at organizational level; c) an experience of the processes and methodologies needed to take a creative idea all the way to market. It does these through a series of lectures, case studies, and intensive design thinking workshops.", + "title": "Design Thinking & Business Innovations", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5508", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Consumer Culture Theory (CCT) is a synthesizing framework that examines the sociocultural, experiential, symbolic and ideological aspects of consumption. The tenets of CCT research are aligned with consumer identity projects, marketplace cultures, the sociohistorical patterning of consumption, and mass-mediated marketplace ideologies and consumers\u2019 interpretive strategies. In this course, we will explore the dynamic relationships among consumer actions, the marketplaces and cultural meanings.", + "title": "Consumer Culture Theory", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5509", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Many things happened in the global economy since the turn of the 21st century, giving rise to new market opportunities worldwide. This module is designed for\nstudents who wish to know more about marketing strategies in reaching out to global customers in the new economy. Through conceptual learning, case analyses, problems solving, and project assignments, this module prepares students for developing and implementing marketing strategies in the face of socio-cultural, legal, political, economic, and technological challenges in the world\u2019s new economic environment.", + "title": "Marketing Strategies in the New Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5510", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corporate sustainability is a balancing act. Companies who are socially and environmentally responsible are facing a conundrum these days. How does one address the needs of the present without compromising the ability of future generations to pay the price of current generation\u2019s misdeeds.\n\nWhen companies engage in corporate sustainability, they create a long term view of implementing a business strategy that looks into cultural, social, environmental,\nethical and economic dimensions.\n\nThe module, Sustainability Marketing aims to show how companies need to calibrate the economic gains of its stakeholders\u2019 value with that of the environment and the community.", + "title": "Sustainability Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5511", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course combines theory with practice, linking the classroom with the consumer marketing workplace. It employs Destiny\u00a9, a business simulator that mirrors the buying behaviour of consumers, to give participants the unique experience of running a virtual organization. Based on established analytic techniques and research methodologies that leading consumer marketing firms regularly use, the module is designed to train marketing professionals in the application of market intelligence, analytic techniques and research practices, for taking day-to-day marketing decisions, and developing and executing marketing strategies.", + "title": "Marketing Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5512", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines product management beginning with the process of new brand/product development. It is designed to give students in-depth exposure to the development and management of products using theories and concepts, case analyses, problem sets, class debates and project assignments so that students are prepared for the customer-driven marketing challenges of a product/brand manager.", + "title": "Product & Brand Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5513", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 63, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Businesses & Brands are challenged in an increasingly VUCA world. Marketing & Sales boundaries blur between countries, categories, consumer segments and channels. Traditional consumer engagement & brand building models are disrupted by technology and the increasing need for meaningful & relevant consumer engagement in the face of reduced attention spans. Businesses simultaneously face unprecedented pressures on Commercial RoI. This course explores the opportunities arising from the need to evolve and adapt the traditional \u201cP\u201ds of the Marketing framework. Students will explore new frameworks and practice relevant skillsets to create & deliver marketing strategies in a globalized VUCA economy.", + "title": "Marketing Strategies for a VUCA World", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5514", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an overview of the theory and practice of personal selling and sales management. This course will cover issues faced by sales practitioners and learn the practical competencies of how to sell products and services to a sophisticated marketplace. This course will address how to build and manage a sales force through topics such as motivation, training, and compensation programs, territory assignment, and sales performance assessment. The pedagogy may include lectures, practical exercises, cases, as well as presentations by guest speakers from the sales industry.", + "title": "Personal Selling and Sales Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5515", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Customer Centricity\nWith hyper-competitiveness, companies must be\ncustomer-centric and leverage technology to deliver\nmeaningful customer experiences across offline and\nonline channels. Companies must integrate corporate\nsocial responsibility and sustainability into their value\nproposition to build financial and social capital.\nBrand Alignment\nOrganisations need to strategically invest in brand\nalignment to build passionate, high-performing cultures\nand to achieve sustainable profitability.\nExternal alignment triangulates the pursuit of marketshare, brand leadership and customer intimacy to achieve\nsustainable market leadership. Internal alignment weds\nthe values of the organisation with the brand, such that\nemployees live by these values and consistently deliver\ngreat customer experiences.", + "title": "Customer Centricity and Brand Alignment", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5516", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "HSS-04-02", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "HSS-04-02", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Great customer experience starts with a compelling product experience. For this reason, Product Experience Management has become the centrepiece of most marketing strategies today. The journey to product success begins with onboarding user-centric product design and ends with personalized product recommendations. Product experience management is both stable and dynamic, involving a sustainable customer centric strategy as well as a faster time-to-market.\nThis course focuses on the total customer journey that takes place within the product itself. It provides students with a \u2018hands-on\u2019 exploration of the principles, tools, and frameworks such as design thinking, customer journey analytics and data-driven decisions.", + "title": "Product Experience Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5517", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on nuanced or new issues in Marketing, covering a diverse range of issues. \n\nStudents in the MSc program will benefit from familiarizing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunities. \n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5518", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we adopt a (behavioural) game-theoretic perspective to explore and understand traditional strategic marketing issues and learn how game theory can be applied these issues.\n\nThroughout the course, we will draw on various pedagogies to facilitate and enhance our learning objectives. These include the use of games, cases, articles from HBR as well as a group project.\n\nThe course is suitable for those with an interest in thinking strategically.", + "title": "Game Theory & Strategic Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5518A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on nuanced or new issues in Marketing, covering a diverse range of issues. \n\nStudents in the MSc program will benefit from familiarizing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunities. \n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5518B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on nuanced or new issues in Marketing, covering a diverse range of issues. \n\nStudents in the MSc program will benefit from familiarizing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunities. \n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5518C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on nuanced or new issues in Marketing, covering a diverse range of issues. \n\nStudents in the MSc program will benefit from familiarizing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunities. \n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5518D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on nuanced or new issues in Marketing, covering a diverse range of issues. \n\nStudents in the MSc program will benefit from familiarizing with such new knowledge and skills in analysing these new business models and forecasting future trend and opportunities. \n\nPedagogical-wise, Special Topics will combine lectures, case studies, group discussions, self reflection, student presentation, and other teaching tools that are appropriate depending on the topic discussed.", + "title": "Special Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5518E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Services form an essential component of many consumer societies around the world, and service experiences are an integral part of our lives. In this course, we will examine the development, distribution, pricing and promotion of services and how excellence in these areas results in offerings that are of value to consumers. We will also explore the human factor in services marketing (e.g., managing service staff, leadership, building loyal customers) and how processes, people and policies are managed to achieve and deliver exceptional service quality.", + "title": "Services Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5519", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Marketing research is the systematic and objective identification, collection, analysis, dissemination, and use of information for the purpose of generating insights to improve decision making related to marketing problems and opportunities. Research for marketing insights serves as a central basis for marketing decision making; therefore, it is critical for a manager to understand marketing research and be able to specify what needs to be studied, how to study it, and how to interpret the results. The goal is to familiarize students with the fundamentals of research for marketing insights and enhance their abilities to define and solve marketing problems.", + "title": "Research for Marketing Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5520", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module in Accounting provides students with the opportunity to pursue an in-depth study of an accounting topic or issue independently.\n\nUnder the close supervision and guidance of an instructor, the student will learn to apply an advanced body of knowledge in a range of contexts which is invaluable for a career in the business world. The personalised interaction with the instructor will also facilitate mentorship.", + "title": "Independent Study in Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5601", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Analysis of financial statements to determine the fundamentals of a business for investment or managerial decisions.", + "title": "Business Analysis and Valuation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5602", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module in Business provides students with the opportunity to pursue an in-depth study of a business management topic or issue independently.\n\nUnder the close supervision and guidance of an instructor, the student will learn to apply an advanced body of knowledge in a range of contexts which is invaluable for a career in the business world. The personalised interaction with the instructor will also facilitate mentorship.", + "title": "Independent Study in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to help students acquire a range of business-related knowledge, skills and sensitivities that will help them deal effectively with key business issues and challenges in today\u2019s ever-changing business environment.", + "title": "Special Topics in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to Asian management and leadership through the 15th century historical character from the Ming dynasty of China, named Admiral Zheng He (aka Cheng Ho). It looks at Zheng He from a management and leadership perspective, exploring his overall leadership style and practices, his human resource management, his supply chain management, and his management of faith practices. In particular, we will consider his practices relating to building collaboration with others in what we refer to as Zheng He\u2019s Art of Collaboration (AoC). We will also compare and contrast Zheng He\u2019s AoC with the classic Sun Zi\u2019s Art of War (AoW), considering especially the values and principles embedded in these, and evaluating as to when companies should adopt the AoW and/or the AoC.\nThe module will also attempt to move beyond Zheng He to explore related issues, such as similarities and differences between the western and Asian approaches to collaboration and leadership, the idea of Collaborative Quotient (CQ) and its measurement, the modern day relevance of Zheng He\u2019s key act of collaboration in his practice of generosity, and also the practice of collaboration as seen in the world of insects, birds and animals.", + "title": "Asian Management and Leadership: Learning From Zheng He", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5702A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in the design, management, and leadership of networks. It will examine a variety of business-related networks. These include entrepreneurial networks of resource providers and alliance partners; networks of communication and coordination within established organizations; supply chain and marketing channel networks; informal networks in and outside organizations that confer influence and advance careers; cross-border networks for doing business globally.\nManaging in the contemporary global economy is much more about managing networks than hierarchical organizations through fixed chains of command. Both within organizations and between them, the paths to productivity, innovation, and success lie in astute networking. Network management and leadership demand different capabilities from those necessary to run a single firm or division within it. Communication, persuasion, collaboration, negotiation, emotional intelligence, flexibility, trust-building, reciprocity, and responsiveness are all essential. However, good network management requires more than \u201csoft\u201d or interpersonal skills. Given the complexity of business networks today, familiarity with the technical tools of network analysis can be very helpful as well. A highly technical science of networks now exists. Managers should learn how to use that science in analyzing and engineering their networks for superior performance.\nWe will approach the problem of managing networks from two perspectives, \u201cup\u201d and \u201cdown.\u201d \u201cUp\u201d refers to your vantage point as an individual actor, crafting your personal network, positioning yourself within it, and leveraging it for professional advantage and success. \u201cDown\u201d is your vantage point as an executive charged with responsibility for the functioning and success of the network as a whole; for example, within a division or functional area or a supply chain or distribution system.", + "title": "Managing Business Networks", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5702B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to develop students, as future managers, in the core competencies to communicate with influence in order to build trust, gain cooperation and support, secure loyalty and commitment, and motivate and inspire positive change in the 21st century workplace that is characterised by constant change and cultural diversity. The module will discuss pertinent management communication principles, concepts and strategies and provide opportunities for their application in hands-on tasks and assignments in an immersive experience within a company simulated environment, where critical high-stakes communication is weaved into more routine day-to-day workplace communication, mimicking the situations managers encounter in real-life.", + "title": "Communication and Influencing Skills for Managers", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMS5801", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with an overview on the field of real estate investment and financing. It introduces the relevant market structure, institutions, and financial instruments. It will help students develop an analytical framework to make and evaluate real estate investment and financing decisions in residential properties, commercial properties, and real estate developments.", + "title": "Real Estate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5802", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Block Seminar (with emphasis on Asian context)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BMS5900", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The seminar will introduce and build upon foundational concepts relating to environmental sustainability, but with a focus on product and service design. The central objective is to highlight the critical relevance and need to weave sustainability thinking into product and service design processes to achieve higher reductions in environmental impacts, as compared to mitigation processes that sit outside of the mainstream and typically address downstream or end-of-life impacts. A basket of thematic topics will be covered by invited speakers, which will delve into specific details and application using case examples from various industries.", + "title": "Sustainability Thinking in Product and Service Design", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "BMS5900A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Business projects reinforce CEMS partnership with universities and companies in a unique way of concrete content oriented cooperation. While Academic Advisors and company representatives exchange ideas on the project topic, both sides\nbenefit from the intellectual input - for their research or their business processes, respectively.\n\nWithin the CEMS Curriculum, Business Projects are designed as real life learning experience for students. International student teams solve a company\u2019s real business problem in a consultancylike project, while training for process management, result orientation and team building.", + "title": "Business Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "10", + "moduleCode": "BMS5901", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Riding on the NUS Enterprise\u2019s Lean Launchpad program, this module is an elective to provide students with opportunities to participate & engage in real-world entrepreneurship, and in particular, learn how to commercialise an innovative idea. This is an experiential module that facilitates learning through practice. The students will learn out of the classroom as they talk to potential customers, partners and competitors to experience the uncertainty that comes with commercialising and creating new ventures.", + "title": "Entrepreneurship Practicum", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMS5902", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is to equip students as accountants to prepare financial statements and to interpret published financial statements for decision-making.", + "title": "Preparing Financial Statements", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5100", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 56, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides accounting students with the underlying concepts and foundations in data analytics and visualization. Coverage includes acquiring, organizing, analysing, and presenting large data sets. The module serves as an introduction to both Python and Tableau.", + "title": "Applied Data Science & Vizualization", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 56, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops a conceptual framework for corporate decisions, focusing the responsibilities, concerns, and methods of analysis of the finance department. The module enables students to build firm valuation modules using a variety of valuation approaches. Emphasis is placed discounted cash flows models in a variety of contexts to estimate intrinsic firm or project value.", + "title": "Corporate Valuation Models", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 57, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers major concepts, tools and techniques in managerial accounting. The emphasis is on the use of managerial accounting information for decision-making, planning, and controlling activities. Topics include nature of control, responsibility centers, performance evaluation, pricing for intermediate products, strategic planning, budgeting, balanced scorecard, and etc.", + "title": "Managerial Planning and Control", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 56, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds upon the foundation laid by BMT5100. We will focus on the theory and practice of recording and analysing minority passive investments, fair value accounting, compound financial instruments, hedging, liabilities (including provisions, lease liabilities and deferred taxes) and shareholders\u2019 equity (including share-based compensation) in firms\u2019 financial statements. There will also be an in-depth coverage of earnings per share (EPS). This module is designed to provide students with the intellectual tools to not only understand and execute appropriate accounting procedures, but to also analyze financial statements and accounting information from the perspectives of managers, shareholders and auditors.", + "title": "Corporate Accounting and Reporting", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "BMT5200 is designed with: Part 1: Cutting-edge research papers that use machine learning techniques to address critical business questions. The goal is to show you how a research paper is motivated (contribution to the literature) and how it is designed and implemented (data management, empirical design, data analysis, presentation, and discussion of results). Part 2: Work in groups to study research papers you are interested in, replicate their main results, present your empirical results, think of new and better ways/ideas to extend the paper, and submit a final write-up. Part 3: Introduce state-of-the-art machine learning algorithms", + "title": "Analytics and Data Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5200", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module takes the viewpoint of an analyst, investor, or manager interested in corporate reporting and financial analysis. The objective is to understand how to read, interpret, and analyze financial statements, based on Singapore Financial Reporting Standards (SFRS). High level understanding and interpretating the performance of associates, joint ventures, and subsidiaries within a group; namely group accounting in both within-single country and with-foreign operations contexts will be included, thus helping deeper understanding of the financial reporting of a firm\u2019s profitability and risk. The course also introduces valuation models based on accounting earnings and does not emphasize other non-earnings valuation models.", + "title": "Financial Statement Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Banks play an important role in providing liquidity to the economy, facilitating trade and commerce, and providing credit to businesses and individuals. The global financial crisis has led to tighter regulations by Central Banks, these banking regulations are punitive for banks who fail to comply. Banks are in the business of managing risks. This module seeks to provide students with an understanding of the key risks that banks manage, as well as the key regulations which banks are required to comply.", + "title": "Bank Compliance and Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an overview and appreciation of the different types of M&As, the unique M&A strategies involved and a cradle-to-grave dissection of the M&A process \u2013 from the perspectives of both the buyer and the seller. These include planning, due diligence, structuring, negotiations, deal closure, accounting and stakeholder management through the interaction of strategic, financial and sociocultural lenses. You will be learning the approach to identify and navigate the intricacies, uncertainties and subtleties of this highly dynamic process across strategy, financial targets and people respectively.", + "title": "Mergers and Acquisitions", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 57, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides accounting students with experiential learning experience. Students will analyze and solve problems confronted by users and preparers of accounting information. This practicum course build on the prior modules in analytics, financial statements, corporate valuation, and financial reporting to analyze problems in taxation, fraud detection, and auditing.", + "title": "Financial Analytics Practicum", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analysing and solving problems related to the accounting sector through industry internships.", + "title": "Experiential Learning: Individual Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMT5301A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analysing and solving problems related to the accounting sector through team projects provided by industry organisations.", + "title": "Experiential Learning: Applied Team Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMT5301B", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will engage in experiential learning in analysing and solving problems related to the accounting sector through individual projects supervised by faculty members.", + "title": "Experiential Learning: Applied Faculty Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BMT5301C", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a comprehensive module that gives a student a chance to apply his/her technical knowledge in different areas to a set of multi-disciplinary cases that capture complex real problems faced by accountants around the world.", + "title": "Integrated Perspectives Independent Study", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "8", + "moduleCode": "BMT5400", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the knowledge and understanding of the audit process required by assurance and attestation engagements. Students would acquire the necessary attitude, skills, and knowledge for a career in auditing and/or in the accounting profession.", + "title": "Independent Study: Assurance and Attestation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMT5401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces concepts and principles fundamental to creating and leading effective organizations. Major topics include perception and decision-making, employee motivation and empowerment, group and team processes, strategic organizational design, power and politics, corporate culture, and organizational change and transformation. The course is interactive, with opportunities for class participation throughout. In addition to lecture and assigned readings, the instructional approach incorporates case analyses, video presentations, experiential exercises, and such.", + "title": "Leadership & Managerial Skills", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMU5001", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-19", + "end": "2023-05-19" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1230", + "weeks": { + "start": "2023-04-08", + "end": "2023-04-08" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-20", + "end": "2023-05-20" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the analytical tools of macroeconomics and international finance and applies them extensively to real life case studies, with emphasis on Asia. The course begins with the analysis of business cycle dynamics (how output, employment, interest rate and price are determined) and the role of stabilization policy. It then moves on to the open economy with trade and capital flows. Key issues covered here include the determination of\nexchange rate in the short- and long-run, how currency risk can be hedged, how economic \u201cshocks\u201d are transmitted internationally and what policy can achieve in response. Additional topics covered include: the interplay between financial markets, macroeconomics and policy, determinants of economic growth in the long-run with lessons from Asia, rising economic integration in Asia and implications on currency regime, global imbalance and policy adjustments, and perspectives on financial crises.", + "title": "Macroeconomics & International Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMU5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Economic Analysis For Managers", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMU5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course begins with the analysis of business cycle dynamics (how output, employment, interest rate and price are determined) and the role of stabilization policy. It then moves on to the open economy with trade and capital flows. Key issues covered here include the determination of exchange rate in the short- and long-run, how currency risk can be hedged, how economic \u201cshocks\u201d are transmitted internationally and what policy can achieve in response. Additional topics covered include: the interplay between financial markets, macroeconomics and policy, determinants of economic growth in the long-run with lessons from Asia, rising economic integration in Asia and implications on currency regime, global imbalance and policy adjustments, and perspectives on financial crises.", + "title": "Macroeconomics and International Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMU5004", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-18", + "end": "2023-05-18" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-20", + "end": "2023-05-20" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1230", + "weeks": { + "start": "2023-05-06", + "end": "2023-05-06" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-19", + "end": "2023-05-19" + }, + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This intensive marketing module will be taught over 5 days including 1 day for company visits. It is designed for experienced senior executives who not only wish to learn about the conceptual frameworks and analytical tools to better understand customers and markets, but who also value experiential learning opportunities from visits to companies with regional and global operations, dialogue sessions with senior executives from various industries, and networking with key alumni and influential thought leaders.", + "title": "Marketing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMU5006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": [ + 6 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers some of the most important topics in Managerial Finance. Emphasis is placed on the optimal allocation of resources for both individuals and corporations. The first part of the course deals mainly with optimal decisions under certainty where resources are allocated over time. The second part of the course deals with how to measure uncertainties and how uncertainties affect the operations and finances of a firm. Factors explaining security returns are investigated as well as the concept of market efficiency. The course cumulates with a discussion on mergers and acquisitions.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMU5007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": { + "start": "2022-11-15", + "end": "2022-11-15" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": { + "start": "2022-11-14", + "end": "2022-11-14" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-16", + "end": "2023-05-16" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-15", + "end": "2023-05-15" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1230", + "weeks": { + "start": "2023-04-15", + "end": "2023-04-15" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Corporate Governance gives an overview of the importance of corporate governance and the mechanisms that help control managerial behavior. Different models and systems of corporate governance internationally are compared and contrasted, and policy responses of different countries to corporate governance concerns are examined. The course will then examine specific corporate governance mechanisms and issues. The Ethics sub-module will enable students to think critically about contemporary ethical issues and dilemmas faced by businesses and their stakeholders.", + "title": "Corporate Governance, Sustainability and Ethics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMU5008", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-22", + "end": "2023-05-22" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1230", + "weeks": { + "start": "2023-04-22", + "end": "2023-04-22" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0830", + "endTime": "1830", + "weeks": { + "start": "2023-05-23", + "end": "2023-05-23" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the study of economic and business decisions in an international context, with emphasis on formulation and implementation of management strategies in multinational enterprises. Participants will learn to apply the key tools and concepts of international economic analysis and develop their own perspective for formulating international corporate strategies.", + "title": "International Management Strategies", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMU5013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modules offered under this heading will address one or more of a range of important topics and issues in the management of organizations. For AY2004/2005, the module covers Services Marketing and Customer Asset Management. Services Marketing focuses on the marketing and managing of services, and complements module BMU5010 Marketing Strategy & Policy. Customer Asset Management focuses on acquiring, serving and retaining customers through managing customer lifetime value, customer segmentation, data mining, and the application of CRM instruments such as loyalty programs.", + "title": "Contemporary Issues in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMU5014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this course is on how general managers enhance and sustain business performance. It covers analytical and conceptual tools that are aids to the development of judgment. The fundamental focus, however, is not on tools, but on sharpening skills at developing robust judgments in the face of uncertainty and complexity.", + "title": "Competitive Strategy & Business Policy", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMU5015", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 12 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 2-part module is designed to allow students to employ and enhance concepts learned in the classroom. It will deal with global strategic issues. The practicum may be an individual project or a group project consisting of three to five students. Both an Anderson faculty member and an NUS faculty member will supervise the project to ensure that the students? work meets the academic requirements of the program.", + "title": "Management Practicum", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BMU5017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module is to equip students with the understanding of the mindset and skills of entrepreneurship, and the key elements of the new\nventure creation process. The module is structured around four themes: (1) The entrepreneurial mindset and skills to recognize opportunities and mobilize resources to exploit them; (2) the Lean StartUp approach to discover\nand validate business opportunities, and the four key analytical tools for analysing and designing viable start-up business model; (3) the Entrepreneurial New Venture\nCreation Process: Equity structuring, funding rounds & investment terms, team building, and exit strategy; (4) Social Impact-driven Entrepreneurship", + "title": "Entrepreneurship and New Venture Creation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "BMU5018", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "0730", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the first of a set of two modules: Engineering Principle and Practice I and II (EPP I and EPP II). EPP modules aim to introduce first year students to the biomedical engineer\u2019s way of thinking and addressing problems. A real-life medical technology will be used to demonstrate the fundamental knowledge and skills that a biomedical engineer is expected to possess. In EPP I, students will be exposed to key engineering problems such as how to analyse a complex medical \ntechnology, how to design and fabricate a prototype and how to predict failure.", + "title": "Engineering Principles and Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "BN1101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second of a set of two modules: Engineering Principle and Practice I and II (EPP I and EPP II). EPP modules aim to introduce first year students to the biomedical engineer\u2019s way of thinking and addressing problems. A real-life medical technology will be used to demonstrate the fundamental knowledge and skills that a biomedical engineer is expected to possess. In EPP II, students will be exposed to key engineering problems such as how systems are controlled, powered and optimized.", + "title": "Engineering Principles and Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "BN1102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Engineering Principles and Practice I (EPP I) is the first in a pair of modules designed to\nintroduce first year students to a biomedical engineer\u2019s way of thinking and addressing problems through\nexposure to real-life medical technologies. These technologies will be used to demonstrate the\nfundamental knowledge and skills a biomedical engineer is expected to possess. In this module,\nstudents will be exposed to key engineering problems such as how to analyse a complex medical device,\nalong with how to conceptualise, represent and present their such devices.", + "title": "Biomedical Engineering Principles and Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN1111", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "C19-Exam", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 210, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module encourages students to become independent and self-motivated learners, and promote students interest in research-based work. It consists of a series of laboratory-based projects or other academic prescriptions for the students independent study. The academic scope is worked out between the student and the supervising faculty members.", + "title": "Independent Study", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce concepts relevant to the interpretation and statistical analysis of experimental results in the bioengineering field. Theoretical explanations will be followed by hands-on tutorials with relevant computational software. Students will learn how to perform some of the most commonly used statistical analysis of experiments (e.g., z and t tests, ANOVA analysis) as well\nas to interpret the results of typical bioengineering experiments by building a suitably fitted mathematical model.", + "title": "Bioengineering Data Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is a practical introduction to workshop practice and prototype creation in bioengineering design. Students will be introduced to workshop safety, risk assessment and standard operating procedures. They will get hands on experience with rapid prototyping equipment and techniques, and will learn how to use 3D CAD modeling to convert their design ideas into a realizable form.", + "title": "Bioengineering Design Workshop", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BN2103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second of a set of two modules: Engineering Principle and Practice I and II (EPP I and EPP II). EPP modules aim to introduce first year students to the biomedical engineer\u2019s way of thinking and addressing problems. A real-life medical technology will be used to demonstrate the fundamental knowledge and skills that a biomedical engineer is expected to possess. In EPP II, students will be exposed to key engineering problems such as how systems are controlled, powered and optimized.", + "title": "Biomedical Engineering Principles and Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2111", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 190, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students interested in bioengineering with a basic foundation in the physiology of the human body. In contrast to traditional physiology, engineering concepts will be used as a basis to explain and quantify physiological function. The goal of this module is to give students an overview of how the body functions from an engineering perspective in preparation for more advanced bioengineering modules. The major topics that will be covered are biotransport systems, bioenergy systems and biocontrol systems.", + "title": "Quantitative Physiology for Bioengineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will present fundamental transport solutions which model the major features of biological flow. The conservation of mass, momentum, and energy in a system will be studied and applied to blood flows in the cardiovascular system. Basic knowledge of non-Newtonian fluid mechanics will also be covered. Bifurcation flow and Hemorheology in macrocirculation and microcirculation will be discussed. Mass transfer will be introduced to the students for applications in drug delivery, dialysis devices and bioreactors.", + "title": "Introduction to Biotransport", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will present fundamental transport solutions which model the major features of biological flow. The conservation of mass, momentum, and energy in a system will be studied and applied to blood flows in the cardiovascular system. Basic knowledge of non-Newtonian fluid mechanics will also be covered. Bifurcation flow and Hemorheology in macrocirculation and microcirculation will be discussed. Basic mass transfer will be introduced to the students.", + "title": "Introduction to Biotransport", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2202S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the students to the basic elements for design of medical devices through a hands-on design project performed in teams. Examples of engineering analysis and design are applied to representative topics in bioengineering, such as biomechanics, bioinstrumentation, biomaterials, biotechnology, and related areas. Topics include: identification of the technological needs, design methodology, evaluation of costs and benefits, quality of life and ethical considerations.", + "title": "Introduction to Bioengineering Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to the fundamentals of solid and fluid mechanics. In solid mechanics, students will apply engineering statics and dynamics to analyse the musculoskeletal system, understand kinematics and kinetics of human motion, and apply mechanics principles in deformable bodies, i.e., stress, strain, shear, bending and torsion. In fluid mechanics, students will learn fundamental transport solutions that model major features of biological flow, including the application of conservation of mass, momentum, and energy to blood flow in the cardiovascular system, basic knowledge of non-Newtonian fluid mechanics, basic mass transfer, bifurcation flow and hemorheology in macrocirculation and microcirculation.", + "title": "Fundamentals of Biomechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Monday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces biomedical engineering students to fundamentals of biomolecules, interactions and reactions important to biology, and biomaterials. These molecules, processes, and biomaterials have important implications in health and disease, and biomedicine. The module covers key concepts of biological molecules, enzymatic catalysis, their roles and functions in health and disease, analytical methods, engineered biomaterials, as well as relevant new developments of biotechnology and biomaterials, and their applications.", + "title": "Biochemistry and Biomaterials for Bioengineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce signals and systems in both continuous and discrete time domains with examples from biomedical signals processing. The theory is motivated by examples from biomedical signals and systems, such as\nEEG and ECG. Numerous MATLAB commands for solving a wide range of problems arising in processing physiological signals will be illustrated. Topics will include the introduction to biosignal examples, continuous and discrete signals, linear time invariant discrete and continuous systems, convolution, Fourier series, Fourier transforms, filtering, Laplace transforms. Hands-on experiments on biosignal sampling, frequency analysis, and filtering will be performed using MATLAB.", + "title": "Biosignals Processing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to the basics of bioinstrumentation, electric circuit analysis, biosensors, bioamplifiers and their related applications to biomedical device design. The module covers the topics on fundamentals of biomedical instrumentation design, the use of KVL, KCL, superposition and circuit equivalence techniques to analyze circuits, principles of biosensors and bioamplifiers in biosignals recovery. This module also encompasses the basic elements for biomedical device design and prototyping to solve a medical problem through a hands-on design project performed in teams.", + "title": "Fundamentals of Bioinstrumentation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to the basics of bioinstrumentation with a focus on acquiring biopotentials from the body, amplifying and processing them. The module covers the topics on fundamentals of biomedical instrumentation design, biopotentials, biosensors, bioamplifiers and signal filtering. This module also equips students in microcontroller programming for biomedical device design and prototyping to solve a medical problem through a hands-on design project performed in teams.", + "title": "Fundamentals of Biosignals and Bioinstrumentation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN2403", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2022-09-16", + "end": "2022-10-14" + }, + "venue": "", + "day": "Friday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2022-09-08", + "end": "2022-10-06" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2022-09-15", + "end": "2022-10-13" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "B1", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2022-09-09", + "end": "2022-10-07" + }, + "venue": "", + "day": "Friday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Preparation of formal engineering reports on a series of engineering analysis and design problems illustrating methodology from various branches of applied mechanics as applied to bioengineering problems. Statistical analysis. A term project and oral presentation are required. Students are exposed to the entire design process: design problem definition, generation of a design specification, documentation, design review process, prototype fabrication, testing and calibration.", + "title": "Biomedical Engineering Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "BN3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to introduce students to the applications of engineering statics and dynamics to perform simple force analysis of the musculoskeletal system; give an appreciation of kinematics and kinetics of human motions; apply the fundamentals of strength of materials, i.e. stress and strain in biological systems, sheer force, bending moment and torsion; introduce biomechanics of soft and hard tissues.", + "title": "Introduction To Biomechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to introduce students to the principles of biomechanics in performing force analysis of the human musculoskeletal system; give an appreciation of the musculoskeletal system in producing body movements and functions; apply the fundamentals of biomechanics in analysing musculoskeletal disorders in areas such as orthopaedics, occupational health and sports.", + "title": "Musculoskeletal Biomechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to give students a strong materials science and engineering base to biomaterials engineering. The principles of materials science and engineering with particular attention to topics most relevant to biomedical engineering will be covered. This would include atomic structures, hard treatment, fundamental of corrosion, manufacturing processes and characterisation of materials. The structure-property relationships of metals, ceramics, polymers and composites as well as hard and soft tissues such as bone, teeth, cartilage, ligament, skin, muscle and vasculature will be described. Behaviour of materials in the physiological environment will be focus. The target students are those who have no background in materials science and engineering but would like to study to biomaterials as a subject in bioengineering.", + "title": "Introduction To Biomaterials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN3301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module emphasizes the importance of real-time signal processing in medical instrumentation. The main topics covered are: physical principles governing the design and operation of instrumentation systems used in medicine and physiological research, application of modern signal processing techniques in medicine to improve the accuracy and the validity of medical diagnosis, and theory and application of advanced non-invasive imaging techniques used in modern medical diagnostics.", + "title": "Biomedical Electronics & Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN3401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course personifies the interdisciplinary nature of bioengineering by providing an in-depth understanding of the fundamentals of analytical chemistry and biology. Emphasis will be placed on evidence-based concepts of selected analytical methodologies for the characterization of cells and biomolecules, through study of real-world applications. These methodologies include structural (e.g., microscopy), chemical (e.g., spectroscopy) and molecular (e.g. electrophoresis) experiments. Importance will be given to experimental design, problem-solving, and interpretation of data. At the end of the course, students will be competent to critically appraise analytical techniques adopted by researchers and make well-informed decisions on the selection of a suitable analytical method.", + "title": "Bio-Analytics for Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN3402", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Friday", + "lessonType": "Lecture", + "size": 47, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to impart fundamental concepts of equilibrium thermodynamics and reaction kinetics that may be applied to the study of biological systems. The student is expected to acquire an understanding of the role of thermodynamic reasoning and kinetic analysis in providing a deeper insight into many biochemical and biophysical problems. The topics covered will include thermodynamic functions, chemical potential, chemical reaction and phase equilibria, multicomponent systems, electrochemical potential, solubility, ligand binding equilibria, calorimetry, enzyme kinetics, microbial fermentation, ligand binding kinetics.", + "title": "Equilibrium and Kinetic Bioprocesses", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN3501", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists mainly of a research-based project carried out under the supervision of one or more faculty members. It introduces students to the basic methodology of research in the context of a problem of current research interest. The module is normally taken over two consecutive semesters.", + "title": "B.Eng. Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "BN4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists mainly of a research-based project carried out under the supervision of one or more faculty members. It introduces students to the basic methodology of research in the context of a problem of current research interest. The module is normally taken over two consecutive semesters.", + "title": "B.Eng. Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "BN4101R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces BME students to various healthcare technologies that alleviate the burden associated with ageing, with a focus on designing and developing appropriate technological innovations for the silver economy. The module covers the topics on the biology of ageing, technologies in assisted living, caregiving, and compensating declining physical abilities, as well as digital health in ageing. This module also includes a service learning project where students partner with various social service agencies to identify and address existing gaps through a hands-on design project to develop a gerontechnological innovation prototype.", + "title": "Gerontechnology in Ageing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces BME students to various assistive technologies that allows persons with disabilities to enjoy a more independent life, with a focus on designing and developing appropriate technological innovations. The module covers topics on disability communication and etiquette, principles of successful assistive technology design, and the various types of assistive technologies and software for persons with disabilities. This module also includes a service learning project where students partner with relevant social service agencies or a person with a disability to identify and address existing challenges through developing a device, app, or other solutions that helps them live more independently.", + "title": "Assistive Technology for Persons with Disability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module comprises topical materials of a specialized nature that will not be taught on a regular basis. The requirements and syllabus will be specified as and when the module is offered.", + "title": "Special Topic In Bioengineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to provide an understanding of the relationship between structure and function in tissue biomechanics; introduce quantitative and qualitative assessment of hard and soft tissues in normal and pathological states; inculcate critical and constructive thinking regarding the recent research literature on tissue biomechanics and explore the potential clinical applications. The major topics include mechanical properties of bones, muscles, cartilage, ligaments/tendons, ocular tissues and cardiovascular tissues. Some examples of clinical applications include but are not limited to: tissue growth & remodelling, tendinitis, osteoporosis, osteoarthritis, atherosclerosis, aneurysms, glaucoma, myopia, corneal disorders.", + "title": "Tissue Biomechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fluid dynamic principles and their application in natural organs. Also studied are their substitutes, particularly the flow consideration in their design. Topics include: whole heart, intra-aortic balloon pump, blood pump, heart valve, blood substitutes, blood vessels, oxygenator, kidney, pancreas, liver. Special student projects involve the design of diagnostic and therapeutic instruments and devices for cardiovascular applications.", + "title": "Biofluids Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce students to robotics applied to the different medical conditions that require rehabilitation. Conditions include neuromuscular disorders, orthopaedic disorders, traumatic injuries, amputation, and aging related frailty. The students will learn how to apply engineering principles, such as such as biomechanics and mechatronics, to design and develop devices and technologies for rehabilitation. The module will also enable the students to understand the latest technologies that will have impact on the field of rehabilitation.", + "title": "Robotics in Rehabilitation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to provide the students with the background to understand and assess the currently applied basic principles of tissue engineering. Student would learn to (1) nurture an appreciation of how tissue engineering will influence health care in the next century, (2) acquire a basic understanding of the central principles of tissue engineering, (3) derive a working knowledge of how engineers can participate in tissue engineering research and commercial applications.", + "title": "Principles Of Tissue Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cell and tissue bioengineering plays a crucial role in drug development, cancer treatment, and more. Although the mechanical microenvironment of cells is important for many biological processes, existing culture methods are unable to replicate the complex biophysical environment of the body. To address this, the use of organoids, or organ-specific multicellular tissue constructs grown in a supportive \nextracellular matrix, has grown at a rapid pace. This module will explore the role of bioengineering in the discovery, development, and functional exploitation of organoids for broad applications like drug discovery, immunotherapy, and stem cell biology.", + "title": "Organs in a Dish: Organoid Bioengineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4302", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Over the past decade, meat alternatives have garnered increasing attention due to the environmental, economic, and ethical issues stemming from traditional meat products. Creating properties desirable in meat substitutes (e.g., texture, composition, taste) requires the application of tissue engineering principles. Tissue engineering is classically focused on biomedical applications, yet the same driving principles can be employed for creating the perfect meat mimic, while keeping in \nmind the sustainability and economic feasibility of the product. This module will explore the role of bioengineering in the design, development, and optimisation of meat alternatives for widespread applicability in future foods development.", + "title": "Tissue Engineering for Designing Food", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4303", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a basic foundation into the electrical biophysics of nerve and muscle; electrical conduction in excitable tissue, with an emphasis on neuroscience; quantitative models for nerve and muscle including the Hodgkin Huxley equations; biopotential mapping, cardiac electrophysiology, and functional electrical stimulation.", + "title": "Electrophysiology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A multidisciplinary module which describes the processes on a cellular level. It provides the link between molecular level biochemical and biophysical phenomena and the processes on the physiological level, where specifics of tissue and organs become important. Cellular mechanisms of solvent, noncharged solutes and ions transport through ion channels in relationship to bioelectric phenomena and cellular homeostasis will be described. The module explains how do the cells maintain their composition, structure and volume, how do they form membrane potential and how do they communicate and form the contacts in epithelium.", + "title": "Cellular Bioengineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4403", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students are advised to have fundamental knowledge in biochemistry and/or organic chemistry. This module is designed as an elective module to the bioengineering undergraduates. It will provide students with background and basic knowledge of bioMEMs and introduce some useful techniques as well. Students will have a basic understanding of the principles, current state and prospects of bioMEMs using what they have learned. The module will focus on major topics such as microfabrication technologies, micropatterning of biocompatible materials, microengineering of biomolecules, cells and tissues, biochips, biosensors, and the frontiers in bioMEMs", + "title": "Bioelectromechanical Systems - Biomems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4404", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to introduce the principles of light-tissue interactions and frontier topics of biomedical optics and biophotonics techniques on biomedical diagnostics and therapy. The major topics covered are the fundamentals of lasers and optics in biomedicine, tissue optics, biospectroscopy, microscopy and imaging, and the development and applications of advanced biophotonics techniques in tissue diagnosis and treatment, and nanobiotechnology. Students will be able to grasp the important biophotonic concepts and instrumentation that are necessary for developing techniques and devices that use light to probe tissues and cells. The target students are bioengineering undergraduate and graduate major students.", + "title": "Biophotonics And Bioimaging", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4406", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0603-04", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces engineering students to Engineering Biology, which involves genetic modification of biological systems using engineering approach. These engineered biological systems have wide biomedical and\nindustrial applications. This module covers key engineering concepts and methodologies to the design of engineered genetic systems. The topics covered include foundational techniques in Engineering Biology, abstraction and composition of functional genetic devices and systems, use of computational modelling for genetic device and system design, combinatorial logic gene circuit design, use of control theory in dynamic device and systems design, and applications of engineered systems and societal impact.", + "title": "Engineering Biology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4501", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module \u2018Intelligent Medical Robotics\u2019 will cover topics from clinical background, medical robot evolution, design specifications, design rationale, actuators and sensors, robot kinematics, data-driven modeling, motion tracking, intelligent navigation and control, new trends on soft robots and general flexible robotic systems.", + "title": "Intelligent Medical Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4601", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A serious game (SG) is carefully designed to achieve specific learning objectives. This course first introduces gamification, simulations and SG, using real-world examples from healthcare and mental health. This is followed by understanding the cognitive neuroscience of memory and learning. Next, psychological theories on motivation of why people play is covered. Students will then pick up SG design strategies shared by guest lecturers from industry and academia. Students will play, apply an interdisciplinary SG design framework and critically evaluate games for health. At the end, students will be competent to execute an evidence-based approach towards the design of a SG.", + "title": "Serious Games for Health", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN4701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves supervised self-study on a topic approved by the Department in the field of Biomedical Engineering. The work may relate to a case study, industrial attachment, minor research project, or a combination of these.", + "title": "Independent Research Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a systematic approach to the development of the state-of-art medical devices and systems. Students will study the processes of unmet needs identification, problem statement, technical innovations, IP strategies, clinical trials and regulatory approval. Using some of the major focus of today's biomedical engineering research systems as examples, such as like medical robotics and diagnostic systems, this module will allow students to build and apply the skills in design and development of novel medical devices and systems.", + "title": "Biomedical Engineering Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to make student acquire an adequate knowledge related to the design, construction and clinical testing of biomedical electronics and instrumentation for electrophysiological acquisition from the body. The major topics covered include the fundamentals of sensors and instrumentation electronics; biomedical devices, clinical instrumentation and imaging, and biomedical measurements.", + "title": "Clinical Instrumentation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on three major systems (cardiovascular, endocrine and nervous system) and quantitatively described from both the cellular (membrane dynamics, ion transport, muscle and nerve, electric conduction and equilibria, wave propagation and intercellular communications, sensory receptors and others) and system physiology perspectives (regulation and control, homeostasis, specific functions of major organs). Problem-based approaches will be adopted for the students to integrate the life sciences and engineering principles to solve bioengineering problems relevant to human physiology.", + "title": "Quantitative Physiology Principles in Bioengineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Major controversial issues in the application of biomaterials to medical problems will be covered. Fundamental structure-property relationships and issues such as wear and structural integrity will be addressed. Subjects considered include introduction to biomaterials, host-tissue response, blood compatibility, control drug release polymers, bioadhesion, contact lenses, polyurethanes, biodegradation, protein adsorption, corrosion, orthopedic and cardiovascular implants, stress shielding, materials selection in artificial organs and medical device regulation. Format will utilise case studies, special invited lectures, discussion, literature research and problem solving.", + "title": "Advanced Biomaterials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide an understanding of the engineering-based problems encountered in orthopaedic practice. It will cover the structure and function of the musculoskeletal tissues (such as bone, cartilage, ligament) that will introduce the forces and moments acting on the musculoskeletal system, and the concepts of tissue regeneration and repair. The course will also look at the biomechanics of joints of the body and the use of orthopaedic implants for reconstruction and repair of articular joints. Finally, the student is introduced to limb amputation surgery and the prosthetic limb replacement from an engineering perspective.", + "title": "Orthopaedic Biomechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We will investigate various tissue engineering approaches for repair and regeneration of tissue structures and functions. In vivo approaches such as drugs, genes, and cell delivery to stimulate and regulate the biological repair and regeneration mechanisms, and in vitro approaches such as the construction of biodegradable scaffolds to build tissues outside bodies before implantation into patients, will be analyzed. A few model systems such as liver, heart, nerves, blood vessels, skin, cartilage and bones will be studied. Original literatures will be critically reviewed, presented, and mini-proposals constructed by students in place of CA.", + "title": "Advanced Tissue Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learning objectives: The objectives of this course are to introduce students to the basic tools of biocomputation and to enable them to use these tools appropriately in the analysis of biomechanical and biological systems. Major topics to be covered: Basic biocomputational tools: finite elements and finite difference methods for steady state and transient problems. Description and modelling of biomechanical systems. Examples of biocomputational analyses in cardiovascular, musculoskeletal and mechanosensory systems. Advances and limitations in computational biomechanics. Target students: Those who are interested in modelling and analysis of complex biomechanical systems in research and application, using engineering computational methods and principles.", + "title": "Computational Biomechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the physics and technology of the major branches of medical imaging, which include X-ray, computed tomography, magnetic resonance imaging, ultrasound, and single-photon and positron emission tomography. Topics that are important to developing a sound understanding of medical imaging technology, such as detectors, image forming processes, tomographic reconstruction methods, and clinical applications, comprise an important portion of the module. This module is suitable for students who may wish to undertake advanced studies and research or work in the area of biomedical imaging.", + "title": "Medical Imaging Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module imparts the essentials of medical device quality systems and device regulation. The module will cover the essentials of QMS at the various stages of the medical product life cycle, such as product's quality assurance, risk control, sterility, and biological safety. The role of engineering professionalism, ethics and social responsibility will also be covered. The student will be provided with an overview of the local and international regulations concerning good manufacturing, good laboratory and good clinical practice as related to the development of medical devices, along with detailed coverage of medical device classification systems.", + "title": "Biomedical Quality and Regulatory Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Neurotechnology provides technical tools for neuroscience research and clinical application. The continued innovation and development of neurotechnology allows us to explore wonders of our brain and mind, as well as to treat neurological and other diseases. This course introduces a variety of neuroengineering approaches to establish direct communication with nervous system and the mechanisms behind them. This course will cover the following topics understanding of the nervous system from an engineering perspective, design of neuroelectronics, mechanical and biochemical requirements of neural interfacing materials, electrical/optical/biochemical/acoustic/magnetic neural interfaces and their applications in both research and clinical applications.", + "title": "Frontiers in Neurotechnology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5209", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biosensors and Biochips", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will discuss medical robotics with specific clinical applications, such as rehabilitation and minimally invasive surgery. Students will learn the latest technologies in AI and robotics that are crucial for future medical robotics, such as smart actuation, intelligent sensing and perception, model based and data-driven approaches for control, and human robot interaction. Through project work, students will also understand other important aspects for medical robotics development, such IP strategies, regulatory approval and clinical trials.", + "title": "Medical Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cell and tissue bioengineering plays a crucial role in drug development, cancer treatment, and more. Although the mechanical microenvironment of cells is important for many biological processes, existing culture methods are unable to replicate the complex biophysical environment of the body. To address this, the use of organoids, or organ-specific multicellular tissue constructs grown in a supportive extracellular matrix, has grown at a rapid pace. This module will explore the role of bioengineering in the discovery, development, and functional exploitation of organoids for broad applications like drug discovery, immunotherapy, and stem cell biology.", + "title": "Organs in a Dish Organoid Bioengineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5302", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Over the past decade, meat alternatives have garnered increasing attention due to the environmental, economic, and ethical issues stemming from traditional meat \nproducts. Creating properties desirable in meat substitutes (e.g., texture, composition, taste) requires the application of tissue engineering principles. Tissue engineering is classically focused on biomedical applications, yet the same driving principles can be employed for creating the perfect meat mimic, while keeping in mind the sustainability and economic feasibility of the product. This module will explore the role of bioengineering in the design, development, and optimisation of meat alternatives for widespread applicability in future foods development.", + "title": "Tissue Engineering for Designing Food", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5303", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Biodesign was developed in Stanford University in 2001 as a process for innovating medical technologies. It provides a framework to appreciate essential considerations in medical device development, and also a platform for interdisciplinary communications. In this course, students will learn about the Biodesign process through guided exercises on assigned clinical needs. This includes topics from the phases of \u201cIdentify\u201d (understanding the clinical need and context) and \u201cInvent\u201d (developing and evaluating solutions). Additionally, through interaction with peers and facilitators, students are expected to develop communication skills, particularly in interdisciplinary fields.", + "title": "The Biodesign Process of Innovation in Healthcare", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5501", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 32, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This introductory course provides key foundational\ninformation related to the global regulation of medical\ndevices with emphasis placed on ASEAN, EU and AsiaPacific\ncountries. Additionally, the role of the global\nregulatory professional will be examined in the context of\nthese regulatory frameworks. Covering pertinent subtopics\nsuch as harmonization, ethics and legal perspectives, the\ncourse will prepare students for more in-depth\nexaminations of submissions and the development of\nregulatory strategy.", + "title": "Introduction to Global Medical Device Regulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5511", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module delves into medical device regulation in the\nUS, with an emphasis on the product lifecycle and an\nextended examination of the submissions process in the\nUS. Key sub-topics include interactions with the US Food\nand Drug Administration (FDA), submission types (e.g.,\nPMAs and 510(k)s) and postmarketing.\n\nThis course provides a comprehensive review of medical\ndevice regulation in the EU, with emphasis on product\nlifecycle and an extended examination of the submissions\nprocess in the EU. Key sub-topics include clinical\nassessment of medical devices, Medical-Devices Directive\n(MDD), conformity assessment pathways and the impact\nof harmonization efforts on the region.", + "title": "Medical Device Regulation in the US and EU", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5512", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive review of medical\ndevice regulation in the ASEAN countries, China and the\nAsia-Pacific. The emergence of harmonization in the\nASEAN community will be discussed and students will see\nhow harmonization efforts translate into regulatory\nrequirements. Regulatory and submission strategy for the\nASEAN market will be a key focus of this course with a\nblend of practical and applied concepts to include the\nreview of a sample submission.", + "title": "Medical Device Regulation in ASEAN and AsiaPacific", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5513", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the students take a prototype through a\nregulatory pathway in one of the regions such as US, EU,\nAsia Pacific, ASEAN and China based upon their\nunderstanding of the medical device regulatory process.\nStudents will have both team and individual activities and\ndeliverables for this module culminating in a simulated\nsubmission to be carried out by student teams.\nThe project module brings together the knowledge\nacquired from the earlier three modules i.e., BN5511,\nBN5512 and BN5513, to enables the students to apply the\nconcepts learned.", + "title": "Medical Device Regulatory Process Strategy and Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5514", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive review of clinical\ndesign and evaluation for medical devices. It focuses on\nthe roles of clinical evaluations in product development\nincluding the roles of various pivotal trials and the\npostmarket study. The students will learn to design a\nclinical study taking into consideration the various aspects\nof the study like the ethics, treatment regimen, study\npopulation, the product effectiveness and safety endpoints.\nIn addition, the course will guide the students through a\nrigorous and systematic review of and integration of clinical\ndata follow by the drafting of a clinical evaluation report.", + "title": "Clinical Design and Evaluation of Medical Devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5515", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive coverage of the\ninitial phases of the product lifecycle, mainly the design,\ndevelopment and testing of the medical device. Although\nnot part of the ISO13485 or 21 CFR 820, they constitute\ncrucial parts of the product lifecycle. Here the students will\nexplores the ideation process considering a myriad of\nfactors including the product market size, the competing\nproducts, the regulatory pathway, intellectual property\nissues, reimbursement model etc. The course will also\ncover the understanding of various testing standards (US\nASTM, China YY, EU ISO etc) for verification and\nvalidation of different medical devices.", + "title": "Medical Device Design, Development and Testing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5516", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Premarket approval is conducted by appropriate regulatory\nauthorities and Conformity Assessment Bodies bodies to\nevaluate the safety and effectiveness of medical devices\nprior to marketing. The process may vary from jurisdiction\nto jurisdiction. The students will learn about the essential\nprinciples of safety & performance of medical devices\nincluding various design and manufacturing parameters\nand requirements. This module will outline the various\nstrategies and components of such post-market\nsurveillance systems including vigilance reporting,\nhandling of customer complaints and product recalls.", + "title": "Pre-Market Requirements and Post Market Surveillance", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5517", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves supervised self-study in the field of\nmedical device regulatory science. The work will typically\nentails the assignment of medical devices developed using\nnovel advanced technologies so that the student will spend\nthe semester to explore the challenges of regulation of\nsuch devices and to develop innovative framework\nrequirement for regulatory approval. During the course, the\nstudent will be presented with different confronted with\nscenarios including product design failure, clinical trials\nmishaps, IP issues, manufacturing non-compliance. These\nscenarios present to the student real-life case studies that\nchallenges the student ability to solve/remedy the\nproblems.", + "title": "Next-Generation Device Regulations", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN5518", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with\nwork attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BN5666", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BN5999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to advanced concepts of human motion biomechanics and their applications in clinicial settings, particularly rehabilitation and orthopaedics. At the end of this course, students are expected to be able to analyse and explain clinical biomechanics data, and to execute a human motion biomechanics research study from experimental design to data collection and analysis, and finally manuscript preparation.", + "title": "Advanced Human Motion Biomechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN6202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces advanced topics in neurotechnology ranging from introductory neuroscience, to advanced neuroengineering principles, and towards innovative solutions for related clinical problems. Major topics include frontiers in neurophysiology, neural recording, neural circuits, telemetry, neural stimulation, analysis of brain activities and neural signals, brain machine interfaces, and neurosurgical systems. These frontiers will enable to graduate students to look in depth at neurotechnology, learn through publications and research, and equip them with the knowledge for further creations.", + "title": "Neurotechnology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN6209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on advanced techniques in fluorescence microscopy for quantitative measurements within cells, tissues, or molecular systems. Topics covered include: single molecule fluorescence, superresolution microscopy, resonance energy transfer-based biosensors, cellular traction force measurements, optical and instrumentation issues in advanced fluorescence microscopy, and recent applications of these techniques. The module is designed to emphasize the analytical, physical, and quantitative aspects of fluorescence-based bioimaging and is aimed for graduate students with prior familiarity with microscopy", + "title": "Advanced Quantitative Fluorescence Microscopy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN6401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Electrophysiological disturbances have been linked to a variety of common diseases including neural, cardiac and gastrointestinal disorders. Computational models of electrophysiology have proven to be a valuable tool in gaining an insight into the pathophysiology of many diseases. In this module we will look in depth at the underlying basis for electrophysiology across a range of spatial scales and how these phenomena can be modelled computationally.", + "title": "Advanced Electrophysiology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BN6402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Doctoral Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BN6999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a short course that prepares the fresh undergraduates for the Mathematics that they will encounter in their first year of Business courses. In particular it focuses on the area of Calculus and Statistics only.", + "title": "Calculus and Statistics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "BPM1701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "2100", + "endTime": "2101", + "weeks": [ + 1 + ], + "venue": "E-Learn_C", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 1400, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "2101", + "endTime": "2102", + "weeks": [ + 1 + ], + "venue": "E-Learn_C", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 700, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This Academic Orientation Module for Microsoft Excel and PowerPoint equips\nstudents with the appropriate level of spreadsheet and slides presentation skills for the BBA and BBA (Accountancy) curriculum, as well as for their future careers.", + "title": "Microsoft Excel and PowerPoint for Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "BPM1702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1800", + "endTime": "1801", + "weeks": [ + 1 + ], + "venue": "E-Learn_C", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 1400, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1801", + "endTime": "1802", + "weeks": [ + 1 + ], + "venue": "E-Learn_C", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 700, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces new students to the nuts and bolts of the business functions of finance, human resource management, marketing and operations management. It allows students to have insights into how these functional areas work together for a business to function and grow. This module will take students through the journey of a new business from business idea conception to funding and commercialization.", + "title": "Understanding How Business Works", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "BPM1705", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1930", + "endTime": "2100", + "weeks": [ + 1 + ], + "venue": "LT16", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1 + ], + "venue": "LT17", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1930", + "endTime": "2100", + "weeks": [ + 1 + ], + "venue": "LT17", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1 + ], + "venue": "LT16", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 400, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "BPS5000", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide the concept, principles, methods and practice of integrated building design that adopts total building performance (TBP) as the underlying paradigm. Integration is emphasized, fostering holistic considerations for performance from the structure, facade, mechanical & electrical and interior systems, and consistently devolving this through design development, contracting, construction, commissioning and into the occupancy phases", + "title": "Integrated Building Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5111", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a studio-based module that synthesizes the theoretical and practical aspects of building performance and detailed design development, bringing sustainable\ndesign concepts and elements to the forefront. The needs for sustainable design and its integration into a holistic performing building will be a key principle of studio\nlearning. Design decision support using simulation tools will be brought to life in studio environment in the realization of holistic sustainable building. Simulation tools\nwill be used for thermal, ventilation, IAQ, lighting and acoustics. Current sustainable building assessment techniques will be applied. Studio will be jointly conducted by academics and leading industry practitioners, particular focus will be given to sustainable building design covering both new build and retrofit of existing building.", + "title": "Green Building Integration and Evaluation Studio", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "BPS5112", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES2", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES2", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course deals with the principles of microclimatic design both at the building and urban level. It emphasizes on the elements of microclimates and their effects on\nbuilding design and the planning of urban settlements and vice-versa. The issues of Urban Heat Island and the possible mitigation measures and their application towards achieving comfort and efficiency with special reference to the humid tropics are emphasized.", + "title": "Microclimate Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "WT-Lab", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the four key performance mandates that are responsible for ensuring good IEQ. The thermal performance deals with thermal comfort in all types of buildings and climates including adaptive comfort models. The indoor air quality (IAQ) performance examines the relationship between IAQ and occupants\u2019 well-being and health and identifies the types and sources of indoor air pollutants and means of minimizing the problems. The experimental procedures of investigating and analysing thermal and IAQ issues are also introduced. The lighting performance deals with visual perception, color classifications and lighting installation design with specific reference to integration and control of artificial and day lighting, choice of light sources and lighting systems. The acoustic performance deals with community noise rating systems and the propagation of sound in the urban environment. Environmental noise monitoring and modelling, sound transmission and acoustical design of rooms will be discussed. Laboratory and field measurements using acoustical instruments will be used to strengthen students\u2019 understanding and analytical and presentation skills on the subject.", + "title": "Indoor Environmental Quality", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with Energy Efficient (EE) Technologies, i.e. passive systems for Green Buildings. The focus is on building facade optimization and the EE domain includes thermal, daylight, ventilation performance and the choice of suitable materials as well as the interrelation of these with architectural design (e.g. form,\nshape, orientation, massing). Analysis and optimization capability teaching is established on a basic understanding of heat transfer mechanisms in buildings. It also deals with the introduction of prevailing analysis, evaluation and optimization methodologies.", + "title": "Building Energy Performance - Passive Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course deals with active design of building systems for good IEQ and energy performance. It includes the conventional heating, ventilating and air-conditioning\n(HVAC) systems typical of most existing buildings as well as emerging technologies such as district cooling/heating systems, cogeneration/tri-generation systems and energyefficient air-conditioning and air distribution systems. The Renewable Energy domain includes photo-voltaics, solarthermal, geothermal, wind and fuel cells.", + "title": "Building Energy Performance - Active Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module considers the objectives and methodologies in conducting a detailed building energy audit. The module commences with the evaluation of energy performance indicators and their influence on measurement methodology, and the designing of auditing strategy. The statistical interpretation of results, measurement accuracy and instrumentation strategies are also major topics of the module. Once the energy saving opportunities are identified, work shall commence on the evaluation and recommendation of energy conservation measures, and\ntheir ranking through the rates of return on investment (ROI). Different modes of procurement in energy retrofit projects and the fundamental principles of Energy Performance Contracting will be examined. Finally, upon the completion of an energy retrofit programme, the requirements and critical conditions for an accurate performance measurement and verification would also be discussed.", + "title": "Building Energy Audit and Performance Measurement and Verification", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide the concept and principles of smart buildings and facilities. It discusses the concept of how building performance can be optimized using software and hardware. Students are exposed to building control systems, software, analytics and several case studies are discussed.", + "title": "Smart Buildings and Facilities", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5226", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT423", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the evaluation of design and spearheading the integration of sustainable design and maintainability, with green facilities management (FM) in mind throughout the life cycle of a facility, right from the planning/design stage. It aims to improve the standard and quality of design, construction and maintenance practices to produce efficient facilities that require minimum maintenance. Major topics covered include technical issues related to maintainability and green FM of major components of a facility for wet area, fa\u00e7ade, basement, roof and Mechanical & Electrical services. Other topics covered are the implications and selection of materials for high maintainability, diagnostic techniques and maintainability grading system.", + "title": "Maintainability and Green Facilities Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop a strong knowledge base on the different building materials and technique of designing structural frames with some of these materials. As a whole, this module focuses on key building materials that are\napplied to the envelope and structural systems of buildings. For the envelope system, coatings made from advanced nanotechnology and phase change materials will be taught. Conventional yet important structural materials such as wood, steel, wood and masonry will be covered next, leading to the discussion on various types of structural systems and their designs. Finally, life cycle assessment will be introduced as a basis for evaluating and selecting environmentally superior materials.", + "title": "Advanced Building Materials and Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5228", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT421", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the development of data analytics skills for professionals in the built environment sector. Students will study large, open data sets from the built environment from design (BIM, BEM), construction (commissioning data), and operations (BMS/EMS/IoT). Major topics include data sources and visualisation, machine learning, coding, and applications.", + "title": "Data Science for the Built Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5229", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the opportunity for timely introduction of novel and state-of-the-art ideas and developments in the domain of building performance and sustainability. It is typically designed to allow students to conduct independent studies on special topics in Building Performance and Sustainability under the\nguidance of a staff member. Students are normally required to submit a 6,000-word report, and the module may include other modes of assessment.", + "title": "Topics in Building Performance and Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BPS5300", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Research Seminar 1", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BRP6551", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Research Seminar 2", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BRP6552", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The graduate seminar series provides an avenue for PhD students to learn about the latest research in the domain of management and organization. The subject matter includes topics such as leadership, job design, and ethics, among others. Distinguished guest speakers from leading universities worldwide will be invited to present their research in progress.", + "title": "Graduate Research Seminars", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BRP6553", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The graduate seminar series provides an avenue for PhD students to learn about the latest research in the domain of management and organization. The subject matter includes topics such as leadership, job design, and ethics, among others. Distinguished guest speakers from leading universities worldwide will be invited to present their research in progress.", + "title": "Graduate Research Seminars", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "BRP6554", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-SR6-1", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides research students with work attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BS5666", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminar", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BS5770", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - Candidates are required to submit a dissertation by investigating a topic of their own choice and relevance to the programme.", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "BS6000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Indoor Air Quality", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BS6001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Phd Seminar", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BS6770", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with the necessary tools and economic frameworks to better understand and analyse macroeconomics issues such as economic growth, unemployment, inflation, business cycles, government budget, trade deficit/surplus and financial crisis. This module emphasizes application of the macroeconomic models and analytical frameworks to real life\nmacroeconomic events in the global economy.", + "title": "Macroeconomic Principles in the Global Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE3701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops the microeconomic principles and conceptual frameworks for evaluating and formulating business strategy. Topics include the boundaries of firms, the analysis of industry economics, strategic positioning and competitive advantage, and the role of resources and\ncapabilities in shaping and sustaining competitive advantage.", + "title": "Economics of Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE3702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This model introduces the science and art of building and using econometric models. It aims to equip business students to: (i) Understand and appreciate econometric analysis in economic and business reports; and (ii) Carry out estimation using least squares regression to support business analysis.", + "title": "Econometrics for Business I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE3703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 52, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In modern business environments, uncertainty and strategic interdependence among rivals surround competitive conducts and conflict interfaces with mutual dependence. Decision making in such situations requires one to take into account the moves and countermoves to be taken by others This module provides a non-cooperative game theoretic framework for analyzing and predicting behaviors and outcomes in such strategic interactions focusing on economic aspects of business conducts. Both fundamental theory and economic applications will be well balanced with managerial implications. Rounds of in-classroom experiments will be performed as well.", + "title": "Strategic Thinking: Economic Applications", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE3711", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Behavioral Economics combines economic and psychological \nprinciples to explain observed economic behaviors that violate the \nrationality assumption and deviate from standard economic \nprediction.\n\nThe goal of the course is to equip students with the theory and \nframework to understand and identify the inconsistency and \nbounded rationality in choices and actions in business. Finally, in \napplying behavioral economics to nudge behavioral change, \nstudents will have their first exposure to be the choice architect of \na real-life situation.", + "title": "Behavioural Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE3712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based\nresearch and report-writing while tackling a business issue under the guidance of the instructor. Students, will do an in-depth structured study/project\nranging from detail literature survey on a given topic to conducting evaluation exercises on the efficacies of given business practice, economic policy or strategy.", + "title": "Independent Study in Business Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE3751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introducing the most popular Business Economics topics to \nstudents. The topics are dependent on instructors\u2019 research \nfields", + "title": "Topics in Business Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE3761", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines Asia\u2019s economic development and linkages between politics and economics, focusing on East and Southeast Asia. The key questions How have Asian governments intervened in their domestic economies? How and to what extent have Asian economies leveraged opportunities in the global economy? What are the key factors facilitating or impeding Asia's growth and development? How does China affect the economic development of Asia, and how might Asia\u2019s future political economy landscape look like? Importantly, this course surveys some key issues affecting Asia\u2019s economic development, drawing relevant concepts across a variety of disciplines to understand Asia\u2019s complex political economy.", + "title": "TIBE Economic System in Asian Business Environment", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE3761A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on BSE3703 Econometrics for Business I to present more advanced econometric techniques for business and economic analysis. The module covers: (i) Methods for estimating non-linear econometric models; (ii) Microeconometric workhorse models; and (iii) Time series and forecasting methods. The module emphasizes hands-on learning of these models and methods, and application to business and economic data analysis.", + "title": "Econometrics for Business II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE4711", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module link business strategy to organizational structure. It considers how to organize businesses to achieve their performance objectives. Part 1 of the module takes business activities as given and considers organizational design, including issues of incentive pay, decentralization, transfer pricing, and complementarities. Part 2 examines the boundaries of the firm, and covers\nhorizontal and vertical mergers, outsourcing, and diversification.", + "title": "Economics of Organization", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE4712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the business economics specialization area. Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Business Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE4751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introducing the advanced Business Economics topics to \nstudents. The topics are dependent on instructors\u2019 research\nfields.", + "title": "Seminars in Business Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE4761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Introducing advanced Business Economics topics to students: International Economics, including international trade, international finance, monetary economics and international political economy.", + "title": "Seminars in Business Economics: International Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSE4761A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with strong conceptual foundation for understanding the dynamic process of technological innovation. Students will be introduced to the importance of technological innovation as a driver for value creation and economic growth. The dynamics of technological change will be analyzed through the concepts such as technology life-cycles, dominant design, network externalities, and first-mover advantage. Key technology commercialization processes through which an innovative idea is transformed into a successful product or service in the marketplace will be studied, and the key organizational/management factors and socio-economic/competitive environmental factors that influence the effectiveness of these processes will be highlighted.", + "title": "Technological Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0111", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with strong conceptual foundation for understanding the dynamic process of technological innovation. Students will be introduced to the importance of technological innovation as a driver for value creation and economic growth. The dynamics of technological change will be analyzed through the concepts such as technology life-cycles, dominant design, network externalities, and first-mover advantage. Key technology commercialization processes through which an innovative idea is transformed into a successful product or service in the marketplace will be studied, and the key organizational/management factors and socio-economic/competitive environmental factors that influence the effectiveness of these processes will be highlighted.", + "title": "Technological Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3701A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with strong conceptual foundation for understanding the dynamic process of technological innovation. Students will be introduced to the importance of technological innovation as a driver for value creation and economic growth. The dynamics of technological change will be analyzed through the concepts such as technology life-cycles, dominant design, network externalities, and first-mover advantage. Key technology commercialization processes through which an innovative idea is transformed into a successful product or service in the marketplace will be studied, and the key organizational/management factors and socio-economic/competitive environmental factors that influence the effectiveness of these processes will be highlighted.", + "title": "Technological Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3701B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creating a new business is a challenging and complex task. The road to entrepreneurial success is long, winding and strewn with pitfalls, obstacles and blind turns. The risks of starting a new business are high, as illustrated by the high failure rates for new ventures. However, as is always the case, the rewards are commensurate with the risk in addition to the psychic rewards of starting a business, witness the dominance of entrepreneurs in the Forbes 400 list.", + "title": "New Venture Creation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Creating a new business is a challenging and complex task. The road to entrepreneurial success is long, winding and strewn with pitfalls, obstacles and blind turns. The risks of starting a new business are high, as illustrated by the high failure rates for new ventures. However, as is always the case, the rewards are commensurate with the risk: in addition to the psychic rewards of starting a business, witness the dominance of entrepreneurs in the Forbes 400 list.", + "title": "New Venture Creation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3702X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the strategic decisions new entrepreneurs take in order to start, finance, and guide their businesses. It will explore strategic frameworks that both successful and unsuccessful entrepreneurs undertake\nin order to operate in dynamic and uncertain competitive landscapes. A major tenet of this course is that experimentation plays a central role in entrepreneurial strategy and that correct strategic responses are not always clear. But through analysis of case studies and discussions with guest speakers we will understand how successful entrepreneurs execute decisions that maintain their competitive advantages.", + "title": "Entrepreneurial Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to give students a deep understanding of the entrepreneurial ecosystem in Singapore and beyond by examining the incentives and goals of the various participants and actors. These organizations and individuals include venture capital funds, investors in venture capital funds, government agencies, and of course the entrepreneur.", + "title": "The Entrepreneurial Ecosystem in Singapore & SE Asia", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3711", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the last few decades, Intellectual Property (\u201cIP\u201d) as a subject has grown significantly, both in terms of importance and scope. IP is increasingly seen to be the new foundation for creating wealth, especially in a knowledge-based\neconomy propelled by innovation. The ability to harness and protect IP is of paramount importance to firms in the competitive market place.\nThis module equips business students with a general understanding of IP as a subject matter, its significance as a tool for wealth creation for firms and the role which IP plays in innovation and technology diffusion today.", + "title": "Innovation and Intellectual Property", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Entrepreneurial Boot Camp is a 5-day immersive module for students across faculties to explore the detailed tasks involved in launching an entrepreneurial venture. Working with faculty and experienced practitioners from\nthe local start-up ecosystem, students will gain a cross disciplinary perspective of entrepreneurship in Singapore and SE Asia.", + "title": "Entrepreneurial Boot Camp", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3713", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary course covers ideas on how value is created \u2014 by working collaboratively to capitalise on 21st century trends through disruptive and non-disruptive innovation.\n\nIn addition to a substantive coverage of innovation frameworks and strategic planning tools, this module explores insights from organisational psychology and neuroscience that are useful for teams to improve cognitive diversity & creativity.\n\nCase examples include inspiring innovators & creative teams and industries such as technology, finance, entertainment and service sectors. This course is versatile enough for students who intend to contribute in start-up teams, established organisations, R&D, social enter-prises or community-based initiatives.", + "title": "Co-Creating Value (Tools for Collaborative Innovation)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3714", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to digital strategies. Even though companies have been subject to successive shocks such as the industrial and computing revolutions, technology and innovation management has remained critical for their product strategy, differentiation, and competitiveness. Today, however, digital corporations (such as Google, Amazon, Facebook, Alibaba, Uber, Netflix, Bitcoin\u2026) are changing this status quo and revolutionizing business. They have few products but many services, and they connect people to one another. This module introduces students to digital strategies and prepares them to think of innovation in a digital context, and export this to their organizations to engage in disruptive transformation.", + "title": "Digital Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3715", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Innovation is often heavily focused on product/technology innovations and what it takes to create new ventures/breakthroughs. Businesses that succeed over time need to take a much broader & end-to-end view of innovation and incorporate this into business strategies & operations. This course explores 4 key dimensions for businesses innovation - (a) Innovation Types \u2013 Incremental, Step-Change, Disruptive; (b) Innovation Lenses \u2013 Commercial, Product/Service, Process/Business Model, Cost; (c) Innovation Process (Funnel vs. Tunnel), Horizons (Lifecycle vs. Risk Management) & Trade-Offs (Quality vs. Time vs. Costs); & (d) Innovation Culture \u2013 Impact of Organizational DNA, Eco-System, etc", + "title": "360-Degree Business Innovation Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3716", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "amily firms play an important role in all economies, but especially so in Asia, where large family firms often dominate the private sector. This course allows you to understand family firms from the perspective of the owning family, outside professionals working in family firms, business partners, employees of family offices, investors in family firms and policy makers. The topics include strategy, growth, ownership, innovation, governance, professionalisation, and succession patterns in family firms, as well as an investor and policy perspective. The course is open to students from all NUS faculties and to exchange students interested understanding business in Asia. For students from business families or entrepreneurs building their own firms this course will be particularly relevant as it will provide the knowledge to run and sustain family businesses for generations. For other students, the course will be useful no matter which career you pursue, as you will most likely work with family firms either as your employers, clients, suppliers, or partners.", + "title": "Family Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3717", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in in the area of Innovation and / or Entrepreneurship. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Innovation & Entrepreneurship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For decades organizations have been managing people as\nan enabler to deliver a business strategy. Today, this is no\nlonger enough. \u201cPeople\u201d is strategy. Getting your people\nright means the difference in winning or losing in the current\nbusiness landscape. \u201cPeople\u201d is the key to understanding\nhow value can be created and, more importantly,\nappropriated.\nMoreover, this is not simply an HR responsibility. Leading\norganizations manage people with the same rigor that they\nuse to manage financial performance. This course develops\nstudents\u2019 ability to evaluate, design, and execute a firm\u2019s\nstrategy by analyzing the people factors essential to\nsustained success.", + "title": "People Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN3811", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To ensure the creation of a new successful venture based on utilizing market validation for product development and initial business model creation.\nThe purpose of this course is to:\n\u2022 Help students understand the process, challenges, risks and rewards of developing a new product\n\u2022 Equip them with the tools required to take their identified market opportunity and translate it into product development and a sustainable business model\n\u2022 Improve the chances of success in starting a business", + "title": "Product Validation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN4711", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Social networks are an essential part of organizations and \nmarkets. This module aims to help students understand \nhow to systematically analyse and employ network \nconcepts in their works. Specifically, the course will cover \ntopics about how social networks affect organizational \neffectiveness and market processes. Numerous studies \nhave shown the importance of social networks in various \nstages of innovation and entrepreneurship such as \nconfirming novel ideas, gaining financial support, and \naccessing to tangible and intangible resources.", + "title": "Managing Social Networks in Markets and Organizations", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN4712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the area of Innovation and / or Entrepreneurship. Students will hone their analytical skills while tackling a relevant business issue under the guidance of the instructor.", + "title": "Adv Independent Study in Innovation & Entrepreneurship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN4751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A key challenge for Singapore and other developed economies is to sustain economic growth. Growth can be based on working harder (more labour, more investment, more resources) or working smarter (raising productivity). Innovation contributes to working smarter -- getting more from the same resources. This module introduces recent research in the microeconomics of innovation and productivity, focusing on implications for management and economic policy. The module runs as an interactive seminar, and aims to critically appreciate current research. The instructor and students will present and discuss recently published and ongoing empirical studies, with particular emphasis on causal inference. Students will analyze data, and write technical reports as well as general essays.", + "title": "Innovation and Productivity", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSN4811", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces recent research in the\nmicroeconomics of innovation and productivity, focusing on\nimplications for management and economic policy. The\nmodule runs as an interactive seminar, and aims to\ncritically appreciate current research. The instructor and\nstudents will present and discuss recently published and\nongoing empirical studies, with particular emphasis on\ncausal inference.\nStudents will be required to carry out econometric\nestimation of innovation and productivity using recently\ncurated datasets.", + "title": "Innovation and Productivity (with Econometrics)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "BSN4811A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will equip business students with basic legal knowledge relating to commercial transactions so that they will be more aware of potential legal problems which may arise in the course of business and having become aware, to have recourse to such professional legal advice as is necessary in the circumstances. Subjects that meet these requirements include the Singapore Legal System, mediation and arbitration to resolve disputes, the types of various business organisations for businesses to conduct effectively within the law, directors' duties & liabilities, the making of valid business contracts and the rights & obligations of traders in the market place and negligence in the business environment through misstatements.", + "title": "Legal Environment of Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP1702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A12", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A7", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A8", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A9", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "Unknown" + }, + { + "classNo": "A11", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A7", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A8", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A9", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A11", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will equip business students with basic legal knowledge relating to commercial transactions so that they will be more aware of potential legal problems which may arise in the course of business and having become aware, to have recourse to such professional legal advice as is necessary in the circumstances. Subjects that meet these requirements include the Singapore Legal System, mediation and arbitration to resolve disputes, the types of various business organisations for businesses to conduct effectively within the law, directors' duties & liabilities, the making of valid business contracts and the rights & obligations of traders in the", + "title": "Legal Environment of Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP1702X", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic working knowledge of contemporary economic thinking, and thus lays the foundation to many areas of their business studies in coming years. We adhere closely to mainstream economics thinking, but pay particular attention to business applications. We take our students through market equilibrium, competition, monopoly, price and non-price business strategies. Our teaching methodology takes a fundamentally problem-solving approach. Models and analytical skills are introduced in order to solve business problems systematically.Information technology and the Internet have made many changes in the way businesses are run, and Managerial Economics has changed significantly with it. We now devote a new portion of this course to discussing how network effects propel the information age, resulting in significant monopoly powers such as Microsoft. Related anti-trust and other cases are also discussed and analysed.", + "title": "Managerial Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP1703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D14", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 333, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 333, + "covidZone": "B" + }, + { + "classNo": "D06", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0226", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D01", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D03", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D05", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0226", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0226", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 333, + "covidZone": "B" + }, + { + "classNo": "D08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0226", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D04", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D09", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + }, + { + "classNo": "D01", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D03", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D08", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + }, + { + "classNo": "D07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic working knowledge of contemporary economic thinking, and thus lays the foundation to many areas of their business studies in coming years. We adhere closely to mainstream economics thinking, but pay particular attention to business applications. We take our students through market equilibrium, competition, monopoly, price and non-price business strategies. Our teaching methodology takes a fundamentally problem-solving approach. Models and analytical skills are introduced in order to solve business problems systematically.Information technology and the Internet have made many changes in the way businesses are run, and Managerial Economics has changed significantly with it. We now devote a new portion of this course to discussing how network effects propel the information age, resulting in significant monopoly powers such as Microsoft. Related anti-trust and other cases are also discussed and analysed.", + "title": "Managerial Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP1703X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide exposure to how microeconomic analytical tools can be applied to business practices. The module will focus on selected topics that are motivated by real-world observations of business operations.", + "title": "Managerial Economics: Exposure", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BSP1707", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide exposure to how microeconomic analytical tools can be applied to business practices. The module will focus on selected topics that are motivated by real-world observations of business operations.", + "title": "Managerial Economics: Exposure", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BSP1707A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0509", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-03-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide exposure to how microeconomic analytical tools can be applied to business practices. The module will focus on selected topics that are motivated by real-world observations of business operations.", + "title": "Managerial Economics: Exposure", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BSP1707B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "B2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds an understanding of business environments in Asia. The first part of the course focuses on macroeconomic fundamentals, politics, culture, and institutions in Asian countries and regions. The second part of the course explores relationships between national and regional characteristics and business operations. The aspects of business covered in this segment vary from year to year, but typically include business groups, innovation, trade, and foreign direct investment. Topics: PART I Macroeconomic Fundamentals, Institutions, Politics, Corruption, Culture PART II Business Groups, Innovation, Trade, Foreign Direct Investment, Lecturer Discretion", + "title": "Asian Business Environments", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP2011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with basic macroeconomic literacy. It provides essential concepts and tools to appreciate, analyse and evaluate economic growth, inflation, government monetary and fiscal intervention, trade\nliberalization, international flow of capital, immigration and globalization. The module applies these concepts and tools to topical issues of real-world importance to managers and policy-makers.", + "title": "Global Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BSP2701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "04", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT16", + "day": "Friday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0413A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT16", + "day": "Friday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT16", + "day": "Friday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-10-01T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0229", + "day": "Friday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "X1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "X2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0227", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0227", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0229", + "day": "Friday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0413A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0413A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0227", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-03-04T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the integrative capstone course for undergraduate business students. It focuses on the roles, issues and dilemmas facing top managers. It examines the concept of strategy and the different aspects of managing strategically. There are three main learning objectives: Firstly, for students to understand the roots of success and failure in firms, as relating both for firm characteristics and to their micro and macro environments. Secondly, for students to appreciate some of the pressing issues facing corporations in fast-paced environments. Thirdly, through the case method, students have an opportunity, in a simulated managerial role, to apply holistically what has been learnt in the functional business disciplines to complex business problems. Major topics include industry analysis, strategy formulation at the corporate, business and functional levels, firm diversification, strategic alliances, corporate governance, firm resources, core competencies, and the role of structure, culture, rewards, and control in strategy implementation. This course is targeted at all the final year business students.", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is targeted for all final year business students. It is an integrative capstone course designed to give students an overview of different concepts on business policy and strategy. During the course, students will examine the dynamic nature of todays organizations and the rewards and challenges for individuals who are members of those organizations. The course has three specific objectives: (1) Understand strategy theories in practice (using the VRIO - Value-Rarity-Imitatibility-Organization framework), (2) Develop practical skills for the workplace, and (3) Immerse in team culture.", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3001A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the field of strategic management designed to provide an understanding of the fundamental concepts, critical issues and common practices involved in the management of business organizations. This course will help you understand some of the issues involved in both managing and being managed and equip you to become more effective contributors to organizations that you join. Major topics include industry analysis, strategy formulation at the corporate, business and functional levels, firm diversification, strategic alliances, firm resources, core competencies, and the role of structure, culture, rewards, and control in strategy implementation.", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3001B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As a capstone module in business education, this course presents critical concepts, frameworks and methods for effective managerial decision making. It blends theories and applications in enabling students to formulate and implement strategies at various hierarchical levels, integrating different functions as well as contexts of the corporation. The thrust of the course is both analytical and experiential, and is rooted in modern strategic thought and state-of-the-art in business practice. Case studies, role playing exercises and issues discussions will be incorporated throughout the course. The ultimate aim is to develop a deep, and more importantly, practical, understanding of the determinants of firm performance and drivers of organizational success in the real business world.", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3001C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3001D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family firms play an important role in all economies, but especially so in Asia, where large family firms often dominate the private sector. This course allows you to understand family firms from the perspective of the owning family, outside professionals working in family firms, business partners, employees of family offices, investors in family firms and policy makers. The topics include strategy, growth, ownership, innovation, governance, professionalisation, and succession patterns in family firms, as well as an investor and policy perspective. The course is open to students from all NUS faculties and to exchange students interested understanding business in Asia. For students from business families or entrepreneurs building their own firms this course will be particularly relevant as it will provide the knowledge to run and sustain family businesses for generations. For other students, the course will be useful no matter which career you pursue, as you will most likely work with family firms either as your employers, clients, suppliers, or partners.", + "title": "Family Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is grounded on doing business in open economies with international trade and exchange. This model is applicable to small and open city-state Singapore and enables it to first tap the Association of Southeast Asian Nations (ASEAN) before wider outreaches to billion-plus populated China and India. An ASEAN that is tighter in economic integration is pivotal as China is more aggressively competitive since the 1970s with India awakening as well. This course will focus on ASEAN-plus business opportunities for Singapore-based companies to forge business alliances and ventures to tap natural resources in production and markets for sales and revenue.", + "title": "Singapore and ASEAN: Geoeconomics and Geopolitics for Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family firms are the dominant form of business organization of publicly traded firms everywhere around the world. As such, family firms play an important role in all economies, but especially so in Asian economies, where large family firms often constitute a large part of the private sector. Large Asian family firms - the focus of this course - are often organized into corporate groups, and this type of economic organization has lost its attractiveness in many other parts of the developed world, but continues to be important in most emerging economies. In many ways, the Asian family firm defies the wisdom of strategic management. Its demise continues to be predicted, but does not appear imminent. This course provides students the opportunity to develop deep skills and understanding of the strategy and governance of family firms, and focuses in particular on strategic issues faced by family firms in Asia. Topics include characteristics, strengths and weaknesses of family ownership and management, succession of ownership and leadership, governance of family businesses, and how to grow and sustain the legacy of family business. The knowledge obtained from this course is particularly essential to doing business intelligently with family firms not only in Asia and other emerging economies but also in developed countries.", + "title": "Family Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3513", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is the integrative capstone course for undergraduate business students. It focuses on the roles, issues and dilemmas facing top managers. It examines the concept of strategy and the different aspects of managing strategically. There are three main learning objectives: Firstly, for students to understand the roots of success and failure in firms, as relating both for firm characteristics and to their micro and macro environments. Secondly, for students to appreciate some of the pressing issues facing corporations in fast-paced environments. Thirdly, through the case method, students have an opportunity, in a simulated managerial role, to apply holistically what has been learnt in the functional business disciplines to complex business problems. Major topics include industry analysis, strategy formulation at the corporate, business and functional levels, firm diversification, strategic alliances, corporate governance, firm resources, core competencies, and the role of structure, culture, rewards, and control in strategy implementation. This course is targeted at all the final year business students.", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is the integrative capstone course for undergraduate business students. It focuses on the roles, issues and dilemmas facing top managers. It examines the concept of strategy and the different aspects of managing strategically. There are three main learning objectives: Firstly, for students to understand the roots of success and failure in firms, as relating both for firm characteristics and to their micro and macro environments. Secondly, for students to appreciate some of the pressing issues facing corporations in fast-paced environments. Thirdly, through the case method, students have an opportunity, in a simulated managerial role, to apply holistically what has been learnt in the functional business disciplines to complex business problems. Major topics include industry analysis, strategy formulation at the corporate, business and functional levels, firm diversification, strategic alliances, corporate governance, firm resources, core competencies, and the role of structure, culture, rewards, and control in strategy implementation. This course is targeted at all the final year business students.", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3701A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the integrative capstone course for undergraduate business students. It focuses on the roles, issues and dilemmas facing top managers. It examines the concept of strategy and the different aspects of managing strategically. There are three main learning objectives: Firstly, for students to understand the roots of success and failure in firms, as relating both for firm characteristics and to their micro and macro environments. Secondly, for students to appreciate some of the pressing issues facing corporations in fast-paced environments. Thirdly, through the case method, students have an opportunity, in a simulated managerial role, to apply holistically what has been learnt in the functional business disciplines to complex business problems. Major topics include industry analysis, strategy formulation at the corporate, business and functional levels, firm diversification, strategic alliances, corporate governance, firm resources, core competencies, and the role of structure, culture, rewards, and control in strategy implementation. This course is targeted at all the final year business students.", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3701B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B3", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the integrative capstone course for undergraduate business students. It focuses on the roles, issues and dilemmas facing top managers. It examines the concept of strategy and the different aspects of managing strategically. There are three main learning objectives: Firstly, for students to understand the roots of success and failure in firms, as relating both for firm characteristics and to their micro and macro environments. Secondly, for students to appreciate some of the pressing issues facing corporations in fast-paced environments. Thirdly, through the case method, students have an opportunity, in a simulated managerial role, to apply holistically what has been learnt in the functional business disciplines to complex business problems. Major topics include industry analysis, strategy formulation at the corporate, business and functional levels, firm diversification, strategic alliances, corporate governance, firm resources, core competencies, and the role of structure, culture, rewards, and control in strategy implementation. This course is targeted at all the final year business students.", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3701C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "C2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "C1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "C3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "C1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "C2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the integrative capstone course for undergraduate business students. It focuses on the roles, issues and dilemmas facing top managers. It examines the concept of strategy and the different aspects of managing strategically. There are three main learning objectives: Firstly, for students to understand the roots of success and failure in firms, as relating both for firm characteristics and to their micro and macro environments. Secondly, for students to appreciate some of the pressing issues facing corporations in fast-paced environments. Thirdly, through the case method, students have an opportunity, in a simulated managerial role, to apply holistically what has been learnt in the functional business disciplines to complex business problems. Major topics include industry analysis, strategy formulation at the corporate, business and functional levels, firm diversification, strategic alliances, corporate governance, firm resources, core competencies, and the role of structure, culture, rewards, and control in strategy implementation. This course is targeted at all the final year business students.", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3701D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the integrative capstone course for undergraduate business students. It focuses on the roles, issues and dilemmas facing top managers. It examines the concept of strategy and the different aspects of managing strategically. There are three main learning objectives: Firstly, for students to understand the roots of success and failure in firms, as relating both for firm characteristics and to their micro and macro environments. Secondly, for students to appreciate some of the pressing issues facing corporations in fast-paced environments. Thirdly, through the case method, students have an opportunity, in a simulated managerial role, to apply holistically what has been learnt in the functional business disciplines to complex business problems. Major topics include industry analysis, strategy formulation at the corporate, business and functional levels, firm diversification, strategic alliances, corporate governance, firm resources, core competencies, and the role of structure, culture, rewards, and control in strategy implementation. This course is targeted at all the final year business students.", + "title": "Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP3701X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to provide participants with the basic theoretical knowledge, skills, and sensitivities that will help them deal effectively with key management issues and challenges in today's global business environment. We intend to explore the major issues and challenges facing companies with worldwide operations as seen by the managers themselves. The topics addressed include the following: challenges of operating in a global environment, formulation of global strategies and organisational policies (implementation) to achieve the goals set out under the formulation process. Case studies, group projects and presentations will be extensively used to illustrate the concepts.", + "title": "Global Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP4011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Social networks are an essential part of organizations and markets. The module is designed to help students understand social networks and employ network concepts in their works. The course will cover topics about how social networks function and affect organizational effectiveness and market processes. Managers can thus better comprehend their organizations and the environment in which these organizations operate, so that they can make appropriate and timely decisions. The module also covers networks at the individual level. The module will offer scientific-based tools that help students understand the strengths and weaknesses of their personal networks, and how to improve their network building.", + "title": "Managing Social Networks in Markets & Organisations", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP4012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to provide participants with the basic theoretical knowledge, skills, and sensitivities that will help them deal effectively with key management issues and challenges in today's global business environment. We intend to explore the major issues and challenges facing companies with worldwide operations as seen by the managers themselves. The topics addressed include the following: challenges of operating in a global environment, formulation of global strategies and organisational policies (implementation) to achieve the goals set out under the formulation process. Case studies, group projects and presentations will be extensively used to illustrate the concepts.", + "title": "Global Strategic Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP4512", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is tailored to introduce students to the science and art of building and using econometric models. It is particularly useful for students doing quantitatively oriented projects. It hopes to prepare future officers, executives and managers for responsibilities in monitoring, analysing and forecasting trends and business development in their respective industries. Students will be refreshed and equipped with some fundamental economic concepts of statistical tools right from the beginning so as to follow the course comfortably. Models such as CAPM, returns to schooling, term structure of interest rates are used to convey the theoretical and practical aspects of this course. Moreover, the course emphasises hands-on learning involving students in tutorial sessions and exercises to formulate models, estimate them with the Window-based econometric software (EVIEWS), and practice analytical interpretation.", + "title": "Econometrics: Theory and Practical Business Applications", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP4513", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Social networks are an essential part of organizations and markets. The module is designed to help students understand social networks and employ network concepts in their works. The course will cover topics about how social networks function and affect organizational effectiveness and market processes. Managers can thus better comprehend their organizations and the environment in which these organizations operate, so that they can make appropriate and timely decisions. The module also covers networks at the individual level. The module will offer scientific-based tools that help students understand the strengths and weaknesses of their personal networks, and how to improve their network building.", + "title": "Managing Social Networks in Markets and Organizations", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP4515", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Social networks are an essential part of organizations and \nmarkets. This module aims to help students understand \nhow to systematically analyse and employ network \nconcepts in their works. Specifically, the course will cover \ntopics about how social networks affect organizational \neffectiveness and market processes. Numerous studies \nhave shown the importance of social networks in various \nstages of innovation and entrepreneurship such as \nconfirming novel ideas, gaining financial support, and \naccessing to tangible and intangible resources.", + "title": "Managing Social Networks in Markets and Organizations", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSP4516", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A key challenge for Singapore and other developed economies is to sustain economic growth. Growth can be based on working harder (more labour, more investment, more resources) or working smarter (raising productivity). Innovation contributes to working smarter -- getting more from the same resources. This module introduces recent research in the microeconomics of innovation and productivity, focusing on implications for management and economic policy. The module runs as an interactive seminar, and aims to critically appreciate current research. The instructor and students will present and discuss recently published and ongoing empirical studies, with particular emphasis on causal inference. Students will analyze data, and write technical reports as well as general essays.", + "title": "SSIB: Innovation and Productivity", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSS4003A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces recent research in the\nmicroeconomics of innovation and productivity, focusing on\nimplications for management and economic policy. The\nmodule runs as an interactive seminar, and aims to\ncritically appreciate current research. The instructor and\nstudents will present and discuss recently published and\nongoing empirical studies, with particular emphasis on\ncausal inference.\nStudents will be required to carry out econometric\nestimation of innovation and productivity using recently\ncurated datasets.", + "title": "Innovation and Productivity (with Econometrics)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "BSS4003B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The seminars offered will involve both general and specialised issues relating to the business environment, which are worthy of an in-depth treatment from a\ngeneral management perspective.", + "title": "Special Seminars in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BSS4761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The topics offered will involve both general and specialised issues relating to\nthe business environment, which are worthy of an in-depth treatment from a\ngeneral management perspective.", + "title": "Special Topics in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BST3761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an introduction to the fundamental concepts and tools needed to understand the emerging role of business analytics and data science applications in business and non-profit organisations. Students will learn how to apply basic business analytics and data science/analytics tools (such as R) to large real-life datasets in different contexts, and how to effectively use and interpret analytic models and results for making better and more well-informed business decisions. This module will provide both the organisational and technical aspects of business analytics and serves to provide students with a broad overview of how and why business analytics can be implemented in organisations, the various approaches and techniques that could be adopted for different organisational objectives and issues.", + "title": "Introduction to Business Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "05C", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "04D", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "08D", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "02A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "05E", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "10C", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "09B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "10A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "09C", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "05A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "07A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "05B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "08B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "03B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "04A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "01A", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "06A", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "08A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "10B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "04B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "10D", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "05F", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "02B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "02C", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "06B", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "06C", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "07B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "07C", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "Unknown" + }, + { + "classNo": "01C", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "09A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "01B", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "04C", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "08C", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "05D", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "03C", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "03A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with a first exposure to working in industry with theories, methods and applications of business analytics learnt during the first year of university education. Their progress on internship projects will be\nmonitored during internship period, and their performance will be assessed through a Completed Satisfactory/Completed Unsatisfactory (CS/CU) grade at the end of the internship. The internship duration will be approximately 12 weeks full-time.", + "title": "Business Analytics Immersion Programme", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "BT2010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the foundations to econometrics and the use of software tools to perform econometrics data analysis. The module cover analysis models, including regression, time series regression, dynamic causal effects among others. Examples will also be drawn from various industry domains and applications.", + "title": "Econometrics Modeling for Business Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with practical knowledge and understanding of basic issues and techniques in data management and warehousing with relational database management systems, as well as data visualisation principles, techniques and tools. The module covers data management concepts, conceptual and logical design, database management, data warehousing concepts, data warehousing design, relational database management systems and tools, data visualisation and dashboard design concepts, visual perception and design principles, visualisation techniques and tools for temporal and spatial data, proportions and relationships, multivariate and complex data, etc.", + "title": "Data Management and Visualisation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 349, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Business analytics revolves around searching for valuable insights that are hidden in the data so that better decisions can be taken. The recent development in machine learning techniques enables the application of powerful algorithms for business data analytics. At the core of these techniques are optimization methods that find the best solution among all possible alternatives.\n\nThis course will cover basic optimization algorithms that are widely applied in machine learning and data analytics. The main focus of this course is on how optimization techniques such as linear, quadratic, and general nonlinear programming are applied in machine learning algorithms for business analytics.", + "title": "Optimization Methods in Business Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT2103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the business concepts and foundations required for more advanced business analytic courses such as in marketing and finance relevant to data analytics. It aims to provide students with knowledge of business concepts and practices that will enable them to better understand business issues and decisions and to derive and implement analytics solutions and metrics that will address the needs of business decision-makers.", + "title": "Business Concepts and Metrics for Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers topics that are important for preparation of data and features for machine learning. Real life raw data and features extracted from these data often have inherent problems that need to be fixed before feeding to machine learning systems. Such problems include missing data; redundant data; data that are not in numerical form; data that are of different scales and statistical distributions; outliers; unstructured data such as audio, picture, video, and text; huge dimensionality of features that need higher level of abstraction, etc. This module teaches students how to handle such problems that occur in the real world.", + "title": "Feature Engineering for Machine Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT3017", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Computers are becoming readily accessible, and its use in business analytics is growing more prevalent. This module will introduce students to computational methods, algorithms and techniques used in business fields such as finance, marketing and economics to address complex analytics problems. The course will cover topics and algorithms in areas such as optimization methods, numerical analysis, simulations, monte-carlo methods, graph and flow methods, and computational complexity issues to address business analytics related problems. Students will get the opportunity to learn about these computational methods and issues through hands-on practice assignments, case analysis discussions, and course projects.", + "title": "Computational Methods for Business Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT3102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to train students to be conversant in the technologies, approaches, principles and issues in designing IT applications systems for business analytics. Major topics include rapid web frameworks, scripting languages, database design, web and mobile interfaces, tracking and analysis of customers, payment services / verification, implementing security, designing and deploying web and mobile services, and operational considerations and technical tradeoffs.", + "title": "Application Systems Development for Business Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT3103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Monday", + "lessonType": "Lecture", + "size": 172, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Monday", + "lessonType": "Lecture", + "size": 172, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Business analytics revolves around searching for valuable insights hidden in the data so that better decisions can be taken. Developments in machine learning techniques enables the application of powerful algorithms for business data analytics. At the core of these techniques are optimization methods which find the best solution among all possible alternatives. This course will cover optimization algorithms that are widely applied in machine learning. The following topics will be covered (1) linear programming, (2) unconstrained nonlinear programming, and (3) constrained nonlinear programming, their applications in machine learning and business analytics will be emphasized.", + "title": "Optimization Methods for Business Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT3104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with an intermediate exposure to working in industry with theories, methods and applications of business analytics learnt. Their progress on internship projects will be monitored during internship period, and their performance will be assessed through a Completed Satisfactory/Completed Unsatisfactory (CS/CU) grade at the\nend of the internship. The internship duration will be approximately 24 weeks full-time.", + "title": "Business Analytics Internship Programme", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "BT4010", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with a final exposure to working in industry with theories, methods and applications of business analytics learnt before eventual graduation. In this module, students are expected to significantly contribute to the company\u2019s project that they are doing the internship.\nStudents put their knowledge into practice and solving business problems relating to a specific, sizable industry project. Students will also sharpen communication skills through close team interactions, consultations, and formal presentations. Students in this capstone industry project will be jointly guided by supervisors from both the companies/organisations and the school. Their progress on the projects will be monitored during the internship period,\nand their performance will be assessed through letter grades at the end of internship. The internship duration is expected to be approximately 28 weeks (full-time).", + "title": "Business Analytics Capstone Industry Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "14", + "moduleCode": "BT4011", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides you with the foundational application of analytics in the audit and investigation processes. Students will have an opportunity to gain technological and managerial overview of analytical techniques, link analytics, continuous monitoring of business activities, and analytics reporting. The crimes to be covered in this module include fraud, money laundering, terror financing, collusion, market manipulation, cyber intrusion, and control lapses.", + "title": "Fraud Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4012", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers a broad coverage of quantitative trading and financial portfolio optimization, which consists of trading strategies based on quantitative analysis. It will also aim to identify trading opportunities, practices, optimal execution and placements of trading on current technological platforms. Regulations and risk management of quantitative trading will also be emphasized.", + "title": "Analytics for Capital Market Trading and Investment", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4013", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Friday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To design technology that impacts people \u2013 in education, health, business \u2013 this course introduces methods for creating systems that use data intelligently to improve themselves. This requires combining human intelligence (using methods like crowdsourcing, collaborative design) with artificial intelligence (discovering which technology designs help which people) through designing randomized A/B experiments that are collaborative, dynamic, and personalized.", + "title": "Analytics Driven Design of Adaptive Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4014", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer an in-depth coverage of geospatial analysis, starting with the transferring of knowledge in the gathering, display, and manipulation of imagery, GPS, satellite photography and historical data. Geospatial storage tools such as PostGIS that have been created to provide a more scalable backend will be introduced. Other geospatial tools, such as ArcGIS, will be covered. Exploratory Spatial and Spatio-temporal Data Analysis (ESDA, ESTDA) and spatial statistics, including spatial autocorrelation and spatial regression are some of the geospatial data analytics methods covered in detail on the variety of business contexts, operations and applications.", + "title": "Geospatial Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4015", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module exposes students to fundamentals of risk analytics in financial service sector. Students will be taught on the fundamentals of financial services and financial risks. They also learn about interest risk analytics and credit risk analytics.", + "title": "Risk Analytics for Financial Services", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4016", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to enable students to work on an individual business analytics research project spanning two semesters, with approximately 400 hours of work. Students learn how to apply concepts and skills acquired from all prior modules taken and also to think of innovative ways of solving business analytics problems, and learn to work in a research and real-world business analytics environment. The project seeks to demonstrate the student\u2019s work ethic, initiative, determination, and ability to think independently. On completion of the project, the student has to submit a dissertation which describes the project work and summarizes the findings, as well as to give an oral presentation before a panel of examiners.", + "title": "B.Sc. (Business Analytics) Dissertation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "BT4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This project can be viewed as a large-scale practical module. Emphasis will be placed on understanding the objectives of the analytics exercise, applying appropriate analytic methods and techniques, evaluating database designs, modelling strategies and implementation, and monitoring analytics performances. Students will sharpen communication skills through close team interactions, consultations, and formal presentations. Students will also develop a comprehensive understanding of the issues of business analytics such as data privacy and security, legal issues and responsibilities, business/technical communication of the results of data analytics.", + "title": "Business Analytics Capstone Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "BT4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s environment, marketing or business analysts require tools and techniques to both quantify the strategic value of marketing initiatives, and to maximize marketing campaign performance. This module aims to teach students concepts, methods and tools to demonstrate the return on investment (ROI) of marketing activities and to leverage on data and marketing analytics to make better and more informed marketing decisions. Course topics covered include marketing performance management, marketing metrics, data management, market response and diffusion models, market and customer segmentation models, analytic marketing and value driven segmentation, digital media marketing analytics, etc. Students will have access to", + "title": "Data-Driven Marketing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches the concepts, techniques and methods to analyse and improve the visibility of a website or a web page in search engines via the \u201cnatural\u201d or un-paid (\u201corganic\u201d or \u201calgorithmic\u201d) search results. Students will be taught concepts and knowledge in terms of how search engines work, what people search for, what are the actual search terms or keywords typed into search engines, which search engines are preferred by their targeted audience, and how to optimize a website in terms of editing its content, structure and links, and associated coding to both increase its relevance to specific keywords and to remove barriers to the indexing activities of search engines. Importantly, the module will emphasize the relationship of search engine optimization to digital marketing in terms of building high quality web pages to engage and persuade, setting up analytics programs to enable sites to measure results, and improving a site's conversion rate.", + "title": "Search Engine Optimization and Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students concepts, techniques and technologies in handling and analyzing big data sets, i.e., data sets whose size is beyond the ability of commonly used software tools to capture, manage, and process the data within a tolerable elapsed time. Common sources and domains of big data include ubiquitous information-sensing mobile devices, web and software logs, financial trading transactions, large-scale e-commerce, RFID and wireless sensor networks, etc. Conceptual big data topics covered include big data instructure, analytics scalability and processes, etc. Technical frameworks for big data handling and analytics taught include Hadoop, HBase, Cassandra, MapReduce, Dynamo, R, in-database analytics,", + "title": "Big Data Techniques and Technologies", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The World Wide Web overwhelms us with immense amounts of widely distributed, interconnected, rich, and dynamic hypertext information. It has profoundly influenced many aspects of our lives, changing the ways individuals communicate and the manners businesses are conducted. This module aims to teach students various concepts, methods and tools in mining Web data in the form of unstructured Web hyperlinks, page contents, and usage logs to uncover deep business insights and knowledge for business implications that are embedded in the billions of Web pages and servers. Topics covered include various text mining methodologies, case applications and tutorials on Web data", + "title": "Mining Web Data for Business Insights", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comprehensive coverage of\nmethods and tools for predictive data analytics.\nVarious techniques from data mining, statistics and\nartificial intelligence will be discussed. The emphasis will\nbe on more recent developments in machine learning\nmethods such as neural networks and support vector\nmachines that have been shown to be very effective in\ndiscovering reliable patterns from past data and making\naccurate predictions of future outcomes. Applications of\npredictive analytics in business will also be discussed.", + "title": "Machine Learning for Predictive Data Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4240", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to essential concepts and knowledge on developing business analytics (BA) solutions and deploying them in production environments. Students will learn frameworks, tools and techniques that enable them to participate in and manage the processes of BA project life cycle (such as designing and developing models, preparing for production, deploying to production, monitoring and feedback loop). They will also learn about issues on data/model governance.", + "title": "Business Analytics Solutions Development and Deployment", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT4301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with practical knowledge and understanding of basic issues and techniques in data management and warehousing with relational database management systems.\nThe module covers data management concepts, conceptual (entity relationship model) and logical design (relational model) and database management (data definition, data manipulation, SQL) with relational database management systems.The module covers data warehousing concepts, data warehousing design and data warehousing with relational database management systems and tools.", + "title": "Data Management and Warehousing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT5110", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to take students through all the stages of an analytics project from design, data collection, execution and presentation. Through a learning-by-doing approach, students will engage in business cases, guided projects and a project of their own design. Lectures will cover a breadth of technical tools and statistical methods through the data pipeline in an organization. The module will especially emphasize on techniques for causal analysis and econometric identification. Students will get the opportunity to present their projects at a public event open to peers, faculty, investors and industry experts.", + "title": "Hands-on with Business Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT5126", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data science incorporates varying elements and builds on techniques and theories from many fields, including statistics, data engineering, data mining, visualization, data warehousing, and high-performance computing systems with the goal of extracting meaning from big data and creating data products. Data science utilizes advanced computing systems such as Apache Hadoop and Spark to address big data challenges. In this module, students will learn various computing systems and optimization techniques that are used in data science with emphasis on the system building and algorithmic optimizations of these techniques.", + "title": "Practice in Big Data Systems for Data Science", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "BT5127", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a general introduction to advanced data analytics methods. It covers advanced decision tree techniques, support vector machine, unsupervised, semi-supervised and reinforcement learning. Machine learning models for text analysis will be covered. Students are expected to learn the methodological foundations of various machine learning and data mining algorithms, to understand the advantages and disadvantages of various methods, to use Python to run these data mining methods and to learn how to handle unstructured data for business analytics.", + "title": "Advanced Analytics and Machine Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT5151", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Friday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a general introduction to data mining methods. The module will start off by describing issues at the data pre-processing phase, such as handling missing values and data transformation. It will then move on to explain the core concept of well-known classification algorithms. Emerging topics, such as text mining and deep learning, will be covered. Students will also learn important and practical techniques, including cost sensitive classification and features selection.\n\nExamples, assignments, and project will be designed to fit the needs in three verticals (Consumer Data analytics, Financial & Risk analytics, and Healthcare analytics) of the MSBA programme.", + "title": "Decision Making Technology for Business", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT5152", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare graduate students for advanced data science topics and their application in business analytics. The module will investigate the integration of business know-how and advanced analytics technologies. The key deliverable of this module will be the skills to build the practical data science pipeline and utilize state of the art in machine learning.", + "title": "Applied Machine Learning for Business Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT5153", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a foundation for data analytics techniques and applications. It aims at \n(1) Emphasizing on an understanding of intuitions behind the tools, and not on mathematical derivations;\n\n(2) Incorporating real-world datasets and analytics projects to help students bridge theories and practices; and\n(3) Equipping students with hands-on experiences in using data analysis software to visualize the concepts and ideas, and also to practice solving problems.\n The module covers commonly used analytics tools such as logistic regression and decision tree. Students are expected to get their hands dirty by applying the tools in the analytics software.", + "title": "Foundation in BFoundation in Business Analyticsusiness Analyti", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT5154", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the basic quantitative background for decision making problems in finance, operations management, and supply chain management. In this module, various operations research models in linear programming, network flow problems and integer programming will be covered. The emphasis is on model building, solution methods, and interpretation of results. Topics on decision making under uncertainty and simulation will also be discussed. Python will be used for software implementation.", + "title": "Operations Research and Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BT5155", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Behavioural Science", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "BV2000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Behavioural Science", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "BV3000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Behavioural Science", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "BV4000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an 8-week (300 hours) segment of the business work-study internship program (WSIP) with an organizational partner approved by NUS Business School. It typically forms a part of the WSIP.", + "title": "Business Work-Study Internship Programme (8 weeks)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "BWS3804", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a 16-week (600 hours) segment of the business work-study internship program (WSIP) with an organizational partner approved by NUS Business School. It typically forms a part of the WSIP.", + "title": "Business Work-Study Internship Programme (16 weeks)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "BWS3808", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a 24-week (900 hours) segment of the business work-study internship program (WSIP) with an organizational partner approved by NUS Business School. It typically forms a part of the WSIP.", + "title": "Business Work-Study Internship Programme (24 weeks)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "BWS3812", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a 32-week (1200 hours) segment of the business work-study internship program (WSIP) with an organizational partner approved by NUS Business School. It may be an entire WSIP on its own or form a part of the WSIP.", + "title": "Business Work-Study Internship Programme (32 weeks)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "16", + "moduleCode": "BWS3816", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a 40-week (1500 hours) segment of the business work-study internship program (WSIP) with an organizational partner approved by NUS Business School. It forms an entire WSIP on its own.", + "title": "Business Work-Study Internship Programme (40 weeks)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "20", + "moduleCode": "BWS3820", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Objective - The module is premised on a vision of \"sustainable business\", taking the starting point that the relationship between business and the environment will move beyond the legal one of assuring compliance to a fuller integration with business practice. The course explores the interface of environment and business by examining existing and future-oriented programs, structures, and tools of environmental management, drawing from knowledge of environmental management systems and industrial ecology; by applying tools from financial analysis and accounting to environmental decision-making. by investigating ways in which environmental management can create competitive advantage and by analyzing under what circumstances different competitive approaches are likely to be successful. Targeted Students - For students on the M.Sc. (Environmental Management) program. Research students and students from other graduate program in NUS may apply subject to suitability of candidate and availability of places.", + "title": "Business and the Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BX5101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course applies econometric theory to connect statistics to business research. The emphasis venters on implementing existing econometric techniques and the ability to understand new empirical procedures. This intermediate course centers on identifying the ideal test procedure for the question of interest including experiments, observational data and simulations.", + "title": "Applied Econometrics II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BZD6004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-SR6-4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 19, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course applies advance econometric theory to empirical research methods in business. This advanced course begins with non-linear least squares, quasi-maximum likelihood, and generalized method of movements. Strongly rooted in the application, this course also covers asymptotic theory, Bayesian econometrics, unit-root time series, and stochastic processess.", + "title": "Applied Econometrics III", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BZD6005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce graduate students to psychological foundations of organizational behaviour and consumer behaviour with a focus on motivation and interpersonal processes. Topics to be covered include goals, motivation, self-regulation, action regulation, construals, heuristics and biases, decision making under uncertainty, self and identity, ethics, fairness, trust, diversity, culture, norms, groups and teams, social exchange, power, status, and hierarchy. The course will introduce students to basic research in social, personality, and cognitive psychology on these topics. Class discussions will focus on applying the ideas from basic research to applied research in organizational behaviour and consumer behaviour.", + "title": "Motivation and Interpersonal Processes", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BZD6009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the skills involved in understanding, evaluating, conducting and reporting research in the behavioral sciences. Topics addressed include the philosophy of science, theory building in behavioral sciences research, hypotheses development, alternative inquiry methods such as quantitative and qualitative research, and research design among others. The course will address experimental design, survey research, qualitative research methods and emerging streams of research. The course is conducted as a seminar with extensive, readings and preparation. A reasonable knowledge of statistics and a basic knowledge of social science research are necessary for this course. Students are expected to rely on themselves to conduct independent projects as part of the course.", + "title": "Seminar in Research Methodology", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BZD6010", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-SR6-1", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Quantitative Research Methods", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BZD6011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is aimed at doctoral students who intend to conduct experimental and quasi-experimental research for the study of individuals\u2019 behavior in business (e.g., marketing, organizational behavior) and related disciplines (e.g., psychology). Topics include factorial designs, repeated (within-subject) and mixed designs, analysis of covariance, and mediation analysis. Importantly, the course examines these designs and analyses from the perspective of an applied behavioral researcher, not from that of a statistician. That is, the course emphasizes the actual use of proper data collection procedures and analyses techniques for rigorous theory testing instead of focusing on statistical theory per se.", + "title": "Experimental Methods for Behavioral Research", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BZD6012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is mainly designed to introduce basic theoretical frameworks of cognition and affect in psychology. It covers theoretical and methodological essentials in Cognition, Affect, Decision Making and Related Topics. Students are also required to develop testable hypotheses independently.", + "title": "Psychological Theories in Consumer Research", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BZD6013", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1MC pre-seminar series provides opportunities for doctoral students to interact and work closely with research faculty members of the department. The seminar will cover a wide range of search topics that answer key questions in the field of Strategy and Policy. Different perspectives on firm behaviors, organizational designs and institutions will be discussed in the seminar.", + "title": "Strategy and Policy Pre-Seminar", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "BZD6014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 1MC pre-seminar series provides opportunities for doctoral students to interact and work closely with research faculty members of the department. The seminar will cover a wide range of search topics that answer key questions in the field of Strategy and Policy. Different perspectives on firm behaviors, organizational designs and institutions will be discussed in the seminar.", + "title": "Strategy and Policy Pre-Seminar II", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "BZD6014A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to teach aspiring marketing scholars two key research skills: 1) Designing field economic experiments to examine marketing. 2) Incorporating psychological insights into marketing models.", + "title": "Economic Models and Experiments in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BZD6015", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-SR6-4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers econometric models in marketing and provides deep understanding of data analysis and modeling issues in marketing. It includes empirical models on the analysis of scanner panel data and aggregate data. Topics include brand choice, category choice, purchase quantity, purchase timing, and learning and search models. Estimation methods include MLE, GMM, and SMLE. All topics are empirical in nature. Data and basic Gauss and SAS code are provided for the models covered. Relevant readings are also provided. Students are required to work with raw data, cleaning the data, writing code, estimating the models, and writing reports.", + "title": "Econometric Models in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BZD6016", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course combines two subjects, innovation and organization theory, and each subject carries 2MC which translates into 6 weeks of teaching. \n\nInnovation: The topics covered in the innovation section include technological change, dynamic capabilitites, exploration, the role of patents, entrepreneurship and entrepreneurial strategy. \n\nThe topics covered by oganizatin theory include, the contigency perspective, organizational ecology, insitutionalism, network theory and status in the market.", + "title": "Innovation and Organizational Theory", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "BZD6017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module emphasizes on the general practitioner\u2019s (GP\u2019s) role in the care and management of common neonatal conditions and paediatric surgical conditions that present within the community, including neonatal rash, neonatal jaundice, lumps and bumps, common urogenital and umbilical complaints in children. Parental counselling techniques, including knowledge on expected weight gain, breastfeeding and other feeding techniques, fussing, sleeping habits and safe positions, stool changes, will be imparted in this module. Up-to-date knowledge on how socioeconomic status and psychoemotional health of parents may affect neonatal outcomesand a young child\u2019s neurodevelopment will be addressed.", + "title": "Care of the Newborn & Common Paediatric Surgical Issues", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAH5101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module emphasizes on the general practitioner\u2019s (GP\u2019s) role in the care of the well child \u2013 it will enable and empower the GP learner to evaluate the norms and normal variants in a child\u2019s health and development, including understanding and advocating the importance of childhood vaccination, travel vaccines, calorie and dietary requirements at various timepoints of a growing child, normal development of milestones and bladder/bowel control. With clear understanding of the norms and normal variants, learners will be equipped with communication skills required to counsel parents and provide anticipatory advice and refer appropriately to specialist care.", + "title": "Care of the Well Child", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAH5102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module emphasizes on the general practitioner\u2019s (GP\u2019s) role in managing common acute medical conditions in children and adolescents presenting to primary healthcare. GP learners will be equipped with skills to recognise and stabilise common paediatric emergencies such as acute respiratory distress, severe infections and shock states. Approach to appropriate and timely referral to specialist care will also be imparted to our learners in this module.", + "title": "Acute Paediatrics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAH5103", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Touchpoints are periods, during the first years of life during which child\u2019s spurts in development result in a disruption in the family. The succession of touchpoints in a child\u2019s development functions as a map that can be identified and anticipated by both parents and care providers. As parents benefit from affirmation of their child\u2019s development and the nurturing environment they have provided for their child, this short intensive 3-day module teaches healthcare professionals caregiving themes that matter to parents (as opposed to traditional milestones). It will develop a model of practice that establishes collaborative relationships with families presenting to primary healthcare, laying the foundation for strong family bonds.", + "title": "Early Childhood Development", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CAH5104", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module emphasizes the general practitioner\u2019s (GP\u2019s) role in prevention and early identification of common learning, emotional, behavioural and health problems in school-going children \u2013 learners will be equipped with skills to recognize these problems as school-going children frequently present to primary healthcare clinics for minor ailments. Apart from timely and appropriate referral to specialist care when required, learners will be imparted skills to provide advice to parents, offer community-based resources, and lifestyle modification counselling to these children.", + "title": "Holistic Care for School-Aged Children", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CAH5105", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module emphasizes the general practitioner\u2019s (GP\u2019s) role in providing holistic management for or of an adolescent/young adult (10 \u2013 24 years old) presenting to primary healthcare and identifying psychosocial risks and/or conditions requiring specialist referral. Learners will be imparted skills on understanding psychosocial assessment such as H.E.A.D.S.S, how to conduct a youth-friendly consultation while effectively applying respect for the young adult and patient confidentiality. Common medical problems in adolescence will also be taught, and learners will also be equipped with motivational interviewing strategies to facilitate adolescent behaviour change.", + "title": "Adolescent Health", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CAH5106", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a critical understanding of the debates among social scientists in Asia surrounding efforts to generate theories and concepts that not only reflect Asian empirical realities and concerns but are also rooted in Asian philosophical traditions as well as everyday life. The\nmodule begins with an overview of the variety of critiques of the social sciences that have emanated from Asia. The rest of the module discusses Asian attempts to develop what has come to be known as indigenous, alternative social sciences or autonomous traditions in the social sciences.", + "title": "Theorizing from Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CAS5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0646", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Comparative Asian Studies. The student should approach his/her supervisor or appropriate faculty to draw up a module structure that gives a clear account of the topic, number of contact hours, assignments,\nevaluation, and other pertinent details. Head\u2019s and/or Graduate Coordinator\u2019s approval is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAS5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover specialized topics in Comparative Asian Studies. The content of this module will vary according to the research interests and availability of the staff who may be a visiting professor. Students will be expected to attend lectures and seminars conducted by the staff. Written assignments and seminar presentations constitute part of the evaluation in this module.", + "title": "Topics in Comparative Asian Studies I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAS5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores historical and contemporary interconnections in Asia through scholarship\u2019s use of comparative methods. Spanning across Asia, case studies are examined to understand the nature of regional interaction and how comparative approaches have been applied by scholars towards that project. Anchored by a range of seminal works, the module opens up broader discussions about the ways in which we compare our subjects including polities, religious traditions and cultural practices. As a result, this module seeks to re\u2010evaluate comparison and intellectual interconnections across \u2018Asia\u2019 on a theoretical and methodological level.", + "title": "Intersections and Comparison: Asia Observed", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAS5880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Although the term \u201cSilk Road\u201d was only coined in the\nlate nineteenth century, the many land and maritime\ntrade routes linking different parts of Asia have\nfacilitated the movement of people, as well as the\nspread of ideas, commodities, and everyday practice\nfrom pre\u2010modern times to the present. Treating the\nsilk routes as networks of exchange as well as sites of\ninteractions where local dynamics meet global\nprocesses, this module not only canvasses the\nintellectual, social, artistic, and cultural histories of\nAsia, but also examines the theories and\nmethodologies of writing connected and/or\ncomparative Asian histories.", + "title": "Silk Routes in Asia: Where the Global Meets the Local", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAS5881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Doing Asian Studies in Asia speaks directly to a call for inter\u2010Asia referencing as a means to decentre Euro\u2010American knowledge foundations in the human\nsciences. This module examines how interreferencing within Asia can be used as a method to rethink and generate regionally relevant epistemologies which can lay grounds for alternative thinking from and about Asia. The potential of inter\u2010Asia referencing as a method to decentre knowledge production will be explored in the light of interconnections as well as distinctions in the history\nand politics of disciplinary, theoretical, and methodological practices of doing Asian Studies in both Euro\u2010American and Asian academic settings.", + "title": "Asian Studies in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAS6101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0760", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a historical overview of ideas and practices related to East Asia regionalism. Beginning with early ideas of Asia and interactions between Japan, China, and Korea, the course goes on to examine the various ways regional integration has been conceived of and implemented over history. While comparative in nature, the course also offers a focused analysis of one comprehensive attempt at regional integration: Japanese Pan-Asianism. The course further examines in detail postwar and contemporary ideas of East Asian integraion and the various ongoing attempts by multiple regional actors to facilitate working partnerships within the Asia Pacific.", + "title": "Pan-Asianism and East Asian Integration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAS6102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module enables the student to explore an approved topic in Comparative Asian Studies in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Programme Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAS6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all Comparative Asian Studies Ph.D. students. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CAS6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover specialized topics in Comparative Asian Studies. The content of this module will vary according to the research\ninterests and availability of the staff who may be a visiting professor. Students will be expected to attend lectures and seminars conducted by the staff. Written assignments and seminar presentations constitute part of the evaluation in\nthis module.", + "title": "Topics in Comparative Asian Studies II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CAS6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CD4000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creating Narratives is an interdisciplinary module which aims to explore the principles of communication in Design and Engineering. The purpose of the course is to make explicit to students how they can draw on visual and verbal resources to clearly articulate the valued knowledge in their disciplines to both specialist and non-specialist audiences in a succinct manner. Students will explore a range of narratives around multimodal artefacts such as posters, renderings, drawings, models and exhibits from these disciplines to become familiar with the ways to engage, inform, critique and persuade different audiences and communicate their designs effectively.", + "title": "Creating Narratives", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CDE2000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE4-EXR-1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE4-EXR-1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "A13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE3-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE3-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE4-EXR-1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE4-EXR-2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "A12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE4-EXR-1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "A8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE4-EXR-1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "A11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE3-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces you to applications of Artificial Intelligence (AI), especially with respect to the design of our environment. Application spaces may include buildings, public spaces, landscapes, dwellings, transportation nodes, and recreational areas. AI can support the designer in the design decision making process, through both analysis and synthesis. In this module you will be presented with an overview of different kinds of AI applications for design, with a partial focus on the application of an AI-based methodology for design exploration with respect to selected performance indicators, and another on the application of image-based AI techniques supporting design space interpretation.", + "title": "AI for Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CDE2212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 230, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the world rapidly urbanising, how will our cities ensure a high quality of life to make cities \u2018liveable\u2019? What is liveability and how do we envision it? This module addresses key issues such as housing, accessibility, health and ageing, conservation, and culture to analyse how social structures affect and extend within the built environment. We will explore the ways in which these structures and processes manifest within the urban context to understand how we can further develop sustainable software, hardware, and \u2018heartware\u2019 that contribute to an equitable, liveable city with a high quality of life for its citizens", + "title": "Cities for All", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CDE2502", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 6, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 6, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 6, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 6, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 7, + 8, + 9, + 10 + ], + "venue": "SDE3-LT423", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with an understanding of the \u201cSustainable Environment\u201d outcome of the Singapore Liveability Framework (LF) that was developed by the Centre for Liveable Cities (CLC). It will address what is sustainability, and how it affects liveability. Most importantly, students will understand how cities address complex issues. This module will cover the themes of Blue and Green in Nature, and Climate Resilient District, covering topics such as water, green, waste, food, climate mitigation, climate adaptation, and energy resilience. Using case studies, students will glean insights on how to balance different stakeholders while solving complex urban issues.", + "title": "Cities in Nature", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CDE2503", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 7, + 10, + 12, + 13 + ], + "venue": "SDE2-ES2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 6, + 8, + 9, + 11 + ], + "venue": "SDE3-LT422", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 7, + 10, + 12, + 13 + ], + "venue": "SDE4-COMLB", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 7, + 10, + 12, + 13 + ], + "venue": "SDE4-COMLB", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 7, + 10, + 12, + 13 + ], + "venue": "SDE2-ES2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a comprehensive overview of aberrant cell growth control mechanisms in cancer. The major lecture topics will include introduction/history of cancer, virus and cancer, oncogenes, tumor suppressor genes, metastasis, tumor immunology, cancer stem cells, animal models, regulation of the cell cycle, cell death and cell signaling, telomeres, cancer genomics, development and cancer, metastasis. This module is an essential prerequisite for the Translational Cancer Research Module.", + "title": "Fundamentals of Cancer Biology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CDM5101", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to apply fundamental knowledge of cancer biology to translational and clinical cancer research. The major lecture topics include introduction/overview of current cancer therapies, diagnostics and familial cancers, cancer genetics and genomics, drug discovery and development, small-molecule drugs, and cancer immunotherapy. Special seminars by distinguished speakers presenting successful examples of translational research as well as a workshop session (e.g., molecular biological techniques, bioinformatics analysis) related to basic cancer research will be conducted. Assessment will be based on essay assignment and interactive journal club sessions.", + "title": "Translational Cancer Research", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CDM5102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will expose our graduate students to the\ncutting-edge knowledge of RNA biology and their\nimplications in human diseases. We will discuss landmark\nstudies that offer a historical perspective as well as read\npapers from the latest issues of scientific journals to learn\nabout the most recent findings in this rapidly evolving field.\nWe will discover how cell processes are regulated by\nRNAs, RNA-binding proteins and the ribonucleoprotein\ncomplex, how changes in RNAs can lead to disease, and\nhow we can explore the therapeutic potential of RNAs,\nusing lectures and journal clubs given by clinical and basic\nscience experts.", + "title": "Advanced Topics in RNA Biology and Human Diseases", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CDM5103", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for biology students who have no or limited prior background in bioinformatics. Students will learn state-of-the art computational approaches to analyse large sets of genomic, transcriptomic, epigenomic and proteomic data. They will be further introduced to recent machine learning\ndevelopments and their applications to molecular genetics. Lectures from specialists will be complemented by tutorials to help the students to take advantage of public computational resources (databases and analysis software). At the end of the course, students will be able to apply these computational resources to their own projects.", + "title": "Computational genomics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CDM5104", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From impressive tall buildings, to spectacular long suspension bridges, to very large floating structures, these structures must withstand both the forces of nature and the forces that mankind has intended for them. The analytical tools that engineers use to create these structures are deceivingly simple, and it is the intent of this module to explain things in a clear, straightforward manner. Students will learn how to estimate the loads acting on structures and the basic principles governing how structures stay in equilibrium. They will also be exposed to the basic concepts of fluid mechanics and hydraulics.", + "title": "Civil Engineering Principles and Practice", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "CE1101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From impressive tall buildings, to spectacular long suspension bridges, to very large floating structures, these structures must withstand both the forces of nature and the forces that mankind has intended for them. The analytical tools that engineers use to create these structures are deceivingly simple, and it is the intent of this module to explain things in a clear, straightforward manner. Students will learn how to estimate the loads acting on structures and the basic principles governing how structures stay in equilibrium. They will also be exposed to the basic concepts of fluid mechanics and hydraulics.", + "title": "Civil Engineering Principles and Practice", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE1101A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The impact of civil infrastructures on the environment is considerable and engineers have a significant role to play in developing technical solutions which must be cost-effective, economically feasible and environmentally sustainable. Sustainable development must consider all the repercussions from infrastructure development in a systematic and holistic way, including assessment of the resulting pollution problems through environmental monitoring and its necessary companion: safety control and management.", + "title": "Principles & Practice in Infrastructure and Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "CE1102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to stoke the curiosity and passion of engineering students to the wonders of Civil Engineering. From iconic landmark structures such as horizontal longspan bridges and vertical skyscrapers, to massive underground MRT interchanges and complex intertwining subway tunnels, these structures must withstand both the forces of nature and those that mankind has intended for them. This module introduces the engineering fundamentals behind the design and construction of such man-made marvels. Through learning the basic concepts of structural and geotechnical engineering, students will gain an appreciation of the key principles governing the equilibrium and stability of these complex structures.", + "title": "Principles of Structural and Geotechnical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE1103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "21", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-1M-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-1M-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-1M-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-1M-02", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental concepts of statics and mechanics of materials and their applications to engineering problems. At the end of this course, students are expected to be able to draw a free body diagram and identify the unknown reaction forces/moments; solve statically determinate problems involving rigid bodies, pin-jointed frames and cables; solve statically indeterminate axial force member problems using stress-strain law and compatibility equations; determine the shear stress and angle of twist of torsional members; draw the bending moment and shear force diagrams for a loaded beam; and determine the stresses and deflections in beams.", + "title": "Statics And Mechanics Of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE1109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental concepts of statics and mechanics of materials and their applications to engineering problems. At the end of this course, students are expected to be able to draw a free body diagram and identify the unknown reaction forces/moments; solve statically determinate problems involving rigid bodies, pin-jointed frames and cables; solve statically indeterminate axial force member problems using stress-strain law and compatibility equations; determine the shear stress and angle of twist of torsional members; draw the bending moment and shear force diagrams for a loaded beam; and determine the stresses and deflections in beams.", + "title": "Statics and Mechanics of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE1109X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fundamentals of energy, energy-environment interactions and energy economics. It provides a brief introduction to energy commodities, \nconversion technologies, fossil and renewable power generation, transmission grids, fundamentals of climate change and energy supply and demand principles. The course content will help students better assess energy environment-economics interactions, the impact of human\u2019s ever increasing energy demand and mitigation challenges. In addition, the module will also introduce students to the development of Singapore\u2019s wholesale and open electricity markets and energy pricing. It will also cover Singapore\u2019s efforts to reduce climate change, its commitments and its climate policies.", + "title": "Energy, Environment and Economics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE2003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The impact of civil infrastructures on the environment is considerable and engineers have a significant role to play in developing technical solutions which must be cost-effective, economically feasible and environmentally sustainable. Sustainable development must consider all the repercussions from infrastructure development in a systematic and holistic way, including assessment of the resulting pollution problems through environmental monitoring and its necessary companion: safety control and management.", + "title": "Principles & Practice in Infrastructure and Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE2102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module in soil mechanics and geotechnical engineering. The course teaches students the fundamental engineering geological knowledge and basic soil mechanics, and their impact on geotechnical and foundation engineering design and construction. \n\nStudents will learn to understand the basic characteristics of soils, fundamental effective stress principle, and mechanical behaviour of soil including the strength, and compressibility & consolidation properties of soil through lectures, tutorial discussions, case studies, and case studies, the course covers the basic soil properties, soil testing, shear strength parameters in drained and undrained conditions, compressibility of granular soil, and the consolidation characteristic of cohesive soils. \n\nThe course also enables students to acquire the knowledge and practical skills of functioning as an engineer and consultants through the laboratory soil tests and submission of a consultant report arising form the analysis of a given mini-project, conducting appropriate soil tests and the engineering evaluation.", + "title": "Soil Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE2112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first part introduces students to the basic concepts of fluid mechanics. Starting with fluid properties and fluid statics, students\u2019 progress to the conservation laws which allows them to analyse various fluid problems encountered in engineering practice. The second half of the module then introduces students to basic fluid flow concepts. Student are taught how to apply the prior concepts and laws to pipe flows, hydraulic machinery and pipe networks. At the end students should be able to estimate frictional losses for flows in pipelines, design pumping systems and apply the obtained knowledge to other engineering applications.", + "title": "Fluid Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE2134", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "03", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-02-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with knowledge and skills in structural mechanics, and materials for structural engineering. The topics introduce the fundamentals of material constitutive behaviours and failure models to appreciate the use of materials in structural design. The topics also cover the composite, micro-structure and properties of concrete, steel and wood, with an emphasis on the mix-design of concrete. The module is compulsory for civil engineering undergraduate students without which he will not be qualified to practise as a professional civil engineer.", + "title": "Principles of Structural Mechanics and Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE2155", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "03", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-01-01", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-01-01", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-01-01", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A project has to be managed effectively so that it can be delivered on time, within budget, safely and meeting quality specifications. This course is a first course on project management. It introduces the student to construction planning, contract administration and managing the site. Through a project and employing a project planning software commonly used in the industry, the students will also learn how to plan and schedule a project for construction.", + "title": "Construction Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE2183", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0307PC4", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0309PC6", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 160, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Civil infrastructure has significant impact on the natural, social, economic and human environments. Engineers have a significant role to play in proposing and realising technical solutions that are economically feasible and environmentally sustainable. Sustainable infrastructure development must consider all significant project impacts in a holistic way through a methodical impact assessment process. This module introduces the concepts to conceptualize and evaluate proposals for infrastructure development in a holistic and sustainable way.", + "title": "Infrastructure & The Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE2184", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to equip undergraduate civil engineering students with mathematical and statistical tools for fast and efficient solutions of various practical engineering problems in their further education and in their professional life.\n\nA bridge is built from mathematics and statistics to engineering applications based on a reasonable depth in fundamental knowledge. The focus is on numerical solution methods for linear algebraic problems and differential equations as well as on probability theory and statistics. The subjects are discussed and demonstrated in the context of practical civil engineering problems. This allows students to solve problems in many fields and disciplines. Application areas include but are not limited to stability problems, dynamics/vibrations, linear and nonlinear structural analysis, reliability and risk analysis, structural and system analysis under uncertainty, and design of processes and structures under uncertainty.", + "title": "Engineering & Uncertainty Analyses", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE2407", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Many engineering problems involve natural processes and phenomena that are inherently random. Engineers have to evaluate the risk-benefits trade-offs, in order to make decisions in design and planning under conditions of uncertainties. This module covers the fundamental principles and tools of probability and statistics, and how engineers can employ these tools to evaluate problems involving uncertainty. Topics include: basic probability concepts, random variables and functions thereof, probability distributions, statistical inference, hypothesis testing, and regression analysis. Students will also be taught how to use computational tools such as Matlab to perform Monte Carlo simulations, to solve engineering problems involving uncertainty.", + "title": "Uncertainty Analysis for Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE2407A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "10", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 640, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Lecture", + "size": 640, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to equip engineering students with mathematical tools to efficiently solve engineering problems as well as to prepare them for more advanced study on the topic of numerical methods.\nA bridge is built from principle to applications. The focus is on numerical methods for linear algebraic problems and differential equations with an emphasis in engineering problems. The topic start from modelling progressing through to history, errors, various algorithms, and methods of solving from an engineering perspective. Examples discussed will be solved numerically which include use of digital tools.", + "title": "Introduction to Numerical Methods for Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE2407B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Lecture", + "size": 310, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 310, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to give civil engineering students an introduction to computer organization and operation, a knowledge of mathematical problem description and algorithm formulation, a competence in engineering problem solving using computers and equips them with fundamental knowledge and skill in computer-aided engineering graphics.\n\n\n\nThe computer-aided engineering graphics includes the basic concepts in general engineering drawing, with additional focus on the drawings for Civil engineering profession. This includes the structural plan and cross section drawing, structural detailing, etc. The use of CAD software will be emphasized through hands-on sessions.", + "title": "Computer Applications in Civil Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE2409", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module concerns one of the biggest challenges for humankind: how can we ensure a future with sustainable water, food, and energy (WFE) under the unprecedented threat of climate change? The cross-scale interactions, from local levels to the global scale, between climate and human systems contribute to the intertwined relationship among water, food and energy. This module will introduce \nimportant issues related to WFE crises and how to use interdisciplinary science to enhance WFE sustainability in a rapidly changing environment, levering on recent advances in earth system and social sciences, proliferation of big data, and strides in machine learning techniques.", + "title": "Water-Food-Energy Nexus", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate their knowledge in various civil engineering disciplines and apply their understanding into creatively developing a large-scale infrastructure project. Organized in the form of a competition, the module requires student teams to work out a master concept plan of a real-world infrastructure project.", + "title": "Integrated Infrastructure Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This enhancement module enables students to relate the practice of engineering to the socio-cultural context within which the practice of engineering and the final engineered product must operate. The module introduces the key concepts of socio-technical projects which pose open-ended, complex problems requiring a systemic mode of problem solving. These concepts are introduced through extensive fieldwork wherein students encounter real life problems for which they work to create acceptable solutions independently as well as part of a team. The fieldwork is designed to draw students away from familiar cultural and institutional settings to more varied and challenging contexts which a globalized engineering work-force will encounter. As the field-work will be carried out during the vacation, final assessment will be available only at the end of the following semester.", + "title": "Socio-economically sustainable developments", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "E4-04-03", + "day": "Thursday", + "lessonType": "Mini-Project", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "E4-04-04", + "day": "Friday", + "lessonType": "Mini-Project", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "E4-04-04", + "day": "Wednesday", + "lessonType": "Mini-Project", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "E5-03-19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "E4-04-04", + "day": "Tuesday", + "lessonType": "Mini-Project", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "E4-04-04", + "day": "Monday", + "lessonType": "Mini-Project", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1330", + "endTime": "2130", + "weeks": { + "start": "2023-04-18", + "end": "2023-04-18" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1330", + "endTime": "2130", + "weeks": { + "start": "2023-04-17", + "end": "2023-04-17" + }, + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1330", + "endTime": "2130", + "weeks": { + "start": "2023-04-19", + "end": "2023-04-19" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module on the stability assessment of soil slopes and earth retention systems. The topics covered include slopes and embankments, earth pressure and retaining structures, and groundwater seepage analysis. Students will learn how to perform checks on the ultimate (collapse) limit states using limit equilibrium methods, based on Eurocode 7 requirements. The goal is to teach an assessment of force and/or moment equilibrium for slopes, calculation of active and passive earth pressures, and appreciation of various important design considerations (including groundwater seepage effects) pertaining to the stability of earth slopes and retaining structures.", + "title": "Stability of Slopes and Earth Retention Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CE3115", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module in foundation engineering. The topics covered include site investigation and interpretation of soil reports, shallow foundations and deep foundations. Students will learn how to use simple foundations to distribute vertical loads from the superstructure to the underlying soil formation without overstressing the soil (more complex loading modes to be discussed in advanced modules). Students are taught the interpretation of site investigation report, derivation of relevant design soil properties, selection of sensible foundation type, and verification of capacity and settlement requirements.", + "title": "Foundation Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3116", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces basic principles and tools to design, plan, evaluate, analyze, manage and control transportation systems. The aim is to enable students to identify, formulate, examine, and solve transportation engineering problems. The major topics include transportation system, planning and management, geometric design of roads and intersections, structural design of pavement, pavement materials, traffic flow and analysis, and traffic management and control.", + "title": "Transportation Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3121", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-04-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-04-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 175, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 175, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-04-02", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 175, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the basic principles of surface water resources: hydrology and free surface flows. Fundamental concepts of the hydrological cycle, such as: precipitation and evapotranspiration, runoff generation and concentration, response of a drainage basin, river network and reservoir to rainfall; frequency analysis of rainfall and flood extremes, design of ponds, reservoirs, river flow and catchment management, are covered. \nThe free surface flow portion covers the basic free surface open channel steady flow topics of uniform flow, specific energy, and surface profiles. Students will be introduced to unsteady gradually varying flow and the St. Venant equation.", + "title": "Hydrology and Free Surface Flows", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3132", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "T01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "T02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the unit operations and processes application for domestic water supply and wastewater treatment. Integration of physical, chemical and biological processes is the basis of current water and wastewater design practice. This module will enable students to understand the main treatment processes and engineering concerns of water and wastewater treatment systems. Students learn to identify the appropriate treatment system to address water and wastewater treatment needs and design basic processes of water and wastewater treatment systems.", + "title": "Water & Wastewater Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3141", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamentals of structural analysis. Students will learn idealization of structural components, materials, loads and supports, concepts of statical redundancy, determinacy and stability, energy theorems, analysis of trusses, beams and frames. The second part of the module will teach students the methods and principles of advanced structural analysis, with emphasis on matrix methods of linear structural analysis, influence line analysis and approximate lateral load analysis. Students will also familiarize themselves with software for stress and deformation analysis of typical civil engineering structures. The module is compulsory for civil engineering undergraduate students without which he will not be qualified to perform his task as respectable civil engineer.", + "title": "Structural Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3155", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamentals of structural analysis. Students will learn idealization of structural components, materials, loads and supports, concepts of statical redundancy, determinacy and stability, energy theorems, analysis of trusses, beams and frames and plastic analysis of structures. The module is compulsory for civil engineering undergraduate students towards becoming professional civil engineers.", + "title": "Structural Behaviour", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE3155A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT6", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the methods and principles of structural analysis, with emphasis on matrix methods suitable for computer implementation, influence line analysis. The module is compulsory for civil engineering undergraduate students towards becoming professional civil engineers.", + "title": "Structural Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE3155B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with knowledge and skills in the design of structural concrete members and systems. The topics cover basic design for action effects as well as the serviceability and ultimate limit state design of real-life structures. The module is compulsory for civil engineering undergraduate students without which he will not be qualified to practise as a professional civil engineer.", + "title": "Structural Concrete Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3165", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-01-01", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-01-01", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW1-01-01", + "day": "Monday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip undergraduate civil engineering students with sufficient design knowledge and skills on steel structures both for their further education and for their future engineering career. This module provides students with fundamental approaches (based on BS 5950-1:2000) in designing structural steel components and steel buildings. The scope of this module aligns with the fundamental requirement outlined by the Board of Singapore Professional Engineers on the design of steel structures. The students will acquire fundamental knowledge and approaches to perform structural design for steel beams, axially loaded members, connections, portal/industrial buildings, multi-storey frames, and plated structures. This enables the students to conceive a safe and economical structural steel system. The module is targeted at third year civil engineering students and those with a keen interest on steel structural design.", + "title": "Structural Steel Design and System", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3166", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1530", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce CEE students to the basic\nconcepts and approaches to carry out basic data\nexploration from civil engineering sensors. Students will\nlearn to model and make sense of data through various\nmethods including exploratory data analysis.", + "title": "Civil Engineering Analytics and Data Visualization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B02", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0309PC6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "B01", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0308PC5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce CEE students to the basic\nconcepts, approaches and implementation issues\nassociated with data acquisition for infrastructure systems.\nCommon types of data that are collected during the\nmonitoring of infrastructure systems, including excitation\nmechanisms, sensing technologies, data acquisition using\nsensors, signal pre-processing and post-processing\ntechniques, and use of sensing in a variety of applications\nin urban infrastructure will be covered. Students will also\ngain experience with data acquisition hardware and\nsoftware.", + "title": "Data Acquisition for Civil Engineering Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-07", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Optimizing decisions is a key skill for Civil Engineers, whether it is in construction, transportation, environmental, geotechnical or structural design. This module will provide students with the fundamental knowledge of building optimization models for different civil engineering problems, and introduce the solution methods.", + "title": "Optimization and Algorithms for Civil Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE3203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-04", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-03-01T10:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce and cover the fundamental concepts and tools for systematic development of data management systems for civil engineers. It will cover areas related to object-oriented system modelling and design, implementation of software modules to solve civil engineering problems, as well as management of information databases.", + "title": "Data Management for Civil Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE3204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3941", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Unrestricted Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3961", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Unrestricted Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3962", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Unrestricted Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3963", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Technical Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3981", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Technical Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE3982", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The students are assigned an integrated design project involving various disciplines of civil engineering. The module provides the opportunity for students to work as a team on a civil engineering project integrating the knowledge they have gained from modules they have taken in earlier years. The module will also enhance their interpersonal, communication and leadership skills through group projects, report writing and a few oral presentations", + "title": "Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE4103", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The B. Eng Dissertation is carried out by individual students and offers the opportunity for the student to develop research capabilities. It actively promotes creative thinking and allows independent work on a prescribed research project. Level 4 students undertake the project over two semesters. Each student is expected to spend not less than 9 hours per week on the project chosen from a wide range, covering various civil engineering disciplines. Topics include elements of design and construction, and research and development. Assessment is based on the student\u2019s working attitude, project execution and achievement, an interim report and presentation, dissertation and final oral presentation.", + "title": "B. Eng. Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CE4104", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The project offers the opportunity for the student to develop research capabilities. It promotes creative thinking and allows independent work on a prescribed research project. Students undertake the project over two semesters. Each student is expected to spend not less than 9 hours per week on the project chosen from a wide range, covering various civil engineering disciplines. Assessment is based on the student\u2019s working attitude, project execution and achievement, an interim report and presentation, dissertation and final oral presentation. This module is only available to non-graduating students, by invitation from the Department.", + "title": "Final Year Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CE4104N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Each student is assigned a research project in civil engineering. This module provides the opportunity for students to outsource for relevant information, design the experiments, analyze critically the data obtained and sharpen their communication skills through report writings and oral presentations.", + "title": "B.Eng Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "9", + "moduleCode": "CE4106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the knowledge in the design of land transport infrastructures in the context of the multimodal nature of modern transportation systems. With a focus on the movement of people and vehicles, the planning and management of land transport infrastructural capacities and operations as well as the design of terminal and link facilities shall be examined. Topics covered include: design of highway infrastructures, bus transit and urban street infrastructural design; design of rail transit infrastructures; and stops, stations and terminal design.", + "title": "Design of Land Transport Infrastructures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE4221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the basic scientific principles of how the Earth\u2019s climate system. This is done by first introducing and analyzing measurements of the climate system. This will then be followed-up with consideration of the basic physical processes involved. Finally, simple models will be introduced to allow students to explore and understand more deeply.\n\nThe following topics will be covered:\n1. Conservation of energy & radiative forcing\n2. Large-scale flows on a rotating sphere\n3. Atmospheric thermodynamics\n4. Physics and chemistry of greenhouse gases & aerosols\n5. Land surface change\n6. Coupling Across Scales & non-linearities", + "title": "Earth's Climate: Science & Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the information regarding application of advanced unit operations and processes for enhancing the quality of treated effluent and rendering the product water suitable for reuse applications. The module will enable students to understand the fundamental principles of advanced wastewater treatment. Students are taught to identify and design the appropriate advanced treatment system to enhance the quality of the treated effluent and exploit the option of reuse application.", + "title": "Advanced Waste Water Treatment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE4240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the fundamentals of finite element principles to enable them to understand the behaviour of various finite elements and to be able to select appropriate elements to solve physical and engineering problems with emphasis on structural and geotechnical engineering applications. It covers weak formulation, element shape function, isoparametric concepts, 1-D, 2-D, 3-D and axisymmetric elements, field problems, modelling and practical considerations, and special topics. The module is targeted at undergraduate and graduate students involved in research or application of the finite element method in civil engineering problems.", + "title": "Linear Finite Element Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE4257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips participants with the fundamentals of finite element principles to enable them to understand the behavior of various finite elements and to be able to select appropriate elements to solve physical and engineering problems with emphasis on structural and geotechnical engineering applications. The module is targeted at practicing engineers\ninvolved in application of the finite element method in civil engineering problems.", + "title": "Finite Element Concepts & Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE4257A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of CE4257A to further equip participants with relevant knowledge and skills in using finite element method (FEM) in civil engineering applications. 3D solid elements for stress analysis will be covered as extension of 1D and 2D elements. A generalised formulation, namely the\nweighted residual method, will be covered to solve problems beyond stress analysis (such as seepage, flow and heat transfer problems). Practical issues in modelling civil engineering structures will be discussed. The module is targeted at practicing engineers involved in application of the finite element method in civil engineering problems.", + "title": "Finite Element Analysis for Civil Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE4257B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with basic knowledge of structural stability and dynamics for the analysis of civil engineering structures. The topics covered include general principles of stability and dynamics; buckling of beam, columns and frames; design against local and overall stability. Dynamics analysis will cover single-degree-of-freedom systems, multi-degree-of-freedom systems and continuous systems. Students are taught to deal with general stability and vibration problems of frames including computer applications and numerical formulation. The module of specialized context targets at undergraduate and graduate students in research or engineering practices relating to structural engineering applications", + "title": "Structural Stability & Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE4258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Building Information Modeling (BIM) is a revolutionary technology and process that provides an integrated digital database and a variety of modelling tools to remarkably change the way buildings and infrastructure facilities are designed, analyzed, constructed, and managed. BIM is rapidly becoming the industry standard and best practice. This course provides a comprehensive coverage with \nessential details in several key aspects of project development, such as design, building performance, sustainability, engineering, construction, project delivery, \nand facilities management. It helps the students start their first integrated BIM project through the hands-on of a project assignment employing industry leading BIM software.", + "title": "Building Information Modeling for Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE4282", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Virtual Design and Construction (VDC) features the integration and management of multi\u2010disciplinary Building Information Models (BIM). The goal of the course is to enable participants to understand the business value of VDC, and how it can be successfully applied to current infrastructure and building projects. Specifically the objective of the course is to expose participants to the core principles and methodologies of VDC. These include topics on Integrated Project Delivery, BIM quality, Lean Management, Process Mapping and Advanced Visualisation. Hands\u2010on sessions are a key feature of this module.", + "title": "BIM Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE4283A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Virtual Design and Construction (VDC) features the integration and management of multi\u2010disciplinary Building Information Models (BIM). The goal of the course is to enable participants to understand the business value of VDC, and how it can be successfully applied to current infrastructure and building projects.\n\nSpecifically the objective of the course is to expose participants to the core principles and methodologies of VDC. These include topics on Integrated Project Delivery, BIM quality, Lean Management, Process Mapping and Advanced Visualisation. Hands\u2010on sessions are a key feature of this module.", + "title": "Virtual Design and Construction: Moving Beyond BIM", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE4283B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Technical Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE4981", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Technical Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE4982", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves independent project work over two semesters, on a topic in Civil Engineering approved by the Programme Management Committee. The work may relate to a comprehensive literature survey, and critical evaluation and analysis, design feasibility study, case study, minor research project or a combination.", + "title": "Research Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CE5001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students of MSc Civil Engineering to apply the knowledge that they have gained from the modules offered under the Specialisation in Structural Engineering. Students will have the opportunity to work on a multi-disciplinary Capstone Project that aims to combat climate change in Singapore. They will be required to work as a group, complete on a number of tasks, and design a solution based on their Specialisation. The group will be supported by a supervisor, with inputs from an industry partner.", + "title": "Capstone Project for Structural Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5002A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students of MSc Civil Engineering to apply the knowledge that they have gained from the modules offered under the Specialisation in Geotechnical Engineering. Students will have the opportunity to work on a multi-disciplinary Capstone Project that aims to combat climate change in Singapore. They will be required to work as a group, complete on a number of tasks, and design a solution based on their Specialisation. The group will be supported by a supervisor, with inputs from an industry partner.", + "title": "Capstone Project for Geotechnical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5002B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students of MSc Civil Engineering to apply the knowledge that they have gained from the modules offered under the Specialisation in Ocean\nInfrastructure and Renewables. Students will have the opportunity to work on a multi-disciplinary Capstone Project that aims to combat climate change in\nSingapore. They will be required to work as a group, complete on a number of tasks, and design a solution based on their Specialisation. The group will be\nsupported by a supervisor, with inputs from an industry partner.", + "title": "Capstone Project for Ocean Infrastructure and Renewables", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5002C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students of MSc Civil Engineering to apply the knowledge that they have gained from the modules offered under the Specialisation in Transportation Engineering. Students will have the opportunity to work on a multi-disciplinary Capstone Project that aims to combat climate change in Singapore. They will be required to work as a group, complete on a number of tasks, and design a solution based on their Specialisation. The group will be supported by a supervisor, with inputs from an industry partner.", + "title": "Capstone Project for Transportation Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5002D", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students of MSc Civil Engineering to apply the knowledge that they have gained from the modules offered under the Specialisation in\nInfrastructure Project Management. Students will have the opportunity to work on a multi-disciplinary Capstone Project that aims to combat climate change in Singapore. They will be required to work as a group, complete on a number of tasks, and design a solution based on their Specialisation. The group will be supported by a supervisor, with inputs from an industry partner.", + "title": "Capstone Project for Infrastructure Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5002E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0603-04", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students of MSc Civil Engineering to apply the knowledge that they have gained from the modules offered under the Specialisation in Digital\nWater and Climate. Students will have the opportunity to work on a multi-disciplinary Capstone Project that aims to combat climate change in Singapore. They will be required to work as a group, complete on a number of tasks, and design a solution based on their Specialisation. The group will be supported by a\nsupervisor, with inputs from an industry partner.", + "title": "Capstone Project for Digital Water and Climate", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5002F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students of MSc (Civil Engineering) to apply the knowledge that they have gained from the modules offered under the Specialisation on Sustainability and Adaptation to Climate Change. Students will have the opportunity to work on a multi-disciplinary Capstone Project that aims to combat climate change in Singapore. They will be required to work as a group, complete on a number of tasks, and design a solution based on their Specialisation. The group will be supported by a supervisor, with inputs from an industry partner.", + "title": "Capstone Project for Sustainability & Climate Adaptation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5002G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips participants with the fundamentals of finite element principles to enable them to understand the behavior of various finite elements and to be able to select appropriate elements to solve physical and engineering problems with emphasis on structural and geotechnical engineering applications. The module is targeted at practicing engineers involved in application of the finite element method in civil engineering problems.", + "title": "Finite Element Concepts & Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5010A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of CE5010QA to further equip participants with relevant knowledge and skills in using finite element method (FEM) in civil engineering applications. 3D solid elements for stress analysis will be covered as extension of 1D and 2D elements covered in CE5010QA. A generalised formulation, namely the weighted residual method, will be covered to solve problems beyond stress analysis (such as seepage, flow and heat transfer problems). Practical issues in modelling civil engineering structures will be discussed. The module is targeted at practicing engineers involved in application of the finite element method in civil engineering problems.", + "title": "Finite Element Analysis for Civil Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5010B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips participants with the fundamentals of finite element principles to enable them to understand the behavior of various finite elements and to be able to select appropriate elements to solve physical and engineering problems with emphasis on structural and geotechnical engineering applications. The module is targeted at practicing engineers involved in application of the finite element method in civil engineering problems.", + "title": "Finite Element Concepts & Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5010QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-09-28T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of CE5010QA to further equip participants with relevant knowledge and skills in using finite element method (FEM) in civil engineering applications. 3D solid elements for stress analysis will be covered as extension of 1D and 2D elements covered in CE5010QA. A generalised formulation, namely the weighted residual method, will be covered to solve problems beyond stress analysis (such as seepage, flow and heat transfer problems). Practical issues in modelling civil engineering structures will be discussed. The module is targeted at practicing engineers involved in application of the finite element method in civil engineering problems.", + "title": "Finite Element Analysis for Civil Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5010QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in flow through a two-phase medium. The topics that are covered include steady state seepage and basic transient seepage, basic contaminant transport processes, measurement of hydraulic transport parameters, and its applications to dewatering of excavations and seepage through embankments as to their influence on slope stability. Consolidation theory from 1-D to 3-D consolidation analysis, and methods of accelerating consolidation, with application to computing settlements of foundations. Students are taught Darcy's Law, continuity equation, coupling between effective stress and pore pressure, and the solution methods inclusive of FEM modelling. The goals of the module are analysis of seepage problems, analysis of consolidation problems, design methods to accelerate consolidation to solve stability and settlements problems in geotechnical engineering.", + "title": "Seepage & Consolidation of Soils", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E-Learn_A", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "TUNNELLING AND ROCK MECHANICS", + "title": "Tunnelling and Rock Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on analysis and design of underground structures such as tunnels and caverns. The topics covered include cut and cover construction, bored tunneling methods, construction of caverns, New Austrian Tunneling Method, jack tunneling, stability of underground openings, ground movement prediction due to tunnels and caverns, effects of ground movements on buildings and structures, instrumentation and monitoring, stresses on lining, and finite element modeling of underground construction. The creation of underground structures to form subways, underpasses, metro stations and other uses is an increasing requirement in major urban areas world-wide. Students are taught the various methods of construction for creating underground space, and will be able to assess the effect of underground structure on surface structures. Students will appreciate the usefulness and difficulties of finite element method for analysis of underground structures.", + "title": "Underground Space", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on analysis and design of tunnels in soils. The topics covered include bored tunnelling methods, stability of underground openings, ground movement prediction due to tunnels, effects of ground movements on buildings and structures, instrumentation and monitoring, and stresses on lining. The creation of underground structures to form subways,\nunderpasses, metro stations and other uses is an increasing requirement in major urban areas worldwide. Students are taught the various methods of construction for creating underground space.", + "title": "Tunnelling in Soils", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5104A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1400", + "weeks": [ + 1, + 2, + 4 + ], + "venue": "E3-06-03", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "L01", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 3 + ], + "venue": "LT1", + "day": "Saturday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "E3-06-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "L01", + "startTime": "1100", + "endTime": "1400", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "LT2", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "L01", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "E1-06-03", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on analysis and design of tunnels in rocks. The topics covered include tunnelling methods in rocks, construction of caverns, New Austrian Tunnelling Method and stability of underground openings in rocks. The creation of underground structures to form subways, underpasses, metro stations and other uses in greater depths would likely encounter\nexcavation in rocks. Students are taught the various methods of construction for creating underground space.", + "title": "Tunnelling in Rocks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5104B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0830", + "endTime": "1400", + "weeks": { + "start": "2022-09-24", + "end": "2022-10-01" + }, + "venue": "LT2", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-14", + "end": "2022-09-28" + }, + "venue": "E3-06-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2022-09-10", + "end": "2022-09-24" + }, + "venue": "E3-06-03", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on analysis and design of tunnels in soils. The topics covered include bored tunnelling methods, stability of underground openings, ground movement prediction due to tunnels, effects of ground movements on buildings and structures, instrumentation and monitoring, and stresses on lining. The creation of underground structures to form subways, underpasses, metro stations and other uses is an increasing requirement in major urban areas worldwide. Students are taught the various methods of construction for creating underground space.", + "title": "Tunnelling in Soils", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5104QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT2", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-09-30T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on analysis and design of tunnels in rocks. The topics covered include tunnelling methods in rocks, construction of caverns, New Austrian Tunnelling Method and stability of underground openings in rocks. The creation of underground structures to form subways, underpasses, metro stations and other uses in greater depths would likely encounter excavation in rocks. Students are taught the various methods of construction for creating underground space.", + "title": "Tunnelling in Rocks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5104QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on analytical and numerical methods in foundation engineering. Topics covered include, soil models, analysis of beams and rafts on elastic foundations, analysis of piles subject to torsion, axial and lateral loads, and analysis of piles subject to dynamic loads. Student will learn how to assess the behaviour of shallow and deep foundations under more complex loading modes. Students gain an understanding of Winkler, Pasternak, and continuum soil models, conversant with analytical methods and numerical methods such as finite difference, Galerkin, energy, and finite element methods, and applications to shallow and deep foundations.", + "title": "Analytical & Numerical Methods In Foundation Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on ground improvement techniques as well as its design, construction and monitoring in geotechnical engineering. Topics covered include ground improvement principles and design considerations, techniques of improving granular soils, techniques of improving cohesive soils and peaty soils, field controls and monitoring, field evaluation ? specification, performance evaluation and acceptance criteria, and case study. Student are taught the basic principles of various ground improvement techniques, and how to select the most appropriate ground improvement techniques to be used in specific circumstances. Specific learning objectives include understanding the principles and design of vibro-flotation method, dynamic compaction, dynamic replacement with mixing, vertical drains with preloading, chemical stabilization and grouting, etc. Field construction control and instrumentation as well as monitoring techniques will be discussed.", + "title": "Ground Improvement", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a module on the principle of ground improvement techniques, as well as its design, construction and monitoring in geotechnical engineering works. Topics covered include general ground improvement principles and design considerations, techniques of improving granular soils, techniques of improving\ncohesive soils. Field operation requirement and construction field controls, monitoring, and performance evaluation, specification and acceptance criteria. Case studies on various techniques will be presented and discussed.\n\nThis module will focus on hydraulic method for soft clay (PVD with preloading, PVD with vacuum etc), Vibratory method for Sandy soils, and cement treatment method (Grouting and Deep cement mixing etc).\n\nParticipants are taught the basic principles of various ground improvement techniques, and how to select the most appropriate ground improvement techniques to be used in specific circumstances.", + "title": "Ground Improvement - Hydraulic, Vibratory & Chemical", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5106A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-28", + "weekInterval": 0, + "weeks": [ + 1, + 2, + 2, + 3, + 3, + 4 + ] + }, + "venue": "E1-06-13", + "day": "Saturday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 5 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "LT1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on ground improvement techniques for difficult ground as well as its design, construction and monitoring in geotechnical engineering projects. Topics covered include the special requirement for advanced ground improvement techniques, difficult ground (peaty soil, mixed soils in tunnelling, cavity etc), principles and design considerations for various advanced ground improvement techniques (dynamic method, dynamic method combine with PVD, geosynthetics, soil nailing etc), field controls and monitoring, field evaluation \u2013 specification, performance evaluation and acceptance criteria, and case study.\n\nParticipants are taught the basic principles of various advanced ground improvement techniques, and how to select as well as combine a few ground improvement methods to be used in specific circumstances where soil are difficult or/and the project requirements are very stringent.", + "title": "Ground Improvement - Dynamic, Geosynthetic & Inclusions", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5106B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2023-02-11", + "end": "2023-02-25" + }, + "venue": "LT2", + "day": "Saturday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "LT2", + "day": "Saturday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a module on the principle of ground improvement techniques, as well as its design, construction and monitoring in geotechnical engineering works. Topics covered include general ground improvement principles and design considerations, techniques of improving granular soils, techniques of improving cohesive soils. Field operation requirement and construction field controls, monitoring, and performance evaluation, specification and acceptance criteria. Case studies on various techniques will be presented and discussed. This module will focus on hydraulic method for soft clay (PVD with preloading, PVD with vacuum etc), Vibratory method for Sandy soils, and cement treatment method (Grouting and Deep cement mixing etc). Participants are taught the basic principles of various ground improvement techniques, and how to select the most appropriate ground improvement techniques to be used in specific circumstances.", + "title": "Ground Improvement - Hydraulic, Vibratory & Chemical", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5106QA", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on ground improvement techniques for difficult ground as well as its design, construction and monitoring in geotechnical engineering projects. Topics covered include the special requirement for advanced ground improvement techniques, difficult ground (peaty soil, mixed soils in tunnelling, cavity etc), principles and design considerations for various advanced ground improvement techniques (dynamic method, dynamic method combine with PVD, geosynthetics, soil nailing etc), field controls and monitoring, field evaluation \u2013 specification, performance evaluation and acceptance criteria, and case study. Participants are taught the basic principles of various advanced ground improvement techniques, and how to select as well as combine a few ground improvement methods to be used in specific circumstances where soil are difficult or/and the project requirements are very stringent.", + "title": "Ground Improvement - Dynamic, Geosynthetic & Inclusions", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5106QB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": ".The course introduces students to the advanced principles and concepts on the analysis and design of pile foundations in accordance with Eurocode 7 requirements and guidelines. Students will learn how to use insitu field tests results to obtain appropriate pile design parameters. They will also learn\nhow to appreciate and appraise complex pile foundation problems under various loading and boundary conditions, using both conventional theoretical, semi-empirical as well as advanced numerical modeling techniques (such as UniPile and Plaxis). The course enables students to acquire the knowledge and practical skills through the course project assignments and case studies in the practice of advanced pile design.", + "title": "Pile Foundations", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in deep foundation engineering. Topics covered include site investigation for deep foundation, general bearing capacity theorem, overview of pile installation methods, axial pile capacity and deflection, pile load transfer mechanism, and laterally loaded piles as well as group pile issues. Participants will learn how to deal with design and construction issues pertaining to deep foundations under more general and realistic practical situations. Specific learning objectives include performing design calculations for piles and pile groups.", + "title": "Pile Foundation Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5107A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9, + 10 + ], + "venue": "LT1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-04-18", + "end": "2023-04-18" + }, + "venue": "SDE3-LT422", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in deep foundation engineering. Topics covered include piles subject to ground movement, piles in difficult ground, special pile foundation, pile driving analysis and dynamic testing, and static pile load tests. Participants will learn how to deal with design and construction issues pertaining to deep foundations under more general and realistic practical situations.", + "title": "Advanced Topics in Pile Foundation Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5107B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1530", + "endTime": "1830", + "weeks": { + "start": "2023-05-13", + "end": "2023-05-13" + }, + "venue": "LT1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-04-15", + "end": "2023-05-06" + }, + "venue": "EA-06-03", + "day": "Saturday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in deep foundation engineering. Topics covered include site investigation for deep foundation, general bearing capacity theorem, overview of pile installation methods, axial pile capacity and deflection, pile load transfer mechanism, and laterally loaded piles as well as group pile issues. Participants will learn how to deal with design and construction issues pertaining to deep foundations under more general and realistic practical situations. Specific learning objectives include performing design calculations for piles and pile groups.", + "title": "Pile Foundation Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5107QA", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-02-27T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in deep foundation engineering. Topics covered include piles subject to ground movement, piles in difficult ground, special pile foundation, pile driving analysis and dynamic testing, and static pile load tests. Participants will learn how to deal with design and construction issues pertaining to deep foundations under more general and realistic practical situations.", + "title": "Advanced Topics in Pile Foundation Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5107QB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in earth-retaining structures and deep excavations. Topics include earth pressure theories, rigid retaining structures, flexible retaining structures, cellular cofferdams, retaining walls for deep excavations, support systems for deep excavations, and field monitoring. Students are taught to deal with design and construction issues pertaining to a spectrum of earth-retaining systems from low rigid retaining walls to flexible support systems for deep excavations. Students will also learn to apply the methods of limit state, such as BS8002 and Eurocode7, to the design of rigid and flexible retaining walls. Applications of commercial geotechnical FEM softwares are taught to aid in design of deep excavations to limit ground deformations and satisfy SLS requirements. At the end of the course, students are taught the application of advanced earth pressure theories, selection of appropriate retaining structures, and verification of capacity and movement requirements, using limit equilibrium and FEM analysis tools.", + "title": "Earth Retaining Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Together with \u201cCE5108B Deep Excavations Analysis and Modelling\u201d, this is an advanced module in earth\u2010retaining structures and deep excavations.\n\nTopics include earth pressure theories, rigid retaining structures, flexible retaining structures, cellular cofferdams, retaining walls for deep excavations, support systems for deep excavations, and field monitoring. Participants are taught to deal with design and construction issues pertaining to a spectrum of earth\u2010retaining systems from low rigid retaining walls to flexible support systems for deep excavations. They will also learn to apply the methods of limit state, such as BS8002 and Eurocode7, to the design of rigid and flexible retaining walls.\n\nApplications of commercial geotechnical FEM softwares are taught to aid in design of deep excavations to limit ground deformations and satisfy SLS requirements. At the end of the course, participants are taught the application of advanced earth pressure theories, selection of appropriate retaining structures, and verification of capacity and movement requirements, using limit equilibrium and FEM analysis tools.", + "title": "Key Principles and Concepts of Earth Retention Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5108A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-08-12", + "end": "2022-10-21", + "weekInterval": 2 + }, + "venue": "E3-06-05", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds upon the knowledge and skills acquired in \u201cCE5108A Key Principles and Concepts of Earth Retention Systems\u201d to cover the topic of deep excavations related to deep shafts and multi\u2010strut supported walls.\n\nParticipants are taught to deal with design and construction issues pertaining to deep excavations, such as drained and undrained conditions, as well as field monitoring practices. \n\nApplications of commercial geotechnical FEM software are taught to aid in design and analysis of deep excavations to limit ground deformations and satisfy both serviceability requirements as well as Eurocode 7 ultimate limit states.", + "title": "Deep Excavations Analysis and Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5108B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-01-13", + "end": "2023-03-17", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 10 + ] + }, + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Together with \"CE5108QB Deep Excavations Analysis and Modelling\", this is an advanced module in earth\u2010retaining structures and deep excavations. Topics include earth pressure theories, rigid retaining structures, flexible retaining structures, cellular cofferdams, retaining walls for deep excavations, support systems for deep excavations, and field monitoring. Participants are taught to deal with design and construction issues pertaining to a spectrum of earth\u2010retaining systems from low rigid retaining walls to flexible support systems for deep excavations. They will also learn to apply the methods of limit state, such as BS8002 and Eurocode7, to the design of rigid and flexible retaining walls. Applications of commercial geotechnical FEM softwares are taught to aid in design of deep excavations to limit ground deformations and satisfy SLS requirements. At the end of the course, participants are taught the application of advanced earth pressure theories, selection of appropriate retaining structures, and verification of capacity and movement requirements, using limit equilibrium and FEM analysis tools.", + "title": "Key Principles and Concepts of Earth Retention Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5108QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-09-27T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds upon the knowledge and skills acquired in \u201cKey Principles and Concepts of Earth Retention Systems\u201d to cover the topic of deep excavations related to deep shafts and multi\u2010strut supported walls. Participants are taught to deal with design and construction issues pertaining to deep excavations, such as drained and undrained conditions, as well as field monitoring practices. Applications of commercial geotechnical FEM software are taught to aid in design and analysis of deep excavations to limit ground deformations and satisfy both serviceability requirements as well as Eurocode 7 ultimate limit states.", + "title": "Deep Excavations Analysis and Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5108QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "CONSTITUTIVE RELATIONSHIP IN GEOTECHNICAL ANALYSIS", + "title": "Constitutive Relationship in Geotechnical Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to integrate the various concepts and components of temporary earth retaining structure, underground construction and major geotechnical works design which have been covered in the other modules into a properly executed geotechnical analysis and design project. As such, the student will be advised to take it only either in the last 2 semester. The requirements of the project will include interpretation of site investigation data, derivation of design parameters, use of computer or finite element software for the wall and ground movement as well as drawdown and implications for adjacent structures, design of wall, strutting and waling systems, and proposal of an appropriate ground instrumentation programme. Student will be given a maximum of 2 semesters to complete their projects. At the end of the projects, students will be required to submit a report of their findings and give an oral presentation, which will be graded.", + "title": "Underground Construction Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5111", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the various methods of excavation construction and apply the fundamental knowledge of structural mechanics to design a wide range of earth retaining walls and their support systems. The key focus is to develop the capability to design various types of retaining walls, ground anchorage, walers, struts, kingposts, bracing and connection details. It will also cover the design of working platforms which are often required in deep excavations, as well as methods of jointing and splicing to allow incorporation of instrumentation. The course will cover both steel and reinforced concrete retaining walls, such as sheetpile, soldier piles, timber lagging, contiguous bored piles, diaphragm walls and etc. The course enables students to acquire further knowledge on soil-structure interaction and gain practical skills through the lectures, case studies and design projects.", + "title": "Structural Support Systems for Excavation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5112", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students the essential concepts and methodology for the planning, design and implementation of site investigation and ground instrumentation programmes. The module will be broadly divided into two parts. The first part covers various aspects of site investigation such as the planning, design, density of bore holes, sampling technology and disturbance, in-situ and laboratory testing and geophysical methods. The second part covers various aspects of ground instrumentation such as monitoring of ground movement, drawdown, excess pore pressures, strut forces, wall deflection and observational methods. This module enables students to acquire the knowledge and practical skills through the lectures, case studies and projects.", + "title": "Geotechnical Investigation & Monitoring", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the essential concepts and methodology for the planning, design and implementation of geotechnical ground investigation for infrastructure, underground construction, and built environment construction.\n\nThe module will be broadly divided into two parts. The first part covers various aspects of site investigation such as the planning, design, density of bore holes, sampling technology and disturbance. The second part covers various aspects of in\u2010situ and laboratory testing of soils and rocks.\n\nThe module will cover ground investigation concepts and practices according to new Eurocode EC7. \nThis module enables participants to acquire the knowledge and practical skills through the lectures, case studies and projects.", + "title": "Geotechnical Site Investigation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5113A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1400", + "weeks": [ + 8, + 9, + 10, + 12 + ], + "venue": "LT1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9, + 10 + ], + "venue": "E4-04-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "E1-06-07", + "day": "Saturday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the essential concepts and methodology for the planning, design and implementation of geophysical methods for geotechnical site investigation, and ground instrumentation and monitoring programmes.\n\nThe module will be broadly divided into two parts. The first part covers the planning and practices of various type of geophysical methods used in geotechnical site investigation. Basic type of geophysical methods: seismic, resistivity and ground radar and others will be covered. The second part covers various aspects of ground instrumentation and sensors for the measurement and monitoring of ground movement, drawdown, excess pore pressures, strut forces, wall deflection and settlement. Concept and practices of the observational methods in geotechnical works will be covered.\n\nThis module enables participants to acquire the knowledge and practical skills through the lectures, case studies and projects.", + "title": "Geophysical Methods & Geotechnical Monitoring", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5113B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-11-08", + "end": "2022-11-22" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-26", + "end": "2022-11-26" + }, + "venue": "EA-06-03", + "day": "Saturday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-12-03", + "end": "2022-12-03" + }, + "venue": "EA-06-03", + "day": "Saturday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the essential concepts and methodology for the planning, design and implementation of geotechnical ground investigation for infrastructure, underground construction, and built environment construction. The module will be broadly divided into two parts. The first part covers various aspects of site investigation such as the planning, design, density of bore holes, sampling technology and disturbance. The second part covers various aspects of in\u2010situ and laboratory testing of soils and rocks. The module will cover ground investigation concepts and practices according to new Eurocode EC7. This module enables participants to acquire the knowledge and practical skills through the lectures, case studies and projects.", + "title": "Geotechnical Site Investigation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5113QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the essential concepts and methodology for the planning, design and implementation of geophysical methods for geotechnical site investigation, and ground instrumentation and monitoring programmes. The module will be broadly divided into two parts. The first part covers the planning and practices of various type of geophysical methods used in geotechnical site investigation. Basic type of geophysical methods seismic, resistivity and ground radar and others will be covered. The second part covers various aspects of ground instrumentation and sensors for the measurement and monitoring of ground movement, drawdown, excess pore pressures, strut forces, wall deflection and settlement. Concept and practices of the observational methods in geotechnical works will be covered. This module enables participants to acquire the knowledge and practical skills through the lectures, case studies and projects.", + "title": "Geophysical Methods & Geotechnical Monitoring", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5113QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Traffic Flow & Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the basic principles and concepts of pavement design and rehabilitation for airfields and roads. Students will learn to understand the major aspects of structural and functional requirements of pavement, including load bearing capacity, material and thickness selection, durability against traffic and environmental loading, drainage and safety needs. Students will also learn the mechanisms of pavement distresses, and techniques and approaches of pavement rehabilitation. The principles of pavement rehabilitation in respect of nondestructive condition evaluation, pavement performance modelling and remaining life prediction will be addressed. The module requires each student to do a term project that involves identification of an aspect of pavement design or rehabilitation that warrants further study and description of the approach and technique of the proposed study. The module enables the students to acquire the knowledge of designing, maintaining and rehabilitating road and airfield pavements.", + "title": "Pavement Design & Rehabilitation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Friday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide the student with an intermediate course in the theory and practice of urban transportation planning, programming, and modeling of supply and demand components of transportation systems; to acquaint the student with the state of transportation planning practice as contrasted with analytical models, and familiarize the student with the history and status of transportation planning activities. At the end of this course, the student is expected to understand the \"4-step\" process, harness methodologies and tools used for transportation planning, and be capable of observing, analyzing, modeling, and inferring real-world transportation planning problems through tools learned.", + "title": "Transportation Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Public transportation, including public bus and massive\nrapid transit (MRT), plays a critical role for people\u2019s daily\nlife in the large cities such as Singapore, Hong Kong and\nLondon. This module introduces fundamental concepts,\ntangible operational strategies and planning as well as\ndeign principles for urban public transportation systems.\nThe major topics include urban public transportation\norganizational models and contract structures,\nperformance assessment and data collection methods,\nridership forecasting, public transportation assignment\nmodels, vehicle and crew scheduling, high ridership\ncorridor operational strategies, network design principles,\nintroduction to MRT service operations and planning.", + "title": "Urban Public Transportation Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Urban smart cities consist of highly integrative\nmultimodal transportation infrastructural assets that\nrequire condition monitoring, performance prediction,\nselection of treatment alternatives to ensure that the\noverall systemic transport infrastructures are performing\nto standards, reliable and resilient. This module aims to\nequip students with the engineering skills required for\nmanaging urban streets/highway and urban rail transport\ninfrastructural assets.", + "title": "Transport Infrastructure Asset Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The transportation industry has been collecting massive amounts of data captured from different sources and modern transport systems uses this data for planning, design, operations and management. In this module, students will learn the various forms of transportation data that are collected from modern systems and how to analyse this data. Skills such as statistical modeling, spatial and temporal data analytics, discrete choice modeling and machine learning will be covered in the module.", + "title": "Transportation Data Analytics and Modeling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Intelligent transportation systems and its simulation are crucial for efficient and effective management of urban transportation and mobility in modern cities. A broad range of diverse technologies, including information processing, computing, communications, control and electronics can be applied to our transportation systems and many simulation methods are adopted by transport agencies. The topics covered in this module include state-of-the-practice and state-of-the-art ITS technologies and simulation methods. This module enables the student opportunity acquiring the knowledge and practical skills through the lectures, field investigations, and course projects.", + "title": "Intelligent Transportation Systems and Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide senior level undergraduate and graduate students with an overall view of the transportation systems, means of managing and influencing the systems to achieve certain goals. The topics covered include the characteristics of land, sea and air transportation systems; roles and structure of government agencies in transportation management; environmental and social impact of transportation systems, travel demand management; public transport management; models of financing transportation services; regulation and deregulation of transportation services; roles of intelligent transportation systems in system management and policy implementation; case studies of transportation policies in several countries", + "title": "Transportation Management & Policy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will critically examine the dimensions of an integrated inter-modal transport system in relation to the changing logistics and supply chain practices of procurement, production and distribution. Themes and issues studied include the analysis of inter-modal choices using the total cost concepts in distribution, the international-domestic interface, advanced technologies in inter-modalism, the role of government in inter-modal integration. The module will also introduce simulation analysis for multi-modal operations, including building, calibration and validating models, output analysis and application programming interface.", + "title": "Intermodal Transportation Operations", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will equip students with tools to estimate and manage the energy demand for urban transport infrastructures. The module will start by providing a background of energy data and accounting in transport sector, followed by setting microeconomic foundation. Subsequently, methodologies for the disaggregate analysis of transport energy demand will be introduced. A case study of policies related to electric vehicles and their impact on energy demand will be discussed. The module will conclude with approaches to managing the energy demand for urban infrastructures.", + "title": "Energy Demand Analysis for the Built Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5214QA", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "ENG-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-03-02T10:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will teach concepts related to the supply side of energy systems focusing on the transport sector. The module will start with supply-side concepts of microeconomics, followed by an analysis of energy investments in urban infrastructures. The policies to reduce GHG emissions in road transport will then be discussed. A case study of grid-based electricity supply in the era of electric vehicles will be introduced. It will conclude with supply-side policies to mitigate the impact of mobility on climate. The module will equip engineering students with tools to interact with energy economists.", + "title": "Mobility, Climate Change, and Energy Markets", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5214QB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at introducing the student to wave hydrodynamics and the resulting wave loads on offshore structures. It covers linear wave theory together with its engineering properties such as particle kinematics, pressure fields, energy propagation, shoaling, and diffraction. Nonlinear wave theory and the resulting properties such as mass transport are also introduced. The module covers random waves and their short-term and long-term statistics which are useful in design wave selection. The wave forces on offshore structures of different sizes are then discussed, including Morison equation for small structures, and diffraction theory for large structures. Accordingly, the corresponding numerical techniques are introduced.", + "title": "Wave Hydrodynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Knowledge of wave mechanics and the prediction of hydrodynamic loads are essential for the design of all types of offshore structures. This module covers the theory of regular and random waves, including potential flow, wave kinematics, boundary conditions, dispersion relation, phase/group velocity, wave pressure and energy, principle of superposition, wave spectrum, and wave statistics.", + "title": "Ocean Waves", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5307A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Wave and wind are valuable energy resources in the ocean. However, ocean wave and wind also generate substantial loading on marine structures used for a variety of purposes, such as harnessing the power of the ocean. This module covers the fundamental concepts of ocean wave and wind that is essential for an engineer designing structures that exploit the resources of the ocean. Topics include regular wave and random wave theory, wind characteristics and resources, and wind and wave energy devices.", + "title": "Ocean Wind and Wave", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5307AQA", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Knowledge of wave mechanics and the prediction of hydrodynamic loads are essential for the design of all types of offshore structures. This module covers the\nprediction of regular and random wave loads on small and large offshore structures, including added mass concept, Morison equation, hydrodynamic coefficients, diffraction theory, and boundary element method, response amplitude operators and force spectrum.", + "title": "Hydrodynamic Loads on Offshore Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5307B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The determination of wave and wind loading on structures is an integral step in the design of marine structures. The module will focus the potential and diffraction theories on wave loading. These fundamental theories are used widely in the design of offshore infrastructure and renewable energy. The module will also focus on the wind loading which is fundamental to the design of offshore wind turbines.", + "title": "Ocean Environmental Loads", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5307BQB", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the following topics:\nNon-linear effects of small amplitude waves\nStokes wave theories\nDepth-integrated wave theories \nApplications to various geophysical flow problems", + "title": "Finite Amplitude Wave Theories & Their Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5307C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module consists of two parts related to coastal processes and sediment transport. The first part covers some basics of nearshore hydrodynamics, including wave shoaling, wave refraction, and surf zone processes. Also, the interaction between aquatic plants and waves will be introduced.\n\nThe second part of the module will introduce coastal sediment transport, including basic concepts, fundamental mechanisms, cross-shore and longshore sediment transport, effects of sea level rise on coastal morphology, coastline modelling and coastal protections (e.g., beach nourishment, groynes). In the presence of coastal structures, scour and scour protection will also be introduced.", + "title": "Coastal Processes and Protection", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5308", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers covers some basics of nearshore hydrodynamics, including wave shoaling, wave refraction, and surf zone processes (wave breaking, wave-induced setup, and longshore current). The student will also be introduced to the concepts of coastal boundary layer flows, which determines the driving forces for coastal sediment transport, e.g., bottom friction. Additionally, aquatic vegetation's ability to curb coastal erosion will be discussed.", + "title": "Coastal Processes and Protection", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5308QA", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "EA-06-03", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-03-03T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce coastal processes of sediment transport, coastal erosion due to waves, current and sea-level rise, as well as protections against coastal erosion. The students will begin with learning the basic concepts of sediment transport. Fundamental knowledge of typical coastal processes will then be introduced, e.g. cross-shore and longshore sediment transport, the effect of sea level rise on coastline recession, the effects of coastal defense structures on beach morphology, and coastal protection measures such as beach nourishment. In the presence of coastal structures such as seawalls and breakwaters, the scour problem will also be introduced.", + "title": "Sediment Transport and Coastal Protection", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5308QB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Hydroinformatics is concerned with the development and application of mathematical modelling and advanced information technology tools to hydraulics, hydrological and environmental problems of urban, inland and coastal waters. On the technical side, in addition to computational hydraulics, hydroinformatics has a strong interest in the use of techniques originating in data-driven techniques, such as artificial neural networks, support vector machines and evolutionary programming.", + "title": "Hydroinformatics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5310", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course deals in detail with the transport processes of environmental systems such as the atmosphere, freshwater systems, estuaries, coastal seas and oceans. The inter-linkages between environmental media and the major human and environmental impacts are explained at an introductory level.\n\nAfter this introduction of fundamental processes the course introduces and focuses on widely used computational environmental modelling concepts including the numerical aspects and the end result.\n\nThe module will equip students to understand the importance of transport processes to environmental impacts, limitations of computer/mathematical models to solve the transport processes and how to obtain relevant answers solutions given the limitations of the models.", + "title": "Environmental modelling with computers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the introduction and analysis of flows in open channels. The basic concepts, the fundamental laws of fluid mechanics (conservation of mass, momentum, and energy), and the hydraulic jump will be introduced, followed by the introduction and analysis of the uniform flow, gradually varied flow, rapidly varied flow, and unsteady flow. The knowledge will be applied to the computation of the flows and designs of hydraulic structures. Analytical and numerical techniques will be discussed, and programming assignments will be carried out in widely-used software.", + "title": "Open Channel Hydraulics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5312", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the hydrology of groundwater, a very important but often overlooked component in the hydrologic cycle. It starts by introducing the principles of groundwater flow, followed by its flow equations and modeling. It then discusses flow to wells and addresses groundwater monitoring, contamination and remediation. It ends with topics of special interests such as surface water\ngroundwater interactions and sea water intrusions.", + "title": "Groundwater Hydrology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "HEWRM Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CE5314", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fundamental mathematical and physical elements of the Earth climate with specific focus on clouds, precipitation, energy budget, planetary boundary layer and extreme weather phenomena. This knowledge is relevant for a better assessment of water and energy resources and impact assessments. Beyond introducing fundamental climatic processes, the module provides methods for the stochastic generation of climatic variables in a stationary and changing climate. It finally discusses broadly issues related to greenhouses gas emissions and future climate projections, outlining causes and potential solutions.", + "title": "Climate Science for Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5315", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to the basic issues of collecting and using data as applied to urban hydraulic and hydrological systems. Topics to be covered will include data, data collection and internet of things (IOT), data storage, meta-data, and an introduction to Geographical Information Systems, and data visualization. Students will work on a project utilizing an actual instrumented catchment to appreciate the practical issues. By the end students should appreciate the issues related to capturing and visualizing hydraulic related data for smart cities.", + "title": "Water Resources for Smart and Liveable Cities: Introduction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5316A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-09-27T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces CE students to practical issues in the process from data collection to modelling rainfall to runoff. The focus will be on urban environments where the impact of flooding is magnified due to high population density. Students will collect, clean and use data to setup and run a basic catchment rainfall-runoff model. The understanding gained will provide students with a greater appreciation in the methodology used to translate fundamental knowledge to practical real-world situations specifically floods in an urban catchment.", + "title": "Water Resources Modeling for Urban Catchments", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5316B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces biophysical principles regulating exchanges of water, energy, and elements in the soilplant-atmosphere continuum and their mathematical descriptions. The presented material will address different spatial scales from a single tree up to global scale and different temporal scales from minutes to decades. Essential features of plant microclimate and plant hydraulic transport, soil hydrology, and terrestrial ecology will be introduced. The module will also provide the foundations to carry out numerical simulations of water and carbon fluxes with state-of-the-art models.", + "title": "Eco-hydrology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5317A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-02-28T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on marine and coastal environments with an emphasis on salt marshes, seagrass, kelp, mangrove, and coral reef habitats. We will study the carbon and nutrient cycles of these ecosystems and their interaction with the surrounding water environments. We will also discuss how these ecosystems could help mitigate the impact of sea-level rise and climate change. The presented material will cover 1) the role of blue carbon for climate change mitigation targets; 2) the role of aquatic vegetation in coastal erosion; 3) successes and failures of restoration projects.", + "title": "Nature Based Solutions for Coastal Protection", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5317B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Climate adaptation projects are implemented in complex socioeconomic and environmental systems and have long life spans, resulting in many uncertainties. Under such conditions, conventional approaches to infrastructure planning and development may not lead to optimal solutions. This module introduces methods and tools for decision-making for climate adaptation. Besides conventional methods, such as cost benefit analysis and multi-criteria analysis applied to climate adaptation infrastructure, the focus will be on flexible solutions that can adapt to changing conditions and new information, such as adaptive pathways and real options analysis. This knowledge is relevant to evaluate many future civil and environmental infrastructure projects.", + "title": "Decision-making for Climate Adaptation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5318", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The world is seeing a rising popularity of circular economy that adopts the concept of reduction, reuse, recycling and recovery of materials in production, distribution and consumption processes. This module provides an introduction to circular economy and its application in sustainable development. A list of ubiquitous materials are covered, such as water, plastic, glass, construction materials & wastes. Each topic will look at global best practices and local context. Guest lecturers from public agencies will be invited to talk about Singapore\u2019s sustainable urban planning. Student will learn the principles and tools to assess the circularity and sustainability of given cases.", + "title": "Circular Economy for Sustainable Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5319", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the biggest challenges for humankind in the 21st century is how can we transit into a low carbon future to battle climate change and simultaneously meet sustainable water, food, and energy development goals? This module will introduce the latest knowledge on water-food-energy-carbon (WFEC) nexus and offer students modeling tools and policy instruments to understand the connections, trade-offs, and synergies between WFEC through the lens of system and interdisciplinary thinking. This module integrates engineering, climate, hydrology, economics and social sciences and covers broad topics on Earth System Modelling, Earth observations, Integrated Assessment Modelling, decision analytics and data sciences.", + "title": "Water-Food-Energy-Carbon Nexus", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5320", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the basic principles to the numerical methods used for analysis of mechanics and environmental flow problems. Fundamental concepts in eigen-analysis and finite difference method, and the associated convergence and stability issues will be covered, with applications in engineering mechanics problems. Fundamental concepts and issues related to environmental flow problems will be covered including the concept of box models, transport processes and the issues related to applying numerical methods for analysis. The module will enable the students to acquire the numerical analysis knowledge and computational skills through miniprojects\nand homework assignments. Students will also use an established software as part of the class.", + "title": "Numerical Methods in Mechanics & Envr. Flows", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5377", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theories and processes commonly used in industrial wastewater control. Topics covered in this course include characteristics of industrial wastewater, control theories and methods, treatment of specific industrial wastewaters. Treatment of specific industrial wastewaters will also be covered. The module will enable students to understand the particular problems associated with industrial wastewater control. The students will also gain the knowledge that is required for the design treatment process to effectively solve these problems.", + "title": "Industrial Wastewater Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the advanced concepts of toxic and hazardous waste management issues. Major issues are quantification and characterization, toxicity, impact on human health, state-of-the-art reduction technologies and ultimate disposal. This course will expose students to the risks faced by urban environmental ecosystems and human beings exposed to toxic and hazardous wastes generated through various human activities and the selection of treatment and disposal facilities, their design, construction, operation and maintenance principles.", + "title": "Toxic & Hazardous Waste Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "MEMBRANCE TECHNOLOGY IN ENVIRONMENTAL APPLICATIONS", + "title": "Membrance Technology in Environmental Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5408", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "FINITE ELEMENT ANALYSIS & APPLICATIONS", + "title": "Finite Element Analysis & Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5504", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "PLASTIC ANALYSIS OF STRUCTURES", + "title": "Plastic Analysis of Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5505", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with advanced knowledge on the design methodology for steel and composite structures. It also provides a learning experience on the key concepts and engineering concerns of steel-concrete composite frames and tubular structures. The topics covered include steel frame structures, steel-concrete composite systems, tubular structures and joints and long-span structures. Students will learn innovative design by exploring various structural schemes, conducting value engineering study and safety assessment of steel structural systems and their joints. The students are expected to demonstrate their proficiency in structural steel design through term paper projects. The target students include both undergraduate and graduate students who are involved in research or engineering practices related to structural steel.", + "title": "Advanced Structural Steel Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5509", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip participants with advanced design knowledge and skills on steel structures. This module provides participants with approaches in designing structural components and buildings using steel and its use to enhance buildability and productivity in prefabricated prefinished volumetric construction (PPVC). The participants will\nacquire fundamental knowledge and skills to perform design for structural elements and ensure the stability of steel structures. This enables the participants to conceive a safe and economical structural system using steel to improve productivity for the construction industry of Singapore.\n\nThe module is targeted at practicing engineers and postgraduate civil engineering students with a keen interest on structural steel design including the design for manufacturing and disassembly (DfMA) using PPVC technology.", + "title": "Advanced Structural Steel Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5509A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip participants with sufficient design knowledge and skills on steel\u2010concrete composite structures in their engineering career. This module provides participants with fundamental approaches in designing structural steel\u2010concrete components and buildings. The participants will acquire fundamental knowledge and skills to perform structural design for composite beams, slabs, columns, joints, multi\u2010storey buildings. This enables the participants to conceive a safe and economical structural system. The module is targeted at practicing engineers, post\u2010graduate civil engineering students and those with a keen interest on structural design.", + "title": "Design of Composite Steel and Concrete Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5509B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip participants with advanced design knowledge and skills on steel structures. This module provides participants with approaches in designing structural components and buildings using steel and its use to enhance buildability and productivity in prefabricated prefinished volumetric construction (PPVC). The participants will acquire fundamental knowledge and skills to perform design for structural elements and ensure the stability of steel structures. This enables the participants to conceive a safe and economical structural system using steel to improve productivity for the construction industry of Singapore. The module is targeted at practicing engineers and postgraduate civil engineering students with a keen interest on structural steel design including the design for manufacturing and disassembly (DfMA) using PPVC technology.", + "title": "Advanced Structural Steel Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5509QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-09-26T10:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip participants with sufficient design knowledge and skills on steel\u2010concrete composite structures in their engineering career. This module provides participants with fundamental approaches in designing structural steel\u2010concrete components and buildings. The participants will acquire fundamental knowledge and skills to perform structural design for composite beams, slabs, columns, joints, multi\u2010storey buildings. This enables the participants to conceive a safe and economical structural system. The module is targeted at practicing engineers, post\u2010graduate civil engineering students and those with a keen interest on structural design.", + "title": "Design of Composite Steel and Concrete Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5509QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an advanced knowledge on the design methodology for structural concrete. It also provides a learning experience on the key concepts and engineering concerns of concrete structures. The topics include advanced design philosophies and methods such as collapse load methods, limit design method and strut-and-tie method, design of openings in flexural members, seismic design, and design of various structural systems. The students are expected to demonstrate their proficiency in structural concrete design through term paper projects. The target students include both undergraduate and graduate students who are involved in research or engineering practice related to structural concrete.", + "title": "Advanced Structural Concrete Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5510", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to equip participants with fundamental approaches in designing structural concrete components and systems. The participants will learn refined methods in the design for action effects and for deflection and crack control, and in the structural detailing of concrete members. The module is targeted at civil engineers and those with a keen interest on advanced structural concrete design.", + "title": "Advanced Structural Concrete Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5510A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to equip participants with design knowledge and advanced skills in designing flat slab and irregular slab systems, slender columns, and non\u2010flexural members such as deep beams, corbels, dapped beams and beams with openings. The module is targeted at civil engineers and those with a keen interest on advanced structural concrete design.", + "title": "Rational Design of Structural Concrete Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5510B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to equip participants with fundamental approaches in designing structural concrete components and systems. The participants will learn refined methods in the design for action effects and for deflection and crack control, and in the structural detailing of concrete members. The module is targeted at civil engineers and those with a keen interest on advanced structural concrete design.", + "title": "Advanced Structural Concrete Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5510QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT7A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-09-27T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to equip participants with design knowledge and advanced skills in designing flat slab and irregular slab systems, slender columns, and non\u2010flexural members such as deep beams, corbels, dapped beams and beams with openings. The module is targeted at civil engineers and those with a keen interest on advanced structural concrete design.", + "title": "Rational Design of Structural Concrete Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5510QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 100 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with basic knowledge on the theory of plasticity and their application for analysis and design of civil engineering structures. The topics covered include basic concepts of plasticity; the plastic hinge; tools used in plastic analysis and design; plastic design of beams, portal frames and multi-storey buildings, and computer methods for analysing large scale framework. Students are taught to deal with general inelastic problems of frames including computer applications and numerical formulation. The module of specialized context targets at undergraduate and graduate students in research or engineering practices relating to structural analysis and design.", + "title": "Plastic Analysis Of Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5513", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this specialized module, students are taught fundamentals in plate bending and shell membrane theories including axisymmetric bending of shells of revolution. Topics covered include a brief introduction to the theory of elasticity; fundamentals of plate structures, plate bending theories and plate equations, energy principles, analytical and numerical analyses of plates, axisymmetric plates, orthotropic and laminated plates, vibration of plates, membrane theory for shells of revolution, membrane theory for shells of translations, energy method, axisymmetric bending of shells of revolution and design of reinforced concrete plate and shell structures. The module is intended for undergraduate and graduate students who wish to enhance their understanding in terms of analysis and design of plates and shells used in civil and infrastructure works.", + "title": "Plate & Shell Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5514", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Continuous and ad-hoc structural health monitoring to obtain information of the structural integrity and damage allows engineers to pre-empt structural failures by carrying out preventive maintenance and thus reducing service downtime and avoiding potential catastrophe due to undetected structural degradation. Digitalisation of civil structures with integrating sensor systems together with\nidentification algorithms allows the performance and health of the structures to be monitored in real-time to ensure safe and efficient operation. This module provides\nan overview of the state-of-the-art technologies and approaches implemented in civil structures in the field as well as cutting-edge techniques still under research and development.", + "title": "Structural Health Monitoring", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5515", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "2100", + "endTime": "2130", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides basic knowledge of structural stability and dynamics and apply to the analysis of civil engineering structures. The topics include principles of stability and dynamics; buckling of beams, columns and frames; design against local and overall stability. Dynamics analysis covers single-degree-of-freedom systems, multi-degree-of-freedom systems and continuous systems. Students are taught to deal with stability and vibration problems of frames including numerical formulation and to use computer packages to solve problems through projects encountered in engineering practice. The module targets students in research or engineering practices relating to structural engineering applications.", + "title": "Structural Stability & Dynamic", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5516", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip participants with the basic principles and concepts of structural stability for the analysis of civil engineering structures. Students will learn stability characteristics and design steel frames for local and global stability according to Eurocode 3 (EC3). The topics covered include general principles of stability, buckling of column, beamcolumn and frames. Students will also be taught how to deal with general stability problems of frames using computer applications and numerical formulation.\n\nThe module is targeted at post-graduate and senior under-graduate civil engineering students with a keen interest on stability analysis and design.", + "title": "Structural Stability Concepts & Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5516A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-01-07", + "end": "2023-02-18" + }, + "venue": "EA-06-03", + "day": "Saturday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-03-01T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is targeted at practicing civil engineers involved in planning, analysis and design of buildings. The primary objective of this module is to equip participants with fundamental understanding and technical knowledge needed for the dynamic analysis and design of buildings. The philosophy and concepts taught are applicable to onshore and offshore structures subjected to loadings resulting from sources such as earthquake, wind, waves and blast. Students will have to complete the dynamic analysis of a multi-dimensional structure using a software used in engineering practice.\n\nThe module is targeted at post-graduate and senior under-graduate civil engineering students with a keen interest on dynamic analysis and design.", + "title": "Structural Dynamics Concepts & Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5516B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Saturday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-04-26", + "end": "2023-04-26" + }, + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip participants with the basic principles and concepts of structural stability for the analysis of civil engineering structures. Students will learn stability characteristics and design steel frames for local and global stability according to Eurocode 3 (EC3). The topics covered include general principles of stability, buckling of column, beamcolumn and frames. Students will also be taught how to deal with general stability problems of frames using computer applications and numerical formulation. The module is targeted at post-graduate and senior under-graduate civil engineering students with a keen interest on stability analysis and design.", + "title": "Structural Stability Concepts & Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5516QA", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-03-01T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is targeted at practicing civil engineers involved in planning, analysis and design of buildings. The primary objective of this module is to equip participants with fundamental understanding and technical knowledge needed for the dynamic analysis and design of buildings. The philosophy and concepts taught are applicable to onshore and offshore structures subjected to loadings resulting from sources such as earthquake, wind, waves and blast. Students will have to complete the dynamic analysis of a multi-dimensional structure using a software used in engineering practice. The module is targeted at post-graduate and senior under-graduate civil engineering students with a keen interest on dynamic analysis and design.", + "title": "Structural Dynamics Concepts & Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5516QB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the analytical methods and techniques to evaluate projects from an economic perspective. The purpose of the evaluation is to enable rational project selection and capital allocation taking into consideration factors like risk, uncertainty, inflation, and foreign exchange.", + "title": "Engineering Economics & Project Evaluation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5603", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with in-depth knowledge on the role of constituent materials of concrete such as cements, mineral admixtures, and chemical admixtures and their interactions that affect properties of fresh and hardened concrete. It also provides students with in-depth knowledge on concrete response to stresses, time-dependent deformations, and durability of concrete exposed to severe environments. The module discusses the basic considerations and design philosophy for performance-based design of concrete mixtures and production of concrete. It also discusses the progress in concrete technology and the latest development on high-strength, high-performance, lightweight, and self compacting concrete. Sustainable development in construction industry and use of recycled aggregates and other recycled materials will be discussed as well. The module is targeted at post-graduate and final year undergraduate students who will gain knowledge from the module to complement their skill in structural design and to prepare them for their career as professional engineers.", + "title": "Advanced Concrete Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5604", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip civil engineering students with sufficient knowledge and skills on the durability of concrete structures and the basic principles and concepts of repair and retrofitting. Various factors affecting durability of concrete will be dealt with including non-destructive tests to assess durability. The module also emphasizes the technological and application aspects in the assessment and retrofit of concrete structures including causes of deterioration and various in-situ and non-destructive tests. The module is targeted at MSc civil engineering students and those with a keen interest in durability of concrete, assessment of concrete and retrofitting of concrete structures.", + "title": "Assessment and Retrofit of Concrete Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5610", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this course is to cover advanced topics in concrete and cementitious composites. Focus will be placed on special cement\u2010based materials that are fast replacing traditional normal density, low strength concrete in the construction industry, especially precast and repair and retrofit. More specifically special concretes and special processes and technology for particular types of structures are discussed. Case studies will used to illustrate construction and sustainability issues. Use of concrete and cementitious composites in a number of applications will also be covered.", + "title": "Special Types of Concrete and Cementitious Material", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5610A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip civil engineers with sufficient knowledge and skills on the durability of concrete structures and the basic principles and concepts of repair and retrofitting. Various factors affecting durability of concrete will be dealt with including non\u2010destructive tests to assess durability. The module also emphasizes the technological and application aspects in the assessment and retrofit of concrete structures\nincluding causes of deterioration and various in\u2010situ and nondestructive\ntests. The module is targeted at practicing civil engineers and those with a keen interest in durability of concrete, assessment of concrete and retrofitting of concrete structures.", + "title": "Concrete Repair and Retrofitting of Structural Concrete", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5610B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this course is to cover advanced topics in concrete and cementitious composites. Focus will be placed on special cement\u2010based materials that are fast replacing traditional normal density, low strength concrete in the construction industry, especially precast and repair and retrofit. More specifically special concretes and special processes and technology for particular types of structures are discussed. Case studies will used to illustrate construction and sustainability issues. Use of concrete and cementitious composites in a number of applications will also be covered.", + "title": "Concrete and Cementitious Composites", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5610QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-09-29T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip civil engineers with sufficient knowledge and skills on the durability of concrete structures and the basic principles and concepts of repair and retrofitting. Various factors affecting durability of concrete will be dealt with including non\u2010destructive tests to assess durability. The module also emphasizes the technological and application aspects in the assessment and retrofit of concrete structures including causes of deterioration and various in\u2010situ and nondestructive tests. The module is targeted at practicing civil engineers and those with a keen interest in durability of concrete, assessment of concrete and retrofitting of concrete structures.", + "title": "Repair and Retrofit of Concrete Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5610QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip civil engineering students with sufficient design knowledge and skills on precast structural concrete both for their\nfurther education and for their future engineering career. This module provides students with fundamental approaches in designing precast concrete components\nand structures. The students will acquire fundamental knowledge and approaches to section analysis and design, design of connections, floor diaphragm action,\nprecast frame structures and precast components. The module is targeted at MSc civil engineering students and those with a keen interest on precast concrete\ntechnology.", + "title": "Precast Concrete Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5611", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides participants with in\u2010depth knowledge on the role of constituent materials of concrete such as cements, mineral admixtures, and chemical admixtures and their interactions that affect properties of fresh and hardened concrete. It also provides participants with in\u2010depth knowledge on concrete response to stresses, time\u2010dependent deformations, and durability of concrete exposed to severe environments. The module discusses the basic considerations and design philosophy for performance\u2010based design of concrete mixtures and production of concrete. It also discusses the progress in concrete technology and the latest development on high\u2010strength, highperformance, lightweight, and self\u2010compacting concrete. Sustainable\ndevelopment in construction industry and use of recycled aggregates and\nother recycled materials will be discussed as well. The module is targeted\nat practicing engineers.", + "title": "Advanced Prestressed Concrete Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5611A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-02-27T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip civil engineers with sufficient design knowledge and skills on precast structural concrete both for their further education and for their future engineering career. This module provides participants with fundamental approaches in designing precast concrete components and structures. The participants will acquire fundamental knowledge and approaches to section analysis and design, design of connections, floor diaphragm action, precast frame structures and precast components. The module is targeted at practising civil engineers and those with a keen interest in precast concrete technology.", + "title": "Precast Structural Concrete Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5611B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides participants with in\u2010depth knowledge on the role of constituent materials of concrete such as cements, mineral admixtures, and chemical admixtures and their interactions that affect properties of fresh and hardened concrete. It also provides participants with in\u2010depth knowledge on concrete response to stresses, time\u2010dependent deformations, and durability of concrete exposed to severe environments. The module discusses the basic considerations and design philosophy for performance\u2010based design of concrete mixtures and production of concrete. It also discusses the progress in concrete technology and the latest development on high\u2010strength, highperformance, lightweight, and self\u2010compacting concrete. Sustainable development in construction industry and use of recycled aggregates and other recycled materials will be discussed as well. The module is targeted at practicing engineers.", + "title": "Advanced Prestressed Concrete Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5611QA", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "UTSRC-LT50", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-02-27T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip civil engineers with sufficient design knowledge and skills on precast structural concrete both for their further education and for their future engineering career. This module provides participants with fundamental approaches in designing precast concrete components and structures. The participants will acquire fundamental knowledge and approaches to section analysis and design, design of connections, floor diaphragm action, precast frame structures and precast components. The module is targeted at practising civil engineers and those with a keen interest in precast concrete technology.", + "title": "Precast Structural Concrete Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5611QB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with\nwork attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CE5666", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Engineering Fracture Mechanics (St)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5701A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module exposes students to how uncertainties present in civil engineering problems can be modeled and be used to assess the reliability of a component or system. The techniques for computing low failure probabilities will be taught. The basis of codified design will be illustrated. Students will also be exposed to advanced topics related to applications of reliability theory. Topics covered include basic probability concepts; uncertainty modeling and analysis; reliability analysis and design; system reliability; advanced topics.", + "title": "Reliability Analysis And Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction module to the commercial and technical challenges facing offshore infrastructure and renewable energy industry today. Students will be exposed to the technology of offshore wind and floating solar. They will learn the architecture, regulations, cost, environmental considerations, system design of a renewable energy structure. They will also be introduced to the concept of a very large floating structures. Students will then be required to enhance their learning on the feasibility study of an offshore renewable energy project in the Asia Pacific region.", + "title": "Introduction to Ocean Infrastructure & Renewables", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5716", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Lecture", + "size": 43, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-02-27T10:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction module to the commercial and technical challenges facing offshore infrastructure and renewable energy industry today. Students will be exposed to the technology of offshore wind and floating solar. They will learn the architecture, regulations, cost, environmental considerations, system design of a renewable energy structure. They will also be introduced to the concept of a very large floating structures. Students will then be required to enhance their learning on the feasibility study of an offshore renewable energy project in the Asia Pacific region.", + "title": "Introduction to Ocean Infrastructure & Renewables", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5716A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction module to the commercial and technical challenges facing offshore infrastructure and renewable energy industry today. Students will be exposed to the technology of offshore wind and floating solar. They will learn the architecture, regulations, cost, environmental considerations, system design of a renewable energy structure. They will also be introduced to the concept of a very large floating structures. Students will then be required to enhance their learning on the feasibility study of an offshore renewable energy project in the Asia Pacific region.", + "title": "Introduction to Ocean Infrastructure & Renewables", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5716QA", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Moorings and cables are important structures that are attached to floating infrastructure and floating renewables such as floating wind turbines and floating solar farms. Moorings are crucial for station-keeping, whereas cables are used for power transmission and electrification of the floating facilities. In this module, the students will be taught the fundamental concepts of analysis and design of moorings and cables. Topics include: types of mooring systems, power cables, design requirements, loads, mooring equipment, mooring/cable static and dynamic analysis, installation and monitoring", + "title": "Mooring and Cables for Ocean Infrastructure", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5717", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Moorings and cables are important structures that are attached to floating infrastructure and floating renewables such as floating wind turbines and floating solar farms. Moorings are crucial for station-keeping, whereas cables are used for power transmission and electrification of the floating facilities. In this module, the students will be taught the fundamental concepts of analysis and design of moorings and cables. Topics include: types of mooring systems, power cables, design requirements, loads, mooring equipment, mooring/cable static and dynamic analysis, installation and monitoring", + "title": "Mooring and Cables for Ocean Infrastructure", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5717B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Moorings and cables are important structures that are attached to floating infrastructure and floating renewables such as floating wind turbines and floating solar farms. Moorings are crucial for station-keeping, whereas cables are used for power transmission and electrification of the floating facilities. In this module, the students will be taught the fundamental concepts of analysis and design of moorings and cables. Topics include types of mooring systems, power cables, design requirements, loads, mooring equipment, mooring/cable static and dynamic analysis, installation and monitoring", + "title": "Mooring and Cables for Ocean Infrastructure", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5717QB", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Floating structures have wide applications beyond their traditional use in the oil and gas industry. For land-scarce cities such as Singapore, floating infrastructure provide opportunities for creating space for uses such as parks, storage facilities, residential areas, and farms. Floating structures can also be used for harnessing offshore renewables such as wind and solar energy. This module covers the first-principles analysis methods for different types of floating structures used for a variety of purposes including floating infrastructure, floating wind turbines and floating solar farms. Topics include environmental conditions, calculations of loads and load effects, floating stability, dynamic analysis and station-keeping.", + "title": "Analysis of Floating Infrastructure & Renewables", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5718A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module applies the analysis methods covered in CE5718QA for the design of floating infrastructure and floating renewables such as floating wind turbines and floating solar farms, in accordance to design codes and criteria. Topics include design principles, load/material factors, construction and installation, and floater motion control system. There is a design project to provide the opportunity to apply what is taught, and simulations are performed using software packages.", + "title": "Design of Floating Infrastructure & Renewables", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5718B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Floating structures have wide applications beyond their traditional use in the oil and gas industry. For land-scarce cities such as Singapore, floating infrastructure provide opportunities for creating space for uses such as parks, storage facilities, residential areas, and farms. Floating structures can also be used for harnessing offshore renewables such as wind and solar energy. This module covers the first-principles analysis methods for different types of floating structures used for a variety of purposes including floating infrastructure, floating wind turbines and floating solar farms. Topics include environmental conditions, calculations of loads and load effects, floating stability, dynamic analysis and station-keeping.", + "title": "Analysis of Floating Infrastructure & Renewables", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5718QA", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module applies the analysis methods covered in CE5718QA for the design of floating infrastructure and floating renewables such as floating wind turbines and floating solar farms, in accordance to design codes and criteria. Topics include design principles, load/material factors, construction and installation, and floater motion control system. There is a design project to provide the opportunity to apply what is taught, and simulations are performed using software packages.", + "title": "Design of Floating Infrastructure & Renewables", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5718QB", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces design principles for fixed ocean infrastructure to harvest the offshore wind energy, which represents a most popular renewable energy resource in the ocean since 1990s. With the technological advancement and plans for deployment further offshore, the design of the support structures for offshore wind turbines becomes increasingly challenging. This module covers the basic design principles for the support structures of the offshore wind turbines through the limit state concepts, anchored on the state-of-the-art engineering practices and engineering guidelines. The module will allow students to develop capabilities in designing fixed structures supporting the next-generation harvesting offshore wind turbines.", + "title": "Design of Fixed Wind Turbine Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5719A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce the fundamentals and engineering practices for the construction and monitoring of fixed ocean infrastructure to harvest the offshore wind energy. This module extends the design principles in CE5719QA to cover the installation of the support structures for offshore wind turbine and monitoring of the structural damage caused by the environmental actions on such structures. The module will allow students to understand the basic principles in assessing the performance of the support structures under cyclic environmental and operational actions, as well as engineering approaches for corrosion protection for these structures operating offshore.", + "title": "Integrity of Fixed Wind Turbine Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5719B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces design principles for fixed ocean infrastructure to harvest the offshore wind energy, which represents a most popular renewable energy resource in the ocean since 1990s. With the technological advancement and plans for deployment further offshore, the design of the support structures for offshore wind turbines becomes increasingly challenging. This module covers the basic design principles for the support structures of the offshore wind turbines through the limit state concepts, anchored on the state-of-the-art engineering practices and engineering guidelines. The module will allow students to develop capabilities in designing fixed structures supporting the next-generation harvesting offshore wind turbines.", + "title": "Design of Fixed Wind Turbine Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5719QA", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-07", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-02-28T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce the fundamentals and engineering practices for the construction and monitoring of fixed ocean infrastructure to harvest the offshore wind energy. This module extends the design principles in CE5719QA to cover the installation of the support structures for offshore wind turbine and monitoring of the structural damage caused by the environmental actions on such structures. The module will allow students to understand the basic principles in assessing the performance of the support structures under cyclic environmental and operational actions, as well as engineering approaches for corrosion protection for these structures operating offshore.", + "title": "Integrity of Fixed Wind Turbine Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5719QB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction of offshore geotechnical engineering which is a pre-requisite to designing of various foundations for supporting ocean and renewable energy infrastructure. Students will learn the fundamental of geotechnical engineering principles that uniquely applied to offshore environment, as opposed to landbased geotechnical engineering, specifically to support ocean and renewable energy infrastructure. The topics covered include: offshore design considerations; site investigations; soil response under cyclic loading, soil testing and interpretations. Furthermore, application of the fundamental to basic offshore foundation systems, i.e. shallow and deep foundations for bottom founded structures, e.g. jacket platform and wind turbines, will be introduced.", + "title": "Offshore Geomechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5720A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with advanced aspects of various foundations for supporting ocean and renewable energy infrastructure. Complementing CE5720QA, in this module students will learn advanced soil-structure interaction analyses for both fixed and floating structures. The topics covered include: pile group responses and pile driveability analysis; shallow foundations for mobile structures, anchor foundations and pipeline soil interactions. Students will gain an advanced understanding in designing various foundation systems for ocean and renewable energy infrastructure.", + "title": "Offshore Foundation Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5720B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction of offshore geotechnical engineering which is a pre-requisite to designing of various foundations for supporting ocean and renewable energy infrastructure. Students will learn the fundamental of geotechnical engineering principles that uniquely applied to offshore environment, as opposed to landbased geotechnical engineering, specifically to support ocean and renewable energy infrastructure. The topics covered include offshore design considerations; site investigations; soil response under cyclic loading, soil testing and interpretations. Furthermore, application of the fundamental to basic offshore foundation systems, i.e. shallow and deep foundations for bottom founded structures, e.g. jacket platform and wind turbines, will be introduced.", + "title": "Offshore Geomechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5720QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-09-27T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with advanced aspects of various foundations for supporting ocean and renewable energy infrastructure. Complementing CE5720QA, in this module students will learn advanced soil-structure interaction analyses for both fixed and floating structures. The topics covered include pile group responses and pile driveability analysis; shallow foundations for mobile structures, anchor foundations and pipeline soil interactions. Students will gain an advanced understanding in designing various foundation systems for ocean and renewable energy infrastructure.", + "title": "Offshore Foundation Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5720QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Wave and wind are valuable energy resources in the ocean. However, ocean wave and wind also generate substantial loading on marine structures used for a variety of purposes, such as harnessing the power of the ocean. This module covers the fundamental concepts of ocean wave and wind that is essential for an engineer designing structures that exploit the resources of the ocean. Topics include regular wave and random wave theory, wind characteristics and resources, and wind and wave energy devices.", + "title": "Ocean Wind and Wave", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5721A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The determination of wave and wind loading on structures is an integral step in the design of marine structures. The module will focus the potential and diffraction theories on wave loading. These fundamental theories are used widely in the design of offshore infrastructure and renewable energy. The module will also focus on the wind loading which is fundamental to the design of offshore wind turbines.", + "title": "Ocean Environmental Loads", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5721B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Wave and wind are valuable energy resources in the ocean. However, ocean wave and wind also generate substantial loading on marine structures used for a variety of purposes, such as harnessing the power of the ocean. This module covers the fundamental concepts of ocean wave and wind that is essential for an engineer designing structures that exploit the resources of the ocean. Topics include regular wave and random wave theory, wind characteristics and resources, and wind and wave energy devices.", + "title": "Ocean Wind and Wave", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5721QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-09-29T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The determination of wave and wind loading on structures is an integral step in the design of marine structures. The module will focus the potential and diffraction theories on wave loading. These fundamental theories are used widely in the design of offshore infrastructure and renewable energy. The module will also focus on the wind loading which is fundamental to the design of offshore wind turbines.", + "title": "Ocean Environmental Loads", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5721QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "GIS IN CIVIL ENGINEERING", + "title": "Gis in Civil Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5803", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today's construction, there is increasing competition from global players with international participation. Due to this competition, a company, for its own survival, will need to venture into construction markets overseas. This course has been repositioned with a new title and content to give in-depth coverage of issues that affect engineering constructors involved in large-scale infrastructure projects in international construction markets. The course goes beyond the basics covered in the first undergraduate course and emphasises the global characteristics of large-scale civil infrastructure projects. Specific topics include international construction markets and project financing, risk management, value management, competitive bidding, integrated construction logistics, computer-integrated scheduling and resource allocation, construction modeling and simulation. Students benefit from the experience of speakers from large international engineering constructor companies involved in the development of such infrastructure projects. This course equips students to successfully manage complex infrastructure projects in international construction markets. They will learn to manage complex construction logistics and value chain from design to construction. The course will also deal with the problems of financing and managing the risk of such large-scale projects. Students will also learn advanced computerised techniques for project planning, modeling and simulation.", + "title": "Global Infrastructure Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5804", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Design for Manufacture and Assembly (DfMA) aims at ease of manufacture and assembly efficiency in order to increase overall productivity in construction. This course discusses the concepts of constructability and examines the principles of DfMA from the perspective of manufacture and assembly, including the use of BIM and digital technologies while covering logistical considerations to realise just-in-time production and delivery.\n\nThis course also gives an overview of construction planning with particular considerations for equipment selection and fleet size determination. It also examines productivity enhancement technologies and application of simulation to improve productivity.", + "title": "DfMA & Productivity Analytics in Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5805", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In a project,\u00a0the\u00a0selection\u00a0of\u00a0construction\u00a0method and\u00a0equipment\u00a0are\u00a0important\u00a0considerations\u00a0that\u00a0can\u00a0affect\u00a0project\u00a0productivity.\u00a0In\u00a0this\u00a0context,\u00a0this\u00a0course\u00a0gives\u00a0an\u00a0overview\u00a0of\u00a0construction\u00a0planning\u00a0with\u00a0particular\u00a0 considerations\u00a0for\u00a0equipment\u00a0selection\u00a0and\u00a0fleet\u00a0size\u00a0determination.\u00a0It\u00a0will\u00a0examineproductivity\u00a0enhancement\u00a0frameworks\u00a0and\u00a0technologies.\u00a0Finally,\u00a0the\u00a0concepts\u00a0of\u00a0simulation\u00a0to\u00a0analyse\u00a0and\u00a0improve\u00a0productivity\u00a0 will\u00a0be\u00a0taught\u00a0via\u00a0a\u00a0hands-on\u00a0application.", + "title": "Construction Productivity Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5805A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Design for Manufacture and Assembly (DfMA) aims at ease of manufacture and assembly efficiency in order to increase overall productivity in construction. With this design approach, waste can be eliminated, construction time can be reduced drastically and cost can be lowered. This course discusses the concepts of constructability and examines in detail the principles of DfMA from the perspective of manufacture and assembly. It also covers logistical considerations to realise just\u2010in\u2010time production and delivery. BIM and digital technologies will also be discussed.", + "title": "Design for Manufacture and Assembly", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5805B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-02-27T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In a project, the selection of construction method and equipment are important considerations that can affect project productivity. In this context, this course gives an overview of construction planning with particular considerations for equipment selection and fleet size determination. It will examine productivity enhancement frameworks and technologies. Finally, the concepts of simulation to analyse and improve productivity will be taught via a hands-on application.", + "title": "Construction Productivity Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5805QA", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Design for Manufacture and Assembly (DfMA) aims at ease of manufacture and assembly efficiency in order to increase overall productivity in construction. With this design approach, waste can be eliminated, construction time can be reduced drastically and cost can be lowered. This course discusses the concepts of constructability and examines in detail the principles of DfMA from the perspective of manufacture and assembly. It also covers logistical considerations to realise just\u2010in\u2010time production and delivery. BIM and digital technologies will also be discussed.", + "title": "Design for Manufacture and Assembly", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5805QB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "UT-AUD2", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-02-27T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the concepts, methodologies and tools to successfully control a project on site. In particular, they will learn to organise, plan and schedule a project for execution, and put in place controls for schedule and cost. They will learn advanced planning functions that include schedule compression, delay analysis and risk management. They will also learn to implement lean construction concepts which will dramatically improve performance by reducing waste, cost and increase value. Project plans can be made reliable with commitments from stakeholders. Students will learn to diagnose a construction process and devise strategies to increase productivity.", + "title": "Advanced Project Management with Lean Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5806", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the concepts, methodologies and tools to successfully control a project on site. In particular, they will learn to organise, plan and schedule a project for execution, and put in place controls for schedule and cost. They will learn advanced planning functions that include schedule compression, delay analysis and risk management.", + "title": "Advanced Construction Planning & & Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5806A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-02-28T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the concepts, methodologies and tools to successfully manage a project on site while achieving higher productivity. Lean construction concepts will dramatically improve performance by reducing waste, cost and increase value. Project plans can be made reliable with commitments from stakeholders. Students will learn to diagnose a construction process and devise strategies to increase productivity.", + "title": "Lean Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5806B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-03-07", + "end": "2023-04-25" + }, + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the concepts, methodologies and tools to successfully control a project on site. In particular, they will learn to organise, plan and schedule a project for execution, and put in place controls for schedule and cost. They will learn advanced planning functions that include schedule compression, delay analysis and risk management.", + "title": "Advanced Construction Planning & Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5806QA", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 155, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-02-28T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the concepts, methodologies and tools to successfully manage a project on site while achieving higher productivity. Lean construction concepts will dramatically improve performance by reducing waste, cost and increase value. Project plans can be made reliable with commitments from stakeholders. Students will learn to diagnose a construction process and devise strategies to increase productivity.", + "title": "Lean Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5806QB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 155, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital technology is rapidly changing the face of construction and has a significant effect on improving project delivery. Technologies are impacting construction logistics. The objective of this module is to introduce students to the current state-of-the-art in terms of digital technology implementations in building and construction. This module will also introduce students to several data analytic techniques often used in conjunction with these digital technologies. It also examines supply and demand planning for an agile and lean logistics, and the application of technologies in this aspect of the project. It also covers management of subcontractors to improve project delivery.", + "title": "Integrated Digital Delivery (IDD)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5807", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To realise the Integrated Digital Delivery (IDD) concept, a paradigm shift within the construction industry must take place. Embracing Digital technology is necessary as it is rapidly changing the face of construction. The objective of this module is to introduce students to the current state-of-the-art in terms of digital technology implementations in building and construction. This module will also introduce students to several data analytic techniques often used in conjunction with these digital technologies, to improve decision making on site.", + "title": "Digital Technologies for Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5807A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-09-28T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As part of the Architectural, Engineering and Construction (AEC) industry\u2019s push towards Integrated Digital Delivery (IDD), logistics and subcontracting form an integral part of realising this framework. In particular, this course looks at supply and demand planning for an agile and lean logistics, especially where digital technologies (such as collaborative platforms and RFIDs) can be leveraged. It also looks at management of subcontractors to improve project delivery. Specific topics on value engineering, smart logistics technologies, change management and value stream mapping will be covered to reduce cost and waste while delivering value in projects.", + "title": "Integrated Construction Logistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5807B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To realise the Integrated Digital Delivery (IDD) concept, a paradigm shift within the construction industry must take place. Embracing Digital technology is necessary as it is rapidly changing the face of construction. The objective of this module is to introduce students to the current state-of-the-art in terms of digital technology implementations in building and construction. This module will also introduce students to several data analytic techniques often used in conjunction with these digital technologies, to improve decision making on site.", + "title": "Digital Technologies for Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5807QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-09-28T10:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital transformation allows the construction industry to overcome challenges such as supply chain disruptions and delays in projects. Under the Construction Industry Transformation Map (ITM), Integrated Digital Delivery (IDD) involves the use of digital technologies to integrate work processes and connect stakeholders throughout the project lifecycle. The technologies of Industry 4.0 support this effort. This course provides learners with an overview of the industry transformation efforts and introduces technologies such as cyber-physical systems, sensors, internet of things (IoT) and artificial intelligence (AI). In addition to lectures and projects, there would be sharing by industry practitioners to facilitate learning.", + "title": "Integrated Construction Logistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5807QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Virtual Design and Construction (VDC) features the integration and management of multi-disciplinary Building Information Models (BIM). The goal of the course is to enable participants to understand the business value of VDC, and how it can be applied to current infrastructure and building projects as well as the technology underpinning BIM.\n\nSpecifically, the course will expose participants to the core principles and methodologies of VDC and equip them with competencies to create, manipulate and update the data residing in BIM. Specific topics include Integrated Project Delivery, BIM quality, Lean Design Management, Process Mapping, Algorithmic Thinking, and understanding of data standards.", + "title": "Digital Design and Construction (BIM and VDC)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5808", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Building Information Models are central repositories of data and information about the building over its lifecycle. The objective of this module is to enable participants to understand the technology underpinning building information models, and the different data standards involved. This will allow students to create, manipulate and update building information models at the data level. The specific topics will include Algorithmic Thinking, object-oriented modelling, digital design (\u201cComputational BIM\u201d) and understanding of current data standards used in information modelling within the industry.", + "title": "Virtual Design in BIM", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5808A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Virtual Design and Construction (VDC) features the integration and management of multi-disciplinary Building Information Models (BIM). The goal of the course is to enable participants to understand the business value of VDC, and how it can be successfully applied to current infrastructure and building projects. Specifically the objective of the course is to expose participants to the core principles and methodologies of VDC. These include topics on Integrated Project Delivery, BIM quality, Lean Design Management, and Process Mapping.", + "title": "Advanced Digital Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5808B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-19", + "end": "2022-10-24" + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building Information Models are central repositories of data and information about the building over its lifecycle. The objective of this module is to enable participants to understand the technology underpinning building information models, and the different data standards involved. This will allow students to create, manipulate and update building information models at the data level. The specific topics will include Algorithmic Thinking, object-oriented modelling, digital design (\u201cComputational BIM\u201d) and understanding of current data standards used in information modelling within the industry.", + "title": "Virtual Design in BIM", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5808QA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT1", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Virtual Design and Construction (VDC) features the integration and management of multi-disciplinary Building Information Models (BIM). The goal of the course is to enable participants to understand the business value of VDC, and how it can be successfully applied to current infrastructure and building projects. Specifically the objective of the course is to expose participants to the core principles and methodologies of VDC. These include topics on Integrated Project Delivery, BIM quality, Lean Design Management, and Process Mapping.", + "title": "Advanced Digital Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE5808QB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modern engineering infrastructure systems are becoming increasingly complex. This module equips students with the analytical methods and methodologies to evaluate and manage such systems with consideration in an international market setting. The course also considers BOT and PPP procurement instruments and project financing. Specific topics include project feasibility, risk management, international markets, engineering economics, project financing, value management, as well as procurement management.", + "title": "Management and Economics of International Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5809", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover advanced topics of current interests in project management engineering that will not be taught on a regular basis. The requirement and syllabus will be specified when the module is offered. The course will be conducted by NUS staff and/or visitor from the industry.", + "title": "Topics in Project Management Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this course is to introduce fundamental principles of soil dynamics and applications to construction vibrations. Construction activities inevitably introduce vibrations in the ambient environment and the sub-surface geological formations. These are usually experienced as noise and vibrations, and may also take the form of stress waves in soils and rocks which could damage foundation structures. Case studies will used to illustrate construction vibrations issues and applicable mitigation techniques. Students will also be required to undertake and complete a Group Project. Students are free to discuss and agree with the Lecturers on their choice of topic.", + "title": "Topics in Geotechnical Engineering: Soil Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5881", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the hydrodynamic aspects of water quality management in surface water bodies, with the objective of providing a fundamental understanding of the processes that govern water flow in the environment and the impact of human interference on natural flows. The module serves as an introduction to the processes of transport and mixing of pollutants in surface water flows. The topics that will be covered include advective, diffusive and dispersive processes in the water environment, applications to transport and mixing in rivers, estuaries and reservoirs, and the design of wastewater discharge systems.", + "title": "Topics in Hydraulic & Water Resources - Environmental Hydraulics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5883A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the basic mathematical, statistical, physical, and chemical knowledge required to model the Earth\u2019s climate system. Given the complexity of the system, theory of how to approximate equations and make them relevant over temporal and spatial scales is introduced. Through experimentation and hands on learning, students will learn to understand and build models of varying complexity describing the Earth and its Climate System. Finally, students will use and modify these models to perform their own studies on relevant questions.\nTopics include: Conservation equations; Dynamics; Thermodynamics, physics, chemistry; Radiative Forcing, Response, and Feedbacks; Coupling Across Scales; Non-linearities.", + "title": "Topics in Hydraulic & Water Resources \u2013 Modelling Climate Change", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5883B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover advanced topics of current interests in structural engineering that will not be taught on a regular basis. The requirement and syllabus will be specified when the module is offered. The course will be conducted by NUS staff and/or visitor from the industry.", + "title": "Topics in Structural Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5885", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the essential theoretical background and modelling skills for advanced analysis of civil engineering structures. It covers various types of structural analysis accounting for material nonlinearity, geometric nonlinearity and dynamic effects. The emphasis of the module is on the physical understanding of structural modelling and solution strategies. Students are expected to carry out homework assignments and a project, using computer programming and structural analysis software. This module of specialized context targets at graduate students whose research or engineering works would require solving structural engineering problems beyond the linear static method.", + "title": "Topics in Structural Engineering: Advanced Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5885A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this course is to cover advanced topics in concrete engineering that is not taught on a regular basis. Focus will be placed on special cement-based materials that are fast replacing traditional normal density, low strength concrete in the construction industry. More specifically special concretes and special processes and technology for particular types of structures are discussed. Case studies will used to illustrate construction and sustainability issues. Use of concrete composites in protective structures will also be covered. Students will also be required to undertake and complete a Group Project. Students are free to discuss and agree with the Lecturers on their choice of topic. A visit to tht eh Samwoh Eco-Green park will be organized.", + "title": "Topics in Concrete Engineering: Specialized", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE5886", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CE5999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The effective operations and management of infrastructure systems involve the understanding of their constraints, and the allocation of scarce resources. These systems can be mathematically modeled so that the best operations and management strategies can be determined. Initially continuous type resources will be modeled and this is extended to deal with discrete type resources. Non-linear constraints and objectives, and dynamic vibrations in the systems will also be considered. The systems covered will include water resource type of problems, transportation networks, and structural systems, among others. Specific topics comprise: characteristics of civil engineering systems, resource allocation in infrastructure systems, transportation network models, dealing with non-linear system behaviour and decision making under uncertainty.", + "title": "Operations & Management of Infrastructure Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE6001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate research students in the Department of Civil Engineering. It introduces students the nature of civil engineering experiments and characteristics of data gathered. Fundamental methods to conduct in-laboratory and field experiments to verify civil engineering models will be covered. Included in this module is also the procedure to construct empirical, deterministic and stochastic civil engineering models based on experimental measurements. Examples are drawn from the various fields in civil engineering discipline, including structure, geotechnical, hydraulics, environmental and transportation engineering.", + "title": "Analysis of Civil Engineering Experiments", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE6002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces the basic principles of engineering mechanics modeling problems and the required numerical tools for analysis and design of engineering problems. Students will learn to understand the fundamental finite element methods, finite difference methods, and boundary element methods. The related topics of numerical methods, such as equation solvers, eigenvalue/vector, numerical integration, solution of nonlinear problem and the convergence and stability problems of different numerical algorithms will be discussed. The course enables students to acquire the knowledge and computational skills through projects and homework assignment.", + "title": "Numerical Methods in Engineering Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE6003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module extends further the fundamentals and applications of finite element method to solve complex engineering problems. Topics covered include weak formulation and finite element concepts, degenerated beam and plate elements, time-dependent finite element procedure, nonlinear finite element procedures and meshless finite element method. Student should be able to analyse advanced problems in structural and geotechnical disciplines using finite element methods.", + "title": "Advanced Finite Element Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE6006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the basic principles to the numerical methods used for analysis of mechanics and environmental flow problems. Fundamental concepts in finite difference method, and the associated convergence and stability issues will be covered.\n\nThe concepts of grids, issues with them and possible solution methods will be discussed. The module will enable the students to acquire the basic numerical analysis knowledge and computational skills through mini-projects and homework assignments.", + "title": "Numerical methods in Civil Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE6077A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course builds on the fundamental concepts of numerical methods introduced\nin CE6077A and applies it to the transport processes of environmental systems such as the atmosphere, freshwater systems, estuaries, coastal seas and oceans.The focus will be on how numerical methods impact solutions due to the fundamental transport equations.\n\nThe module will equip students to understand the importance of transport processes to environmental impacts, limitations of computer/mathematical models to solve the transport processes and how to obtain relevant solutions given the limitations of the models.", + "title": "Numerical Methods for Environmental Flows", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE6077B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course extends the fundamental concepts in CE6077A and combines it with complementary numerical methods, for solving problems in engineering mechanics, e.g. wave propagation in solids, stability and dynamics of structural / engineering systems.\n\nThe focus will be to understand the limitations of different numerical schemes for the various problems in mechanics. The module will enable students to select the suitable numerical strategy, develop the relevant numerical framework and to\nimplement them.", + "title": "Numerical Methods and Applications to Civil Engineering Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE6077C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the basic principles to the numerical methods used for analysis of mechanics and environmental flow problems. Fundamental concepts in finite difference method, and the associated convergence and stability issues will be covered.\nThe concepts of grids, issues with them and possible solution methods will be discussed. The module will enable the students to acquire the basic numerical analysis knowledge and computational skills through mini-projects and homework assignments.", + "title": "Numerical methods in Civil Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CE6077QA", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Geotechnical Constitutive Modeling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE6101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced graduate-level module aimed at research and geotechnical-specialist coursework students. Its aim is to introduce students to advanced geotechnical analysis, which is essential and important to deep excavation and tunnel design. Students will learn advanced concepts of finite element analysis needed for the solution of geotechnical problems. It will cover non-linear analysis techniques, elasto-plastic formulation with a tangent stiffness approach, solution techniques, large strain analysis, seepage analysis and coupled consolidation analysis. In combination with CE5010QA, CE5010QB and CE6101, this module forms a complete numerical package targeted towards geotechnical specialists who need to conduct advanced numerical analysis.", + "title": "Geotechnical Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE6102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0307PC4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Environmental Microbiology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE6403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Building materials are the corner stones of modern construction practises. Enhancing the performance and sustainability is a major task of research and development of novel building materials, which relies substantially on the characterization of materials. This module targets at audiences who conduct experimental research on a broad spectrum of building materials for all types of applications, such as structure, pavement and ground-stabilization. In this module, students will learn knowledge of designing and conducting the experiments of characterizing the physical and chemical features of building materials, and interpretation of the experimental results.", + "title": "Characterization of Sustainable Building Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE6601", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Analysis & Design of Buildings Against Hazards", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CE6705", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Doctoral Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "CE6999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at giving masters students in computer engineering an opportunity to work on a cutting edge project in collaboration with the industry over one semester. Students reinforce their knowledge and pick up new tools and skills in the process of solving problems that add value to themselves, the industry, and the society. Projects can involve a mix of research, design, and development aspects. Students work in close consultation with an internal supervisor (who is a faculty member) and/or an external (industry) supervisor. Students will need to\nsubmit a report, as well as a presentation to the supervisors.", + "title": "Computer Engineering Project (Minor) I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at giving masters students in computer engineering an opportunity to work on a cutting edge project in collaboration with the industry over one semester. Students reinforce their knowledge and pick up new tools and skills in the process of solving problems that add value to themselves, the industry, and the society. Projects can involve a mix of research, design, and development aspects. Students work in close consultation with an internal supervisor (who is a faculty member) and/or an external (industry) supervisor. Students will need to\nsubmit a report, as well as a presentation to the supervisors.", + "title": "Computer Engineering Project (Minor) II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5002", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at giving masters students in computer engineering an opportunity to work on a cutting edge project in collaboration with the industry over two semesters. Students reinforce their knowledge and pick up new tools and skills in the process of solving problems that add value to themselves, the industry, and the society. Projects can involve a mix of research, design, and development aspects. Students work in close consultation with an internal supervisor (who is a faculty member) and an external (industry) supervisor. Students will need to submit a report, as well as a presentation to the supervisors.", + "title": "Computer Engineering Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CEG5003", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the concepts, design, techniques and protocols related to modern computer networks. The course first covers topics on internetworking, security, and end-to-data transport particularly in the context of Internet. It then introduces recent technologies emerged in modern networks that include virtualization, data center networks, software defined networking and network function virtualization. The course uses case studies to expose students to real-world networking problems. Students will be provided with network programming mini-projects and assignments which help them understand and appreciate practical uses.", + "title": "Modern Computer Networking", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the fundamentals of Internet of things (IoT) and wireless communications for IoT. It begins with an overview of current IoT systems and applications, as well as wireless communication systems and standards for IoT (e.g., 5G). Next, it will cover various basic topics in wireless communications for IoT, including the wireless channel modelling, capacity limits of wireless channels, practical digital modulation and coding techniques and their performance in wireless channels, multicarrier modulation, multi-antenna communication, and multiple access techniques.", + "title": "Wireless Communications for IoT", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the key concepts in wireless and sensor networks for the Internet of Things (IoT). The first part is on wireless networks and covers the wireless channel, modulation schemes, medium access control, routing protocols, ad hoc wireless networks and wireless mesh networks. The second part is on IoT sensor networks which enable visibility into physical processes and digitalisation. This part starts with IoT wireless and application protocols, and IoT architectures incorporating edge computing. Subsequently, topics on energy management, data fusion and tracking are covered. The module concludes with advanced topics such as vehicular sensor networks and activity recognition.", + "title": "Wireless and Sensor Networks for IoT", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-01-13", + "end": "2023-04-14" + }, + "venue": "E3-06-02", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental ideas behind the design and operation of cellular networks. The module provides students with an understanding of the\nfundamental principles and concepts encountered in cellular networks. In particular, students will learn about the cellular network design process, radio channel modelling, network dimensioning and capacity planning, mobility,\nhandoffs, and security. Practical standards such as GSM, IS-95, 3G, 4G and 5G will be used as illustration examples. On completion of the module, students should be able to understand the design process and operation of cellular networks, as well as the factors affecting their performance and deployment.", + "title": "Cellular Networks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces modern day hardware computing technologies that are capable of handling large-scale data processing. Students are taught how an underlying architecture of a computing platform will look like through systematic case studies on these platforms. Students will learn hardware aspects of a CPU and GPU elements and will work on a few real-world application problems involving machine learning and big data processing. Module also covers certain important concepts under loosely-coupled systems. Students will have hands-on experience in using the public Clouds such as, AWS, Azure, etc., and design specific data pipelines necessary.", + "title": "Hardware Technologies, Principles, & Platforms", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to present the required foundations of embedded software systems and security aspects. Students will learn how an embedded system and its software components interact and work using a structured data flow methodology. Security aspects and ways to mitigate certain attacks will be introduced. Module covers design of algorithms for embedded RT schedulers and firmware. Case studies on certain embedded are presented to give students a better understanding of the subject. Students can attempt to realize of a machine learning algorithm on small-scale IoT and other hardware platforms or on an emulator.", + "title": "Embedded Software Systems and Security", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The computational complexity of many modern day applications such as machine learning necessitates exploiting the parallelism and acceleration provided by hardware. This can lead to a much higher throughput and much lower power requirements as compared to traditional CPUs. This module will cover the design of systems which use GPUs and reconfigurable platforms (FPGAs) for acceleration of computations. Various tools and platforms for programming GPUs and FPGAs, as well as techniques for efficient mapping of algorithms to architectures will be examined.", + "title": "Hardware Acceleration and Reconfigurable Computing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an introduction of sensors and sensing systems. Systems involving multiple sensors and components are co-designed and optimized to realize functions which provide new sensing methodology in a wide-range applications, e.g., industry 4.0, environment monitoring, healthcare and rehabilitation, etc. By having sensors as building blocks, students will explore smart systems realized with the aid of big data, artificial intelligence and cloud computing in the 5G era. Case studies in labs will help students acquire knowledge and skills in using sensors for making smart systems for real world applications.", + "title": "Smart Sensing Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with the knowledge of sensors and sensing technology for smart home applications based on artificial intelligence-enabled data\nanalytics and sensor fusion. Student will learn about the fundamentals of Virtual Reality (VR) and Augmented Reality (AR) through hands-on practice. Students will\ncreate VR/AR smart home applications through the labs and hands-on projects to demonstrate human-machine real-time interaction in a smart home. The sensory\ninformation of users and environmental conditions will be analyzed by deep learning approaches and provided to a VR/AR-enabled duplicated home in the virtual space.", + "title": "AI Sensors and Virtual/Augmented Reality Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module students will learn various data-driven machine-learning models and develop essential background needed to apply these models to solve practical pattern recognition and regression problems. It consists of two parts. For Part I, the main topics are: linear networks, single and multilayer Perceptions, radial basis function networks and self-organizing maps. For Part II, the main topics include: learning in feature space, constrained optimization, kernel-based learning machines (support vector machine learning), and reinforcement learning. This module is intended for graduate students and engineers interested in various models of learning machine for solving application-oriented problems.", + "title": "Machine Learning with Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Friday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how principles from theories of evolution can be used to construct intelligent systems. Established evolutionary paradigms as well as, significant new developments, including evolutionary algorithms, evolutionary strategies, ant-colony optimization, swarm intelligence and multi-objective evolutionary optimization techniques will be covered. Students will be taught how these approaches identify and exploit biological processes in nature, allowing a wide range of applications to be solved in industry and business. Key problem domains such as multi-objective scheduling, optimization, search, and design will be examined. Students will gain hands-on experience in applying these techniques to real-life application-oriented problems through project work.", + "title": "Evolutionary Computation and Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-01-09", + "end": "2023-04-10" + }, + "venue": "LT6", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to offer a systematic description of the fundamentals of Intelligent autonomous robotic systems. After the introduction of the typical intelligent systems, the kinematics and dynamics are defined and applied to mobile robotics, helicopters and marine crafts. Their structural and dynamic properties are presented. For autonomy, sensors and sensor fusions are first discussed, followed by path planning, map building, typical control strategies including linear, nonlinear, and neural networks and fuzzy logics, and concluded by on-board hardware implementation. In general, it provides the students a complete understanding of intelligent autonomous robotic system, and facilitates further studies in related areas.", + "title": "Intelligent Autonomous Robotic Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5303", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 72, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Deep learning(DL) refers to machine learning methods based on deep neural networks to learn data representation and perform learning tasks. This course provides an introduction to deep learning and focuses more on applications of DL for digitalization technologies. Students will learn the basic theories, models, algorithms, and recent progress in DL and obtain empirical experience on practical design and applications. The course starts with classical neural network models, followed by deep convolutional neural networks, recurrent neural networks, and applications to computer vision, speech recognition, healthcare and robotics.", + "title": "Deep Learning for Digitalization Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CEG5304", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 105, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Career Catalyst will establish an important first touch point as part of a three/four-year roadmap to engage and prepare students in creating multiple pathways for themselves. Students will be equipped with essential skills and knowledge to make informed decisions on specialisations, develop soft skills as well as gain overseas exposure and real-world industry experience.\n\nThis module consists of four lectures and two e-seminars spread across the first six weeks of the freshmen academic year, aimed to provide an early introduction to the concepts of career planning, personal branding and industry awareness. Students will learn to develop a strategy to maximise their time and resources while in University, be confident in mapping out a career plan and work towards strengthening their fit to achieve their career aspirations.", + "title": "Career Catalyst", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CFG1002", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A Module on how to design a system that will enable you to manage and grow your money to live a flourishing life.\nLearn the fundamentals of managing your money including first things first principles around money decision making. You will understand topics such as the 5 pillars of money, automation, good and bad debt and explore the pathways to savings and investing.", + "title": "Financial Wellbeing-Introduction", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "CFG1003", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Most courses in financial management and investing today focus on the fundamentals and technical knowledge of financial management and investing. Few, if any, go in-depth into the psychology of money and investing to help learners regulate emotions and build financial-emotional resilience. This module, structured around six main topics, aims to equip students with foundational knowledge of core principles of financial management, investing psychology and investing fundamentals via a blended learning approach which comprised an eLearning component and live components (fire-side chat / Q&A Panel).", + "title": "Financial Wellbeing - Art and Science of Investing", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CFG1004", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide Y2, penultimate and final-year female students with the awareness of biases, stereotypes and how it impacts women in the workplace. The module will help students develop their skills around \u201cBreaking the Bias\u201d to ensure they are equipped with the knowledge and skills to succeed in the workplace. It combines physical and virtual workshops where the students will have an opportunity to put their new skills into practice. This module will use a combination of self-directed learning, a group project using principles of human-centred design and mentoring by senior female leaders", + "title": "Women's Professional Development Programme", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CFG1500", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 4, + 6, + 8, + 9 + ], + "venue": "SFAH-LAVENDER", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is conducted over intensive study week(s) in an emerging economy country. Through company visits, seminars, networking sessions and various assessments, students will learn what emerging economies are, the importance of overseas internship experience, and foreign workplace knowledge and skills. They will appreciate the interconnectivity between the industry landscape of Singapore and that of an emerging economy. They will also acquire the first-hand experience of learning about the unique characteristics of the different types of firms, and the latest trends in the industries that are complementary to the various undergraduate majors.", + "title": "Global Industry Insights", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CFG2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is conducted over two weeks of intensive study in December, both in Singapore and an emerging economy. Through company visits, seminars, networking sessions and various assessments, students will learn what emerging economies are, the importance of overseas internship experience, and foreign workplace knowledge and skills. They will appreciate the interconnectivity between the industry landscape of Singapore and that of an emerging economy. They will also acquire the first-hand experience of learning about the unique characteristics of the different types of firms, and the latest trends in the industries that are complementary to the various undergraduate majors.", + "title": "Global Industry Insights", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CFG2002I", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is conducted over intensive study week(s) in an emerging economy country. Through company visits, seminars, networking sessions and various assessments, students will learn what emerging economies are, the importance of overseas internship experience, and foreign workplace knowledge and skills. They will appreciate the interconnectivity between the industry landscape of Singapore and that of an emerging economy. They will also acquire the first-hand experience of learning about the unique characteristics of the different types of firms, and the latest trends in the industries that are complementary to the various undergraduate majors.", + "title": "Global Industry Insights", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CFG2002T", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is conducted over two weeks of intensive study in December, both in Singapore and an emerging economy. Through company visits, seminars, networking sessions and various assessments, students will learn what emerging economies are, the importance of overseas internship experience, and foreign workplace knowledge and skills. They will appreciate the interconnectivity between the industry landscape of Singapore and that of an emerging economy. They will also acquire the first-hand experience of learning about the unique characteristics of the different types of firms, and the latest trends in the industries that are complementary to the various undergraduate majors.", + "title": "Global Industry Insights", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CFG2002V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers undergraduates the opportunity to pursue 10-12 weeks internships during the summer vacation periods and obtain modular credits. These internships can be technical, general and/or inter-disciplinary in nature, and need not be related to the students\u2019 major or discipline.\n\nBefore the internship, students gain experience in the job search process and access to CFG internship preparatory sessions. During internships, students gain work experiences, practise what they have learnt in school, acquire new knowledge and skills, and build their professional networks.\n\nStudents will reflect on these learning experiences through various assessments and receive feedback on their internship performance.", + "title": "NUS Vacation Internship Programme", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CFG2101", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers undergraduates the opportunity to pursue opportunistic work projects/internships for modular credits throughout the academic year. Such work is envisaged to deal with current/pressing challenges in industry, government, or other bodies that students could contribute their skills in part-time or full-time work, during or off semester, locally or internationally. Such gig projects are envisaged in: computing, database, cyber-security; business, consultancy; science, technology and engineering; social science and policy studies; design, media and communications. Through such work, students will gain valuable experience, integrate what they have learnt in classroom, acquire new knowledge and skills, and build their professional networks.", + "title": "NUS Internship-as-a-Service", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "CFG2600A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers undergraduates the opportunity to pursue opportunistic work projects/internships for modular credits throughout the academic year. Such work is envisaged to deal with current/pressing challenges in industry, government, or other bodies that students could contribute their skills in part-time or full-time work, during or off semester, locally or internationally. Such gig projects are envisaged in: computing, database, cyber-security; business, consultancy; science, technology and engineering; social science and policy studies; design, media and communications. Through such work, students will gain valuable experience, integrate what they have learnt in classroom, acquire new knowledge and skills, and build their professional networks.", + "title": "NUS Internship-as-a-Service", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "CFG2600B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers undergraduates the opportunity to pursue opportunistic work projects/internships for modular credits throughout the academic year. Such work is envisaged to deal with current/pressing challenges in industry, government, or other bodies that students could contribute their skills in part-time or full-time work, during or off semester, locally or internationally. Such gig projects are envisaged in: computing, database, cyber-security; business, consultancy; science, technology and engineering; social science and policy studies; design, media and communications. Through such work, students will gain valuable experience, integrate what they have learnt in classroom, acquire new knowledge and skills, and build their professional networks.", + "title": "NUS Internship-as-a-Service", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CFG2600C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers undergraduates the opportunity to pursue opportunistic work projects/internships for modular credits throughout the academic year. Such work is envisaged to deal with current/pressing challenges in industry, government, or other bodies that students could contribute their skills in part-time or full-time work, during or off semester, locally or internationally. Such gig projects are envisaged in: computing, database, cyber-security; business, consultancy; science, technology and engineering; social science and policy studies; design, media and communications. Through such work, students will gain valuable experience, integrate what they have learnt in classroom, acquire new knowledge and skills, and build their professional networks.", + "title": "NUS Internship-as-a-Service", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "CFG2600D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers undergraduates the opportunity to pursue opportunistic work projects/internships for modular credits throughout the academic year. Such work is envisaged to deal with current/pressing challenges in industry, government, or other bodies that students could contribute their skills in part-time or full-time work, during or off semester, locally or internationally. Such gig projects are envisaged in: computing, database, cyber-security; business, consultancy; science, technology and engineering; social science and policy studies; design, media and communications. Through such work, students will gain valuable experience, integrate what they have learnt in classroom, acquire new knowledge and skills, and build their professional networks.", + "title": "NUS Internship-as-a-Service", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CFG2600E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers undergraduates the opportunity to pursue opportunistic work projects/internships for modular credits throughout the academic year. Such work is envisaged to deal with current/pressing challenges in industry, government, or other bodies that students could contribute their skills in part-time or full-time work, during or off semester, locally or internationally. Such gig projects are envisaged in: computing, database, cyber-security; business, consultancy; science, technology and engineering; social science and policy studies; design, media and communications. Through such work, students will gain valuable experience, integrate what they have learnt in classroom, acquire new knowledge and skills, and build their professional networks.", + "title": "NUS Internship-as-a-Service", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "CFG2600F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers undergraduates the opportunity to pursue opportunistic work projects/internships for modular credits throughout the academic year. Such work is envisaged to deal with current/pressing challenges in industry, government, or other bodies that students could contribute their skills in part-time or full-time work, during or off semester, locally or internationally. Such gig projects are envisaged in: computing, database, cyber-security; business, consultancy; science, technology and engineering; social science and policy studies; design, media and communications. Through such work, students will gain valuable experience, integrate what they have learnt in classroom, acquire new knowledge and skills, and build their professional networks.", + "title": "NUS Internship-as-a-Service", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "CFG2600G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers undergraduates the opportunity to pursue opportunistic work projects/internships for modular credits throughout the academic year. Such work is envisaged to deal with current/pressing challenges in industry, government, or other bodies that students could contribute their skills in part-time or full-time work, during or off semester, locally or internationally. Such gig projects are envisaged in: computing, database, cyber-security; business, consultancy; science, technology and engineering; social science and policy studies; design, media and communications. Through such work, students will gain valuable experience, integrate what they have learnt in classroom, acquire new knowledge and skills, and build their professional networks.", + "title": "NUS Internship-as-a-Service", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "7", + "moduleCode": "CFG2600H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers undergraduates the opportunity to pursue opportunistic work projects/internships for modular credits throughout the academic year. Such work is envisaged to deal with current/pressing challenges in industry, government, or other bodies that students could contribute their skills in part-time or full-time work, during or off semester, locally or internationally. Such gig projects are envisaged in: computing, database, cyber-security; business, consultancy; science, technology and engineering; social science and policy studies; design, media and communications. Through such work, students will gain valuable experience, integrate what they have learnt in classroom, acquire new knowledge and skills, and build their professional networks.", + "title": "NUS Internship-as-a-Service", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "CFG2600I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This blended learning module aims to equip penultimate year and graduating students with (1) advanced career preparation skills to increase their career opportunities; and (2) essential workplace success skills to excel in their first graduate job. \n\nThis module integrates an elearning component and a live component (face-to-face workshop or webinar) and is structured around five topics. \n\nThrough this module, students would be better prepared to create their personal branding to strategically position themselves for job applications, gain new career opportunities and expand their network and, more importantly, to succeed at their future careers.", + "title": "Career Advancement", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CFG3001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip first year engineering students to a computer engineer's way of thinking and will focus on the engineering principles of how computer-aided systems work and fail and the engineering practice of how they are designed, built and valued. Students will be presented a practical computer engineering system, e.g., a sensorassisted autonomous vehicle, a drone, or an engineering event. They are then guided to reconstruct the system via\ninterconnected subsystems through laboratory sessions and group discussions, to explain using engineering principles how the system works and could fail.", + "title": "Engineering Principles and Practice I", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "CG1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the first of the two Engineering Principles and Practice (EPP) modules taken by computer engineering students, which aim to inculcate in them the computer engineer's way of thinking. They are first taught the fundamental principles of electronic circuits through experiential learning, along which they also build up their hands-on circuit designing, building, and debugging skills. They are then guided to apply these principles and skills to build a sensor-assisted autonomous robotic vehicle as a grand finale challenge. Upon completing the module, they can appreciate the importance of circuits, signals, and sensors in system implementation.", + "title": "Engineering Principles and Practice I", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CG1111A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will be for the students who have completed EPP I and the project scope extends to handle challenges in large-scale systems. Similar to EPP I, students will first learn the fundamental principles on certain advanced concepts and then design and programme a real-world system. The module involves designing a complex computer engineering system that facilitates information processing, real-world interfacing, and understanding the\neffects of certain useful metrics such as, scaling, safety, security, sustainability, societal impact, fault-tolerant design, etc.", + "title": "Engineering Principles and Practice II", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "CG1112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a fundamental course in signals and systems, specially developed for computer engineering students. Signals play an important role in carrying information. In particular the idea of frequency domain analysis of signals and systems are important concepts for all computer engineers. The concepts which will be covered include time and frequency domain representations, Fourier transform, spectrum and bandwidth of a signal, frequency response of systems (Bode diagrams), sampling theorem, aliasing, signal reconstruction, and filtering.", + "title": "Signals and Systems", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CG2023", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6, + 8, + 10, + 12 + ], + "venue": "E4-03-07", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6, + 8, + 10, + 12 + ], + "venue": "E4-03-07", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6, + 8, + 10, + 12 + ], + "venue": "E4-03-07", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 7, + 9, + 11 + ], + "venue": "E4-03-07", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 7, + 9, + 11 + ], + "venue": "E4-03-07", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 7, + 9, + 11 + ], + "venue": "E4-03-07", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on the basic circuit concepts introduced through CG1111A and CG2111A, this module introduces the fundamental concept of carriers, operating principles of PN diodes and MOSFETs. Their IV characteristic in different operating region and their impact on the performance of logic gate will also be discussed. It explains the foundational concepts of inverters and analyses their performance in terms of power and delay trade-off. It also introduces logic synthesis and the fundamental timing analysis of logic gates. Besides the static CMOS logic, it will also cover pass logics or transmission gates logics.", + "title": "Transistor-level Digital Circuits", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CG2027", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E5-03-20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students computer organization concepts and how to write efficient microprocessor programs using assembly language. The course covers computer microarchitecture and memory system fundamentals, and the ARM microprocessor instruction set. The course culminates in an assignment in which students design and implement an efficient assembly language solution to an engineering problem.", + "title": "Computer Organization", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CG2028", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 10, + 12 + ], + "venue": "E4-03-07", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will be for the students who have completed EPP I and the project scope extends to handle challenges in large-scale systems. Similar to EPP I, students will first learn the fundamental principles on certain advanced concepts and then design and programme a real-world system. The module involves designing a complex computer engineering system that facilitates information processing, real-world interfacing, and understanding the effects of certain useful metrics such as, scaling, safety, security, sustainability, societal impact, fault-tolerant design, etc.", + "title": "Engineering Principles and Practice II", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CG2111A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Friday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Real-time systems must respond quickly to inputs from the environment in order to work effectively and safely, and realtime operating systems (RTOS) are a critical part of such systems. In this course the student is exposed to basic RTOS concepts like tasks, scheduling algorithms, RTOS customisation and concurrent real-time programming. By the end of this course a student will not only understand how an RTOS is built, but will also gain practical hands-on experience in customising RTOSs and in writing real-time programs.", + "title": "Real-Time Operating Systems", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CG2271", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the development of a large system from conceptualisation to its final implementation. It is structured to contain substantial design and development of hardware and software components.\n\nThis module is the culminating point of a series of modules integrating the theories which students have already learnt in CG1101, CG1102/CG1103, CG2007, CG2271 and CS2103. With this capstone project, students would be able to better appreciate the relevance of the various components in the Computer Engineering curriculum to large scale computer engineering projects.", + "title": "Embedded Systems Design Project", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "CG3002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches students the basics in the design of the various classes of microprocessors. Contents include design of simple micro-controllers, high performance CPU design using parallel techniques, memory organization and parallel processing systems. Topics also include the development of support tools to enable efficient usage of the developed microprocessor. The course emphasizes practical design and includes a group project for students to design and implement a microprocessor with verification on a FPGA.", + "title": "Computer Architecture", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CG3207", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Friday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-04-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will embark on a project that involves a mix of research, design and development components on a topic of current interest in Computer\nEngineering. Students learn how to apply knowledge and skills acquired in the classroom to develop innovative ways of solving problems. In the process, students acquire skills for independent and lifelong learning. The module is normally carried out over two semesters, but may also be structured as a further 6-month extension of an existing 6-month industrial attachment, where the student works on real life projects jointly supervised by NUS faculties and industry experts.", + "title": "B. Eng. Dissertation", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "CG4001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the development of a large system from conceptualisation to its final implementation. It is structured to contain substantial design and development of hardware and software components. This module is the culminating point of a series of modules integrating the theories which students have already learnt in CS1010, CS2040C, CG2028, CG2271 and CS2113/T. With this capstone project, students would be able to better appreciate the relevance of the various components in the Computer Engineering curriculum to large scale computer engineering projects.", + "title": "Computer Engineering Capstone Project", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CG4002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Project and Internship is a project module that involves research and/or design and development on a topic in Computer Engineering in a professional/industrial setting. Students investigate and analyse complex\nengineering problems and design/develop innovative ways of solving them by applying the knowledge and skills they have learnt. Students will acquire independent and lifelong learning, project management skills, professional\nstandards and ethics in the workplace, as well as good verbal and written communication skills. The module is carried out over two semesters with a 1-month internship. The student will be jointly supervised by NUS faculty\nmembers and professional/industry experts.", + "title": "Advanced Project and Internship", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "CG4003", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a bilingual introductory course on some of the most interesting topics in Chinese history, literature, and culture. We will be studying these topics through the changes and continuities in the famous stories retold over time. The stories include those of the revengeful, the assassins, the queers, the cross dresser, and the ghost lovers. What you really need is a curious mind and an ability to comprehend basic spoken Mandarin. All assigned readings and presentation slides will be in English. Classes will be bilingual, and you can choose to do the term essay in either language.", + "title": "Retelling Chinese Stories: Change and Continuity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course on some of the most\ninteresting topics in Chinese history, literature, and\nculture. We will be studying these topics through the\nchanges and continuities in the famous stories retold\nover time. The stories include those of the revengeful,\nthe assassins, the queers, the cross dresser, and the\nghost lovers. What you really need is a curious mind and\nan ability to comprehend basic spoken Mandarin. All\nassigned readings and presentation slides will be in\nEnglish. Classes will be bilingual, and you can choose to\ndo the term essay in either language.", + "title": "Retelling Chinese Stories: Change and Continuity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH1101S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An essential module for students majoring in Chinese Studies/Chinese Language, this course is a general survey of the development of Chinese literature from ancient times to the Qing Dynasty. It is designed to introduce students to the main features of various literary trends, genres and styles, as well as to major writers of various periods and their representative works. The course also caters to students across the University with an interest in classical Chinese literature.", + "title": "History of Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2121", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A required module for students majoring in Chinese\nStudies/Chinese Language, this course is a general\nsurvey of the development of Chinese literature from\nancient times to the Qing Dynasty. It is designed to\nintroduce students to the main features of various\nliterary trends, genres and styles, as well as to major\nwriters of various periods and their representative\nworks. The course also caters to students across the\nUniversity with an interest in classical Chinese\nliterature.", + "title": "History of Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2121S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An essential module for students majoring in Chinese Studies, this is a general survey of the socio-political and intellectual developments in China from ancient times to the Opium War (1842). The characteristics of each Chinese imperial dynasty and the relationship between China and other Asian countries will also be examined. The course is also offered to students across the University with an interest in the history of traditional China.", + "title": "General History of China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2141", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to depict the development and evolution of traditional Chinese scholarship. Topics covered include (1) Jing (\"Classics\"): Chinese classic texts; (2) Shi (\"Histories\"): Traditional historiography; (3) Zi (\"Masters\"): Miscellaneous genres philosophy, arts and science, among others, and (4) Ji (\"Collections\"): Literary Collections. Emphasis will be given to how works of different genres and nature made their ways into the so-called \u201cEmperor\u2019s Four Treasuries\u201d (Siku Quanshu), the largest collection of books in Chinese history compiled during the mid-eighteenth century based on the Quadripartite System (sibu) of knowledge classification. This course is designed for students majoring in Chinese Studies.", + "title": "Traditional Chinese Taxonomy of Learning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2161", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students are taught how to critically read, appreciate and analyze texts in classical Chinese in their specific historical, literary and philosophical contexts. Translating the original texts into modern Chinese is an integral part of the course. This is a compulsory module for students majoring in Chinese Studies. Readings include representative works of prose and rhyme-prose from the pre-Qin to the Qing period.", + "title": "Reading Classical Chinese Texts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2162", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As a comprehensive introduction to modern Chinese literature of the period between 1917 and 1949, this module studies the 1917 Literary Revolution and May-Fourth Movement, the modern literary genres that flourished in the hands of literary giants like Lu Xun, Hu Shi, Yu Dafu, Zhu Ziqing and Zhang Ailing, the important literary organizations and theories, and the debates between the various schools of writers who supported different literary ideas and concepts.", + "title": "Modern Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As a comprehensive introduction to modern Chinese\nliterature of the period between 1917 and 1949, this\nmodule studies the 1917 Literary Revolution and May\nFourth Movement, the modern literary genres that\nflourished in the hands of literary giants like Lu Xun, Hu\nShi, Yu Dafu, Zhu Ziqing and Zhang Ailing, the important\nliterary organizations and theories, and the debates\nbetween the various schools of writers who supported\ndifferent literary ideas and concepts.", + "title": "Modern Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2221S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Representative pieces of Chinese prose of various periods are selected for intensive reading and close analysis with a view to introducing students to the development of Chinese prose from the Pre-Qin period to the present. Emphasis is placed on the reading of texts in classical Chinese. This course is designed for students who are interested in classical Chinese and who have basic reading ability of classical Chinese.", + "title": "Selected Readings in Chinese Prose", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to acquaint students with the historical evolution and characteristics of ancient Chinese fiction. It covers different genres of the fictional narrative tradition, zhiguai, zhiren, Tang chuanqi short tale, huaben colloquial short story and full-length xiaoshuo. The course is open to students across the University with an interest in Chinese literary tradition and particularly in Chinese fiction.", + "title": "Chinese Fiction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to concentrate on the study of two or more selected authors or texts in modern Chinese history, literature or philosophy. The course is suitable for students who are interested in modern Chinese history, literature or philosophy. Target students for this module are undergraduates across the University.", + "title": "Selected Authors/Texts I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the course is to introduce to students the evolution of ci lyric, the main features of ci aesthetics and criticism, the form and regulations of ci writing, as well as their relationships with popular and elite cultures. \n\n\n\nMajor topics include: pre-Song anonymous popular lyrics found in Dunhuang and those written in the Song; major literati ci writers from Tang to Southern Song; lyrics sung in entertainment quarters and brothels; stylistic and thematic innovations in Northern Song; the distinction between the haofang (heroic and abandon) school and the wanyue (delicate and retrained) school; the evolution of ci criticism since the Five Dynasties.", + "title": "Ci Lyric in the Tang-Song Period", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "HIstory of Modern China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module investigates the complex historical\nprocesses through which a \u201cChinese\u201d identity is\nconstructed and contested, both within and without\nChina, from the late nineteenth century to the\npresent. Special attention will be paid to delineating\nhow global flows of peoples, capitals and cultures\ninfluenced the ways Chinese communities in various\nparts of the world defined themselves against others\nand how that has changed over time and across space.\nThe course is intended for students who are\ninterested in identity politics in general and the\n\u201cChinese identity question\u201d in particular. Field\nlearning is an integral component of the course.", + "title": "A Global Perspective on Chinese Identities", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at providing students with essential information on the Chinese communities in Southeast Asia and the critical ability to understand/analyse their modern transformations. It begins with the factors leading to the mass migration of Chinese to Southeast Asia in the mid-19th century and the internal structure of Chinese communities in the region. The focus is on their economic, political, cultural activities, identity transformation as well as their contributions towards the region's development since the early 20th century, especially after the end of World War II. The course will also examine the role of ethnic Chinese in the socio-cultural interactions between China and Southeast Asia.", + "title": "Chinese in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers a comprehensive, interdisciplinary introduction to modern China since 1800 from a cultural perspective. Students will become familiar with the major developments and the transformation of Chinese literature, culture, and history in the modern era. In addition to understanding long term trends, essential events, personages, and works are discussed. In the tutorials, students are introduced to practical skills, such as bibliography, use of reference tools and databases, and academic writing. The module is designed for students from the Department of Chinese Studies and interested students from all faculties and departments.", + "title": "Modern China: Literature, Culture, History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the cultural and historical development of modern China through the prism of Lu Xun (1886\u20101936), the preeminent intellectual figure of\nhis age. As a writer and a public figure, Lu Xun stands at the crossroads of Chinese literature, culture, society, history, and politics. His works and his legacy illustrate China\u2019s search for modernity, from the last years of the\nQing dynasty to the eve of the twenty\u2010first century. The module explores the different facets of a fascinatingly complex figure and provides an introduction to the literature, culture, and history of modern China.", + "title": "Lu Xun and Modern China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We often approach cross-strait relations between\nmainland China and Taiwan from the perspective of\nthe high politics of war and diplomacy. This module\nintroduces students to other aspects of the relation,\nfocusing on the social and cultural networks, and\ncompetitions between the two regimes over time.\nTopics to be covered include migration, trades \u2015 both\nlegal and illegal \u2015 religious networks and cultural\nexchanges. It is intended for anyone who is interested\nin cross-strait relations in particular and East Asian\npolitical, economic, social and cultural landscape in\ngeneral.", + "title": "Socio-Cultural Dimensions of Cross-Strait Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with essential information on the changing characteristics of Chinese communities in Singapore and their evolving ties with\nChina in the modern period. It covers topics and issues such as, migration, identities, religions and folk belief, education and personalities, and the impact of political and economic developments in China on the local Chinese communities and vice versa. These thematic issues will be discussed in conjunction with a specific sub-ethnic group, the Chaozhou (Teochew) dialect community in Singapore.", + "title": "An Understanding of Singapore's Teochew Community", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a general survey of the development of Chinese philosophy from the Pre-Qin period to the Qing Dynasty, with emphasis on the major schools of Chinese philosophy such as Confucianism, Taoism, Buddhism and Neo-Confucianism. The course is intended for students who are interested in reading Chinese philosophy.", + "title": "History of Chinese Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Since its economic reformation in 1978, China has\n\nundergone tremendous and rapid changes. This\n\nmodule introduces students to such changes in the\n\ncontext of contemporary political, economic, social\n\nand cultural development in mainland China so as to\n\nbetter equip and prepare them to work in the\n\nbusiness setting and adapt to the social environment\n\nin China. The rise of China and the impact of its rapid\n\neconomic growth on the SEA region, particularly on\n\nSingapore, will also be discussed. This module is\n\nopen to undergraduates across the University and is\n\ntaught in Chinese.", + "title": "Discovering the Chinese Business Environment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the production and consumption of Chinese pop music in China, Taiwan, Hong Kong and the Sinophone worlds in Southeast Asia from the early twentieth century to the present. It uses Mandarin (and dialect) pop music as cases for examining the complex relations between nationalism, regionalism and globalization and their impact on the cultural politics and the processes of identity\u2010construction in the region. Classes will be delivered in both English and Chinese orally, but readings will be mainly in English. Students can choose to complete the assignments in either language.", + "title": "Chinese Pop Music in East Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2275", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a general survey of the cultural tradition of China. It is aimed at giving students a deeper understanding of how the Chinese lived and worked in the traditional era, their institutions and their thinking. The \"Great tradition\" and the \"Small tradition\" of Chinese society and their relevance to the present will be examined. Topics of discussion will include early Chinese worldview, Chinese religiosity, Chinese symbolism, Chinese names, Chinese festivals and folk customs, etc. Having read this module, students would have a better appreciation of the linkage between Chinese traditions in the past and modern society.", + "title": "Chinese Tradition (taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2291", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at promoting students' ability in reading and analyzing Chinese literature. It introduces students to important writers and works, genres, and other literary elements in Chinese literature. Texts and reference materials used for study are all in English. This course is open to students across the University with an interest in Chinese literature.", + "title": "Special Topics in Chinese Literature (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2292", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of the course is to introduce students to twentieth-century Chinese history and society through the study of Chinese film. The focus of the course is on the aesthetic response of film to major historical crises and social changes. In this course, history is not presented as a mere backdrop to culture, but the motivating factor that shapes and determines it. Rather than giving a chronological overview, the course examines significant cultural phenomena through the lens of cinema. Target students are those who are interested in Chinese film and culture.", + "title": "Understanding Modern China Through Film (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2292A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a general introduction to the history of art in China, from its earliest manifestations in the Neolithic-period to the contemporary period. Major art forms to be studied may include ceramics, jade, architecture, painting and calligraphy. The social and cultural contexts of important art works from different periods in Chinese history will also be discussed. The course is intended for all students who are interested in Chinese art and culture.", + "title": "Introduction to Chinese Art (taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2293", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will demonstrate to the students that Chinese religion comprises more than just Buddhism, Daoism, and deity worship. Understanding the interactions that moulded the development of different religious traditions, as well as the syncretism that shaped Chinese culture is part of our focus. On top of surveying the core teachings of the major traditions, this module will also\npay close attention to the effects of religion on all aspects of Chinese life (and afterlife) in China and overseas Chinese communities in SE Asia. The exchanges between Christianity, Islam and Chinese culture will also be studied.", + "title": "Religion in Chinese Societies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2294", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China has a long history of commercial activities ranging from domestic to international trade. The complex relation between state, culture and society in the last millennium of imperial Chinese history provided the space for a vibrant and yet different (as compared to that of the modern world) commercial culture to flourish. This course aims to understand how the Chinese people conducted business activities in the peculiar setting of late imperial China and its impact on intellectual, literary, religious and material culture, as well as gender politics of that period.", + "title": "Commerce and Culture in China's Past (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2295", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines Chinese communities in Southeast Asia through biographical studies of prominent Chinese in the colonial period. Selected\npersonalities from British Malaya (including Singapore) and Dutch East Indies (Indonesia) in the 19th and early 20th centuries will be discussed and examined in historical, social, economic, cultural and political contexts. This is a bilingual module: classes will be delivered in both English and Chinese, but readings will be mainly in English. Students can choose to make the presentations and write the essays in either English or Chinese.", + "title": "Chinese Personalities in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2298", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on Chinese art and visual culture from the late imperial period to the 21st century against the backdrop of major socio-political and economic changes in China and the world. Through the study of material forms and the contexts in which they were created, we will look at the ways in which art, artists and their audiences responded to the challenges of modernity, reform, revolution, war, marketization and globalization. The phenomenon of Chinese contemporary art, its collection and connoisseurship, and the role of art schools, museums, biennales, galleries and auction houses will also be examined.", + "title": "Art of Modern and Contemporary China (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2299", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Using a multi-disciplinary approach, this course is a critical examination of the phenomenon of Chinese diasporas. It discusses the dynamics of Chinese\nemigration and economic expansion to Southeast Asia, the Americas, Africa and other continents in history and the present. Using country studies from\ndifferent world regions, it also studies the development of identity politics and citizenship concerning ethnic Chinese in the last half-century.", + "title": "Chinese Diasporas (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2390", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why should we study the downtrodden, the disempowered and the dispossessed in literature? Selecting Chinese-language narratives from various locales\u2014especially Singapore and Malaysia\u2014that feature \u201cstrangers, outsiders and nobodies,\u201d this course examines the portrayal of figures living on the social margins, and across the fault lines of class, politics, gender, sexuality, ethnicity, religion and language. It also explores the social imaginaries encoded in literary and cinematic texts to reveal the values and anxieties of the societies we live in, thus facilitating a collective discussion on the importance of feeling for those we find unfamiliar. No knowledge of Chinese is necessary.", + "title": "Strangers in Chinese Fiction and Film (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2391", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "According to conventional wisdom, Chinese women in history were particularly oppressed. It was only in the modern period that the patriarchal system started to break down and gender equality was finally realized. Such a simplistic view of dividing Chinese women\u2019s experiences into two mutually exclusive categories of \u201ctraditional\u201d and \u201cmodern\u201d is misleading. This course sets out to provide a more complex and nuanced picture of the life of Chinese women over time in China and elsewhere. Topics cover include marriage, women\u2019s education, works and property rights, ideas about the female body and chastity and so on.", + "title": "Chinese Women in Context (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2392", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Friday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is jointly offered with NUS Research Institute (NUSRI) in Suzhou, with classes and fieldtrips conducted exclusively in China. The objective is to provide students an in\u2010depth understanding of the different types of enterprises in China, focusing on development and challenges, so as to better equip and prepare students to work in the business setting and adapt to the social environment in China. Topics include geographic and economic landscapes, cultural and social environments in doing business, characteristics, development and challenges of various enterprises such as state\u2010owned, SME, e\u2010commerce, start\u2010up, and MNC in China. It is open to all undergraduates.", + "title": "Chinese Business Enterprises and Management (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH2393", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at promoting students' ability in reading and analyzing Chinese poetry. Various Chinese poetic themes, forms, styles and techniques are discussed through the analysis of selected poems of different periods. The course is provided for students who already have basic reading ability in classical Chinese and wish to advance their knowledge in Chinese rhymeprose and poetry.", + "title": "Selected Readings in Chinese Verse", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is divided into four sections: (1) major theatrical forms prior to the Yuan Dynasty; (2) northern drama and its literary contribution; (3) southern drama and its relationship to twentieth century Chinese opera, and (4) vernacular drama from the May Fourth period to the present. The course aims to develop students' skill in analyzing dramatic texts and theatrical performances. It is intended for students who are interested in Chinese literature and theatrical art.", + "title": "Chinese Drama", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students reading this module are expected to conduct an in-depth study of two or more writers or texts in pre-modern Chinese history, literature or philosophy, with an emphasis on analytical discussion of selected authors or texts. Students who have taken CH2226 and want to develop their knowledge in this field are encouraged to take this module. This module is taught in Chinese.", + "title": "Selected Authors/Texts II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course on Singapore and Malaysian Chinese literature from the nineteenth century to the present. No prior knowledge of Chinese literature is necessary. Through the lenses of ten keywords, such as \"author\", \"language,\" \"place\" and \"gender,\" the course explores issues surrounding the definition and the history of \"xinma\"(Singapore-Malaysian) Chinese literary production. Students will also sample significant literary texts of this tradition.", + "title": "Keywords in S'pore and M'sian Chinese Literary Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As a comprehensive introduction to modern Chinese literature of the period between 1917 and 1949, this module studies the 1917 Literary Revolution and May-Fourth Movement, the modern literary genres that flourished in the hands of literary giants like Lu Xun, Hu Shi, Yu Dafu, Zhu Ziqing and Zhang Ailing, the important literary organizations and theories, and the debates between the various schools of writers who supported different literary ideas and concepts.", + "title": "Modern Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an in-depth evaluation of vernacular stories of the Song, Yuan, Ming and Qing dynasties. Special attention will be given to different vernacular stories. Examples may include the three large collections of Chinese vernacular stories, Common Words to Warn the World (Jingshi tongyan), Constant Words to Awaken the World (Xingshi hengyan) and Clear Words to Inform the World (yushi mingyan), collected or written by Feng Menglong (1574-1646). Significant chapters from the three collections will be selected for intensive reading and close analysis. The reason for the rise of the vernacular story as well as the relationship between the author/editor and the stories will be discussed in the course. Some cases of the evolution from earlier versions to those collected in later periods will be explored. The narrative characteristics applied in the collections will be explained. Several thematic designs in the texts will also be interpreted.", + "title": "Chinese Vernacular Stories", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the best ways to understand the essence of poetry is to write one\u2019s own composition. This method is particularly important in the study of classical Chinese poetry, for it can practically help one acquire the knowledge of tones, prosody, forms, structures and aesthetics of this traditional literary genre. Through critical analysis of Tang-Song masterpieces and traditional poetry discourses, this module will introduce the skill of poetry writing to students, deepen their understanding of the art of classical shi poetry as well as the historical, social and cultural backgrounds related to the genre\u2019s stylistic development, and nourish their aesthetic criticism on poetry as a whole.", + "title": "Classical Poetry: Writing and Criticism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the modern literature in Taiwan and Hong Kong. It surveys the fictions of Modern and Contemporary Chinese and analyses the characteristic of narratology. The module will focus on the dialogues between national, regional imaginaries and literary cultures in the Sinophone world. Close reading is a required skill for this module.", + "title": "Modern Literature in Taiwan and Hong Kong", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the course is to introduce to students the evolution of ci lyric, the main features of ci aesthetics and criticism, the form and regulations of ci writing, as well as their relationships with popular and elite cultures. \n\n\n\nMajor topics include: pre-Song anonymous popular lyrics found in Dunhuang and those written in the Song; major literati ci writers from Tang to Southern Song; lyrics sung in entertainment quarters and brothels; stylistic and thematic innovations in Northern Song; the distinction between the haofang (heroic and abandon) school and the wanyue (delicate and retrained) school; the evolution of ci criticism since the Five Dynasties.", + "title": "Ci Lyric in the Tang-Song Period", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to acquaint students with the historical evolution and characteristics of ancient Chinese fiction. It covers different genres of the fictional narrative tradition, zhiguai, zhiren, Tang chuanqi short tale, huaben colloquial short story and full-length xiaoshuo. The course is open to students across the University with an interest in Chinese literary tradition and particularly in Chinese fiction.", + "title": "Chinese Fiction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Representative pieces of Chinese prose of various periods are selected for intensive reading and close analysis with a view to introducing students to the development of Chinese prose from the Pre-Qin period to the present. Emphasis is placed on the reading of texts in classical Chinese. This course is designed for students who are interested in classical Chinese and who have basic reading ability of classical Chinese.", + "title": "Selected Readings in Chinese Prose", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of readings and research on selected topics concerning the cultural history of China, from the Shang and Zhou periods to late imperial China. Emphasis will be on both urban and rural, elite and popular cultures in Chinese society. The precise topic varies from year to year; representative subjects include religious beliefs, rites and rituals, folklores, customs and symbolism. The course is designed for students across the University with an interest in Chinese culture and particularly its historical trends.", + "title": "Chinese Cultural History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of readings and research on\nselected topics concerning the cultural history of China,\nfrom the Shang and Zhou periods to late imperial China.\nEmphasis will be on both urban and rural, elite and\npopular cultures in Chinese society. The precise topic\nvaries from year to year; representative subjects\ninclude religious beliefs, rites and rituals, folklores,\ncustoms and symbolism. The course is designed for\nstudents across the University with an interest in\nChinese culture and particularly its historical trends.", + "title": "Chinese Cultural History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3243S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the political, social, economic and/or cultural developments in China after 1949. It aims at providing students with key processes of China's contemporary transformation within a changing international environment. The topics covered may include reforms and revolutionary trends from 1949 to 1966, China's Cultural Revolution as inspired by Mao Zedong, socio-political changes after 1978, and the origins, development and meaning of nationalism as it has been perceived in contemporary China.", + "title": "Topics On Contemporary China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses and compares Chinese societies in the United States, Australia and Southeast Asia. Emphases are placed on the following topics and issues: comparative history of Chinese immigration, early Chinese immigrants, anti-Chinese movements in the United States and Australia in the late 19th and early 20th centuries, Chinese overseas and political developments in China before 1949, developments and characteristics of Chinese communities, and the roles played by ethnic Chinese in different countries or regions after the second world war. This course is offered to students across the University with an interest in the history of the Chinese diaspora.", + "title": "Overseas Chinese Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3245", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a comprehensive study of changes and problems in modern China, with particular attention to the major historical events and influential personalities from the Opium War (1839-1842) to the establishment of the People's Republic of China in 1949. Topics and issues for discussion and analysis include the impact of the West on China and the Chinese intellectuals' responses to the challenge, rebellions and wars, reforms and revolutions, political and social developments in modern China, the new cultural movement in the early 20th century and its impact on contemporary China. This course is offered to students across the University with an interest in modern China.", + "title": "Socio-Political History of Modern China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an in-depth study of the socio-economic\n\ndevelopment in the history of China, covering the\n\nperiod from 3000B.C. to A.D. 1911. It includes critical\n\nanalysis of various economic practices, land systems\n\nand financial administrations during the period\n\ncovered, and their implications on political, social\n\nand cultural aspects of the country. Major economic\n\nand financial theories will be discussed; prominent\n\neconomists and financial bureaucrats will also be\n\nappraised in relation to the political and social\n\nimpacts of the reform policies they implemented", + "title": "Socio-Economic History of China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comprehensive overview of the political, social, economic and cultural developments in China since 1949. It introduces key events, personages, and documents and provides students with an 'inside perspective', cultivating a detailed understanding, based on original sources, of the evolution of contemporary China. The topics covered include the revolution of 1949 and its interpretations, the construction of socialist 'New China', the Great Leap Forward (1958-60), the Cultural Revolution (1966-76), as well as the political, economic, and cultural trajectory of China in the reform era (1978 to present).", + "title": "Contemporary China: 1949 to Present", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3248", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses major topics of Confucian thought in the Pre-Qin, Song/Ming and modern contemporary periods in detail so as to give students a better understanding of the significance and value of the development of Confucianism in these three stages. The course is intended for students who are interested in reading Chinese philosophy.", + "title": "Confucian Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the eleventh century, a new intellectual movement that we retrospectively called Neo-Confucianism began to take shape and after a few centuries of intense competition with other intellectual trends, it became the orthodoxy of the late imperial system. This module will trace the origins and development of Neo-Confucianism within the political, social and cultural context of the last thousand year of imperial China\u2019s history. It will allow students to see the complexity that accompanied the spread of Neo-Confucianism in history. It is intended for students who are interested in studying Chinese thought from a historical perspective.", + "title": "Neo-Confucianism in Chinese History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course surveys the chronological development of Buddhism in China from its earliest beginnings to the Republican Period and examines how the religion was transmitted, translated, and transformed by exploring its literature, institutions, ideas, practices, and schools. Themain topicsinclude the interaction of Buddhism with Chinese culture, the scripture\u2010translating enterprise, and the Chinese transformation of Buddhism.", + "title": "Introduction to Chinese Buddhism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3255", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an in-depth evaluation of one to two prescribed texts not covered under CH2261. Significant chapters of the texts will be selected for intensive reading and close analysis. The course will be of interest to students who wish to further their study in Chinese thought, history and literature. Target students for this module are second- and third-year undergraduates across the University and those majoring in Chinese Studies.", + "title": "Prescribed Text: The Four Books", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3261", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce to students the diverse cultural and arts forms of China, Hong Kong and Taiwan. Students are expected to have a fuller and deeper understanding of the dynamics of cultural changes in modern Chinese communities after taking this module. Topics include a wide range of cultural movements and intellectual currents in China, HK, Taiwan, such as visual arts (paintings and documentaries), performing arts (identity questions raised by dance and theatre performances), internet literature and body writing, youth culture, political parody in pop songs and gender politics in the contemporary fiction.", + "title": "Contemporary Chinese Society and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module consists of readings and research on selected topics in Chinese art and focuses on one to two particular art forms in Chinese history, for example, Chinese calligraphy, Chinese ceramics, wood-block prints and Chinese painting. Historical development, changing forms and techniques, and the relation between the art form and society will be discussed. The course is designed for students across the University with an interest in Chinese art.", + "title": "Selected Topics in Chinese Art (taught in Chinese)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course surveys the development of Chinese popular literature from late Qing Dynasty to the present by tracing the transformation of three themes in vernacular fiction: martial arts, court romance, and science fiction. Through reading some of the most important works of the period, discussing the movies and TV dramas based on them, as well as examining how the Chinese literary landscape was shaped by the shift in medium of transmission from paper to the Internet, students will develop analytical skills in critically reflecting upon the modernization of Chinese literature. This module is taught in Chinese.", + "title": "Modern and Contemporary Chinese Popular Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3273", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the cultural and historical development of modern China through the prism of Lu Xun (1886\u20101936), the preeminent intellectual figure of his age. As a writer and a public figure, Lu Xun stands at the crossroads of Chinese literature, culture, society, history, and politics. His works and his legacy illustrate China\u2019s search for modernity, from the last years of the Qing dynasty to the eve of the twenty\u2010first century. The module explores the different facets of a fascinatingly complex figure and provides an introduction to the literature, culture, and history of modern China.", + "title": "Lu Xun and Modern China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce to students the diverse cultural and arts forms of China, Hong Kong and Taiwan. Students are expected to have a fuller and deeper understanding of the dynamics of cultural changes in modern Chinese communities after taking this module. Topics include a wide range of cultural movements and intellectual currents in China, HK, and Taiwan, such as visual arts (paintings and documentaries), performing arts (identity questions raised by dance and theatre performances), internet literature and body writing, youth culture, political parody in pop songs and gender politics in the contemporary fiction.", + "title": "Contemporary Chinese Culture (taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the beginning and early development of Chinese civilization. The primary purpose of this course is to fathom the dimensions pertaining to the question of how the Chinese became Chinese. Various dimensions, including the art of governing, social relations, modes of thinking, religious and non-religious beliefs, moral concepts, etc., will be explored through archaeological discoveries as well as historical and philosophical writings. The course is open to all students who are interested in traditional Chinese civilisation.", + "title": "Selected Topics in Chinese Civilisation (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3292", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module consists of readings and research on selected topics in Chinese art and focuses on one to two particular art forms in Chinese history, for example, Chinese calligraphy, Chinese ceramics, wood-block prints and Chinese painting. Historical development, changing forms and techniques, and the relation between the art form and society will be discussed. The course is designed for students across the University with an interest in Chinese art.", + "title": "Selected Topics in Chinese Art (taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3293", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the development of Chinese science and medicine from the beginning to the present. It adopts an interdisciplinary approach, drawing on the perspectives of cultural and social history, gender studies, philosophy and religion. The course is designed for students interested in understanding science and medicine in the historical and the cultural context of China. We will read primary texts (in translation) and secondary scholarship. The course is taught in English.", + "title": "Science and Medicine in China (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3294", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is structured on an intensive basis with classes and fieldtrips conducted exclusively in China. The aim of the module is to provide students a greater understanding of China by focusing on topical aspects of both historical and contemporary issues of the transformation in China from the past to the present. Topics include cultural changes, language reforms, Westernization, legal system, and issues on family and environment.", + "title": "Understanding China: Past and Present (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3295", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the early development of Chinese civilizations from prehistoric times to the Song dynasty (960\u20101279). Its primary purpose is to show that certain cultural features that we would today identify as Chinese actually emerged from a complex historical situation where different historical trends interacted, negotiated and competed with one another. Various dimensions, including the art of governing, modes of thinking, social and cultural practices and etc. will be explored in light of historical, literary and philosophical writings. The course, taught in English, is open to all students who are interested in traditional Chinese civilisation.", + "title": "'China' in the Making (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3296", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers a multidisciplinary and topical approach to understanding key issues pertaining to the Chinese communities in Southeast Asia. Students will learn about the the social and cultural experiences of the various Chinese communities in different parts of the region and their transformations over time through official records, newspaper reports, literary writings, films, music, art, and so on. This module is designed for students who are interested in appreciating the shifting meanings of \u201cChineseness\u201d within the specific political, social, economic and cultural contexts of Southeast Asia, past and present.", + "title": "Chinese in Southeast Asia (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3298", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The height of the Cold War during the third quarter of the twentieth century was arguably the most challenging to the Chinese migrants and their local-born descendants. Although they have experienced creolization and acculturation in their country of destination and birth, their allegiances became suspect after China came under the communist rule. Many were regarded as the fifth column of communist China and were relegated to second-class citizens. With a focus on Southeast Asia, this course examines the policies and experiences of ethnic Chinese during the Cold War and aftermath.", + "title": "Cold War and the Chinese Diaspora (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3299", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Chinese Temples are important religious and social sites in overseas Chinese communities. The networks that many of these temples forged are also major channels of flow for resources, ideas, and information in Southeast Asia. By studying these temples, students will gain a deeper appreciation of Chinese religious activities, as well as new perspectives in understanding overseas Chinese communities.", + "title": "Chinese Temples Across Southeast Asia (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3390", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the Department of Chinese Studies, have relevance to the major, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the Department.", + "title": "Chinese Studies Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3550", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project. UROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed. UROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3551", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3551R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for doing a general survey on chosen topics in Chinese Literature depending on the specialty of the instructor. Most likely the topic will change from year to year.", + "title": "Topics in Chinese Literature 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for doing a general survey on chosen topics in Chinese history depending on the specialty of the instructor. Most likely the topic will change from year to year.", + "title": "Topics in Chinese History 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for doing a general survey on chosen topics in Chinese philosophy depending on the specialty of the instructor. Most likely the topic will change from year to year.", + "title": "Topics in Chinese Philosophy I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH3883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the nature, characteristics and tradition of Chinese classical phonology. In addition to rhyme books, rhyme tables, and the various categories and elements in them, students will also be expected to understand the application of Chinese phonology in the study of textual criticism, poetics and Chinese dialectology. Three main periods of Chinese in respect to phonology will be covered: Old Chinese, Middle Chinese and Old Mandarin. The course is offered to students in the Department.", + "title": "Chinese Classical Phonology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with a general knowledge of traditional semasiology (Xunguxue), and to acquaint them with methods and principles of studying meanings of words in classical Chinese as well as paraphrasing classical literature and textual criticism. The course is targeted at students in the Department with a solid background in classical Chinese and Chinese language.", + "title": "Chinese Semasiology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the origin, distributions and characteristics of major Chinese dialects. The relationship between modern Mandarin and these dialects will also be discussed. The module also provides students with basic training in dialectal research through field work. Historical comparisons with Middle Chinese will also be discussed.", + "title": "Chinese Dialectology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores a wide variety of linguistic topics in the Chinese language. It covers historical phonology of Chinese, Chinese scripts, classical and modern sentence structures, the application of current linguistic theories to Chinese, dialectal studies (including topics related to Chinese dialects in Singapore and language planning), etc. For Chinese historical linguistics, this course introduces both the Chinese traditional approach (rime books, rime tables, old texts, phonogram graphs, etc.) and the Western approach (sound change, comparative method, reconstruction). This course is offered to students in the Department.", + "title": "Selected Topics in Chinese Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to show students how metaphors are an integral part of our daily lives and everyday language. There is a mapping between metaphors and the issues they are used to represent. Students will read research papers written on Chinese metaphors and their usage in everyday language. They will explore the different metaphors used in different writings such as sports reports, political speeches, business correspondences, etc. to understand why certain metaphors tend to be important in certain writings. In understanding the usefulness and effectiveness of metaphors, students will understand the cognitive implications behind these metaphors.", + "title": "Chinese Metaphors", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a theoretical study of Chinese grammar. Topics will include: traditional and modern systems of Chinese grammar, the relationship between Chinese characters and morphemes, 'wordship' in Chinese, the distinction between words and morphemes/phrases, classification of Chinese words and sentences, grammatical units, logical relations and grammatical forms, sentence analysis, grammar-morphology-phonology interface. There will also be a brief introduction of the history of Chinese grammatical studies, and the influence of western linguistic theories in the history. Selected original books and articles important in the development of Chinese grammatical theories will also be discussed.", + "title": "Theoretical Issues in Chinese Grammar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to trace the development of the Chinese language and to describe the characteristics of its phonology, lexicon and syntax in various historical periods. Major topics included are theories on the historical periods, the historical development of Chinese words, mono-/bi-syllabic features of Chinese words, the emergence of some function words and their effects on the Chinese grammatical structure, tones and their historical origin, changes in sentence patterns through various stages of Chinese. The course is designed for students across the University with some background in classical Chinese.", + "title": "History of Chinese Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to expose students to classical colloquial novels of the Ming and Qing Dynasties. One of the masterpieces in this novelistic tradition such as the Romance of the Three Kingdoms, Water Margin, Journey to the West and the Story of the Stone will be selected for in-depth study. The analysis will focus on the novel's thematic concern, narrative form and structure, and its way of characterization in relation to the socio-cultural milieu in which the text was produced. The course caters to students with a strong interest in ancient Chinese novels and Ming-Qing literati culture.", + "title": "Chinese Classical Novels", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a survey of traditional Chinese literary theories from the Pre-Qin period to the Qing Dynasty, for enhancing students' competence in analysis of literary works. The content of the module covers a series of traditional concepts in criticism of lyric poetry such as ethical or aesthetical function of poetry, vision or dynamic process as nature of poetry, use of correlative thinking in lyric aesthetics, and taste and flavour in connoisseurship. The course is designed for students with an interest in Chinese lyricism and literary criticism.", + "title": "Chinese Literary Criticism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the module is to introduce students to the tradition of Chinese classical poetry in the forms of shi, ci, qu and fu. Representative works of important authors are selected for intensive reading to train students to interpret and appreciate classical Chinese poetic writings. Works in one or two poetic forms will be selected for in-depth study. The course is designed to deepen students' understanding of the four poetic genres in the Chinese literary tradition.", + "title": "Studies in Chinese Verse", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course takes a close look at how the metropolis and urban life figure in twentieth-century Chinese literature and culture. We will examine the literary and visual representations of the city in modern China through close analyses of the novels, short stories, films, and photographs that illuminate Chinese urbanism. The cultural manifestations of such Chinese metropolises as Shanghai and Beijing will be extensively discussed. Also, Hong Kong and Taipei will be included.", + "title": "The City in Modern Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a literary and cultural study of contemporary Chinese literature through the lens of twelve key words. Drawing on Raymond William\u2019s methodology of keyword studies, this course introduces twelve critical vocabularies associated with modern and contemporary Chinese literary dynamics modernity, enlightenment, revolution, nostalgia, city, youth, romance, diaspora, trauma, gender, disease, and utopia. It brings together multi-disciplinary approaches ranging across literary studies, media culture, and cultural studies to address critical issues confronting modern Chinese writers, such as the double bind of revolution versus enlightenment, the rural-urban divide, utopianism, Chinese diaspora, and the polemics surrounding China\u2019s market reforms.", + "title": "Contemporary Chinese Literature in Twelve Key Words", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a detailed study of specific periods, i.e. dynasties in ancient and medieval China. It includes critical analysis of the political, social, cultural and economic aspects of the periods concerned. Selected historical figures will also be appraised. The course is designed for students in the Department, and those with a good understanding of the general history of China are encouraged to take the module.", + "title": "Selected Periods of Chinese History I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a detailed study of the Song, Yuan, Ming or Qing dynasty in China. It includes critical analysis of the political, social, cultural, and economic aspects of the periods concerned. Selected historical figures will also be appraised. The course is designed for students in the Department. Students with a good understanding of the general history of China are encouraged to take the module.", + "title": "Selected Periods of Chinese History II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at providing students with essential information on the changing characteristics of Chinese communities in various parts of the globe and their evolving ties with China in the contemporary era. It covers topics and issues such as theory and methodology, patterns of migration, multiple identities, the emergence of new migrants, the formation of transnational business networks and the impact of political and economic developments in China on the Chinese overseas and vice versa. These thematic issues will be discussed in conjunction with specific cases drawn from selected countries (e.g. Japan, Australia and Singapore) or regions (e.g. North America and Europe).", + "title": "Selected Topics on The Overseas Chinese", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This research seminar aims to challenge the nationcentered approach of treating China as a coherent unit of historical analysis and provide students with a more complex understanding of Chinese history by focusing on the history of specific localities. We will select a locality each semester for conducting an indepth analysis of its social, economic, and cultural developments in history and will attempt to answer broader historical questions based on the findings.", + "title": "Chinese Local History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines modern Chinese literature and history through the lens of books, newspapers, journals, and other print products from the late 19th century to the present. Interdisciplinary in nature, this module explores both the material aspects (printing, illustrations, book sales etc.) and the symbolic aspects (the contents and ideas) of these works. Students will not only get an understanding of Modern China from an alternative point of view, but also learn to work with these important primary sources.", + "title": "Print Culture in Modern China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4247", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores Modern China in its transnational context. It focuses on the interactions \u2013 chiefly cultural, but also social, political, and economic \u2013 of China with the world beyond its borders. Topics addressed will include translations of literary and non-literary texts, Chinese foreign students abroad, institutions and patterns of cultural exchange, and the introduction of new things, ideas, and concepts to China. The aim of this class is to raise awareness that China is not a stand-alone unit, but has always interacted extensively with her neighbours, in the modern era more so than ever before. This module is taught in Chinese.", + "title": "China Transnational: 1850 to the Present", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to explore the significance of modern and contemporary Chinese thought and the intellectual transition occurring in China from the late nineteenth century to the present. It covers topics such as modern Chinese thought (1898-1949), modern Confucianism. The course is intended for students who interested in how Chinese thought had developed in the nineteenth and twentieth centuries.", + "title": "Modern-Contemporary Chinese Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an in-depth evaluation of one or two prescribed texts not covered under CH2261 and CH3261. Significant chapters of the texts will be selected for intensive reading and close analysis. The course is designed for students who want to extend their knowledge beyond that acquired from CH2261 and CH3261.", + "title": "Prescribed Text: Zhuangzi", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How can we approach shared histories among locales of\nChinese literary production? Treating Singapore-Malaysia\nas a nexus to consider its literary relations in\nthe long 20th century with other localities (e.g.,\nmainland China, Taiwan and Hong Kong), this course\nintroduces the critical concept of \u201cplace\u201d to account for\nthe shifting attributes and implications of the cultural\nlinkages affecting our perspectives on literary heritage.\nThrough literary texts that address questions of\nsojourn, mobility and migration, it highlights the\nimportance of historicisation when analysing literary\ntransregionalism and shows how geographical distance\ndoes not necessarily co-relate with the strength of\nconnections.", + "title": "Transregional Chinese Literary Connections", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4262", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students are exposed to more issues in translation studies by means of comprehensive translation practice on the basis of a comparative study of model translations of primary genres in Chinese and English. This is to cultivate their stylistic sensitivity and discourse awareness, preparing them for further studies in relevant fields or a possible career as a translator. The course is offered to students in the Department.", + "title": "Translation Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4281", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an optional module designed for students of the Department. It presents the methodology of writing an academic thesis of a stipulated length. Students are expected to work independently and meet their supervisors on an agreed schedule, during the semester, to discuss their progress. Upon completion of the thesis, it is submitted for evaluation by the Department.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "CH4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4660", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine specialised topics in Chinese Literature at an advanced level depending on the specialty of the instructor. The topics offered will generally be more specialised in scope than the Department\u2019s already existing modules. Most likely the topic will change from year to year.", + "title": "Topics in Chinese Literature II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine specialised topics in Chinese history at an advanced level depending on the specialty of the instructor. The topics offered will generally be more specialised in scope than the Department\u2019s already existing modules. Most likely the topic will change from year to year.", + "title": "Topics in Chinese History II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine modern Chinese history through autobiographies and biographies. The aim is to involve students in the debates and issues over\nofficial history versus unofficial history, objectivity versus subjectivity, and understanding modern China from different perspectives. Selected personalities will be discussed and examined in historical, social, cultural and political contexts of 20th century\u2010China.", + "title": "Personalities in Modern Chinese History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4882A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine specialised topics in Chinese philosophy at an advanced level depending on the specialty of the instructor. The topics offered will generally be more specialised in scope than the Department\u2019s already existing modules. Most likely the topic will change from year to year.", + "title": "Topics in Chinese Philosophy II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH4883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an in-depth study of selected topics in Chinese rhetoric such as the revival of rhetoric in recent decades, new rhetorical devices and stylistic features, contrastive rhetoric, rhetoric and grammar, the variety of vernacular Chinese, style as choice and deviation, history of Chinese rhetoric, etc. It is introduced for students who are pursuing the MA or Ph.D. programmes in Chinese literature or Chinese language. This module will be taught in Chinese.", + "title": "Topics in Rhetoric", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an in-depth study of selected topics in Chinese rhetoric such as the revival of rhetoric in recent decades, new rhetorical devices and stylistic features, contrastive rhetoric, rhetoric and grammar, the variety of vernacular Chinese, style as choice and deviation, history of Chinese rhetoric, etc. It is introduced for students who are pursuing the MA or Ph.D. programmes in Chinese literature or Chinese language. This module will be taught in Chinese.", + "title": "Topics in Rhetoric", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5209R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to give graduate students advanced training in current theories and methods in Lexical Semantics. It systematically introduces classical contents of Semantics Description as well as more recent approaches,especially Frame Semantics, Cognitive Semantics and Construction Grammar. Also covered are some of the research topics in Chinese lexical semantics. Students will be exposed to readings, discussions and demonstrations of methods and expected to do original research, the results of which are to be presented orally and in a research paper.", + "title": "Chinese Lexical Semantics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Lexical Semantics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5210R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced linguistics study of Pragmatics. It is designed to give graduate students an in-depth understanding of current theories in Pragmatics. Students will learn these theories and their applications to the Chinese language. Students will be trained to critically assess these theories with respect to the Chinese language. They are expected to do original research with natural data in preparation for a research paper. The major topics covered are Chinese references and deixis in written and spoken texts, Co-operative Principle with regard to spoken Chinese Speech acts, as well as its applications to Chinese conversations, and critical analysis of the politeness theories on the Chinese language.", + "title": "Seminar in Chinese Pragmatics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Seminar In Chinese Pragmatics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5211R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be exposed to different phonological frameworks (such as Sound Pattern of English and Optimality Theory) and the various phenomena that motivate them. Using this as a stepping stone, this module pursues phonological issues from the perspective of Chinese languages. Students may expect to learn the merits and shortcoming of various theories and their applicability to Chinese languages as well as to other languages. This module seeks to equip students with the ability to develop and evaluate phonological analyses.", + "title": "THEORIES IN PHONOLOGY (Taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be exposed to different phonological frameworks (such as Sound Pattern of English and Optimality Theory) and the various phenomena that motivate them. Using this as a stepping stone, this module pursues phonological issues from the perspective of Chinese languages. Students may expect to learn the merits and shortcoming of various theories and their applicability to Chinese languages as well as to other languages. This module seeks to equip students with the ability to develop and evaluate phonological analyses.", + "title": "Theories in Phonology (Taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5212R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "By using the updated theoretical framework of cognitive linguistics, this module will provide students with a systematic knowledge of Chinese language and the latest development of Chinese linguistics. The topics include the most important issues in Chinese grammar and lexicon with an emphasis of the comparison between Chinese and English. The phenomena range from Modern Chinese, Classical Chinese, Chinese dialects as well as foreign languages.", + "title": "Cognitive Linguistics & Chinese Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cognitive Linguistics & Chinese Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5213R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module stimulates critical thinking on important issues concerning modern Chinese literature such as the question of modernity, the impact of the May-Fourth Movement, what actually constitutes the so-called realism and romanticism, and the personality and complex reflected in the fiction of Lu Xun, Shen Congwen, Lao She, Qian Zhongshu, etc. The course is designed for graduate students with an interest in modern Chinese literature. This\nmodule is taught in Chinese.", + "title": "Topics in Modern Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module stimulates critical thinking on important issues concerning modern Chinese literature such as the question of modernity, the impact of the May-Fourth Movement, what actually constitutes the so-called realism and romanticism, and the personality and complex reflected in the fiction of Lu Xun, Shen Congwen, Lao She, Qian Zhongshu, etc. The course is designed for graduate students with an interest in modern Chinese literature. This\nmodule is taught in Chinese.", + "title": "Topics in Modern Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5222R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on one or two selected authors of modern and/or classical Chinese literature such as Qu Yuan, Tao Qian, Han Yu, Su Shi, Guan Hanqing, Cao Xueqin, Lu Xun, Mao Dun, Shen Congwen and others. The course is structured for graduate students who are interested in acquiring an in-depth understanding of Chinese literature.\nThis module will be taught in Chinese.", + "title": "Selected Authors", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on one or two selected authors of modern and/or classical Chinese literature such as Qu Yuan, Tao Qian, Han Yu, Su Shi, Guan Hanqing, Cao Xueqin, Lu Xun, Mao Dun, Shen Congwen and others. The course is structured for graduate students who are interested in acquiring an in-depth understanding of Chinese literature.\nThis module will be taught in Chinese.", + "title": "Selected Authors", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5223R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a comprehensive study of one or two texts in classical and/or modern Chinese literature not covered under CH5223 such as Shjing (Book of Songs), Chuci (The Songs of the South), Zuozhuan, Shiji (The Historical Records), the Book of Zhuang Zi, the Book of Xun Zi, Wenxin diaolong (The Literary Mind and The Carving of Dragons), the poetry of Du Fu and major works of the Chinese novel. Significant chapters of the texts are selected for intensive reading and close analysis. The course is provided for graduate students with an interest in studying Chinese literature at an advanced level. This module will be taught in Chinese.", + "title": "Prescribed Texts in Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a comprehensive study of one or two texts in classical and/or modern Chinese literature not covered under CH5223 such as Shjing (Book of Songs), Chuci (The Songs of the South), Zuozhuan, Shiji (The Historical Records), the Book of Zhuang Zi, the Book of Xun Zi, Wenxin diaolong (The Literary Mind and The Carving of Dragons), the poetry of Du Fu and major works of the Chinese novel. Significant chapters of the texts are selected for intensive reading and close analysis. The course is provided for graduate students with an interest in studying Chinese literature at an advanced level. This module will be taught in Chinese.", + "title": "Prescribed Texts in Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5224R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the fluid notions of \u201cSoutheast Asia\u201d and \u201cChinese\u201d through twentieth-century literary and cinematic texts. By analysing artistic representations and the contexts in which the texts are produced, students will reflect on issues related to regionalism, ethnic identity, diaspora, and historical memories etc.", + "title": "Topics in SE Asian Chinese Literature and Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to underscore the uniqueness of Chinese literature in Southeast Asian countries such as Singapore, Malaysia, Thailand, Philippines and Indonesia. It explores a wide range of topics including the identity problem and its expression, the status of Chinese literature, the strength and weakness of the works of major writers etc, all under the magnifying glass of comparative study. This module will be taught in Chinese.", + "title": "Topics in Se Asian Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5225R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines one or two important historiographical works from traditional or contemporary China. Significant chapters of the texts will be selected for intensive reading and close analysis. Contemporary scholarship and sinological writings on the works will also be examined. This course is offered to graduate students with adequate knowledge of the history of China. This module is taught in Chinese.", + "title": "Selected Texts in Chinese Historiography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines one or two important historiographical works from traditional or contemporary China. Significant chapters of the texts will be selected for intensive reading and close analysis. Contemporary scholarship and sinological writings on the works will also be examined. This course is offered to graduate students with adequate knowledge of the history of China. This module is taught in Chinese.", + "title": "Selected Texts in Chinese Hist", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5242R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This graduate module looks at evolving China- Southeast Asia relationship in both a global and regional perspective, taking into account new variables like enhanced economic linkages between them, growing connectivity projects and their challenges, geopolitical environment in East Asia, and their interactions with other major powers. The program will delve into both opportunities and challenges facing the regional integration of China and the Association of Southeast Asian Nations (ASEAN), along with the interactions among various strategies and initiatives hinging on Southeast Asia, such as China\u2019s Belt and Road initiative, ASEAN\u2019s Outlook on the Indo-Pacific, and the U.S. Indo-Pacific strategy.", + "title": "Contemporary China-Southeast Asia Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5243", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate module looks at evolving China- Southeast Asia relationship in both a global and regional perspective, taking into account new variables like enhanced economic linkages between them, growing connectivity projects and their challenges, geopolitical environment in East Asia, and their interactions with other major powers. The program will delve into both opportunities and challenges facing the regional integration of China and the Association of Southeast Asian Nations (ASEAN), along with the interactions among various strategies and initiatives hinging on Southeast Asia, such as China\u2019s Belt and Road initiative, ASEAN\u2019s Outlook on the Indo-Pacific, and the U.S. Indo-Pacific strategy.", + "title": "Contemporary China-Southeast Asia Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5243R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an in-depth study of selected topics of momentous importance in the history of modern China from a variety of approaches. Topics may include urban culture, popular protests, social movements, new cultural movements, political ideology, film industry, women's history, leadership, migration, historical theories, Western-centered and China-centered interpretations of modern Chinese history, and others. This course is offered to graduate students with adequate knowledge of modern Chinese history.", + "title": "Topics On History of Modern China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an in-depth study of selected topics of momentous importance in the history of modern China from a variety of approaches. Topics may include urban culture, popular protests, social movements, new cultural movements, political ideology, film industry, women's history, leadership, migration, historical theories, Western-centered and China-centered interpretations of modern Chinese history, and others. This course is offered to graduate students with adequate knowledge of modern Chinese history.", + "title": "Topics On History of Modern China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5244R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the course is to introduce to students the evolution of early and medieval Taoism, including the use of early Taoist texts (Daodejing and\nZhuangzi) within later Taoist religious movements. We will examine the Heavenly Master movement of the 3rd century, the Supreme Clarity revelations of the 4th century, and the Precious Treasure liturgies and scriptures of the 5th century, and Tang ordination texts. This course will focus on reading and interpreting original texts, introduce key concepts and methods for the study of Chinese religions and examine the relationship between Taoist ritual and popular cults.", + "title": "Seminar in Early Taoism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the course is to introduce to students the evolution of early and medieval Taoism, including the use of early Taoist texts (Daodejing and\nZhuangzi) within later Taoist religious movements. We will examine the Heavenly Master movement of the 3rd century, the Supreme Clarity revelations of the 4th century, and the Precious Treasure liturgies and scriptures of the 5th century, and Tang ordination texts. This course will focus on reading and interpreting original texts, introduce key concepts and methods for the study of Chinese religions and examine the relationship between Taoist ritual and popular cults.", + "title": "Seminar in Early Taoism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5245R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to examine the development of Taoism from the Song dynasty to the current period. We will examine the rise of Thunder\nMagic and the Divine Empyrean movements of the Song, the rise of new schools of inner alchemy in the Ming, the spread of Lu Dongbin related spirit writing in the Qing, and the proliferation of regional Taoist ritual traditions in late modern period. The course will combine sinological methods with historical,\nanthropological and religious studies methodologies. The course will focus on the reading of original documents.", + "title": "Seminar in Modern Taoism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to examine the development of Taoism from the Song dynasty to the current period. We will examine the rise of Thunder\nMagic and the Divine Empyrean movements of the Song, the rise of new schools of inner alchemy in the Ming, the spread of Lu Dongbin related spirit writing in the Qing, and the proliferation of regional Taoist ritual traditions in late modern period. The course will combine sinological methods with historical,\nanthropological and religious studies methodologies. The course will focus on the reading of original documents.", + "title": "Seminar in Modern Taoism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5246R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an in\u2010depth study of business culture, in relation to the socio\u2010economic development in traditional Chinese society. It includes critical analysis of various economic schools of thought and business philosophies, leadership and management practices, which largely influence the fiscal policies and financial administration of the country in various periods of pre\u2010modern China. This module would emphasise political and social implications of business culture on traditional Chinese society. Students are required to review major economic and management theories and appraise prominent financiers and government administrators.\n\nThis module will be taught in Chinese.", + "title": "Business Culture in Traditional China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an in\u2010depth study of business culture, in relation to the socio\u2010economic development in traditional Chinese society. It includes critical analysis of various economic schools of thought and business philosophies, leadership and management practices, which largely influence the fiscal policies and financial administration of the country in various periods of pre\u2010modern China. This module would emphasise political and social implications of business culture on traditional Chinese society. Students are required to review major economic and management theories and appraise prominent financiers and government administrators.\n\nThis module will be taught in Chinese.", + "title": "Business Culture in Traditional China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5247R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module applies the knowledge of Chinese language and linguistics to interdisciplinary areas such as language in society, language in communication, language in education, language and psychology, second language acquisition etc.", + "title": "Topics in Applied Chinese Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module applies the knowledge of Chinese language and linguistics to interdisciplinary areas such as language in society, language in communication, language in education, language and psychology, second language acquisition etc.", + "title": "Topics in Applied Chinese Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CH5880R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with knowledge of the marked properties of the Chinese language. It is an intensive study of selected topics in Chinese linguistics, such as phonology, grammar, semantics, rhetoric, lexicology, dialectology, etc. Textual criticism, the Chinese script as well as the relationship between literature and linguistics will also be covered. This course will enhance students' ability to analyze Chinese language at various levels, and their general proficiency of the language. Target students may be those graduate students in the Department who have an interest in Chinese linguistics.", + "title": "Topics in Chinese Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It is generally believed that the system of grammatical rules in a particular language is derived by the application of universally applicable grammatical principles in interaction with language-particular morphological and lexical properties. From this perspective, this module is designed to explore a set of important phenomena observed in the Chinese grammar and to work out with students on how those phenomena can be derived. Students are expected to acquire the knowledge of the universal grammatical principles and to be able to analyze Chinese grammatical phenomena from the perspective of the so-called `Universal Grammar?. This module will be taught in Chinese.", + "title": "Universal Principles and Chinese Grammar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces grammaticalization, one of the approaches to historical linguistics, to graduate students. It focuses on topics of current interest, particularly the principles, the hypothesis of unidirectionality, the context and effects of grammaticalization, and the role of frequency. Chinese data will be examined or re-examined under the framework of grammaticalization. The similarities and differences between the theories of grammaticalization and lexicalization will also be discussed. This module is taught in Chinese.", + "title": "Grammaticalization and Chinese Grammar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses thematically selected topics in classical Chinese literature from traditional China including myths and legends, historical and philosophical prose, shi and ci poetry, drama and performance, and full-length novels. Critical reading and research skills are emphasized, exposing students to various analytical perspectives. This course is specially tailored for graduate students who are interested in traditional Sinology.", + "title": "Topics in Classical Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines critically some of the major literary theories and critical movements in Chinese literary history past or present. It aims to provide students with a critical apparatus to examine and critique Chinese literary works and Chinese literary history on their own terms. The content of this course covers major literary works and theories as well as socio-historical context in which both texts and theories were produced. The course is designed for students with a strong interest in Chinese literature and culture. This module is taught in Chinese.", + "title": "Chinese Literary Theories and Movements", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Interdisciplinary in nature, this module is designed to examine, through case studies, the intricate and multifaceted relationships among writers, literary works, and a mesh of cultural variables including printing, textual transmission, performance, entertainment, education, politics and popular religion. The focus of the module is thematic and is not restricted to any particular period or region. This module is offered to graduate students with adequate knowledge of Chinese literature.", + "title": "Culture and Society Through Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies selected topics in Chinese history such as Chinese historiography, cultural history of China, Chinese intellectuals and Chinese politics, dynasty history of China, Chinese social and economic history, the traditional Chinese legal system, Chinese political thought, or any selected combination of these topics. Case studies with reference to a selected dynasty will be conducted.", + "title": "Topics in Chinese History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6241", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a seminar in Southeast Asian Chinese Studies with particular reference to the Chinese in Colonial Malaya and Singapore. Topics and issues for discussion and analysis include Chinese immigration, Chinese associations and leadership, Chinese education and culture, women's history, nationalism and popular movements, ethnic Chinese and nation-building, triangle relationship among the Colonial government, Chinese consuls and Chinese communities, and theory and methodology in Southeast Asian Chinese studies. This seminar targets at graduate students with general knowledge in Southeast Asian history and/or modern Chinese history. This module will be taught in Chinese.", + "title": "Seminar in Se Asian Chinese Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed for M.A./Ph.D. students in the Department and is a close, cross-sectional study of the development of Chinese society and culture in its various aspects over a given historical time span. It focuses on how different dimensions of an evolving culture were shaped and tied together into an organic whole. Topics vary from year to year depending on the lecturer\u2019s interests. A good reading knowledge of classical Chinese and English is required for study of selected problems through seminar discussions, group presentations and project works.", + "title": "Culture and Society in Chinese History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the mechanisms of history writing. Students will examine how historians and their milieu mutually act on each other; how history can shape the visions of historians and how historians perceive and mould history as we know it. They will find that this module builds upon existing knowledge of Chinese history and will broaden their horizons in a number of related fields of study, including traditional China, modern China, and historical philosophy. This course is offered to graduate students with adequate knowledge of Chinese history.", + "title": "Chinese History and Historians", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In Southeast Asia, the global Cold War coincided with the decolonization process when newly-emerging independent nations were eager to seek powerful international allies and vice versa. As long-term sojourners and settlers in the region, the Chinese migrants and their local-born descendants arguably saw the height of the Cold War as the most challenging period. Although they have experienced creolization and acculturation in their country of destination and birth, their allegiances became suspect after China came under the communist rule. This course examines the policies and experiences of ethnic Chinese in Southeast Asia during the Cold War and its aftermath.", + "title": "Cold War and the Chinese in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module critically examines patterns and characteristics of socio-cultural interactions between China and Southeast Asia, focusing on the post-1945 era. It aims at providing students with critical capacities to analyse the changing configurations of contemporary Asia and their historical precedents. Topics include\ncultural exchanges; Chinese new immigrants; transnational networks; the infusions of ideas about modernity and political transformation; literary influence of China and construction of\nnew cultural/political identities; and the role of ethnic Chinese in Sino-S.E. Asian diplomatic and economic relations. Target students are those interested in modern Asia and ethnic Chinese in the region.", + "title": "Studies in Sino-S.e. Asian Interactions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6248", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The\u00a0 term\u00a0 \u201cessential\u00a0 outsiders\u201d\u00a0 \u2013\u00a0 title\u00a0 of\u00a0 a\u00a0 1997\u00a0\nanthology\u00a0\u2013\u00a0encapsulates\u00a0well\u00a0the\u00a0tense\u00a0political\u00a0status\u00a0\nexperienced\u00a0 by\u00a0 the\u00a0 ethnic\u00a0 Chinese\u00a0 in\u00a0 many\u00a0 Southeast\u00a0\nAsian\u00a0 countries\u00a0 today.\u00a0 However,\u00a0 the\u00a0 level\u00a0 of\u00a0\ndiscrimination\u00a0 and\u00a0 hostility\u00a0 they\u00a0 experience\u00a0 is\u00a0 not\u00a0\nuniform\u00a0 across\u00a0 the\u00a0 region\u00a0 nor\u00a0 has\u00a0 it\u00a0 been\u00a0 a\u00a0 constant\u00a0\nphenomenon\u00a0 through\u00a0 history.\u00a0 This\u00a0 multi\u2010disciplinary\u00a0\ncourse\u00a0is\u00a0a\u00a0critical\u00a0analysis\u00a0of\u00a0the\u00a0studies\u00a0on\u00a0the\u00a0Chinese\u00a0\nin\u00a0 Southeast\u00a0 Asia\u00a0 from\u00a0 the\u00a0 eighteenth\u00a0 century\u00a0 to\u00a0 the\u00a0\npresent.\u00a0We\u00a0will\u00a0examine\u00a0themes\u00a0relating\u00a0to\u00a0economic\u00a0\nmigration,\u00a0 ethnicity\u00a0 and\u00a0 creolization,\u00a0 competing\u00a0\nnationalisms\u00a0and\u00a0sinicization,\u00a0as\u00a0well\u00a0as\u00a0postcolonialism\u00a0\nand\u00a0citizenship.", + "title": "Essential\u00a0Outsiders?\u00a0 The\u00a0 Chinese\u00a0 in\u00a0 Southeast\u00a0Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Particularly since the 1990s, scholars and researchers have proposed and debated over the theories and concepts to discuss the Chinese abroad, especially how to distinguish between those who may or may not share affinities with the People\u2019s Republic of China, be these political or cultural. The key ideas and terminologies include those distinguishing the Chinese overseas (huaren) from overseas Chinese (huaqiao), diaspora, assimilation and integration, Chineseness, Sinophone, flexible citizenship, and the phenomenon of return and the use of intimacies and tropes as methods of analysis. This course examines these key conceptions of the Chinese overseas and how they have emerged.", + "title": "Chinese Diaspora: Key Concepts and Theories", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This thematic module covers in detail selected topics in Chinese philosophy such as pre-Qin Confucianism, Wei-Jin Taoist philosophy, Buddhist philosophy, Neo-Confucianism, Chinese thought over the last three hundred years (1610-1927), or any selected combination of these topics. Special seminars on selected texts such as the Confucian Analects may also be offered. Critical reading and research skills are emphasized. This course is specially tailored for graduate students who are interested in traditional Sinology.", + "title": "Topics in Chinese Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced study in Chinese philosophy, focusing on textual analysis and conceptual investigation of different schools of thought in the pre-Qin period. Emphasis will be placed on the dynamic interrelationships among various doctrines in this period. Critical reading and research skills are emphasised. This course is specially tailored for graduate students who are interested in traditional Sinology. This module is taught in Chinese.", + "title": "Intellectual Landscapes in Pre-Qin China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce students to Western scholarship on Chinese studies by way of examining representative works from various disciplines within Chinese studies, including literary studies, historical studies, philosophy and religion. Emphasis is placed on critiquing the methodological assumptions, the handling of primary and secondary sources, interpretive strategies as well as the writing style in the chosen samples. The course may be team-taught by instructors from a variety of disciplines in Chinese studies.", + "title": "Chinese Studies in the West", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This independent-study module requires students to work on a research project related to their field and present their findings in a seminar toward the end of the course. It aims at providing students with critical analytical and writing abilities for topics closely related to the field of dissertations. Choice of topics and plan of study are to be finalized with their supervisors' approval. Regular consultation with supervisors throughout the course is required. Permission by the Department to read this module is necessary.", + "title": "Independent Study in Chinese Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6262", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Translation, as a process of cross-boundary communication, can be explored from many different perspectives: formal, cultural, and political (among others). Major topics to be covered in this module include the misunderstandings of translation, the problems of formal complexity and incompatibility, translating culture, foreignization versus domestication, the politics of translation, translating as a means of generating or solving (international) political problems, translation and ideology, etc. In each semester, a special set of topics will be focused on according to the particular interest and needs of the class of students. This module is taught in Chinese.", + "title": "Translation: Formal, Cultural, Political", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CH6263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CH6770", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will survey the latest research trends in the field of Chinese philosophy, history, and literature. We will be reading recent and influential publications in both English and Chinese. This is a compulsory module for the MA (Chinese Culture and Language) coursework program.", + "title": "Contemporary Research in Chinese Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 43, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Lecture", + "size": 43, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Monday", + "lessonType": "Lecture", + "size": 43, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 43, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will survey the latest research trends in the field of Chinese linguistics and Chinese Philology. We will be reading recent influential publications in both English and Chinese. This is a compulsory module for the MA (Chinese Culture and Language) coursework program.", + "title": "Contemporary Research in Chinese Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Lecture", + "size": 43, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Thursday", + "lessonType": "Lecture", + "size": 43, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 43, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 43, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an in\u2010depth study of the Tang period (618\u2010907 AD) of imperial China. It includes an introduction to research methodology and literature review, followed by a critical review of the Tang empire history and analysis of its various political, economic, cultural and foreign policies as well as social development. Case studies with reference to selected political and social issues will be included. Key historical figures will also be appraised.", + "title": "History and Civilizations of the Tang Empire", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Thursday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module traces the history of Buddhist proselytization in pre\u2010modern China by focusing on the narrative strategies in Buddhist scriptures imported from India and Central Asia as well as Buddhist literature by Chinese authors including their commentaries on Confucian and Taoist texts. Students will come to appreciate how proselytization and assimilation of Buddhist philosophy facilitated each other and how Buddhist narratives contributed to the birth of oral and performing literature in China.", + "title": "Chinese Buddhist Proselytic Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a survey of the traditional Chinese culture preserved and practised in Singapore and Malaysia. It is aimed at giving students a deeper understanding of how traditional Chinese culture was transmitted overseas and its relevance to the present Singapore and Malaysia societies. Topics of discussion will include Chinese high culture and popular culture, such as Chinese artistic expressions, food culture, Chinese beliefs, festivals and customs, wedding and funeral rituals.", + "title": "Traditional Chinese Culture in Singapore and Malaysia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is a detailed study of the society and culture of the Ming dynasty (1368\u20101644). It includes the critical analysis of the social and cultural changes during the founding of the Ming dynasty, a transition from Mongol to Han rule, and the so\u2010called \u201canti\u2010traditional\u201d period during the late Ming era.", + "title": "Society and Culture of the Ming Dynasty", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5304", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses prominent Nanyang Chinese who made significant impact on modern China or changed the course of modern Chinese history. Selected personalities who were born in Southeast Asia and later achieved great careers in China will be discussed and examined in historical, social, economic, cultural and/or political contexts of the late 19th and early 20th centuries. These individuals include Gu Hong Ming, Lim Boon Keng, Li Deng Hui, Wu Lien-Teh, and Robert Lim K.S The course will be taught in Chinese.", + "title": "Prominent Nanyang Chinese in Modern China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5305", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the development of Chinese intellectual history from the 10th to the 19th century, covering the Song, Yuan, Ming, and Qing dynasties. The module takes a thematic approach, and will discuss in depth the important research publications in both the English and Chinese academic worlds.", + "title": "Chinese Intellectual History, 10th \u2013 19th Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a broad look at China\u2019s past and critically identifies major research themes in the field. A variety of themes such as gender, states relation, consumption and urban culture, relation within global economy, and migration networks may be covered.", + "title": "Major Themes in Chinese History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5307", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will survey the various ways kinship was practised and organized in Chinese history, especially after the Song dynasty. The interplay of how local conditions affected kinship practices, as well as how kinship organizations would impact power relations in local society, is one of the major research questions investigated in this module.", + "title": "Chinese Kinship and Local Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5308", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an in-depth study of economic and management thought in pre-modern China. It includes critical analysis of various economic thought, management practices and financial administrations in various periods of pre-modern China and their implications on political, social and cultural aspects. Major economic and management theories will be discussed; prominent financiers and government administrators will also be appraised.", + "title": "Economic & Management Thought in Pre-Modern China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5309", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the module is to introduce students to the tradition of Chinese fu (rhapsody). The fu is a major poetic form that attained prominence in 100 B.C.E. It was the most important genre of refined literature that dominated the Western and Eastern Han dynasties. Representative works of important Han and Six Dynasties authors are selected for intensive reading to train students to interpret and appreciate classical Chinese rhapsody. The course is designed to deepen students\u2019 understanding of this poetic genre in the Chinese literary tradition.", + "title": "Chinese Rhapsody", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5310", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "lyric is one of the most important genres of classical Chinese poetry. Flourishing in the Tang-Song period, a revival of was witnessed in the Qing dynasty, with the emergence of different schools and publication of many manuals and discourses. Major topics include forms and regulations, major schools and styles evolved from the Song to the Qing, aesthetics and important scholarly studies. Ci ci ci ci ci ci ci", + "title": "Ci Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at enhancing the students\u2019 critical analysis and perspective of the poetry and poetics in Tang-Song period. shi", + "title": "Tang-Song Poetry and Poetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the module is to introduce students to a variety of themes in Chinese literature. We will trace the origins and development of these literary themes through reading and discussion of both poetry and prose works. Representative themes from early and medieval literature are selected for research and investigation. The course is designed to deepen students\u2019 understanding of major themes in the history of Chinese literature.", + "title": "Thematics in Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the development of Chinese religions, including Taoism, Popular religion and Buddhism in China, as well as in the Chinese Community of Singapore. It also examines the transformation of these religions in history and developments of their core thoughts The module takes a thematic approach, and will discuss in depth the important original texts and research publications in both the English and Chinese academic worlds.", + "title": "Chinese Religion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5314", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the new development of Taoism in the third century when China entered into a period of political disunity for centuries to come. New interests in the dark mysteries of the universe and solid groundings (if any) of human flourishing and happiness came to the forefront. Classical Taoism was given a new twist as Confucian ideas were subtly assimilated and is often called \u201cNeo\u2010Taoism\u201d. The module focuses on the critical reading of some foundational commentaries on the Laozi and the Zhuangzi and illustrates how Neo\u2010Taoism is different from its predecessor in early China.", + "title": "Neo\u2010Taoism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5315", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Interdisciplinary in nature, drawing upon concepts from sociology of literature and cultural history, this module studies the interrelationships between Chinese literature and print culture. The period of study stretches from late Ming China to modern Singapore, focusing on several themes and issues, which include 1) urban culture and literary production; 2) literary magazines, literary organizations, and literary movements; 3) popular readings and mass entertainment; 4) cultural connections between Shanghai, Hong Kong, and Singapore; 5) Cold War culture and cultural Cold War in the 1950s and 1960s.", + "title": "Print Culture & Chinese Literature: From Ming to Modern", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5316", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Research on modern Chinese culture can be found across various disciplines including literature, media studies, sociology, gender study and political science. This graduate seminar draws on this interdisciplinary body of scholarship and aims to expose students to new developments, themes, and approaches in modern Chinese cultural studies, as well as engage with contemporary cultural theories and explore untapped historical sources. Among the linked topics are gender and sexuality, modernism, digital culture, ecocriticism, youth culture, and biopolitics. Students will interrogate limitations and contradictions within the field, all the while exploring new possibilities and directions within modern Chinese cultural studies.", + "title": "New Approaches to Modern Chinese Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5317", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module takes time and space as the main axes to examine the development of traditional Chinese culture in its various aspects over a given historical time span. It consists of readings and research on selected topics concerning the cultural history of China, from the traditional periods to contemporary era, with focuses on how different dimensions of an evolving culture were shaped and tied together into an organic whole. Emphasis will be on both past and present, continuity and interruption in cultural developments, as well as the demarcation of urban and rural, elite and popular cultures in Chinese society.", + "title": "Time and Space in Traditional Chinese Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5318", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a multidisciplinary study of the interrelationship between the development of Chinese opera and the history of Singapore. Drawing upon concepts from cultural, political and economy history, it focus on overseas Chinese in Singapore and the localisation of the performing art. The period of study stretches from pre-Raffles period to modern Singapore, highlighting on themes and issues, such as 1) the overall development of Chinese Opera in Singapore; 2) relationship between Chinese opera and Chinese dialect groups in Singapore; 3) the audience; 4) the performer and stage; 5) localisation of the six major forms of opera in Singapore.", + "title": "Development of the Chinese Opera Scene in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5319", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to give students an overview of the historical development of the Chinese morphosyntax from the perspective of grammaticalization. Major topics included are periodization of Chinese, the historical development of Chinese morphology, the historical development of Chinese syntax, the emergence of the most important sentence patterns in Chinese, and the historical source of Modern Chinese.", + "title": "Grammaticalization in Chinese", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5320", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a linguistic course which focuses on Chinese interpretations of what is aesthetically beautiful. To do so, we will examine verbal/written accounts describing or referring to sonic (e.g. musical) and visual (e.g. artistic) representations, analysing cultural meanings behind words and phrases that crop up in these accounts. The premise is that, whereas sonic and visual representations themselves do not hold any meaning and therefore do not lend themselves readily to rigorous linguistic analyses, words or phrases describing or referring to these representations do.", + "title": "Beauty Through Chinese Lenses", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces pragmatics to students with a particular focus on politeness. Politeness is an important topic in pragmatics and especially among East Asian languages. This module will cover the basic concepts of theories of politeness, face, facework, contemporary politeness, historical politeness, and media politeness.", + "title": "Pragmatics and Politeness", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5322", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module furthers students' understanding of the nature and development of Chinese language through an in-depth study of some linguistic phenomena from different theoretical perspectives. The topics, which may vary from year to year, could be related to, but not limited to Chinese grammar, Chinese dialectology, Chinese phonology and/or Chinese philology.", + "title": "Special Topics in Chinese Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will survey the latest research trends and findings in the field of Chinese historical lexicology and Chinese historical morphology which focuses on the structure of the lexicon as well as the relationship between the lexicon and syntax in Old Chinese.", + "title": "Lexicon in Old Chinese", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an overview of Chinese language (CL) teaching in Singapore. To contextualize the local CL education aspects, this module begins with the illustration of key concepts relevant to Singapore education and CL environment. Subsequently, the policy, subjects, content and forefront practice are revealed to provide students with a holistic understanding of Singapore\u2019s CL education. Lastly, this module introduces some research trends and their respective methodologies in the CL teaching in Singapore, so as to provide students with basic knowledge and capability to conduct practitioner\u2010based research.", + "title": "Chinese Language Education and Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5325", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0101", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Within the frameworks of cognitive and typological linguistics, this module focuses on the similarities and differences between the semantics and syntax of Chinese-English. We will cover ten major features of these two languages, including topic/subject, word formation, grammatical devices and constructions. It is designed to deepen the understanding of these two languages and improve skills in using these two languages.", + "title": "Comparative Grammar between Chinese and English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5326", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces patterns in the lexicon and sentence structure of Modern Standard Chinese from the perspective of how meaning categories are grammatically distinguished and expressed. A distinction is drawn between encyclopaedic meaning and grammatical meaning that is reflected in linguistic structure. Major semantic and conceptual notions that influence language structure are covered, including referentiality, countability, situation type, causation, result, the time-stability of different kinds of states, encoding of spatial and motion-related concepts, etc.", + "title": "Meaning in the Lexicon and Grammar of Modern Chinese", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5327", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Drawing upon concepts from sociology, media studies, literary theory and international relations, this is an interdisciplinary module that studies the developments and changes in different forms of Chinese-language popular culture (such as films, television dramas and popular music) as well as the transcultural flows of Chinese-language popular culture within and outside Asia. Through this module, students will interrogate how Chinese-language popular culture is connected to questions of gender, national identities, and political power.", + "title": "Chinese Popular Culture: Transformation and Flows", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5330", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to acquaint students with historical knowledge of Chinese ceramics and apply it in regional studies. The methodologies of art history and archaeology will be taught. The period spans from Tang to Qing, which covers most Chinese ceramic found in Singapore archaeological excavations. The lectures focus on each type of ceramic in chronological order with datable materials excavated from datable tombs or with date inscription on the vessels. Ceramic shards collected from kiln sites over the years will be shown in the lectures and students are encouraged to handle the shards to enhance their learning experience.", + "title": "Chinese Ceramics: From Tang to Qing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5331", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module trains students to conduct and manage oral history project independently. Upon document the past by preserving insights not found in printed sources and to create first-hand account, oral histories can provide insights not normally found in conventional reviews or summaries. The methodology is a qualitative research which has been widely used in UNESCO, archives, libraries, museums, educational institutions, etc.. The module focuses on the study of the methodology and hands-on which cover these areas\n1. Development of the Methodology\n2. Workflow and Executable Technique\n3. Cross-disciplinary usage\n4. Challenges and Limitations\n5. Interpretation\n6. Case Studies", + "title": "Oral History Methodology: Theory and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5332", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the history of Chinese medicine from ancient China to the contemporary world, using the lens of epidemics and their effects on the development of Chinese medicine. It also examines the formation and changes of Chinese medicine, focusing on the historical and socio-cultural contexts. Different methodological approaches and various key themes in the history of Chinese medicine including Chinese medicine\u2019s encounter with Western medicine, the construction of TCM, the globalization of Chinese medicine, the localization in Singapore and other important topics will be addressed. No knowledge of Chinese medicine is required.", + "title": "Epidemics and Chinese Medicine", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5333", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the module is to discuss the themes of life, love, and death in classical Chinese literature from several perspectives. It looks at the different ways the topics concerning life, love and death are handled in various genres and historical periods. The content of the course will include a variety of genres, including lyrical and narrative poetry, short stories, prose and novels, spanning from Zhou to Qing dynasty. This course is designed to deepen students\u2019 understanding of the most important themes of classical Chinese literature.", + "title": "Life, Love, and Death in Classical Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5334", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to the dynamic interaction among literature, politics, and media in contemporary China. The emphasis is on the manifold interplay between Chinese political discourse and its literary and cultural manifestations (i.e., literature, film, media, etc) in the age of market reforms. It brings together multi-disciplinary approaches ranging across literary studies, media ecology, and political culture to address critical issues confronting China today, such as the legacy of revolution and enlightenment, political and economic reforms, nationalism and its discontents, Chinese diaspora, media war and the COVID pandemic, and the polemics surrounding the emergence of global China.", + "title": "Literature, Politics, and Media in Contemporary China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5335", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a broad but critical look at China\u2019s military history. It allows students to understand Chinese military and its culture in the past - how it actually shapes the country and its people. This knowledge will be useful in helping them to make sense of the Chinese military, strategic culture, and Chinese geopolitical thinking in the present.", + "title": "The Military in Chinese History and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5336", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module takes an Interdisciplinary approach to discuss the development and relation of traditional Chinese landscape poetry and painting. It also examines the evolution of significant concepts in the history of art and literature such as \u201clandscape/nature\u201d and \u201cpicturesque\u201d. Thematic issues will be discussed in conjunction with specific cases, focusing on the relationship between poetry and painting, and how they influence each other. Topics include Old Trees and Stelae, Misty River-Layered Peaks, Level-Distance Landscapes etc. This module will explore the intertextuality between images/paintings and texts/poems. The module will also survey the different methodological approaches of contemporary scholars.", + "title": "Classical Chinese Landscape Poetry and Painting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5337", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to acquaint students with historical knowledge of Chinese maritime exploration history and the cultural exchange that resulted from the interactions. It is very much related to this part of the world and deserved more attention. The period spans from Han to Qing, which covers most Chinese maritime explorations to the Indian Ocean and ideas spread through the sea routes. The lectures focus on each period of maritime activity in the form of diplomatic missions, trades and pilgrimages, which are recorded in historical texts, travel notes, rutters and navigation charts for a well-rounded view of the past events.", + "title": "Chinese Maritime Exploration and Cultural Exchange", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5338", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module traces the China-Hong Kong-Singapore connection through film and television in the 20th century. Students will develop an understanding of the socio-political context in which Chinese diasporic communities were established and how the business of film production, distribution and exhibition connected these disparate localities. It will also highlight the symbiotic relationship between filmmaking and the television industry across different countries in East and Southeast Asia, notably between 1980s and 2000s. Students are encouraged to adopt a multi-disciplinary perspective in their critique of various representations of Chinese Diaspora on film and television and the mass media in general.", + "title": "Chinese Diaspora and Mass Media in the 20th Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5339", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Chinese Temples and Clan and Regional Associations are important religious and social nodes in overseas Chinese community networks in Southeast Asia. These networks are major sites for the flow of resources, ideas, and people from parts of China across Southeast Asia and back again. By studying these organizations, students will gain a deeper appreciation of Chinese networking and socio- religious activities, as well as new perspectives for understanding overseas Chinese communities.", + "title": "Chinese Temples and Associations in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5340", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the past decades cold war studies witnessed a paradigm shift of \u201ccultural turn\u201d, especially after the declassification, digitalization, and opening of official archives in various countries. Drawing upon concepts of cultural history, literary studies, and sociology of arts, this module re-examines this \u201cbattle of hearts and minds\u201d in Asia through the lens of literary practices, print culture, film industry, and music performances. Special attentions are paid to the debates and problematics pertaining to inter-Asian connection (also disconnection), and the institutional networks of cultural production under such \u201cpsychological/media warfare\u201d of the 1950s and 1960s.", + "title": "Cultural Cold War in Asia Print, Film and Music", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5341", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the fluid notions of \u201cSoutheast Asia\u201d and \u201cChinese\u201d through twentieth-century literary and cinematic texts. By analysing artistic representations and the contexts in which the texts are produced, students will reflect on issues related to regionalism, ethnic identity, diaspora, and historical memories etc.", + "title": "Topics in SE Asian Chinese Literature and Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5342", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will bring students into the fascinating world of Chinese epistolary literature by weaving together letters of different topics and styles, written by both canonical authors and the ordinary people. Following a chronological order, this module will expose the students to studies of material culture, social-cultural history, as well as literary history in general. By tackling questions like how letters that were supposedly private became widely circulated and how epistolary literature became literary genres in premodern China, students will get unique insights into the literary past beyond classical poetry and prose.", + "title": "History of Chinese Epistolary Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5343", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Specific authors, works, literary themes, genres, theories and schools, as well as literary productions in different periods of Chinese history will be the various focal points of this module. These topics will be integrally studied with other social, political and cultural issues, with a purpose to broaden and deepen the students\u2019 critical perspective of Chinese literature.", + "title": "Specific Topics in Chinese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5344", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to social and cultural historical studies on Middle-Period China from the 10th to 14th centuries, a period of profound political and social changes under the Song, Liao, Jin, and Yuan dynasties when China experienced alternating Chinese and foreign rules. Focusing on major scholarly debates and cutting-edge studies in recent decades, the seminar equips students the craft of historians through identifying and discussing the \u201cgolden triangle\u201d of questions, sources, and methods. It enables students to rethink their conventional knowledge about Middle-Period Chinese history and to critically review the most significant or latest Chinese and English scholarship.", + "title": "Sociocultural History of Middle Period China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5345", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines representations of various kinds of labour in modern Chinese literature, cinema, and art, and how they variedly obscure and reveal tensions between the productive economy and cultural production. The course introduces students to major theories of labour in social and cultural critiques, alongside primary works (1960s-present) from the PRC, Taiwan, and Malaysia that variously complicate relations between the politico-social aspects of labour, and how labour appears in aesthetic representations. Topics include cultural work; gender and sexuality; rural-urban migration in poetry and prose; rights-based documentary vs. short video-forms; internet literature; cinema and digital media; social media; subculture.", + "title": "\"How We Work\" in Modern Chinese Literature and Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CHC5346", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the Department of Chinese Studies, have relevance to the major, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the Department.", + "title": "China Studies Internship (taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CK3550", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a bilingual introductory course for undergraduates to learn interesting issues of the Chinese language like the structure of Chinese language, the use and variation of Chinese language in society, changes in Mandarin and Chinese dialects, the comparative and diachronic aspects of Chinese language, and the relationship between Classical Chinese and Modern Chinese dialects. This will give students a new perspective of the Chinese language, making the Chinese language current and relevant in today's world. Classes will be delivered mainly in Chinese, with English as a supplementary tool. Students can choose to do assignments and examinations in either language.", + "title": "Chinese Language: Its Past and Present", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a bilingual introductory course for students to\nlearn interesting issues of the Chinese language like the\nstructure of Chinese language, the use and variation of\nChinese language in society, changes in Mandarin and\nChinese dialects, the comparative and diachronic\naspects of Chinese language, and the relationship\nbetween Classical Chinese and Modern Chinese\ndialects. This will give students a new perspective of the\nChinese language, making the Chinese language current\nand relevant in today's world. Classes will be delivered\nmainly in Chinese, with English as a supplementary tool.\nStudents can choose to do assignments and\nexaminations in either language.", + "title": "Chinese Language: Its Past and Present", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL1101S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course deals with various aspects of Chinese characters. The historical portion of the course covers the origin of the Chinese characters, the principles of character formation, the evolution of styles over time, analyses of correlations between shapes and meanings, traces of pronunciations of Old Chinese as revealed in phonogram graphs, etc. The contemporary study covers an appraisal of the Simplified Characters, an evaluation of the Chinese characters in terms of frequency studies and neurolinguistic studies.", + "title": "The Chinese Script : History and Issues", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course deals with various aspects of Chinese\ncharacters. The historical portion of the course covers\nthe origin of Chinese characters, the principles of\ncharacter formation, the evolution of styles over time,\nanalyses of correlations between shapes and meanings,\ntraces of pronunciations of Old Chinese as revealed in\nphonogram graphs, etc. The contemporary study covers\nan appraisal of Simplified Characters, an evaluation of\nChinese characters in terms of frequency studies and\nneurolinguistic studies.", + "title": "The Chinese Script: History and Issues", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL2101S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with a systematic knowledge of Chinese phonology. The topics covered are syllable, intonation, the Neutral Tone, the diminutive marker \"er\", the influence of phonology on lexicon and grammar, etc. The differences and commonalities between Standard Chinese and the various dialects will be discussed whenever pertinent. Students will do 3-4 exercises and an essay about 2500 characters. The course is designed for students across the University with an interest in the Chinese language.", + "title": "Chinese Phonetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL2102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with a systematic knowledge of Chinese grammar. The course covers various grammatical constructions and markers as well as their functions. This course will enhance the students' ability in analyzing the Chinese language, written and spoken, besides their general proficiency of the language. Students will do 3-4 exercises and an essay of about 2500 characters. The course is designed for students across the University with an interest in the Chinese language.", + "title": "Chinese Grammar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL2103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with a systematic knowledge of Chinese grammar. The course covers various grammatical constructions and markers as well as their functions. This course will enhance the students\u2019 ability in analysing the Chinese language, written and spoken, besides their general proficiency of the language. Students will do three to four exercises and an essay of about 2500 characters. The course is designed for students across the University with an interest in the Chinese language.", + "title": "Chinese Grammar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL2103S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to acquaint students with selected topics in Chinese linguistics such as sentence structures, meaning and structure of Chinese words, cognitive grammar, semantics, dialectal variations at various levels, the similarities and differences between Chinese and English at various structural levels. Fieldwork will be involved. The course is designed for students who have already taken CL1101E Introduction to Chinese Language and are interested in learning more about the theoretical aspects of the language.", + "title": "Topics in Chinese Linguistics I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes students through an exciting journey of discovering Chinese culture through the Chinese language. Instead of seeing language as a tool, students are trained to view language as the container of culture from ancient Chinese to modern Chinese. They will learn cultural heritage from Chinese phrases, understand ancient way of life through the creation of Chinese characters, study Chinese culture through Chinese dialects and borrowing words. They will also learn that Chinese names of places and surnames are all related to Chinese culture and how Chinese kinship terms reflect the culture of family relationships.", + "title": "Chinese Language and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Representative writings of Chinese literature of various periods are selected for intensive reading and close analysis. The objective of this course is to cultivate the students' ability in interpreting and appreciating Chinese literature. Materials are chosen from works in the Pre-Qin period to the present. This course is suitable for students who have basic reading ability of Chinese and who are interested in both modern and classical Chinese literature. It is offered to students across the University.", + "title": "Selected Readings", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL2260", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What does \u201cChinese\u201d mean when we talk about \u201cChinese\u201d language, \u201cChinese\u201d culture or \u201cChinese\u201d people? What is \u201cChinese-ness\u201d, and what is the anthropolinguistic evidence for this? The issues and topics covered in this module will help us to address these questions. These include interpersonal communication between \u201cChinese\u201d people themselves (\u201cintracultural communication\u201d); between \u201cChinese\u201d people and other \u201cnon-Chinese\u201d peoples (\u201cintercultural communication\u201d); and, between selected groups of \u201cChinese\u201d people. This module covers a wide range of interesting real-life scenarios involving anthropological, linguistic, psychological and communicative evidence. Students will find practical use for the knowledge acquired in this module.", + "title": "Chinese Anthropolinguistics (taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL2291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to cultivate the students\u2019 writing skills through intensive critical reading and analysing of exemplar pieces in literary masterpieces, historical essays, philosophical treatise and other genres. Students will be required to submit written assignments on a regular basis in the form of creative writing, argumentative essay, text summarization, and so on. This is an essential module for all Chinese Language and Chinese Studies majors and is open to all students who are looking to ways to improve their reading and writing skills in Chinese.", + "title": "Reading/Writing Chinese", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to cultivate the students\u2019 writing skills through intensive critical reading and analysing of exemplar pieces in literary masterpieces, historical essays, philosophical treatise and other genres. Students will be required to submit written assignments on a regular basis in the form of creative writing, argumentative essay, text summarization, and so on. This is an essential module for all Chinese Language and Chinese Studies majors and is open to all students who are looking to ways to improve their reading and writing skills in Chinese.", + "title": "Reading/Writing Chinese", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3104S", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce the theoretical principles, devices and practice of Chinese rhetoric using various types of examples ranging from classical to modern texts. In addition, students will also learn about the use of metaphors. Students will learn how to analyze any written or spoken text of their interest from popular culture and media. This training will heighten their awareness of the effective use of rhetoric and metaphors in different forms and situations equipping them with the skills for better Chinese communication.", + "title": "Communicating through Chinese Rhetoric and Metaphors", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses the formation, meaning and historical development of Chinese words and idioms. Major topics to be covered include the nature of Chinese wordhood, the differences between Chinese words and Chinese phrases, the nature and characteristics of Chinese idioms, the historical origin of idiomatic expressions and other lexical categories, new words and their standardization, and various semantic relationship among words in Chinese. Preference will be given to students who have already taken CL1101E Introduction to Chinese Language.", + "title": "Chinese Lexicology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at applying the methodologies of discourse analysis in the study of Chinese discourse. This course discusses how context influences the interpretation of meaning. Essential topics in pragmatics such as speech acts, presuppositions, deixis, conversational maxims, and implicature with special reference to the Chinese language, etc. will be discussed. Preference will be given to students who have taken CL2203/CL2103 Chinese Grammar.", + "title": "Chinese Pragmatics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is designed to introduce students to important grammatical features of Classical Chinese. Lexical study and some knowledge of Chinese writing system will also be examined for their contribution to our understanding of Classical Chinese. The course is focused on the analysis of Pre-Qin literature. Classroom activities will include lectures, group discussions and some take-home assignments.", + "title": "Classical Chinese", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce students to some selected topics in Chinese linguistics, such as contrastive analysis of Chinese and other languages (mainly English) or between Chinese dialects (at various levels: phonological, morphological, syntactic, lexical, etc.), comparative rhetoric, language variation, standardization, language planning, etc. The above topics are also discussed from historical, social, and cultural perspectives, in addition to a descriptive one, whenever pertinent. Students are expected to carry out extensive fieldwork.", + "title": "Topics on Chinese Linguistics II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to trace the development of the Chinese language and to describe the characteristics of its phonology, lexicon and syntax in various historical periods. Major topics included are theories on the historical periods, the historical development of Chinese words, mono-/bi-syllabic features of Chinese words, the emergence of some function words and their effects on the Chinese grammatical structure, tones and their historical origin, changes in sentence patterns through various stages of Chinese. The course is designed for students across the University with some background in classical Chinese.", + "title": "History of Chinese Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the Chinese sociolinguistic issues of the interaction between language and society, language variation, dialects and national standard languages, bilingualism, language contact, language planning, language policy and language education. It aims to educate students with a positive attitude toward language and language variation. The course is designed for students across the University with an interest in language and society, and should be especially important for Singapore students who are living in a multi-cultural and multi-lingual society.", + "title": "Chinese Sociolinguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the nature, characteristics and tradition of Chinese classical phonology. In addition to rhyme books, rhyme tables, and the various categories and elements in them, students will also be expected to understand the application of Chinese phonology in the study of textual criticism, poetics and Chinese dialectology. Three main periods of Chinese in respect to phonology will be covered: Old Chinese, Middle Chinese and Old Mandarin. The course is offered to students in the Department.", + "title": "Chinese Phonology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the various mechanisms behind how the\nChinese language is acquired. Differences as well as similarities in the acquisition process by learners of Chinese as a first and second language are examined. Students will gain an insightful glimpse at learning Chinese as a first language or (to a lesser extent) second language, along with their\nassociated linguistic, developmental and socio\u2010cultural issues. There is a significant practical orientation to this module which include collecting real\u2010life linguistic data (through recordings etc.), transcribing the data and analysing them.", + "title": "Chinese Language Acquisition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "There are eight major dialects and hundreds of subdialects with their own grammatical features and special lexical items. This module is designed to help students appreciate the variety of the Chinese languages. The causes for this variations including historical immigrations, the distinct cognition of the people of different areas, the unbalanced developments of the language, different cultures and geographic environments, etc. Regularities will be drawn from different dialects. Also, the variations among different dialects reveal language universals among different languages.", + "title": "The Grammars and Lexicons of the Chinese Dialects", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a systematic knowledge of the standardization of modern Mandarin. The topics discussed include the Chinese\nRomanization system ('The Scheme of Chinese Pinyin System' \u300a\u6c49\u8bed\u62fc\u97f3\u65b9\u6848\u300b, 'The Orthography of Chinese Pinyin System' \u300a\u6c49\u8bed\u62fc\u97f3\u6b63\u8bcd\u6cd5\u300b, the\nstandardization of Chinese words with more than one pronounciation (\u5f02\u8bfb\u8bcd), the standardization of Chinese lexicon (the Chinese neologism and loanwords), and the standardization of Chinese grammar. The course is designed for students with an interest in the Chinese language and linguistics in general.", + "title": "The Standardization of the Chinese Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\u201cTrendy\u201d words or chao yu in Chinese represent an emergent class of words and word\u2010like phrases that characterise an aspect of modern Chinese language usage. Like them or loathe them, many such words/phrases are in wide use and many have eventually become a stable part of \u201cstandard\u201d Chinese vocabulary. What can we make of this situation? What are the controversies behind such words/phrases? Are they necessarily impediments to Chinese learning? We will attempt to resolve these questions as well as find ways of describing and analysing these trendy words/phrases linguistically.", + "title": "Trendy Chinese", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to familiarise students with the nature of meaning in languages, the change in the meaning of a word in different contexts as well as through time, and the theory of Chinese semantics. Major topics to be covered include the meanings of Chinese words, changes in meaning, logical relations and semantic relations in the Chinese language. The course is designed for students with some theoretical background in the structure of the Chinese language.", + "title": "Chinese Semantics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module sets forth some fundamentals of contemporary linguistic findings about the Chinese language, especially those concerning present-day Mandarin Chinese. Topics on typological characteristics describe what Chinese is, or is not, in comparison with other languages. Historical changes and dialectal variations in some areas are also included. Also introduced are Chinese characters and the Chinese lexicon. The course is designed for students across the University.", + "title": "Aspects of Chinese Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes students through an exciting journey of discovering Chinese culture through the Chinese language. Instead of seeing language as a tool, students are trained to view language as the container of culture from ancient Chinese to modern Chinese. They will learn cultural heritage from Chinese phrases, understand ancient way of life through the creation of Chinese characters, study Chinese culture through Chinese dialects and borrowing words. They will also learn that Chinese names of places and surnames are all related to Chinese culture and how Chinese kinship terms reflect the culture of family relationships.", + "title": "Chinese Language and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to some basic concepts of stylistics and the current schools of theories. Texts of various types will be used for illustration. The course deals with an aspect of literary study that focuses on the analysis of various elements of style as well as the devices in a language that produces expressive value. It is offered to students across the University with an interest in the Chinese language. This module is taught in Chinese.", + "title": "Chinese Stylistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to acquaint students with aspects of Chinese grammar, with the focus on parts of speech, morphology, and sentence structure.", + "title": "The Analysis of Chinese Morphosyntax", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to external sources of change to Mandarin Chinese, with focus on the influence from non-Sinitic languages. Based on evidence from different aspects of Chinese, the module aims to reveal to students how the Chinese language has been influenced by languages of different typological types through contact in the past 2000 years. Taught in Chinese, this module is designed for students who are fluent in Chinese.", + "title": "External Influences on Chinese Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, which are vetted and approved by the Department of Chinese Studies, have relevance to the major, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the Department.", + "title": "Chinese Language Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3550", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CL3551", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the theory and practice of community development (i.e., engagement of communities and to become empowered agents of social change). The community development models and frameworks that would be discussed in the course may include asset-based community development; community capitals framework; networking approach to community development; community empowerment models; sustainable livelihoods models; and radical community development. Students would develop competencies in applying qualitative research techniques that can be used to map communities. Additionally, students would be exposed to community participation, consensus building and design thinking techniques that can be adopted to generate solutions to community issues.", + "title": "Engaging and Building Communities", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Friday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From AY2019/2020, CLC2101 will be replaced by CLC1101.\n\nThis module introduces students to the theory and practice of community development (i.e., engagement of communities so that they become empowered agents of social change). The community development models and frameworks that would be discussed in the module include asset-based community development; community capitals framework; networking approach to community development; community empowerment models; sustainable livelihoods models; and radical community development. Students would develop competencies in applying qualitative research techniques that can be used to map communities. Additionally, students would be exposed to community participation, consensus building and design thinking techniques that can be adopted to generate solutions to community issues.", + "title": "Engaging and Building Communities", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This Practicum course allows CTPCLC Certificate or Minor students to conduct a modest 4-unit field research that will enable them to develop a deeper understanding of the community they have identified as a site for their study. Students may opt to partner with a specific organization to conduct the field research under the guidance of a CTPCLC academic staff, and in the process of this 3-way partnership, help to address the organization\u2019s challenges and/or knowledge gaps. As an alternative, in studies where an organizational partner is not easily available, students may also opt, in consultation with a CTPCLC academic staff, to conduct research on a significant social issue that can fulfil the learning outcomes of the practicum course. These outcomes include understanding how to conduct scholarly research ethically and responsibly (e.g., through the deployment of quantitative and/or qualitative research methods), engagement with scholarly literature, performing critical analysis, and drawing conclusions and articulating potential recommendations.", + "title": "Community Development Practicum I", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CLC2201", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a foundational understanding of both qualitative and quantitative research methods useful in community settings, including observations, interviews, focus group discussions, surveys, experiments, community mapping, community narratives, participatory action research, appreciative inquiry, as well as techniques for program and process evaluations. The course will guide students on research design and execution within the context of a community project, including data collection, data analysis, and dissemination of results.", + "title": "Research Methods for Community Development", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC2202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As social service organizations in Singapore move towards evidence-based practice, they need to conduct field research to better understand the communities that they work with, and to assess the impact of their community development programs. Students can therefore help the organizations to conduct the field research through this practicum, and in the process, address the organizations\u2019 knowledge gaps and help the organizations to run more impactful community development programs. The field research experience allows students to gain deep insights into complex community and social issues in Singapore, and appreciate the efforts expended by social service organizations in addressing these issues.", + "title": "Community Development Practicum I", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "CLC2203", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the approaches for youth and communities to achieve the twin aims of youth development and community development. We explore various community-based theories, frameworks and practices of youth participation and engagement, including: Community Youth Development, youth-adult partnership, youth leadership, youth empowerment, youth-led community organising, youth philanthropy, youth-led research. The applications of these concepts in social issues concerning youth in Singapore and elsewhere, as well as their possible impacts and challenges, shall also be examined in this course.", + "title": "Community Development With Youth", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC2204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course covers various frameworks including community-based participatory approaches and community development models, which focus students on the practices and theories of communicating for social change. Fundamentally, communication for social change and community participation are understood from the perspectives of social marketing, social mobilization, entertainment-education, media advocacy, information dissemination, and behaviour change. The literature behind participatory approaches of the social process of communication that impact the community development process will be highlighted. The course is tailored to address various social issues in Singapore.", + "title": "Communicating Social Issues in Singapore", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC3301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As the world becomes increasingly globalized, the need to understand the theory and practice of diversity and inclusion becomes an imperative. This course introduces students to fundamental concepts, theories and frameworks related to diversity and inclusion. Students will develop awareness about themselves and how they relate to the world around them (especially as it relates to their prejudices and biases). Students will also be exposed to the issues of diversity and inclusion at the global, national, and organisational level, and learn strategies to manage that diversity", + "title": "Diversity and Inclusion", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC3302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the theory and practice of community leadership. Students will be exposed to basic leadership theories, models and frameworks including transformational leadership, transactional leadership, servant leadership, as well as contingent models of leadership. Students will also learn concepts related to community leadership such as power, culture, and conflict in the community. Finally, students will develop critical competencies in leading and managing in the community such as influence and persuasion, negotiation, communication, empathy, and empowerment.", + "title": "Community Leadership", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC3303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is specifically tailored for students to\nexplore specific hot button issues pertaining to\ncommunity development. This may include topics\nlike migration, inequality, ageing, diversity,\nintegrated care issues, and so on. The module aims\nto advance knowledge and skills on key issues of\nlocal interest and aims to offer students a wide\nrange of topics relevant for students interested in\npursuing praxis-oriented research and service for\ncommunities.", + "title": "Special Topics in Community Development & Leadership", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC3304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does life in a city affect our sense of community? Presently, more than half of the world\u2019s communities live in cities. Our experience of community and society is, therefore, often tied to the various spaces that people encounter and live within the confines of a city. Adopting an interdisciplinary perspective that blends theoretical insight with contextual realities, this course examines the complex relationship between urban settings in a city and the communities that co-exist within it. Particular attention on the social-cultural dimensions that influence a person\u2019s lived experience will be explored as part of integration and engagement issues within a community. This will be complemented by case studies in Singapore and beyond whenever relevant, providing a grounded and comparative approach to understanding the challenges faced in the task of sustainable community development in urban settings.", + "title": "City, Culture and Community", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC3304A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As social service organisations in Singapore move towards evidence-based practice, there is need to conduct field research to better understand the communities that they work with, and to assess the impact of their community development programs. This course is a follow-up from CLC2201 Community Development Practicum I, that offers students the opportunity to partner with specific organisations to conduct field research on community or social issues. Students interested either in exploring a different issue, or extending their research in CLC2201 may undertake this course.", + "title": "Community Development Practicum II", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CLC3305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As social service organisations in Singapore move towards evidence-based practice, there is need to conduct field research to better understand the communities that they work with, and to assess the impact of their community development programs. This course is a follow-up from CLC2203 Community Development Practicum I, that offers students the opportunity to partner with specific organisations to conduct field research on community or social issues. Students interested either in exploring a different issue, or extending their research in CLC2203 may undertake this course.", + "title": "Community Development Practicum II", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "CLC3306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the rapid growth of digital technology and the evolving competencies needed for individuals to participate meaningfully in contemporary society, it is crucial for the community development field to view literacy as social practices, and more than a set of technical, unitary skills in reading and writing. This course introduces students to various community-based approaches to literacy, such as critical literacy, multi literacies, participatory literacy education and social partnerships. Using an interdisciplinary approach, we will also examine the practices, contexts and power relations concerning literacy that are essential to community development.", + "title": "Literacy and Community Development", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC3307", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on applying a grounded approach to study community issues in Singapore through ethnographic methods. Students will be introduced to key concepts, and will learn through observations of public spaces to acquire an understanding of the lived realities, dynamics, challenges and resources that define specific (sub) communities in Singapore.", + "title": "Entering the Field: People, Places & Practices", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CLC3308", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will deliver a continuous thematic narrative to illustrate some core concepts in chemistry and demonstrate its central role in science. The theme and concepts will be introduced in an intertwined manner throughout the module in three sections \u2013 the Environment, Materials and Life. Real world issues such as global warming, pollution, industrialization, energy shortage, sustainability, healthcare and biomedical advancement, etc. will be discussed. Beginning from a molecular viewpoint and connecting it to daily phenomena, students will learn to appreciate key scientific fundamentals while at the same time explore real issues and deliberate on possible future solutions.", + "title": "Chemistry - The Central Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM1102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "9", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Tutorial", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Tutorial", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Tutorial", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Tutorial", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Thursday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 240, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 240, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Basic concepts of acids and bases, and periodicity and chemistry of most main group elements are covered in this module. Topics include Bronsted and Lewis acids and bases, hard and soft acid- base concept, and group trends and general properties of metals and non-metals.", + "title": "Inorganic Chemistry 1", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the characteristic properties, methods of preparation, and reactions of alkanes/cycloalkanes, alkenes, alkynes, benzene and other aromatic compounds, alkyl halides; alcohols; ethers; epoxides, phenols, aldehydes and ketones; carboxylic acids and their derivatives; amines.", + "title": "Organic Chemistry 1", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM1121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Equations of state of ideal and real gases, intermolecular forces; kinetic theory of gases; first law of thermodynamics; enthalpy; thermochemistry; the second law; entropy; Helmholtz and Gibbs functions; the third law; rates of chemical reactions; accounting for the rate laws - reaction mechanisms; effect of temperature on reaction rate; theories of reaction rates.", + "title": "Physical Chemistry 1", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM1131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a module designed for chemistry majors and deals with laboratory experiments on selected topics of basic chemistry prinicples with theoretical contents selected from CM1111, CM1121 and CM1131. The experiments are designed to strengthen the students\u2019 understanding of basic organic,\ninorganic and physical chemistry. Upon completion of the module, students should have learnt some essential laboratory skills and be able to perform basic data processing and write lab reports. In addition to the aforementioned activities, CM1191 will also cover errors in chemical analysis which will be taught during the lectures.", + "title": "Experiments in Chemistry 1", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM1191", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide an introduction to the fundamental topics and concepts of chemistry. this includes topics like structure of matter, periodicity and the periodic table, chemical bonding, states of matter, stoichiometry and equilibrium, reaction types, thermodynamics, kinetics, organic chemistry, including such topics as functional groups and isomerism.", + "title": "Fundamentals of Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM1417", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide an introduction to the fundamental topics and concepts in chemistry. This includes topics such as structure of matter, periodic table and periodicity, chemical bonding, states of matter, stoichiometry, reaction types, thermodynamics, kinetics, equilibrium and introduction to organic chemistry.", + "title": "Fundamentals of Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM1417X", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-04-06", + "end": "2023-05-04" + }, + "venue": "S5-0224", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-05" + }, + "venue": "S5-0224", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, the basic ideas and applications of various types of spectroscopy will be taught in a concerted manner, with discussions on some basic applications of these techniques. Topics discussed include microwave spectroscopy, infrared spectroscopy, Raman spectroscopy, electronic spectroscopy, electron and nuclear spin resonance spectroscopy. The fundamental principles such as energy quantization, rigid rotors and harmonic oscillators are discussed, the techniques and instrumentation are studied, and the practical applications are emphasized.", + "title": "Physical Chemistry 2", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Structure and properties of solids; coordination chemistry: nomenclature, stability constants and isomerism.", + "title": "Inorganic Chemistry 2", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "There would be two parts to the lectures of the module (i) basic theories and concepts and (ii) chemistry and physical properties of main group elements and selected transition metals. Included in part (i) are qualitative molecular orbital theory, acid-base theories and redox chemistry. Part (ii) is a survey of main group elements including selected transition metals. Emphasis is placed on trends and periodicity. Exemplary compounds of elements are important in understanding bonding and reactivities, and chemical processes and reactions are of technological/industrial/environmental/biological importance. There is a practical component which consists of synthetic experiments.", + "title": "Chemistry of Elements", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2112", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 10, + 11 + ], + "venue": "S5-01GEN", + "day": "Friday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 10, + 11 + ], + "venue": "S5-01GEN", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 10, + 11 + ], + "venue": "S5-01GEN", + "day": "Friday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 10, + 11 + ], + "venue": "S5-01GEN", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Functional group transformation; disconnection approach to synthesis; synthesis of polyfunctional organic molecules, stereochemistry and reaction mechanisms.", + "title": "Organic Chemistry 2", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2121", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will take an in-depth view of organic chemistry through the lens of structure and synthesis of biomolecules, natural products, and pharmaceuticals. Using structures and reactivities exhibited by important molecules in Life and in Medicine, students will learn, refresh and cement key concepts in organic chemistry, particularly reactions involving polar mechanisms, and acquire knowledge and hands-on experience in molecular and structural characterization, while at the same time appreciating the intrinsic relevance of organic chemistry in our existence and daily lives.", + "title": "Organic Chemistry in Life and Medicine", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2122", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9 + ], + "venue": "S5-0410", + "day": "Friday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9 + ], + "venue": "S5-0410", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "S5-0410", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "S5-0410", + "day": "Friday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers foundational physical chemistry concepts. Students will learn how the wavefunction description of matter leads to energy quantization. This concept is applied to spectroscopic analysis whereby the basic theory, instrumentation and applications of UV-visible, FTIR, Raman and NMR spectroscopy will be described. The laws of thermodynamics that characterize and govern physical chemical systems will also be taught and applied to phase and chemical equilibria. In chemical kinetics, the rate laws, reaction mechanisms and simple rate theories will be discussed", + "title": "Foundations of Physical Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2133", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to data treatment and analysis; discussion on sample treatment and extraction, and sample preparation techniques, separation science, electrochemistry. Topics covered will be selected from: liquid extraction and solid phase extraction, some novel extraction technologies; comparison of traditional and modern extraction procedures; introduction to chromatography, with special emphasis on planar chromatography; introduction to electroanalytical methods.", + "title": "Analytical Chemistry 1", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2142", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a first course in analytical chemistry and shall introduce to students a toolkit for performing a chemical analysis in the 21st century. This toolkit consists of sampling methods; sample treatment and preparation; statistics; data treatment and several ubiquitously-used analytical techniques. These include principles and applications of separation science with a focus on gas and liquid chromatography, electrochemistry (voltammetry, coloumetry, potentiometry), gravimetry, titrimetry and elemental analysis. Lectures will be complemented by practical sessions to give the students a good grounding in the basics of chemical analysis.", + "title": "Basic Toolkit of Analytical Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2143", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9, + 10 + ], + "venue": "S8-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9, + 10 + ], + "venue": "S8-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 37, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 37, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Experiments in Chemistry 2", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2191", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Experiments in Chemistry 3", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2192", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Basic UROPS in Chemistry I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Chemistry I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2288R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Basic UROPS In Chemistry II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS In Chemistry II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM2289R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 1ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CM2310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "CM2312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "CM2313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is focused on fundamental aspects of inorganic chemistry and has two parts (i) transition metal chemistry and (ii) introductory organometallic chemistry. Included in part (i) are theories and concepts of coordination chemistry illustrated mainly with Werner complexes of first row transition metals, point group symmetry and basic solid-state chemistry of transition metals. In part (ii), basic concepts of organometallic chemistry and structures and reactivity of organometallic compounds are introduced.", + "title": "Inorganic and Organometallic Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will take an in-depth view of organic chemistry via the synthesis of natural products and pharmaceuticals. Students will learn to deconstruct complex molecules and design synthetic routes from simpler building blocks. In the process, students will acquire knowledge on advanced concepts in organic chemistry, particularly in reaction mechanisms involving concerted electron flow, radicals, carbenes, and organometallics. This module will illustrate the applicability of organic chemistry in synthesis leading towards current medicine and drugs.", + "title": "Synthesis of Natural Products and Pharmaceuticals", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces key applications of foundational concepts in physical chemistry to four major areas 1) photochemistry; 2) biophysical chemistry; 3) liquids, solutions, interfaces and colloids; and 4) theoretical/computational chemistry. Firstly, emission spectroscopy will be introduced in the context of photochemical/photophysical principles, together with applications such as laser and optical imaging. Part 2 will cover biomolecular binding and folding, enzyme catalysis, and Brownian motion/diffusion. In Part 3, properties of liquids and solutions, as well as important physico-chemical phenomena at interfaces will be discussed. In the fourth part, electronic structure calculations will be introduced.", + "title": "Applications of Physical Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce important instrumental techniques used in analytical chemistry, including thermal analysis (TGA, DSC), chemical and elemental analysis (AAS, ICP-AES, AFS, UV-visible absorption, FTIR, ATR-IR), Raman techniques, x-ray techniques (XFS, XPS, XRD), imaging and electron microscopy (SEM, TEM), mass spectrometry and its hyphenated techniques (GC-MS, MALDI). Case studies and real application examples in quality control, environmental analysis, materials characterization, forensic studies, etc. will be illustrated. Beginning from the fundamentals and connecting these to real applications, students will learn to appreciate the plethora of scientific tools developed to provide analysis solutions for real problems encounter.", + "title": "Instrumental Techniques in Analytical Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3141", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers several synthetic chemistry experiments and hands-on laboratory techniques used in modern organic and inorganic syntheses. Training on both operations and data analyses of various spectroscopic methods such as NMR, ESI-MS, UV-vis, FT-IR and GC-MS would be emphasized. These advanced experiments have relevance to the level-3000 organic and inorganic chemistry syllabi, and are delivered either in a topic-based or project-based style. Assessments include lab report writing, oral presentation/viva, and written test/take home assignments.", + "title": "Chemical Synthesis Experiments", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3191", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a laboratory module in analytical and physical chemistry experiments. Essential skills such as sample preparation and characterization, and knowledge of the operations of spectrometer, diffractometers, electrochemical setups, chromatographs and even computational modeling will be imparted to the students. A connection will be forged between what they have learned in the physical and analytical chemistry lectures and the experiments carried out in this module. The knowledge and skills learned in this module will also serve as a link to the current practices in the chemical industry.", + "title": "Physical and Analytical Chemistry Experiments", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3192", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to the Chemical Industry and related process industries like the Food Processing and Pharmaceutical Industries, or Petroleum Refining. Process analysis and mass and energy balances of simple and complex systems are covered, including recycle and purge streams. Systems without and with chemical transformations will be treated for batch and steady state flow processes. The concept of unit operations is\nintroduced. Thermal processes (e.g., heat transfer and separation by distillation) will be treated in greater depth. The design of new products and processes is emphasised as an important aspect of the work of an industrial chemist.", + "title": "Principles of Chemical Processes", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module features the principles of synthesis, structures and reactivity of organometallic compounds. Significance of synergic d-\u03c0 back bonding and different modes of \u03c0 bonding will be illustrated. The course covers the applications of physical and spectroscopic methods in order to provide the scientific bases for the elucidation of \u03c0 bonding, metal-metal and metal-hydrogen bonds, isomerism, fluxionality, and molecular structures. The different modes of reactions of organometallic compounds and their applications will be explored. The catalytic cycles and the mechanisms of the different homogeneous catalytic processes will be illustrated.", + "title": "Organometallic Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the chemistry of d-block and f-block metals. An introduction to observed trend in physical and chemical properties of d-block transition metal complexes will be given. A comprehensive discussion on their electronic structures and spectra follows. Magnetic property, ligand substitution and redox reaction of these metal complexes will be illustrated. The f-block metals will be introduced leading to a discussion of the optical spectra of their complexes. Introduction to inorganic supramolecular chemistry, crystal engineering and solid state chemistry will be covered.", + "title": "Transition Metal Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0223", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the application of retrosynthetic analysis and various methodologies in chemical synthesis. The topics include C-X disconnection (one-group or two-group), one-group C-C disconnection, two-group C-C disconnection (1,3-, 1,5-, 1,2- 1,4-difunctional compounds), amine synthesis, alkene synthesis and aromatic and saturated heterocycle synthesis.", + "title": "Organic Synthesis: The Disconnection Approach", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 34, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Monday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the study of a selected series of organic reactions involving reactive intermediates and/or molecular rearrangements. Emphasis is placed on an understanding of their reaction mechanisms. These will include rearrangement reactions involving carbocations and carbenes as intermediates. Stereoelectronic\nproperties leading to fragmentation reactions will be introduced. Reactions initiated by radicals will be covered. Comprehensive discussions on rules and stereochemical consequences in pericyclic reactions will be given. The synthetic applications of all the above reactions will be illustrated.", + "title": "Organic Reaction Mechanisms", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0223", + "day": "Friday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0223", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction on the four major classes of biomolecules in life nucleic acids, proteins, carbohydrates and fatty acids will be given. The bioorganic aspects of these molecules, e.g. how proteins behaves, how DNAs are damaged and repaired, how enzymes catalyze chemical transformations, and how drugs are developed, will be discussed. Fundamentals in biochemistry and physical methods for bioorganic chemistry will be introduced. Basic concepts in how to synthesize biologically active compounds in drug discovery through combinatorial chemistry will be introduced.", + "title": "Biomolecules", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0223", + "day": "Monday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Duality of matter and the Heisenberg principle; Schrodinger equation of simple systems; postulates of quantum mechanics; symmetry elements and operators; probability; order and disorder; statistical interpretation of entropy and the Boltzmann equation; Boltzmann distribution and the partition function for an ideal gas; thermodynamic functions for ideal gases.", + "title": "Quantum Chem & Molecular Thermodynamics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Solid state chemistry-crystal structures, defects. Elements of interface chemistry;interfaces of liquid-gas, liquid-liquid, solid-gas, and solid-liquid.", + "title": "Phy Chem of the Solid State & Interfaces", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Atomic absorption and emission spectrometry; atomic x-ray spectrometry; electron and ion spectrometry; radiochemical methods of analysis; molecular absorption spectrometry and discussions on applications of these techniques, e.g. in environmental analysis, materials analysis, biological tissue analysis, etc.", + "title": "Instrumental Analysis I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Instrumentation-based analytic techniques are essential for research & development, and for process/product control in manufacturing. These techniques are widely deployed in the chemicals, electronics and other manufacturing industries. Students will learn the principles, instrumentation and applications of the key analytical techniques including atomic and molecular spectrometries, basic mass spectrometry, electrochemical and thermal analysis methods. Students will also learn the extraction and separation techniques for sample preparation needed for these analyses. Students will also receive in-depth hands on training in selected techniques.", + "title": "Instrumental Analysis II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This multidisciplinary module provides an in-depth view of the synthesis, characterisation and application of nanostructures using chemical routes. Necessarily, it will incorporate various concepts from colloidal chemistry, supramolecular chemistry, polymer chemistry and electrochemistry, etc. The application of these concepts in nanoscale synthesis will be emphasized and presented in a cohesive manner. The module also highlights the applications of nanostructures such as quantum dots, nanoparticles, nanorods, nanowires, etc. in the areas of biosensors, bioimaging, LEDs and photonic crystals, etc.", + "title": "Nanochemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0223", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0223", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Polymer science is the study of plastic materials of everyday life and the development of new materials that meet technological needs. This module covers classification and synthesis of polymers by different polymerization techniques; copolymerization reactions and industrial polymers. Physical properties of polymers both in the solid state and in solution will also be discussed. Knowledge in laboratory techniques in polymerization, determination of molecular weight and stability and spectroscopic studies will be introduced.", + "title": "Polymer Chemistry 1", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 34, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Fundamentals of solid state chemistry will first cover the primary and secondary types of bonding in solids followed by lattice energy in ionic solids. Crystalline solids and their crystal structure will be studied. Metals, insulators and semiconductors will be distinguished using the band theory of solids. Defects occur in crystals \u2013 point, line and surface \u2013 and their effects on properties of solid materials will be explained. Factors affecting crystallization and glass formation, and different components of glasses and their uses will be discussed. Formation of different types of glasses and their applications will be highlighted.", + "title": "Materials Chemistry 1", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0223", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 34, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Environmental terms and concepts; scope of environmental chemistry; the atmosphere, lithosphere and hydrosphere; soil, water and air pollution; chemical toxicology; methods of environmental analysis and monitoring; global environmental problems; natural resources and energy; environmental management; risk assessment.", + "title": "Environmental Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3261", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the elements of computational thinking and its application in chemistry, energy and the environment and food science. These elements include problem formulation/abstraction, pattern recognition, decomposition, and finally algorithm design. Direct application of these elements will occur through programming specifically using Python on a Raspberry Pi computer. The Raspberry Pi will be programmed to make real-time observations of phenomena relevant to the environment and/or food science.", + "title": "Computational Thinking and Programming in Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3267", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce students to chemistry research. Students will be able to undertake literature review, work on experiments together with techniques related to synthesis, characterization and applications. After completion of this module, the student will acquire some competence in analysing problems in chemistry and propose viable solutions.", + "title": "Advanced UROPS in Chemistry I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce students to nanochemistry research. Students will be able to undertake literature review, work on experiments together with techniques related to nanomaterial synthesis, characterization and applications. After completion of this module, the student will acquire some competence in analysing problems in nanoscience and propose viable solutions.", + "title": "Advanced UROPS in Nanochemistry I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3288N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce students to nanochemistry research. Students will be able to undertake literature review, work on experiments together with techniques related to nanomaterial synthesis, characterization and applications. After completion of this module, the student will acquire some competence in analysing problems in nanoscience and propose viable solutions. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Nanochemistry I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3288NR", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce students to chemistry research. Students will be able to undertake literature review, work on experiments together with techniques related to synthesis, characterization and applications. After completion of this module, the student will acquire some competence in analysing problems in chemistry and propose viable solutions. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Chemistry I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3288R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce students to chemistry research. Students will be able to undertake literature review, work on experiments together with techniques related to synthesis, characterization and applications. After completion of this module, the student will acquire some competence in analysing problems in chemistry and propose viable solutions.", + "title": "Advanced UROPS in Chemistry II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce students to nanochemistry research. Students will be able to undertake literature review, work on experiments together with techniques related to nanomaterial synthesis, characterization and applications. After completion of this module, the student will acquire some competence in analysing problems in nanoscience and propose viable solutions.", + "title": "Advanced UROPS in Nanochemistry II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3289N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce students to nanochemistry research. Students will be able to undertake literature review, work on experiments together with techniques related to nanomaterial synthesis, characterization and applications. After completion of this module, the student will acquire some competence in analysing problems in nanoscience and propose viable solutions. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Nanochemistry II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3289NR", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce students to chemistry research. Students will be able to undertake literature review, work on experiments together with techniques related to synthesis, characterization and applications. After completion of this module, the student will acquire some competence in analysing problems in chemistry and propose viable solutions. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Chemistry II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3289R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Laboratory work in Inorganic and Organic chemistry. This module is a major requirement for Chemistry students.", + "title": "Advanced Experiments In Organic & Inorganic Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3291", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0410", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0410", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0410", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0410", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "S5-0410", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "S5-0410", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced laboratory module for students to carry out analytical and physical chemistry experiments. Further skills in the preparation and characterization of complex samples and knowledge of the operations of more specialised instruments will be imparted to the students. The knowledge and skills learned in this module will also serve as a link to the current practices in the chemical industry.", + "title": "Advanced Experiments In Analytical & Physical Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3292", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S7-0401", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S7-0401", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-24" + }, + "venue": "S8-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-24" + }, + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "S8-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Laboratory work in Analytical Restriction: This module is offered only to students taking Minor in Analytical Chemistry.", + "title": "Selected Experiments in Analytical Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3295", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Fundamental concepts of molecular modelling; survey of computational methods; molecular mechanics and force fields; empirical and semi-empirical methods; Ab initio theory; basis sets; electron correlation methods; density functional theory; chemical visualization and graphics models; qualitative molecular orbital theory; potential energy surfaces and minimization' molecular dynamics and Monte-Carlo simulations; calculation of molecular properties (IR, UV, NMR and electron density distribution); use of molecular modelling software (Spartan and Gaussian); applications of modelling to chemical problems, modelling biomolecules conformational analysis, QSAR, docking, ligand design.", + "title": "Molecular Modelling: Theory & Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM3296", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CM3310", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. Module is open to FoS undergraduate students from Cohorts AY2020/2021 and before, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CM3311", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 16-20 weeks during regular semester. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "FOS Undergraduate Professional Internship Programme 3S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "CM3312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduates students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 3S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "CM3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce students to the components of independent research e.g. literature review, experimental techniques, data collection and treatment, etc. After completion of this module a student should be able to analyse a specific problem and to design and perform suitable experiments which will lead to its solution.", + "title": "Honours Project in Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "CM4199A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is alert students to modern topics in inorganic/coordination chemistry such as metal-based drugs, macrocyclic chemistry and crystal engineering. The module will describe aspects of the coordination chemistry of transition metal and main group compounds concentrating on themes dealing with macrocyclic chemistry, crystal engineering and metal-based drugs. Throughout the lectures discussions on inorganic stereochemistry (sources and classification, optically active metal complexes, applications) will be included. The module is directed towards students majoring in chemistry and related disciplines.", + "title": "Advanced Coordination Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will acquire an understanding of the various classes of organometallic compounds, the nature of their bonding, synthetic methodology and characterisation techniques, the principles of homogeneous catalysis, the catalytic cycles and the mechanisms of the different catalytic processes of transition metals, and use of the isolobal analogy. Topics covered include ?-complexes; ?-complexes; clusters and metal-metal bonding; Wade-Mingos rules for e-counting, isolobal relationships. Reactions of organometallic compounds - ligand substitution, coordinative, addition/ligand dissociation, oxidative addition/reductive elimination, insertion)/deinsertion, nucleophilic addition and abstraction, electrophilic reactions. Synthetic applications - metal alkyls & hydrides, insertions, protection/deprotection and activation, coupling and cyclization reactions. Homogeneous catalysis. The module is directed towards students majoring in chemistry and related disciplines.", + "title": "Advanced Organometallic Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the commonly used methods to determine the structure of inorganic and organometallic compounds including symmetry operators, point groups and irreducible representations; Raman or IR active vibrational modes; the\nprinciples and theories of single crystal and powder X-ray diffraction techniques; assessment of quality of published crystal structures; NMR as a powerful diagnostic tool to determine structures and fluxional mechanisms. High resolution mass spectrometry, electron paramagnetic resonance and Mossbauer spectroscopy may be introduced.", + "title": "Structural Methods in Inorganic Chem", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The students will learn the basic concepts of modern bioinorganic chemistry including the mechanisms of reactions catalyzed by metalloproteins, spectroscopic and electronic properties of metal sites, and kinetics of electron transfer in proteins. This module covers major areas in modern bioinorganic chemistry including synthetic model compounds for metal sites of metalloproteins, basic protein chemistry, biological electron transfer; hydrolytic enzymes, oxygen transporters; oxygen reacting proteins such as monooxygenase, peroxidase, catalase and superoxide dismutase; physical methods in bioinorganic chemistry. The module is directed towards students majoring in chemistry and related disciplines.", + "title": "Bioinorganic Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers modern methods used in structure determination of organic compounds. Topics include mass spectroscopy, infrared spectroscopy, and nuclear magnetic resonance (NMR) spectroscopy. The main focuses of this module are two-dimensional NMR techniques and their applications in the determination of stereochemistry.", + "title": "Organic Spectroscopy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4225", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overall view on an emerging new discipline that blends chemistry with many fields of biology to unravel the complexities of life at the interface of chemistry and biology. This course illustrates how biological processes are explained in chemical terms. The key objective is to highlight the basic principles of chemical biology to show its important linkages to life sciences.", + "title": "Chemical Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the principles and characteristics of heterogeneous, homogeneous and enzymatic catalysis. Reaction cycles are analysed at the molecular level, and a microkinetic approach is used to describe the processes. Selected industrial processes and commercial devices are discussed to illustrate practical applications of the studied topics.", + "title": "Catalysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4228", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental concepts and techniques from physical chemistry that are most relevant to life sciences, and apply them to a variety of biomolecular systems. In addition to important tools from optical spectroscopy and imaging (including absorption, fluorescence, FCS, FRET, FRAP, single-molecule and super-resolution microscopy), this module will also cover key principles in macromolecular binding equilibria and cooperativity, molecular diffusion, biochemical kinetics, and statistical and stochastic approaches in biophysical chemistry. These concepts and techniques will be illustrated with a wide selection of examples ranging from enzyme catalysis to protein folding, and from molecular motors to gene expression.", + "title": "Spectroscopy & Imaging in Biophysical Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Thursday", + "lessonType": "Lecture", + "size": 37, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Monday", + "lessonType": "Lecture", + "size": 37, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 37, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is intended for those students interested in a deeper understanding of the liquid state and solutions. The content unifies all the material covered in levels one to three in physical chemistry concerning the liquid state. Particular attention is paid to the material taught in CM3232 regarding interfaces and extends it into the liquid state. Topics covered include: Intermolecular interactions, Laplaces, Poissons and Poisson, Boltzmann's equations and their application to Debye-Hckle theory, the Goy Chapman and Stern models, zeta-potential, and the electrostatic potential around proteins. Colloids involving sols, emulsions and foams are considered as well as reactions in solution, computer models of the liquid state and experimental techniques.", + "title": "Interfaces and the Liquid State", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Several topics highlighting physical chemistry principles such as thermodynamics, spectroscopy, kinetics and quantum chemistry will be covered. In photochemistry, kinetics and quantum chemistry are used to illustrate how quantization and energy level interactions lead to different radiative processes and rates of excited and ground state reactions. The use of spectroscopy yields the precise determination of reaction rates. In the chemistry of liquids, thermodynamics will be heavily featured in describing intermolecular potentials in liquids and colloids. In biophysical chemistry, the thermodynamics and kinetics of biomolecules together with spectroscopic techniques used to determine their interactions will also be included.", + "title": "Selected Topics in Physical Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Chemical trace analysis is the use of analytical techniques to detect and/or quantify the presence of very low concentrations of substances. This is important in various industries, including for quality assurance, environmental monitoring, food and biomedical/pharmaceutical safety. Students will learn the principles, instrumentation and applications of trace analysis of both inorganic and organic contaminants, including: sample preparation, measurement methodologies, including isotope dilution, chemosensors and biosensors, matrix effects, sampling bias & statistical evaluation. Students will also receive practical training in trace analysis methodology and instrumentation.", + "title": "Trace Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced mass spectrometric methods, and scanning probe microscopies form an important group of advanced analytical techniques widely used for research & development, and also for process/product control in advanced manufacturing industries. Microfluidics & labchip techniques, in particular, are increasingly used for biochemical assays in biomedical devices. Students will learn the principles, instrumentation and applications of these techniques, and receive in-depth training in selected advanced analytical techniques, including advanced mass spectrometry (ICP-MS).", + "title": "Advanced Analytical Techniques", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Preparation and characterization of materials form crucial and vital aspects of materials research. Highly developed instruments are now available to apply an interdisciplinary study to understand the structure-property relationship. This module provides undergraduates an introduction to modern materials characterization techniques which comprise surface analysis techniques, X-ray diffraction, microscopy, thermal analyses, mechanical tastings and spectroscopies.", + "title": "Characterization Techniques in Materials Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4251", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares the students for the polymer related industry. It covers the chemistry of polymer degradation under the influence of heat, oxygen and UV light and ways of retardation. The science and technology of elastomers or rubber like polymeric materials will be discussed and compared to solid plastics. The synthesis, properties and applications of contemporary engineering and specialty polymers and the role of additives in plastics will also be discussed.", + "title": "Polymer Chemistry 2", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4252", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to discuss important contemporary topics in the field of materials chemistry, e.g. nanostructured materials, hybrid composites, and polymeric materials as active components in electronic applications. Self-assembly of monolayers on metal surfaces and semiconductors, and other nanostructures (carbon nanotubes, nanoparticles, grapheme) will be covered. Material synthesis, processability in device matrix and stability will be emphasized, together with structure performance relationship. Formal teaching may be accompanied by presentations and case studies delivered by selected Industry researchers.", + "title": "Materials Chemistry 2", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4253", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Semiconductor devices and their circuits underpin all of advanced electronics. These are manufactured in large wafer fabs through advanced chemistry processing. Students will learn the chemistry principles of semiconductor device manufacturing. These principles are also relevant to the other advanced materials industries. Students will also learn the properties of the four major types of semiconductor devices pn-diodes, light-emitting diodes, solar cells, and field-effect transistors, and receive practical training in a research-grade clean-room. This course is intended for chemists who wish to quickly gain key knowledge and skills in semiconductor devices and their processing.", + "title": "Chemistry of Semiconductors", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4254", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will be focused on some advanced topics which are not covered in basic polymer science. The topics include: (1) new polymerization methods (e.g. controlled radical polymerization, metallocene polymerization and olefin metathesis polymerization); (2) block copolymers and their applications; (3) dendritic macromolecules; (4) naturally occurring polymers and biopolymers; (5) inorganic and organometallic polymers; (6) supramolecular polymers and smart polymers; (7) conducting polymers and their applications", + "title": "Advanced Polymer Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4258", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Physics and chemistry of surfaces; techniques of surface preparation; physical characterisation; chemical characterisation; properties of clean surfaces; adsorption; oxidation and corrosion.", + "title": "Surface Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modern electrochemical techniques; interfacial electrochemistry; electrochemical synthesis.", + "title": "Current Topics in Analytical Techniques", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers: (i) introduction: origin, current status and future of green chemistry; (ii) concept of sustainability; (iii) environmental fate of chemicals; (iv) metrics for environmental risk evaluation of chemicals; (v) elements of green chemistry; (vi) energy balance in chemical reactions and separation processes; (vii) selectivity and yield improvements in chemical processes via statistical methods; (viii)fundamentals of industrial waste treatment; (ix) environmental consequences of burning fossil fuels for generation of energy; (x) renewable sources of fuels and chemical feedstocks; (xi) energy future beyond carbon; and (xii) advanced green chemistry techniques and process intensification", + "title": "Sustainable & Green Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4269", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the module Biomolecules (CM3225) as well as the fundamentals of organic chemistry. A major focus will be directed towards the identification and chemical optimization of drug molecules. The following aspects will be covered (i) the fundamentals on medicinal chemistry and drug targets, (ii) drug development phases, and methods in modern drug discovery; (iii) theory and the application of selected biological assays (iv) causes and drug design strategies for selected diseases.", + "title": "Medicinal Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4271", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces modern computational methods used in drug discovery and drug development. It covers topics such as drug design process, structure and ligand \nbased drug design, molecular mechanics methods, homology model, molecular docking, pharmacophore models, quantitative structure-reactivity relationship \n(QSAR), de novo ligand design, quantum mechanics techniques, cheminformatics, database search tools, and virtual screening. Hands-on experience in using \ncomputational software and visualization tools will be provided.", + "title": "Computational Drug Design", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4273", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module comprises of a study of the total synthesis of useful functional molecules. Both general and advanced strategies are covered. Concepts of the classical multistep and the greener cascade sequences are explored. The concepts and strategies are illustrated with classical and modern examples.", + "title": "The Art and Methodology in Total Synthesis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4274", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Lecture", + "size": 37, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Thursday", + "lessonType": "Lecture", + "size": 37, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 37, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module comprises of a physico-chemical study of the energy resources and the environmental and economic implications of their exploitation. Following the history of energy consumption, the current situation is summarized, and the implications of the continuation of the status quo identified. Concepts of fitness for purpose, and environmental and economic sustainability are explored. Key technologies areas cover generation, use efficiency, and storage and transmission. These are illustrated with quantitative case studies.", + "title": "Energy Resources", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM4282", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For Bachelor of Science (Honours) students to participate full-time in a six-month-long project in an applied context that culminates in a project presentation and report.", + "title": "Applied Project in Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "CM4299", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a project-based module. The student will\nundertake a one year course of independent\nresearch on an advanced topic in chemistry under\nthe direction of an academic staff member. In\naddition, the student is required to perform any\npreparatory course in laboratory techniques which\nthe Department deems necessary.", + "title": "M.sc. Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CM5100", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a project-based module. The student will\nundertake a one year course of independent\nsupervised research on an advanced topic in\nchemistry under the direction of an academic staff\nmember. In addition, the student is required to\nperform any preparatory course in laboratory\ntechniques which the Department deemed\nnecessary.", + "title": "Advanced MSc Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "CM5100A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an integral module providing comprehensive theory and practical training on various techniques needed in advanced chemical analysis and\ncharacterization. At the outset, students are required to select at least 4 specialized topics to focus on, from: (i) NMR spectroscopy, (ii) Mass spectrometry, (iii) Elemental and thermal analysis, (iv) Chromatography\nand hyphenated techniques, (v) Single crystal and powder X-ray crystallography, (vi) Scanning probe and microscopic techniques. Besides learning the scientific fundamentals through recorded lectures/seminars and\nonline assessments, students work directly with instrumental experts in the various laboratories to gain hands-on knowledge and practical aspects of each of these techniques.", + "title": "Advanced Analysis and Characterization Techniques", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Chemistry plays a key role in promoting the well-being and sustainability of today\u2019s advanced society. This module covers the fundamental challenges and emerging solutions, for: (i) Environment\u2014climate change, water resources, eco-awareness, recycling, and environmental remediation; (ii) Energy\u2014energy extraction from fossil fuels and alternative sources, electrochemical storage, and carbon capture & up-conversion; (iii) Food Safety and Security\u2014pathogens, processing and standards, and sustainability; and (iv) Health and Well-being\u2014biotechnology, synthetic biology, medicine and genetics", + "title": "Chemistry in Society", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An appreciation of principles and practices of the chemicals industry, including regulatory and business landscape, is vital preparation for entry to industry. This module covers the essential aspects in: (i) Industrial Safety; (ii) Environmental Protection and Regulation; and (iii) Industry Overview of five selected sub-sectors in: (a) Petrochemicals, (b) Specialty Chemicals, Materials & Polymers, (c) Pharmaceuticals, (d) Medical and Bio Technologies, (e) Electronics and Advanced Manufacturing, (f) Sustainable Solutions, (g) Analytical Instrumentation, and/or (h) Chemical Consultancy Services. The Overview will be delivered by company executives/industry experts, covering respective industry status & outlook, business overview, key innovations and emerging trends.", + "title": "Industry Practices in Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Intellectual property (IP) management, together with technology innovation and entrepreneurship culture are key pillars to support innovation in chemicals, materials and biotechnology businesses. This module covers the essentials of: (i) IP Management, covering landscape, commercialization, technology, economic, and business aspects, including value maximization strategies; (ii) Patent Analytics, covering patent database searches, analysis, and essential patenting knowledge in chemicals, materials and biotechnology domains; (iii) New Product Development, covering new product introduction methods and systems, including market analysis, design and development, sustainability, and product launch; (iv) Technology Innovation and Technology-based Entrepreneurship, covering principles, technology forecasting, R&D management, and case studies.", + "title": "Intellectual Property and Entrepreneurship in Chemical Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides comprehensive discussions on various fundamentals and the latest issues concerning energy storage and conversion chemistry. Topics covered include: (1) Energy sources - Chemical energies, storage\nand inter-conversion; (2) Chemistry in photovoltaics - solar cell materials and efficiency needs; (3) Hydrogen economy \u2013 issues in production and storage; CO2 capture; Fuel cells, infrastructure and cost analysis; (4) Electrochemical storage of energy - Battery materials, design principle and types; Capacitors and supercapacitors; (5) Policy and the Energy market - Case studies.", + "title": "Energy Storage and Conversion Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5151", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides comprehensive discussions on various fundamentals and the latest issues concerning water chemistry and environment. Topics covered include: (1) Water use and processes; Impacts of water use on\nthe environment; Economics of water use and conservation, Environmental services and regulatory frameworks; (2) Water quality and monitoring -\nContemporary issues of water contaminants; Modern analytical chemistry of water, specifically on miniaturized approaches, and field or onsite analysis; (3) Chemistry and materials for modern water treatment, cleanup and remediation; Water as a reaction media and green chemistry applications.", + "title": "Water Chemistry and Environment", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5152", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This multidisciplinary module provides a broad coverage on safety-related issues in our laboratories. The main objective of this module is to introduce potential hazards and various safety measures which can be adopted to prevent accidents or personal injuries. Topics such as personal protection, safe handling and disposal of various chemicals, standard operating procedures, risk assessment, emergency measures and first aid practices will be introduced. Legislation and laws pertaining to workplace safety will also be discussed.", + "title": "Advanced Chemical Laboratory Safety", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CM5161", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S8-0314", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S8-0314", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S8-0314", + "day": "Thursday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S8-0314", + "day": "Friday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2016/2017. The main purpose of this module is to help graduate students to improve their scientific communication skills, in the form of writing and presentation, and to participate in scientific seminars/exchanges in a professional manner. Students would be introduced to the different types of scientific communication modalities that chemistry researchers used to communicate scientific ideas. This includes seminar-style presentation, manuscript writing as well as posters.", + "title": "Graduate Seminar Module in Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5198", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a compulsory module for students taking the M.Sc.\nin Chemistry for Energy and Environment programme.\nStudents will have a chance to work in the research &\ndevelopment on a particular topic in the area of energy or\nenvironment, under the supervision of faculty and/or cosupervisors\nin our partner institutions/companies. Through\nthis independent project, students gain hands-on practical\nknowledge in solving R&D problem as well as acquire\nskills in fabrication of materials and/or instrumentation\ntechniques. The R&D project is concluded with a written\nreport and an oral examination.", + "title": "M.Sc. R&D project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "CM5199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Principles and applications of organometallic compounds: synthesis, reactivity and structural aspects.", + "title": "Contemporary Organometallic Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the principles and applications of crystal growth and engineering. This knowledge is relevant to the crystallization of active pharmaceutical ingredients in the pharmaceutical industry. Topics include: crystal structure & design, crystallization & growth, polymorphism, and multi-component crystals. Students will receive practical training in in crystal-structure visualization & data mining.", + "title": "Crystal Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Biomimetic reactions, the application of organometallics to organic synthesis, synthesis of complex molecules, and other emerging areas in organic synthesis. Students will be required to write a proposal and a review on any topic related to organic synthesis.", + "title": "Advanced Organic Synthesis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Supramolecular Chemistry is a rapidly developing field of research that involves the use of non-covalent interactions to form host-guest ensembles, to build geometrically specific shapes, and to assemble molecules into stable well-defined structures. Emphasizing on the roles of non-covalent interactions, designing principles, synthetic strategies and physical methods, this course will introduce students to the frontier fields of Supramolecular Chemistry that promises exciting applications in various areas. Students will be guided/inspired to understand the properties and importance of intermolecular interactions and their translation to functions in chemistry as well in bio-, nano- and materials science.", + "title": "Topics in Supramolecular Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Medicine is crucial to the well-being of modern society. Methods for discovery of novel therapeutic agents have evolved significantly over the years as a result of scientific and technological breakthroughs. This module focuses on the emerging concepts in drug discovery, emphasizing the role of chemistry in medicine, and their application to rational drug design and discovery. After this course, students will acquire advanced concepts and knowledge in modern drug discovery, and be able to apply these to solving scenario-based problems in drug discovery.", + "title": "Emerging Concepts in Drug Discovery", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the principles and concepts introduced in CM4228. It addresses the major concepts in asymmetric catalysis. To module will introduce students to enantiomeric purity, absolute stereochemistry and resolution. In addition, it will concentrate on chiral pool and chiral auxilaries, chiral reagents and chiral catalysis, substrate control and asymmetric synthesis.", + "title": "Asymmetric Catalysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Elementary reactions in the gas phase: rate of a bimolecular reaction, reaction cross section, unimolecular reactions, potential energy surface, transition state theory; reactions in solution: theoretical considerations, reactions between ions, reactions between ions and molecules, linear free energy relationship, fast reactions; catalysis: homogeneous catalysis in the gas phase and in solution, acid-base catalysis, autocatalysis and oscillating reactions, heterogeneous catalysis.", + "title": "Topics in Chemical Kinetics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5232", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The application of computational chemistry to molecular structure (equilibrium and transition-states), spectroscopy (IR, Raman, NMR, UV-Vis), chemical kinetics (statistical and dynamic) and reaction mechanisms will be examined. Models of chemistry in the gas, liquid and solid phases (via molecular dynamics and Monte-Carlo simulations) as well as interfaces will be considered. Visualization of proteins and other large systems will be addressed. Enough fundamental theory in quantum, molecular and statistical mechanics will be given to understand and correctly interpret and appreciate the limits of the models and results of calculations. Hands-on calculations using state-of-the-art modelling software and visualisation tools will be utilized.", + "title": "Applied Computational Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5235", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide essential knowledge of fundamental photon-molecule interactions and novel laser based techniques that are important for frontier research. Topics include organic photophysics and photochemistry, laser fundamentals, linear and nonlinear optical spectroscopy, time resolved spectroscopy, single molecule spectroscopy, fulorescence and Raman microscopy, femtochemistry, laser reaction control and optical manipulation, laser applications in biochemistry and medicine, optical properties of novel materials and some optoelectronic applications.", + "title": "Advanced Optical Spectroscopy and Imaging", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5237", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to teach the basics of cheminformatics and the use computational techniques for chemical structure representation, data storage and analysis, as well as methods for predicting biological, chemical & physical properties and chemical/biological reactivity. Modern machine learning methods for processing and extracting useful information from multivariate data sets for both exploratory analysis will be introduced. In addition, applications of cheminformatics in drug discovery process, materials properties design, environmental science, and \u201cin silico\u201d predictive modelling will be discussed.", + "title": "Cheminformatics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5239", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sample preparation, including miniaturised procedures of extraction; advanced coupled chromatography/mass spectrometry; advanced mass spectrometric techniques. Capillary electrophoresis: different modes of capillary electrophoresis, injection techniques, detection techniques and column technology. Scanning probe microscopy: scanning tunneling microscopy, atomic force microscopy, scanning electrochemical microscopy and scanning near-field optical microscopy. Determination of crystal and molecular structures by single crystal x-ray diffraction techniques.", + "title": "Modern Analytical Techniques", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5241", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Environmental chemistry deals with the chemical and biochemical effects of pollutants in the air, soil and waters, and their remediation. Students will learn the principles and applications of environmental science, including atmospheric pollution and remediation, land and water pollution and remediation, and regulatory framework. Students will study cases from Singapore and the region, and receive practical training in relevant environmental analytical techniques. This module also covers US Environmental Protection Agency standards and World Health Organization guidelines for drinking water that Singapore\u2019s reclaimed water (NEWater/desalinated water) quality meets and/ or exceeds. EPA's regulations, standards, etc will also cover in atmospheric chemistry topics. This course will equip students with knowledge and skills for work in the environmental services, including regulatory agencies.", + "title": "Advanced Environmental Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5244", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an elective analytical module which addresses the basics in the latest bioanalytical techniques and thise which are just emerging. It is aimed at students who are interested in the applications of modern analytical techniques for bioanalytical research and development. The module will acquaint students with background knowledge of advanced and specialized bioanalytical techniques, with elaboration on the materials aspects employed in these techniques. Coverage is aimed more at breadth rather than depth but without sacrificing the fundamental rigors.", + "title": "Bioanalyticalchemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to discuss important contemporary topics in the field of Materials Chemistry, e.g. nanostructured materials, hybrid composites, macromolecular materials, biocomposites, biocompatible materials, fibrous materials, etc. These are materials that we encounter in day-to-day life. The chemistry of their formation, stability as well as the relationship between their structures and properties will be emphasized. After taking this module, students should have a good fundamental knowledge and understanding of how to design and to fabricate useful devices such as LEDs, optical switches, modulators, and dispersion compensators.", + "title": "Contemporary Materials Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5262", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced inorganic electronic materials have attracted a lot of interest recently for their unique electronic, mechanical, optical, thermal and chemical properties, and potential applications in future devices. This module covers the theory, synthesis & processing, structure-property relationships, applications and current frontiers, of the four main families of 2D materials: (i) graphene and related materials; (ii) transition-metal dichalcogenides; and (iii) perovskites. Learners will gain the advanced knowledge needed to guide the further development or deployment of these materials in advanced manufacturing, especially in electronics.", + "title": "Advanced Inorganic Electronic Materials", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5263", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the module Advanced Polymer Science (CM 4268). A major focus will be directed towards the preparation and application of advanced polymers and biopolymers. It will be accompanied by presentations and case studies delivered by selected Industry researchers. The following aspects will be covered:\n(i) Liquid Crystals;\n(ii) Photovoltaics Materials;\n(iii) Organic Electronics & Devices;\n(iv) Nanostructured Surfaces;\n(v) Sensors;\n(vi) Nanoparticles and Quantum Dots;\n(vii) Biomimetic and Intelligent Materials;\n(viii) Tissue Engineering.\nThe module is suited for final year students majoring in chemistry, applied chemistry and related disciplines.", + "title": "Advanced Organic Materials", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CM5268", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, participants will learn the current thinking in environmental chemistry, key measurement techniques, and remediation strategies. This includes air pollutants, their measurement and control, water pollutants, their measurement and wastewater treatment, and selected chemical topics in climate change, such as global warming and ocean acidification, which is of particular relevance to Singapore. Participants will also learn how to use these stories and related demonstrations to promote curiosity-driven and authentic learning of selected A-level chemistry topics. These stories will inspire students to become responsible citizens and future leaders in the emerging sustainability-driven economy.", + "title": "Environmental Chemistry for A-level Chemistry Teachers", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "CM5731", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover selected energy resources (renewable and non-renewable) and the environmental impacts of their production, transport and use. Connections to relevant examples will be made and recent national initiatives such as the Singapore Green Plan will be discussed to provide real world context. The content of this course will be suitable for \u201cO\u201d and \u201cA\u201d level chemistry teachers to refresh and increase their knowledge of energy and the environment.", + "title": "Energy and Environment for Chemistry Teachers", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "CM5732", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an experiential exposure to chemical engineering concepts through a series of hands-on experimental laboratories. Simple yet visually engaging demonstrations will bring these concepts to life, and act as a preview and bridge to the core modules in the undergraduate curriculum, while highlighting their practical relevance. The students will prepare for each session by compulsory pre-laboratory readings on theoretical background and laboratory procedures. In the laboratory, they will learn to carry out measurement, data collection, analysis, modelling, interpretation and presentation. The laboratory sessions will be blended with real engineering applications of industrial and societal relevance to Singapore.", + "title": "Chemical Engineering Principles and Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "CN1101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an experiential exposure to chemical engineering concepts through a series of hands-on experimental laboratories. Simple yet visually engaging demonstrations will bring these concepts to life, and act as a preview and bridge to the core modules in the undergraduate curriculum, while highlighting their practical relevance. The students will prepare for each session by compulsory pre-laboratory readings on theoretical background and laboratory procedures. In the laboratory, they will learn to carry out measurement, data collection, analysis, modelling, interpretation and presentation. The laboratory sessions will be blended with real engineering applications of industrial and societal relevance to Singapore.", + "title": "Chemical Engineering Principles and Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN1101A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "M1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "M2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "T2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "TH2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Friday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "TH1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second part of a two-part module designed to provide first year Chemical and Biomolecular Engineering students with an experiential exposure to the foundational concepts of Biomolecular/Biochemical/Bioprocess Engineering, including mass and energy balances, biosafety and sterile handling, bioreaction kinetics, bioreactor design, downstream processing and purification, biosystems modelling and optimization, etc., through a series of hands-on experimental laboratories. In the laboratory, they will learn to carry out measurement, data collection, analysis, modelling, interpretation and presentation. The laboratory sessions will be blended with real engineering applications of industrial and societal relevance to Singapore\n.", + "title": "Chemical Engineering Principles and Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "CN1102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a basic concept of chemical engineering processes and related problem-solving methods. It provides a comprehensive introduction to the principles of chemical engineering process analysis. The module begins with an overview of the chemical process industry and a discussion of several significant examples. Details of steady state material and energy balance, including recycles, phase change and reaction, form the core substance of the course. Other topics include simultaneous mass and energy balances and unsteady state balances. All concepts and principles are amply illustrated with relevant process examples. This module is targeted at level one engineering or science students.", + "title": "Chemical Engineering Principles", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to an overview of the chemical process industry and a discussion of several significant examples. The core of the module covers the details of steady state material and energy balance, including recycle, purge, phase change and chemical reaction. The concepts are extended to simultaneous mass and energy balances and unsteady state balances. The module is targeted at first-year part-time chemical engineering students with some working knowledge in the chemical industries.", + "title": "Chemical Engineering Principles", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN1111E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a basic concept of chemical engineering processes and related problem-solving methods. It provides a comprehensive introduction to the principles of chemical engineering process analysis. The module begins with an overview of the chemical process industry and a discussion of several significant examples. Details of steady state material and energy balance, including recycles, phase change and reaction, form the core substance of the course. Other topics include simultaneous mass and energy balances and unsteady state balances. All concepts and principles are amply illustrated with relevant process examples. This module is targeted at level one engineering or science students.", + "title": "Chemical Engineering Principles", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN1111X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with basic concepts of material and energy balances in chemical engineering processes. It also gives a comprehensive introduction to different analytical and problem-solving methods. In particular, steady state material and energy balances, including recycles, phase changes and reactions, simultaneous material and energy balances and unsteady state balances are covered in this module. All fundamental concepts are illustrated by using relevant process examples. This module is targeted at level one engineering or science students.", + "title": "Material and Energy Balances", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CN2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second part of a two-part module designed to provide first year Chemical and Biomolecular Engineering students with an experiential exposure to the foundational concepts of Biomolecular/Biochemical/Bioprocess Engineering, including mass and energy balances, biosafety and sterile handling, bioreaction kinetics, bioreactor design, downstream processing and purification, etc., through a series of hands-on experimental laboratories. In the laboratory, they will learn to carry out measurement, data collection, analysis, interpretation and presentation. The laboratory sessions will be blended with real engineering applications of industrial and societal relevance to Singapore.", + "title": "Chemical Engineering Principles and Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "T1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "T3", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "W2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "M2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "M1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "W3", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "TH2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "T2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "TH1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with basic concepts of material and energy balances in chemical engineering processes. It also gives a comprehensive introduction to different analytical and problem solving methods. In particular, steady state material and energy balances, including recycles, phase changes and reactions, form the core structure of the module. Other topics include simultaneous material and energy balances, unsteady state balances and the introduction and application of Mat lab in solving balance problems. All fundamental concepts are amply illustrated with relevant process examples. This module is targeted at level one or two engineering and science students.", + "title": "Material and Energy Balances", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an understanding of the basic laws and concepts of thermodynamics for applying to analyze chemical engineering problems. The basic definition, applications and limitations of chemical engineering thermodynamics are first introduced followed by a review of basic laws, properties and concepts of thermodynamics. The application of basic concepts of energy conversion is extended to refrigeration and liquefaction processes. The development and discussion of thermodynamic property relations for systems of constant and variable compositions are covered in detail. The developed property relationships together with the basic laws are then applied to the analysis of the various equilibrium", + "title": "Chemical Engineering Thermodynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module begins with a revision of chemical kinetics and thermodynamics emphasizing on the different definitions of reaction rates, rate expressions, and simple and complex reactions. The design equations for ideal reactors are then introduced followed by the general methods of analysis of rate data. Reactor sequencing, yield versus productivity considerations in multiple reactions, and nonisothermal operations round up the first half of the course. More advanced topics such as residence time distributions in reactors, kinetics of catalytic reactions and catalyst deactivation, coupling of chemical reactions with transport processes, form the bulk of the second half of the course.", + "title": "Reaction Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2105", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Monday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The first part covers classification of fluids and their properties, fluid statics, dimensional analysis and model theory, the integral and differential forms of the fundamental conservation equations, boundary layer theory, flows with pressure gradient, viscous flows, flows in closed conduits, and fluid machinery. This second part covers three modes of heat transfer (conduction, convection and radiation), both steady and unsteady states for heat conduction, convective heat transfer and heat transfer with phase change, radiative heat transfer, heat exchangers and their design, analogies between heat and momentum transfer.", + "title": "Fluid Mechanics and Heat Transfer", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Friday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students learn practical experience with laboratory-scale experiments as well as team work and technical communication through report writing and oral examination. The experiments are related to chemical engineering thermodynamics, fluid mechanics, heat & mass transfer, particle technology and bioanalytics. Also, students learn the use of safety equipment, safe procedures for handling biological and hazardous waste, assembly and disassembly of equipment, fault diagnosis, understanding and operation of thermocouples and flow meters, instrumental analysis, data logging and processing, operation of process plant items, error analysis and data validation. This module is targeted at level 2 chemical engineering students, who will do experiments in six sessions of five hours each, during the semester.", + "title": "Chemical Engineering Process Laboratory I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CN2108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module begins with a revision of chemical kinetics and thermodynamics emphasizing on the different definitions of reaction rates, rate expressions, and simple and complex reactions. The design equations for ideal reactors are then introduced followed by the general methods of analysis of rate data. Reactor sequencing, yield versus productivity considerations in multiple reactions, and nonisothermal operations round up the first half of the course. More advanced topics such as residence time distributions in reactors, kinetics of catalytic reactions and catalyst deactivation, coupling of chemical reactions with transport processes, form the bulk of the second half of the course.", + "title": "Chemical Kinetics & Reactor Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2116", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the basic principles of chemical kinetics of both homogeneous (single phase) and heterogeneous (multi-phases) reaction systems and reactor design. Module contents include classification of chemical reactions, stoichiometry, chemical kinetics and reaction mechanism of both homogeneous and heterogeneous reactions, simple and multiple reactions, selectivity, yield and product distribution, definition and derivation of performance equations of ideal reactors (ideal batch, plug and constant stirred tank reactors), rate data collection and treatment, recycle and multiple reactors, temperature effects, heterogeneous reaction systems (fluid-fluid, fluid solid and catalytic reactions), identification and analysis of rate processes, concentration profile and overall rate equation, pore diffusion in porous catalysts, deactivation, reactor configuration and design, Basic introduction to non-ideal flow and residence time\ndistribution analysis.", + "title": "Chemical Kinetics And Reactor Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2116E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an understanding of the basic laws and concepts of thermodynamics for applying to analyze chemical engineering problems. The basic definition, applications and limitations of chemical engineering thermodynamics are first introduced followed by a review of basic laws, properties and concepts of thermodynamics. The application of basic concepts of energy conversion is extended to refrigeration and liquefaction processes. The development and discussion of thermodynamic property relations for systems of constant and variable compositions are covered in detail. The developed property relationships together with the basic laws are then applied to the analysis of the various equilibrium problems in chemical engineering such as vapour-liquid, vapour-liquid-liquid, liquid-liquid, solid-liquid and chemical reaction equilibria. This module is targeted at level 2 chemical engineering students.", + "title": "Chemical Engineering Thermodynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students with the rudimentary understanding of the basic laws and other concepts of thermodynamics and apply them to analyses chemical engineering problems. The module starts with basic definition, applications and limitations of chemical engineering thermodynamics, followed by a review of basic laws, properties and concepts of thermodynamics. The development and discussion of thermodynamic property relations for systems of constant and variable compositions are covered in detail. The developed property relationships together with the basic laws are then applied to the analysis of the various equilibrium problems in chemical engineering such as vapour -liquid, vapour-liquid-liquid, liquidliquid, solid-liquid and chemical reaction equilibria.", + "title": "Chemical Engineering Thermodynamics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2121E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module considers the classification of fluids and their properties, followed by the analysis of \nstatic fluid. The integral and differential forms of the fundamental equations \u2013 Continuity, Momentum and Energy equations are then studied. The concept of momentum transfer by the shear stress is introduced in this course. Dimensional analysis and model theory are studied. The concept about boundary layer theory, flow with pressure gradient, viscous flow and turbulence are also described. Practical aspect involves the consideration of flows in closed conduits. The concepts of flow through packed beds and fluidization are included. At the end of the course, basic concepts regarding fluid machinery is also covered.", + "title": "Fluid Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CN2122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module considers the classification of fluids and their properties, followed by the analysis of static fluid. The integral and differential forms of the fundamental equations \u2013 Continuity, Momentum\nand Energy equations are then studied. The concept of momentum transfer by the shear stress is\nintroduced in this course. Dimensional analysis and model theory are studied. The concept about\nboundary layer theory, flow with pressure gradient, viscous flow and turbulence are also described.\nPractical aspect involves the consideration of flows in closed conduits. At the end of the course,\nbasic concepts regarding fluid machinery is also covered.", + "title": "Fluid Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2122A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces to students the classification of fluids and their properties, followed by the analysis of static fluid. The integral and differential forms of the fundamental equations \u2013 Continuity, Momentum and Energy equations are then studied. The concept of momentum transfer by the shear stress is introduced in this course. Dimensional analysis and model theory are studied. The concept about boundary layer theory, flow with pressure gradient, viscous flow and turbulence are also described. Practical aspect involves the consideration of flows in closed conduits. At the end of the course, basic concepts regarding fluid machinery is also covered.", + "title": "Fluid Mechanics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2122E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course considers three modes of heat transfer, namely, conduction, convection, and radiation. For heat conduction, both steady and unsteady states are examined. These are followed by analyses for convective heat transfer and heat transfer with phase change, and subsequently radiative heat transfer. Heat exchangers and their design are discussed. Steady and unsteady-state molecular diffusion is studied, while convective mass transfer is analyzed using exact and approximate integral analysis. Finally, analogies between mass, heat and momentum transfer are discussed leading to the concept of transport phenomena.", + "title": "Heat & Mass Transfer", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2125", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the fundamental principles of heat and mass transfer relevant to the chemical engineering discipline. This course considers three modes of heat transfer, namely, conduction, convection, and radiation. For heat conduction, both steady and unsteady states are examined. These are followed by an analysis for convective heat transfer and heat transfer with phase change and subsequently radiation heat transfer. Steady and unsteadystate molecular diffusion is studied, while convective mass transfer is analyzed using exact and approximate integral analysis. Finally, analogies between mass, heat and momentum transfer is discussed to integrate the concept of transport phenomena.", + "title": "Heat And Mass Transfer", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN2125E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students learn how to perform laboratory-scale experiments in a small team. They also learn communication skills through report writing and oral presentations. Experiments in this module are related to chemical engineering thermodynamics, fluid mechanics, heat and mass transfer and reaction engineering. Moreover, students learn how to use safety equipment to handle hazardous waste following safety protocols. They also learn assembly/disassembly of equipment, fault diagnosis, operation of thermocouples and flow meters, instrumental analysis, data logging and processing, operation of process plant items, error analysis and data validation. Students will perform 8 experiments (5 hours each) during the semester.", + "title": "Chemical Engineering Process Lab I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn how to perform laboratory-scale experiments in a small team. This practical module strengthens their technical writing and oral presentation, and problem-solving skills. Experiments in this module are related to chemical engineering thermodynamics, fluid mechanics, heat and mass transfer, reaction engineering, process dynamics and control, mass transfer and separation processes. Moreover, students will learn how to use safety equipment to handle hazardous waste following safety protocols. They will also learn assembly/disassembly of equipment, fault diagnosis, operation of thermocouples and flow meters, instrumental analysis, data logging and processing, operation of process plant items, error analysis and data validation.", + "title": "Chemical Engineering Process Lab", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3101A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides practical experience to students in process dynamics and control, mass transfer and separation processes. It also strengthens teamwork, technical writing and oral presentation skills, and problem-solving skills. The importance of safety continues to be emphasised through rigorous implementation of proper operational and waste disposal procedures. The practical experience in fault diagnosis, instrumental analysis, data logging and processing, error analysis and data validation, and operation of process units gained in CN3101 are reinforced and extended further. Students perform four experiments (each in two 4-hour sessions) during the semester.", + "title": "Chemical Engineering Process Lab II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, equilibrium stage and rate-based design concepts in separation processes are introduced. The basics of mass transfer are first covered to lay the foundation to build the separation process design principles. Separation process design begins with a single stage binary flash distillation and its extension to multicomponent mixtures. This is followed by multi-stage binary distillation, absorption, stripping, and extraction processes. The shortcut design for multicomponent distillation is briefly introduced. Humidification and dehumidification processes, which are examples of simultaneous heat and mass transfer, are also covered. The module ends with a discussion on column sizing.", + "title": "Mass Transfer and Separation Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students how to use MATLAB and HYSYS to simulate chemical processes. First principle models will be developed in MATLAB to simulate operation of non-ideal chemical reactors. Built-in models in HYSYS will be used to simulate other unit operations and integrated processes. Students will learn how to link different types of models to produce a more complex, comprehensive model. They will also learn how to use the developed models to optimize the associated processes in silico.", + "title": "Computer-Aided Chemical Process Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the second laboratory experience to students, in chemical engineering processes and biologics manufacturing. Teamwork, technical communication skills, oral presentation and problem solving skills are further emphasised. The experiments covered are related to chemical kinetics and reactors, heat and mass transfer, particle technology, and biologics manufacturing. The importance of safety continues to be emphasised through rigorous implementation of proper operational and waste disposal procedures. The practical experience in fault diagnosis, instrumental analysis, data logging and processing, error analysis and data validation, and operation of process units gained in CN2108 are reinforced and extended further.", + "title": "Chemical Engineering Process Laboratory II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides practical experience to students in process dynamics and control, mass transfer and separation processes. It also strengthens teamwork, technical writing and oral presentation skills, and problem solving skills of students. The importance of safety continues to be emphasised through rigorous implementation of proper operational and waste disposal procedures. The practical experience in fault diagnosis, instrumental analysis, data logging and processing, error analysis and data validation, and operation of process units gained in CN2108 and CN3108 are reinforced and extended further. Students do four experiments (each in two 4-hour sessions) during the semester.", + "title": "Chemical Engineering Process Laboratory III", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CN3109", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-04-02", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents the full complement of fundamental principles with clear application to heat exchangers, reactors, separation processes and storage systems. It incorporates introductory concepts, dynamic modeling, feedback control concepts and design methods, control hardware, and advanced control strategies including feed-forward, cascade and model-based control. SIMULINK will be introduced and used to simulate and examine the effectiveness of various control strategies. The module also incorporates case studies that prepare the students to design control systems for a realistic sized plant. This module is targeted at chemical engineering students who already have a basic knowledge of chemical engineering processes.", + "title": "Process Dynamics & Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3121", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Monday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module incorporates introductory concepts, dynamic modeling, transfer function modules, system identification, control hardware, feedback control and module-based design methods. SIMULINK will be introduced and used to stimulate and examine the effectiveness of various control strategies. This module also incorporates a detailed case study that prepares the students to design control systems for a realistic sized plant. This module is targeted at chemical engineering students who already have a basic knowledge of chemical engineering processes.", + "title": "Process Dynamics & Control", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3121E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the basic concepts for physical processes: filtration, sedimentation, centrifugation, fluidisation and crystallisation. Particulate solids are characterised in terms of size, size distribution, measurement and analysis and processing. The concepts of fluid flowand particle settling, as well as particle size are used for design and operation of some important fluid-particle separation methods. The principle of fluidisation and its applications to reactors and pneumatic transport of solids are also included.", + "title": "Fluid-Solid Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CN3124", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces various multiphase processes that are important to Chemical Engineering\napplications. These include sedimentation, flow through packed beds, filtration, fluidisation,\npneumatic transport and cyclone separation. The concepts of single particle terminal velocity and hindered settling velocity in multiple particle systems are introduced and applied to engineering\ndesigns of continuous settling systems. Principles of flow through packed beds are discussed and\napplied towards engineering designs of filtration and fluidized bed systems. Pressure drop\ncalculations for pneumatic transport systems and engineering design calculations for gas cyclone\nsystems are discussed. The module concludes with the study of crystallisation, colloids and\nnanoparticles.", + "title": "Fluid-Particle Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3124A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the basic concepts for physical processes such as filtration, sedimentation, centrifugation, fluidization, gas cleaning and other topics on flow and dynamics of particulate systems. Particulate solids are characterized in terms of size, size distribution, measurement and analysis and processing such as comminution and mixing. The concept of fluid flow and particle settling are used for design and operation of some important fluid-particle separation methods. The principle of fluidization and its applications as pneumatic transport of solids are also included. This is a core module targeted at the students with background in fluid mechanics in BTech Chemical Engineering program.", + "title": "Particle Technology", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3124E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, equilibrium stage and rate-based design concepts in separation processes are introduced. Starting from simple single stage, binary separation, the theoretical treatment is extended to multi-component, multi-stage processes. After brief introduction to inter-phase mass transfer, basic concepts in rate-based design for the more important separation processes such as absorption and distillation are illustrated. The rate-based design concept is then extended to operations involving simultaneous heat and mass transfer such as in cooling tower and dryer. The process design principles are illustrated with distillation, absorption, extraction, adsorption, cooling tower and drying processes.", + "title": "Separation Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3132", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Friday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-02T06:30:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, equilibrium stage and rate-based design concepts in separation processes are introduced. Starting from simple stage, binary separation, the theoretical treatment is extended to multi-component, multi-stage processes. After brief introduction to inter-phase mass transfer, basic concepts in rate-based design for the more important separation processes such as absorption and distillation are illustrated. The rate-based design concept is then extended to operations involving simultaneous heat and mass transfer such as in cooling tower and dryer. The process design principles are illustrated with distillation, absorption, extraction, adsorption, cooling tower and drying processes.", + "title": "Separation Processes", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CN3132E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide fundamental concepts and methods for the design and operation of safe plants. The students will gain a thorough understanding of chemical process hazards, their identification, their potential effects on safety, health, and the environment, and methods of assessment and control. Emphasis is placed on the integrated management of safety, health, and environmental sustainability.", + "title": "Process Safety, Health and Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CN3135", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 260, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide fundamental concepts and methods for the design and operation of safe plants. The students will gain a thorough understanding of chemical process hazards, their identification, their potential effects on safety, health, and the environment, and methods of assessment and control. Emphasis is placed on the integrated management of safety, health, and environmental sustainability.", + "title": "Process Safety, Health and Environment", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CN3135E", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-11T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces model formulation for various chemical and environmental processes and numerical techniques in solving the associated algebraic and differential equations. Students also learn data sampling and analysis, hypothesis testing and experimental design essential for today?s chemical and environmental engineers. This course covers the formulation of process models and necessary numerical techniques for solving the model equations arising in thermodynamics, fluid mechanics, heat and mass transfer, reaction engineering, transport phenomena, and process systems engineering. The numerical techniques include methods for solving systems of linear and non-linear algebraic equations and systems of linear and non-linear ordinary and partial differential equations. Direct and iterative techniques, numerical differentiation and integration, error propagation, convergence and stability analysis are taught, followed by basic concepts of probability, discrete and continuous random variables, expected values, joint probability distributions, and independence. Hypothesis testing, least square regression, experimental design and sensitivity analysis are also introduced. This module is targeted at level 3 chemical and environmental engineering students.", + "title": "Process Modeling And Numerical Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3421", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces model formulation and MATLAB programming specially for chemical engineering students. This course covers the formulation of process models and necessary numerical techniques for solving the model equations arising in thermodynamics, fluid mechanics, heat and mass transfer, reaction engineering, transport phenomena, and process systems engineering. The numerical techniques include methods for solving systems of linear and non-linear algebraic equations and systems of linear and non-linear ordinary and partial differential equations. Direct and iterative techniques, numerical differentiation and integration, linear regression, error propagation, convergence and stability analysis will also be taught in the context of chemical engineering problems. Students will learn using various tools (Excel spreadsheet and MATLAB) for solving different numerical problems. This module is targeted at level 3 chemical and environmental engineering students.", + "title": "Process Modeling And Numerical Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CN3421A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0307PC4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Friday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0307PC4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0307PC4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a working knowledge of numerical methods and their applications to problems in thermodynamics, fluid mechanics, heat and mass transfer, and reaction engineering. The topics covered are linear and nonlinear equations, interpolation, ordinary and partial differential equations. Each topic starts with an introduction of its applications in chemical engineering followed by principle, development and relative merits of selected methods. Use of suitable software for numerical methods is demonstrated. Students complete 1-2 group projects involving chemical engineering problems and its numerical solution using software, which instills independent learning. The module is targeted at the second year part-time chemical engineering students with some experience in the industry.", + "title": "Process Modeling & Numerical Simulation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN3421E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with a strong foundation on the principles, concepts and techniques of control and safety as applied to chemical and related processes. Students will gain an understanding of chemical process safety management, identification of chemical process hazards, their potential effects on safety and health. Students will learn transfer function models of processes to design controllers that are in common in industrial settings. They will be able to use mathematical tools to analyze processes for stability and performance. This module is targeted at chemical engineering students who already have a basic knowledge of chemical engineering processes.", + "title": "Process Control and Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Scope of the petrochemical industries is reviewed, followed by (i) upstream processing technology dealing with feed stocks, cracker furnaces, materials balances, utility system, instrumentation and plant optimisation, safety and environmental aspects and (ii) downstream processing technology dealing with typical petrochemicals such as acetylene production and acetylene chemicals; derivatives of olefins; butadiene-toluene-xylene (BTX) and derivatives, synthesis gas production and applications. The module is targeted at final-year part-time chemical engineering students with some experience in the industry.", + "title": "Process Design & Safety", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CN4111E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The project aims to provide students with training for scientific or technical research. The module involves an assignment of a research project, equipment training and safety education. Students need to spend at least one full day per week on the project under the guidance of the project supervisor and co-supervisor. A thesis is required at the end of the semester, including literature survey, materials and method, results and discussion, and suggestions for further study. A poster presentation is also required. This module is targeted at all level 4 chemical engineering students.", + "title": "B.Eng. Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CN4118", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1500", + "weeks": { + "start": "2023-06-23", + "end": "2023-07-28" + }, + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module involves an assignment of a research project and safety education. Equipment training will be provided if required. Students need to spend at least eight-hours per week on the project under the guidance of the project supervisor and/or co-supervisor. A thesis is required at the end of the project, including literature survey, materials and method, results and discussion, and suggestions for further study. An oral presentation is also required. This module is targeted at all level 4 engineering students.", + "title": "B.Tech. Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "CN4118E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The project aims to provide students with training for scientific or technical research. The module involves an assignment of a research project, equipment training and safety education. Students need to spend at least one full day per week on the project under the guidance of the project supervisor and co-supervisor. A thesis is required at the end of the semester, including literature survey, materials and method, results and discussion, and suggestions for further study. A poster presentation is also required. This module is only available to non-graduating students, by invitation from the Department", + "title": "Capstone Research Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CN4118N", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The project aims to provide students with training for scientific or technical research. The module involves an assignment of a research project, equipment training and safety education. Students need to spend at least one full day per week on the project under the guidance of the project supervisor and co-supervisor. A thesis is required at the end of the semester, including literature survey, materials and method, results and discussion, and suggestions for further study. A poster presentation is also required. This module is targeted at all level 4 chemical engineering students.", + "title": "B.Eng. Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "CN4118R", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1500", + "weeks": { + "start": "2023-06-23", + "end": "2023-07-28" + }, + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with training for scientific/technical research. It involves an assignment of a research project and safety education. Equipment training will be provided, if required. Students need to spend at least ten hours per week on the project under the guidance of a project supervisor and/or co-supervisor. A thesis is required at the end of the project; it will include literature survey, materials and methods, results and discussion, conclusions and suggestions for further study. An oral presentation is also required.", + "title": "B.Tech. Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CN4119E", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide fundamentals and methods of of process synthesis and simulation, which are required for design of chemical processes/plants. Students learn a heuristic method for process development, simulation strategies, main steps in process design and rigorous process simulation using a commercial simulator through both lectures and many hands-on exercises. They will also learn detailed mechanical design of process equipment, cost estimation and profitability analysis of chemical processes.", + "title": "Process Synthesis and Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CN4122", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 45 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 45 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide fundamentals and methods of of process synthesis and simulation, which are required for design of chemical processes/plants. Students learn a heuristic method for process development, simulation strategies, main steps in process design and rigorous process simulation using a commercial simulator through both lectures and many hands-on exercises. They will also learn detailed mechanical design of process equipment, cost estimation and profitability analysis of chemical\nprocesses.", + "title": "Process Synthesis and Simulation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CN4122E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 45 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide fundamentals and methods of process synthesis and simulation, which are required for design of chemical processes/plants. Students learn a heuristic method for process development, simulation strategies, main steps in process design and rigorous process simulation using a commercial simulator through both lectures and many hands-on exercises. They will also learn detailed mechanical design of process equipment, cost estimation and profitability analysis of chemical processes. This module is only available to non-graduating students, by invitation from the Department.", + "title": "Process Synthesis and Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4122N", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 45 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this capstone design project, students execute a group project to design a chemical production facility. They solve a practical design problem in the same way as might be expected in an industrial situation. Students develop and\nevaluate process flowsheet alternatives via rigorous simulation, perform preliminary sizing, analyze safety and hazards, and estimate costs and profitability. Further, they learn how to solve open-ended problems by making critical design decisions with sound scientific justification and giving due consideration to cost and safety. Project coordinators act as facilitators, and students work almost independently on the project and exercise their creativity.", + "title": "Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "7", + "moduleCode": "CN4123", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this capstone design project, students execute a group project to design a chemical production facility. They solve a practical design problem in the same way as might be expected in an industrial situation. Students develop and\nevaluate process flowsheet alternatives via rigorous simulation, perform preliminary sizing, analyze safety and hazards, and estimate costs and profitability. Further, they learn how to solve open-ended problems by making critical\ndesign decisions with sound scientific justification and giving due consideration to cost and safety. Project coordinators act as facilitators, and students work almost independently on the project and exercise their creativity.", + "title": "Design Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "7", + "moduleCode": "CN4123E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this capstone design project, students execute a group project to design a chemical production facility. They solve a practical design problem in the same way as might be expected in an industrial situation. Students develop and evaluate process flowsheet alternatives via rigorous simulation, perform preliminary sizing, analyze safety and hazards, and estimate costs and profitability. Further, they learn how to solve open-ended problems by making critical design decisions with sound scientific justification and giving due consideration to cost and safety. Project coordinators act as facilitators, and students work almost independently on the project and exercise their creativity.", + "title": "Final Year Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "CN4123R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this capstone design project, students execute a group project to design a chemical production facility. They solve a practical design problem in the same way as might be expected in an industrial situation. Students develop and evaluate process flowsheet alternatives via rigorous simulation, perform preliminary sizing, analyze safety and hazards, and estimate costs and profitability. Further, they learn how to solve open-ended problems by making critical design decisions with sound scientific justification and giving due consideration to cost and safety. Project coordinators act as facilitators, and students work almost independently on the project and exercise their creativity.", + "title": "Final Year Design Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "CN4124E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "L2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "L3", + "startTime": "1800", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L4", + "startTime": "1800", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L2", + "startTime": "1800", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E3-06-11", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L1", + "startTime": "1800", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a working knowledge of a refinery set-up, major processes and treatment units and off-site requirements. It starts with the origin and characterisation of crude oil and the quality of refinery products. The course then focuses on crude and vacuum distillation, catalytic reformer, visbreaker and hydrocracker. Other areas covered are product treatment, sour water treatment and sulphur recovery units. Off-site facilities including storage, utilities and energy requirements are discussed. Finally, the integration of various units and material balances, including product blending considerations are discussed. The course includes a refinery visit with a briefing on safety aspects and a tour of process units and control rooms. This module is targeted at senior chemical engineering students.", + "title": "Petroleum Refining", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4201R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Friday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the principles of producing a polymer product starting from polymer synthesis to the final engineering design and production. It starts with an introduction to polymer chemistry of various synthesis methods and strategies. This is followed by the analysis and characterization of polymers using the physics of polymers. Finally, techniques for producing or synthesizing polymers will be learnt. The various processing methods such as extrusion, njection modelling, blow molding and film blowing for polymers so produced are discussed. Detailed mathematical analyses of some process operations based on momentum, heat and mass transfer approaches are carried out.", + "title": "Polymer Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4203E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the principles of producing a polymer product starting from polymer synthesis to the final engineering design and production. It starts with an introduction to polymer chemistry of various synthesis methods and strategies. This is followed by the analysis and characterization of polymers using the physics of polymers. Finally, techniques for producing or synthesizing polymers will be learnt. The various processing methods such as extrusion, njection modelling, blow molding and film blowing for polymers so produced are discussed. Detailed mathematical analyses of some process operations based on momentum, heat and mass transfer approaches are carried out.", + "title": "Polymer Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4203R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Tutorial", + "size": 54, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 54, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Lecture", + "size": 54, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a working knowledge of selected techniques and software in pinch analysis and process integration as well as their application to chemical processes. The first part of the module covers pinch analysis for heat integration, including data extraction and energy targeting, heat exchanger network design, integration of utilities, heat and power systems, and distillation columns. Application of pinch analysis to maximization of water re-use is also discussed. Another topic is data reconciliation and gross error detection, and their applications. This module is targeted at senior chemical engineering students.", + "title": "Pinch Analysis and Process Integration", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4205E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a working knowledge of selected techniques and software in pinch analysis and process integration as well as their application to chemical processes. The first part of the module covers pinch analysis for heat integration, including data extraction and energy targeting, heat exchanger network design, integration of utilities, heat and power systems, and distillation columns. Application of pinch analysis to maximization of water re-use is also discussed. Another topic is data reconciliation and gross error detection, and their applications. This module is targeted at senior chemical engineering students.", + "title": "Pinch Analysis and Process Integration", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4205R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Monday", + "lessonType": "Tutorial", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Monday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will allow students to gain vital business\nrelated skills and knowledge of this complex and volatile\nindustry. It will provide a broad overview of the markets\nand functional skill sets required to succeed in this fast\npaced industry.", + "title": "Business Skills for Oil & Petrochemical Industry", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4207R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module familiarizes students with the upstream section of a biologics manufacturing plant. It starts with the drug discovery process and natural products research. The rudimentaries of cells, building blocks of proteins, carbohydrates and nucleic acids, as well as fundamental enzyme kinetics are next introduced. Before going into the heart of the module, which is the design of a fermenter, growth and product kinetics are introduced, followed by the concepts of recombinant DNA technology and hybridoma technology for the production of biopharmaceuticals. Detailed treatment of the design of the fermenter, including the operating strategies and transport phenomena with respect to agitation and aeration, follows. Finally a discussion of media sterilization and process monitoring of a bioprocess completes the module.", + "title": "Biochemical Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4208E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces to students with various membrane sciences, technologies, and applications such as microfiltration (MF), ultrafiltration (UF), nanofiltration (NF), reverse osmosis (RO) for water reuses and desalination, material design and gas separation for energy development, and membrane formation for asymmetric flat and hollow fiber membranes. Introduction of various membrane separation mechanisms will be given.", + "title": "Membrane Science And Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4210E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides an overview of the petrochemical industry, with a focus on the Singapore industry. The following processes are discussed in the first part: Refining, Steam Reforming, Steam Cracking, Ammonia and Methanol production. To provide an in-dept understanding, fundamental aspects of the processes, i.e. catalysis, kinetics, thermodynamics and reactor design will be highlighted. The second part of this module starts with an introduction to the fundamental organic reaction types and the structural characteristics of the compounds involved. It is then followed by an introduction to homogeneous catalysis using organometallic compounds as catalysts. The third topic of this part covers a series of derivatives from ethylene, propene, butenes, BTX (bezene-toluene-xylenes), focusing on functional group conversion ad applications of target compounds. The forth topic covers the main fine chemicals, such as surfactants, special monomers, adhesives and intermediates for personal care and pharmaceutics. The final topic introduces the basic concept of green chemical process, focusing on development of chemicals that are more environmental friendly.", + "title": "Petrochemicals & Processing Technology", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4211E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides an overview of the petrochemical industry, with a focus on the Singapore industry. The processes that are covered include crude oil composition, refining, steam reforming, and steam cracking, along with applications of syngas (ammonia, methanol and Fischer-Tropsch synthesis). Important heterogeneous and homogeneous catalytic processes, and derivatives from C1 to C6 base chemicals are also covered. To provide an in-depth understanding, fundamentals of the chemical synthesis, processes, catalysis, kinetics, thermodynamics and reactor design will be highlighted.", + "title": "Petrochemicals and Processing Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4211R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The recent decade has witnessed the rapid development of porous materials and their applications in clean energy and environmental sustainability including storage, separation, sensing, and catalysis. This module covers the chemistry, structure, characterization, and applications of various advanced porous materials including zeolites, inorganic mesoporous materials, metal-organic frameworks (MOFs), covalent organic frameworks (COFs), and other newly-emerged organic porous materials. It is a multidisciplinary course integrating chemistry, materials science, and chemical engineering with a focus on addressing some of the most challenging problems such as carbon capture and utilization.", + "title": "Introduction to Advanced Porous Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module combines food science and engineering operations as an integrated food-engineering course. It starts with the food science topics such as, food chemistry, microbiology and nutrition. Then it focuses on the applications of various chemical engineering operations (refrigeration, freezing, evaporation, drying, and thermal processing) to food processing. The course also covers other relevant topics such as, food rheology and packaging of food products.", + "title": "Food Technology And Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4215E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the necessary background for food processing in the context of chemical engineering operations. The module combines food science and engineering operations as an integrated food-engineering course. It starts with food science topics such as food chemistry, microbiology and nutrition. It then focuses on the applications of various chemical engineering operations (refrigeration, freezing, evaporation, drying, thermal sterilisation) to food processing. The course also covers other relevant topics such as food rheology and packaging of food products. This module is targeted at level 4 chemical engineering students.", + "title": "Food Technology and Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4215R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a fundamental knowledge of electronic materials produced or processed in various industries. It imparts a basic understanding in electrical, electro-optic and magnetic properties of electronic materials in relation to their importance in microelectronic/ optoelectronic/semiconductor industry and their technological applications such as wafer devices, solid-state fuel cells, lithium batteries, light-emitting diodes and solid-state lasers. In particular, semi-conductors, electronic ceramics, conducting polymers, optical and magnetic materials, and nanostructured materials will be introduced. This module is targeted at senior engineering students.", + "title": "Electronic Materials Science", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4216E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a fundamental knowledge of electronic materials produced or processed in various industries. It imparts a basic understanding in electrical, optical, and magnetic properties of electronic materials in relation to their importance in the optoelectronic/semiconductor industry and their technological applications such as wafer devices, solid-state fuel cells, lithium secondary batteries, light-emitting diodes and solid-state lasers. In particular, semi-conductors, electronic ceramics, conducting polymers and optical and magnetic materials will be introduced. This module is targeted at level 4 engineering students.", + "title": "Electronic Materials Science", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4216R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an overview of semiconductor processing with an emphasis on the role of chemical engineering principles. An overall view of manufacturing in the semi-conductor industry and the role of chemical engineers are given. The physics and materials aspects of solid-state devices are introduced with a view towards understanding their functions. The next part takes the students through the various processing events, starting with silicon wafer manufacture and continuing with diffusion, CVD, photolithography, etching and metallization. Chemical engineering principles are highlighted in each section. The module concludes with a description of process integration for device manufacture and a brief discussion about electronic packaging. This module is targeted at level 4 chemical engineering students.", + "title": "Processing of Microelectronic Materials", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4217E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an overview of semi-conductor processing with an emphasis on the role of chemical engineering principles. An overall view of manufacturing in the semi-conductor industry and the role of chemical engineers are given. The physics and materials aspects of solid-state devices are introduced with a view towards understanding their functions. The next part takes the students through the various processing events, starting with silicon wafer manufacture and continuing with diffusion, CVD, photolithography, etching and metallisation. Chemical engineering principles are highlighted in each section. The module concludes with a description of process integration for device manufacture and a brief discussion about electronic packaging. This module is targeted at level 4 chemical engineering students.", + "title": "Processing of Microelectronic Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4217R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with both basic concepts\nand applications for the synthesis and handling of\nparticulate materials, covering various topics such as\ncolloids and fine particles, pharmaceutical particle\nsynthesis and processing, dynamics of particulate\nsystems, fluidization, pneumatic conveying and standpipe,\nelectrostatics for particle processing, particulate flow\nmetering and tomography, discreate element method and\ncontinuum modeling. Particulate solids are characterised in\nterms of size, size distribution, measurement and analysis\nand processing such as comminution and mixing. The\npharmaceutical, biomedical and energy applications of\nparticle technology will be covered at the end of the\nmodule.", + "title": "Particle Technology Fundamentals and Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will give students sound knowledge and appreciation of the development of plant-wide control (PWC) systems for chemical processes. The course will cover the systematic design of a regulatory control system with the aid of heuristics and computer-aided simulation tools. Students will be introduced to dynamic (real-time) simulation of chemical processes. Active learning techniques will be employed throughout. As part of the assessment, students will get to work hands-on with a project to design and simulate PWC systems for a chemical plant. Students are also assessed by means of a class test, and small individual assignments.", + "title": "Control of Industrial Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4221R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a working knowledge of thin film technology as this is applicable in the microelectronics industry. The emphasis is on the role of chemical and engineering science in materials processing. The module commences with an introduction to basic concepts in the kinetic theory of gases, thin film formation, vacuum technology and surface preparation. The next section covers a variety of thin film deposition techniques \u2013 physical as well as chemical. Thin film processing and patterning is the next subject of discussion. In particular, process operations relevant to semi-conductor device manufacture are covered. Diagnostics and characterisation of thin films is also presented with a view to familiarise students in state-of-the-art methodologies. The last part is devoted to an intensive study of thin film phenomena from a materials perspective. This module is targeted at level 4 chemical engineering students.", + "title": "Microelectronic Thin Films", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4223R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a structured introduction to advanced process control concepts with emphasis on methods and techniques that are relevant for industrial practice. Advanced control strategies including feedforward control, ratio control, cascade control, inferential control, decentralized control systems and model predictive control techniques, as well as the representation of process in discrete-time control system and design of controllers, which will be covered. The learning experience of the students will be enhanced through projects that will require them to design advanced controllers for process systems.", + "title": "Advanced Process Control", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4227E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first topic discusses the effect of model/plant mismatch on the closed-loop system, followed by the robust controller design method with the aim to maintain stability or/and achieve performance in the presence of the modelling error. As most chemical processes are multivariable in nature, the design issues related to multi-loop (or decentralised) and decoupling controllers are discussed in the next topic. For digital computer control topic, in many ways, the materials taught parallel those covered in CN3121. The last topic focuses on a powerful and modern control technique called as model predictive control that has received wide-spread use in the refining and chemical process industries.", + "title": "Advanced Process Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4227R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Monday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to advanced computational methods and their application to problems commonly arising in chemical engineering. Tools and techniques from the areas of optimization, neural networks and artificial intelligence would be covered in the course. Practical aspects of recognizing problems in process operation and design that can be solved using these techniques, formulating the problem and solving them would be covered using commonly available software.", + "title": "Computer Aided Chemical Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4229E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module familiarizes students with the downstream section of a biologics manufacturing plant. The module first discusses drug requirements for different applications, and an overview of the downstream processes involved in obtaining an acceptable product quality. The general characteristics and fundamental principles of unit operations encountered in each of the major section of a downstream train are then discussed in detail: removal of insolubles, product isolation, high resolution techniques and product polishing. The current state of the research in some unit operations is also highlighted.", + "title": "Downstream Processing of Biochemical and Pharmaceutical Products", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4231E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers topics pertaining to regulatory and quality issues associated with pharmaceutical production. The two main components of the module are: regulatory aspects of pharmaceutical manufacture and analytical techniques for quality control. The concept of GMP and its components including standard operating procedures, documentation, validation, organization and personnel, premises, equipment, production and quality control are covered in the first half of the module. The second part of the module introduces the students to the various analytical techniques employed in pharmaceutical industry to assess the quality of protein-based biologics.", + "title": "Good Manufacturing Practices in Pharmaceutical Industry", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4233E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Friday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers important topics pertaining to regulatory and quality issues associated with pharmaceutical production. The two main components of the module are: regulatory aspects of pharmaceutical manufacture and analytical techniques for quality control. The concept of good manufacturing practices (GMP) and its components including standard operating procedures, documentation, validation, organization and personnel, premises, equipment, production and quality control are covered in the first half of the module. The second part of the module introduces the students to the various analytical techniques employed in pharmaceutical industry to assess drug\u2019s quality.", + "title": "Good Manufacturing Practices in Pharmaceutical Industry", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4233R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the students will consolidate their accumulated knowledge of fundamental modeling principles and analytical/numerical solution techniques by applying them to a wide variety of large-scale, steady as well as dynamic, chemical, physicochemical, and biochemical systems of industrial importance. The module will emphasize the full range of modeling and simulation techniques including first-principle model development, model analysis and validation, and model prediction and applications. The students will demonstrate their acquired skills by solving one or more sufficiently complex problems of their own choice in a term project to gain hands-on experience", + "title": "Chemical & Biochemical Process Modeling", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4238E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the students will consolidate their accumulated knowledge of fundamental modelling principles and analytical/numerical solution techniques by applying them to a wide variety of large-scale, steady as well as dynamic, chemical, physicochemical, and biochemical systems of industrial importance. The module will emphasise the full range of modelling and simulation techniques including first-principle model development, model analysis and validation, and model prediction and applications. The students will demonstrate their acquired skills by solving one or more sufficiently complex problems of their own choice in a term project to gain hands-on experience.", + "title": "Chemical & Biochemical Process Modeling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4238R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a working knowledge of unit operations and processes for the control of industrial effluent from the chemical process industries. The module begins with an overview of the characteristics of effluent from the chemical plant operations and its impact on the environment. Concepts on environmental sustainability and green processing particularly pertinent to the chemical industry will be covered, including techniques for waste minimization and pollution prevention. Finally, applications of process (physical, chemical and biological) for the treatment of effluent from plant facilities will be presented. Case studies from various industries will also be presented. This module is targeted at level 4 chemical engineering students.", + "title": "Unit Operations and Processes for Effluent Treatment", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4240E", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-09", + "end": "2023-07-04" + }, + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-23", + "weekInterval": 2 + }, + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-09", + "end": "2023-07-04" + }, + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-23", + "weekInterval": 2 + }, + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-11T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a working knowledge of unit operations and processes for the control of industrial effluent from the chemical process industries. The module begins with an overview of the characteristics of effluent from the chemical plant operations, and its impact on the environment. Concepts on environmental sustainability and green processing particularly pertinent to the chemical industry will be covered, including techniques for waste minimisation and pollution prevention. Finally, applications of processes (physical, chemical and biological) for the treatment of effluent from plant facilities will be presented. Case studies from various industries will also be presented. This module is targeted at level 4 chemical engineering students.", + "title": "Unit Operations and Processes for Effluent Treatment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4240R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-08-17", + "end": "2022-11-09" + }, + "venue": "E1-06-05", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students how to apply engineering principles to solve problems in drug delivery and applying them to the design of advanced drug delivery devices. Students are taught the application of engineering principles in the design of drug delivery devices for human health care. Basic concepts and principles in system physiology, pharmacokinetics and pharmacodynamics are introduced. Mechanisms and mathematical models of drug absorption, distribution, metabolism, and excretion are discussed. Various drug delivery devices are analysed. Lipid based and polymer based drug delivery systems are used for a sample case study.", + "title": "Engineering Principles for Drug Delivery", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4241R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the basic theories, methods and software for formulating and solving optimization problems relevant to chemical processes. They will study various methods of linear, nonlinear and mixed-integer linear programming, which would enable them to select and use appropriate algorithm and/or software for solving a given problem. They will also execute the various steps in optimization by solving selected practical problems via various case studies as well as a term project. This is for undergraduate students who wish to learn optimization methodology to solve real-life problems in research and chemical industry.", + "title": "Optimization of Chemical Processes", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4242E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide students with the design and analysis skills necessary to generate and exploit data for a wide variety of tasks that include process monitoring, process modelling, control, optimisation and new product design. Topics covered will include multivariate statistics, system identification and design of experiments. Theory and applications will be equally emphasised. The students will gain an appreciation for the possibilities and limitations of various data based modelling techniques and also the confidence to apply these methods in practical situations. They will be able to make judicious choices of methods and design variables for real world applications.", + "title": "Data Based Process Characterisation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4245R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first part of the module focuses on steps involved in catalytic reactions, such as adsorption, desorption and reaction kinetic models, chemical catalysis, biocatalysis, inter-particulate and intraparticulate transport processes involving Thiele modulus and effectiveness factor. The factors and reaction sequences causing the deactivation of solid catalysts will be covered. The second part of the module focuses on the various methods of preparation, characterization and testing of industrial solid catalysts. The module ends with some case studies on how to select and design catalysts for industrially important processes.", + "title": "Chemical And Bio-Catalysis", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4246E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the concepts of homogeneous and heterogeneous catalysis with increasing complexities, starting from those involving polymeric phases, enzyme pockets, up to those involving zeolite cages and complex oxide surfaces. To achieve these, students will learn catalytic cycles, catalyst structures, catalytic material synthesis and characterisation methods, reaction mechanisms, kinetics, transport phenomena (such as diffusion, mass transfer and heat transfer), and reaction engineering. Many reactions and catalysts of industrial importance will be emphasised throughout the module to illustrate these principles. The students will then learn how to apply their accumulated knowledge of these principles to the design of novel catalysts.", + "title": "Chemical and Bio Catalysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4246R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will start with general introduction about enzyme, enzymatic transformation, and enzymatic process. It will be followed by various components in the development of an enzymatic process: enzyme classes and enzymatic reactions; enzyme discovery and high-throughput screening and detection methods; enzyme purification, characterisation, structure, function, and selectivity; protein engineering; cell engineering; biotransformation with isolated enzymes and microbial cells; reaction engineering; enzyme in organic solvent, two-liquid phase system, and enzyme stabilisation; cofactor regeneration; and product recovery. Finally, the students will learn process economics and industrial examples on the enzymatic production of fine chemicals.", + "title": "Enzyme Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4247R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the concepts of sustainability and sustainable development and their engineering and social relevance in the development of chemical processes and products are introduced. The principles of green chemistry are presented. Clean energy and energy sustainability issues are objectively analyzed. This is followed by a detailed discussion on the developments in scientific methodologies for sustainable engineering design of processes. Concepts of product stewardship and product design are also introduced. The methodologies and concepts are enumerated with relevant case studies. The students demonstrate their understanding through continual assessment tests, and written reports and oral presentations on open-ended projects.", + "title": "Sustainable Process Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4248", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, basic principles of molecular biotechnology will be introduced. Design process based on engineering principles will also be introduced. Subsequently the module will apply the concepts and tools of molecular biotechnology to design useful methods and processes in biotechnology. Representative examples of molecular biotechnology applications such as molecular diagnostics, therapeutics, and their impact on human health will also be covered.", + "title": "Engg. Design in Molecular Biotechnology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4249", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Many chemical companies are moving towards higher value-added specialty chemical products from commodities. This module prepares students with the\nexpertise of (higher-value-added) chemical product design for such companies. It covers the basic methodology with illustrative examples from many areas such as active ingredients and personal-care products. The module involves active-learning lectures and student teaching (with feedback from the lecturer and peers) so that students will gain competence of thinking divergently and critically, and confidently solving open-ended problems through group discussion.", + "title": "Chemical Product Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to produce chemical engineers who can contribute and increase the effectiveness of problem solving in the Chemical Process Industries. It introduces robust heuristics and a systematic approach to problem solving, which combines critical and creative thinking with technical knowledge. The skill development is delivered through the presentation of various problem-solving strategies and techniques, and by applying them to real case studies from a few diverse process industries.", + "title": "Troubleshooting with Case Studies for Process Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module aims to provide an in-depth knowledge in the selected topics of interest to chemical engineers. The topics will be chosen according to the\navailability of expertise (e.g., visiting staff, researchers in research institutes and engineers from industry), and will be advanced, based on industry practice and new developments.", + "title": "Selected Topics in Chemical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN4291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides research students and practicing engineers with a strong foundation in mathematical\nand computing methods applicable to the chemical industry. The module covers techniques for formulating\nmathematical models of chemical processes and analytical techniques for solving the derived models.\nModern software and programming languages are introduced to facilitate numerical solution of complex\nengineering problems. Machine learning concepts and their potential application to problems in chemical\nengineering are discussed.", + "title": "Mathematical & Computing Methods for Chemical Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5010", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Monday", + "lessonType": "Lecture", + "size": 78, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to train the students in the fundamentals of reaction engineering and their application to the design and analysis of reactor. The concepts and theory in reaction kinetics are applied to reactor design of single phase reaction system. These are extended to multiphase reaction systems, incorporating the effects of physical rate processes and the interfacial equilibrium leading to the formulation of procedure for the design performance and stability analysis of reactors. This postgraduate module is targeted at students with interests in reaction systems. Background in chemical kinetics and transport phenomena will be beneficial.", + "title": "Advanced Reaction Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5020", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective is to give students the fundamentals of thermodynamics at an advanced level, so that they can apply them to the analysis of complex processes and equipment design in chemical engineering. The module will begin by reviewing the basic laws of thermodynamics, the basic thermodynamic variables, basic thermodynamic properties and relations, and other concepts. This is to be followed by the fundamentals of equilibrium thermodynamics, thermodynamics of the real gas mixture and the real solution systems, criteria of equilibrium and stability; molecular thermodynamics; thermodynamics of aqueous electrolyte and polymer-solutions; and an introduction to statistical thermodynamics. These concepts are then applied to the analysis chemical engineering processes. This is targeted at students who have a basic degree in science and engineering and are pursuing a higher degree in chemical engineering.", + "title": "Advanced Chemical Engineering Thermodynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Its objective is to introduce to the students the concept and theory of fluid mechanics, and heat and mass transfer at advanced level. This module starts with derivation of three conservation equations for momentum, energy and mass, and introduction of constitutive equations that relate fluxes to material properties and driving forces. Application and simplification of these basic equations for various cases is then followed. Various classical methods are learned to solve different problems. It is targeted at students who have interested in the three transports. Some background in engineering mathematics, fluid mechanics, and heat and mass transfer is beneficial.", + "title": "Advanced Transport Phenomena", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5040", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 54, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective is to introduce the concept and theory of diffusion, and their application in the design and analysis of industrially important advanced separation processes. The module starts with a review of basic diffusion concepts and calculations followed by the impact of flow dynamics on diffusional mass transfer. These concepts are then applied to the understanding and design of absorption with chemical reaction, adsorption, and membrane separation processes. This is a postgraduate module targeted at students who are interested in design and/or operation of diffusional separation processes. Some background in equilibrium thermodynamics and principles of diffusion will be beneficial.", + "title": "Advanced Separation Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5050", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the fundamentals, methods and software for formulating and solving optimization problems of relevance to chemical engineering. They will study various methods of linear/nonlinear and unconstrained/constrained programming, which would enable them to select and use appropriate solution algorithm and/or software for solving a given problem. They will also execute the various steps in optimization and demonstrate their acquired knowledge by solving a sufficiently complex practical problem of their own choice in a term project. This is for graduate students who wish to learn optimization methodology to solve real-life problems in research and/or industry.", + "title": "Optimization of Chemical Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5111", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn fundamentals, methods, and software for formulating and solving optimization problems related to chemical engineering. They will study various methods of linear/nonlinear and unconstrained/constrained programming, which would enable them to select and use appropriate solution algorithms and/or software for solving a given problem. Guest lecturer with extensive industrial experience in the optimization area will discuss many case studies in reality, to demonstrate how these theoretical tools can be used.", + "title": "Process Optimization with Industrial Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5111B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Electrochemical processes are crucial for sustaining our daily lives: from the batteries that power our electronics to the industrial production of aluminium. This module will give students sound working knowledge on the fundamental concepts of electrochemistry, introduction to theoretical concepts and common electrochemical methods. In addition, we will cover some important applications of electrochemistry such as electrodeposition, photoelectrochemistry, and electrocatalysis for water splitting and CO2 conversion to chemicals/fuels. Students are assessed by means of small individual homework assignments, a mid-term and a final exam.", + "title": "Introduction to Electrochemical Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5112", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the course is to introduce fundamental concepts of describing and interpreting interfacial phenomena and to discuss important applications in selected technological areas. The course commences with key theories such as surface tension, contact angle, Young-Laplace equation, and Kelvin equation, followed by the thermodynamics of surfaces, forces that govern interfacial interactions, adsorption at various interfaces, colloidal systems, self assembly system, and surfactants. Investigative techniques for analyses of interfacial and colloidal systems are presented to demonstrate the application of the concepts. Students who are interested in physicochemical events at interface and in colloidal systems are strongly encouraged to study this module. Background in physical chemistry, thermodynamics, transport phenomena, engineering mathematics, and materials science and engineering will be beneficial.", + "title": "Colloids & Surfaces", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Catalysis plays a key role to tackle the increasing societal demand for sustainable production. The module introduces \u201cdisruptive innovations\u201d in catalysis that may revolutionize the way to conduct catalytic reactions, and/or fundamentally change the views on catalytic active sites and cycles. The module consists of five core contents: 1) advanced catalytic kinetic concepts including multiscale modelling and energetic span model; 2) advanced synthetic procedures affording catalyst with high structural precision and complexity; 3) in situ characterization tools; 4) catalysis beyond thermal activation; and 5) emerging frontiers, such as auxiliary promotion, dynamic catalysis, data-driven catalyst design etc.", + "title": "Advanced Topics in Catalysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5160", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Polymer Production, polymerization kinetics, methods of bulk, solution, dispersion, suspension and emulsion polymerization; design of polymerization reactors; analysis of polymer processing operations, extrusion, film blowing, wire-coating, injection molding, blow moulding, thermoforming, calendering and mixing; polymer rheology, the kinematics of deformation and flow, viscometry and rheometry, constitutive equations based on continuum/rational mechanics and on molecular theory.", + "title": "Polymer Processing Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5161", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Survey of functional polymers. Polymer applications in photoresists, e-beam resists, printed wiring as encapsulants in polymer blends and polymer membranes. Electroactive polymers. Polymers in optoelectronics. Surface modified and functionalized polymers. Miscibility in polymer blends. Membrane science. Membrane making and membrane characterization.", + "title": "Advanced Polymeric Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5162", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to familiarize students with the upstream section of a bioprocess for the manufacture of a biological product. The module starts with the drug discovery process and natural products research. Growth and product kinetics are reviewed through a cursory treatment. This is followed by introduction to rDNA and hybridoma technology for biopharmaceuticals production. Detailed treatment of fermenter design including operating strategies, and transport phenomena with respect to agitation and aeration follows. Considerations for mammalian cell cultivation are discussed as well as media sterilization and process monitoring of a bioprocess. These concepts are finally applied to a lab project. This module is targeted at graduate students who are interested in biopharmaceuticals production.", + "title": "Biochemical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5172", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to familiarize students with the downstream section of a bioprocess for the production of biochemical and pharmaceutical products. The module first discusses drug requirements for different applications, and an overview of the downstream processes involved in obtaining an acceptable product quality. The general characteristics and fundamental principles of unit operations encountered in each of the major section of a downstream train are then discussed in detail: removal of insolubles, product isolation, high resolution techniques and product polishing. The current state of the research in some unit operations is also highlighted. The concepts covered are finally applied to a lab project. This module is targeted at graduate students who are interested in biopharmaceuticals production.", + "title": "Downstream Processing of Biochemical & Pharmaceutical Products", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5173", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to advanced computational methods and their application to common chemical engineering problems. Computational techniques are commonly used for process design, planning and scheduling, and control. The module provides a practical introduction to basic concepts, tools and techniques in artificial intelligence, symbolic computation, and numerical optimization. Knowledge representation, object-oriented programming, and solution techniques such as search algorithms, neural networks, symbolic algebra, and linear and nonlinear optimization are covered in a hands-on fashion. These are then applied to various industrially relevant problems. This module is for students interested in state-of-the-art computational methods. Some programming background will be beneficial.", + "title": "Computer Aided Chemical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5181", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module gives a comprehensive overview of the fundamental knowledge of hydrogen, and introduction to the development of hydrogen technologies, including hydrogen production, storage and transportation, hydrogen utilization in industry, and as a clean fuel. Opinions and perspectives on future hydrogen economy will also be introduced. Students will learn various types of hydrogen related research and technologies, their significance, advantages, challenges and opportunities ahead. Guest lectures from academic and industrial experts, literatures from key areas will also be introduced to reinforce classroom learning. This module is meant for students with some chemical engineering, chemistry, materials science, or related background.", + "title": "Hydrogen Energy and Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5190", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide a step-by-step description and illustration of a project\u2019s lifecycle in the chemical industry. Beginning with an overview of the chemical process industry (CPI) and project terminology, the module will discuss in detail the organization of projects, team composition and roles of various personnel, planning and scheduling of activities, project management tools, and plant operations. It will involve guest speakers from various industries and real-life cases studies. This module is targeted at students with a potential career interest in engineering and construction field.", + "title": "Project Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5191", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fuel options for mankind beyond coal, conventional natural gas and petroleum. It is a multidisciplinary course integrating cutting edge technologies for the utilization of future fossil fuels (such as shale gas, coal bed methane and methane hydrates), biofuels and hydrogen fuel. Students will learn various types of alternative fuels, their advantages, significance, current practise, production strategies, and challenges ahead. A term project along with several real and literature case studies from key areas will be used to illustrate and reinforce the learning. This module is meant for graduate students having chemical engineering background.", + "title": "Future Fuel Options: Prospects and Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5192", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 78, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce to the students principles of advanced analytical techniques, and their practical applications. This module covers a number of topics including the analytical process, sample preparation, calibration methods, fundamental aspects of spectrophotometry, applications of atomic spectroscopy, introduction to analytical separations, chromatographic methods, and thermal and surface analysis. In addition, the use of advanced instrumental techniques for specific research applications, data analysis, and spreadsheet calculations are discussed. This is a postgraduate module targeted at students who are interested in using advanced analytical techniques in their research. Some background in Analytical Chemistry will be beneficial.", + "title": "Instrumental Methods of Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5193", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 54, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The link between global warming and rising anthropogenic CO2 in the atmosphere is now well recognized. The urgency to address this existential threat requires a multipronged approach where carbon capture, concentration, sequestration and utilization are among the leading mitigation options. This module provides a broad introduction to global warming and an overview of various intervention strategies. Various carbon capture and concentration technologies, and sequestration options are discussed in detail. The challenges and opportunities of CO2 utilization for chemicals production are addressed. Renewable and low CO2 emission alternative energy technology options are also discussed.", + "title": "Carbon Capture Sequestration and Utilization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5194", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E1-06-08", + "day": "Saturday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As the world moves into a greener future, new technologies and solutions are emerging rapidly. This module will introduce new concepts and development in energy technologies and systems.", + "title": "Selected Topics in Energy Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Resource conservation and waste minimization are some of the greatest current concerns for chemical process industries. With impending resource depletion and climate change issues, it is imperative for process industries to transform and adapt to a more efficient and sustainable operating mode. In this module, the concepts of circular economy, and the implementation of waste-to-energy and waste-to-chemicals technologies will be evaluated. The versatile and useful techniques of process integration and resource conservation networks (RCNs) will also be introduced to prepare students in process design or retrofitting projects with waste minimization as an objective.", + "title": "Circular Economy in the Chemical Industry", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With rising concerns over climate change and resource depletion in this century, the role of chemical engineers in developing processes that are cleaner and greener is evident. This module introduces the concepts of green engineering and clean technologies with a focus on the process design, implementation and techno-economic evaluation for various scales. The applications of upcoming clean technologies such as chemical looping and use of supercritical CO2 will be highlighted. The concepts and principles of Process Intensification will also be taught to help students understand the development and operation of more compact, efficient, and cleaner unit operations.", + "title": "Green Chemical Process and Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module equips students interested in computational chemistry and materials science materials with: 1. Foundation of force-field and interatomic potentials 2. Foundation of first principles methodologies 3. Foundation of the methodologies aforementioned when applied in molecular dynamics and Monte Carlo studied. 4. Hands-on application of computational techniques to chemical and materials science problems.", + "title": "Atomistic Modelling of Molecules and Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5215", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Electronic materials have become essential for modern society, and new breakthroughs in electronic materials promise to offer next generation technologies. This course explores the fundamental mechanisms for understanding existing and emerging electronic materials for green energy devices in the modern world. This survey course will enable students to learn the fundamental properties in order to understand the operation and development of materials for applications such as organic electronics, hybrid semiconductors, photovoltaics, photocatalysts, and optoelectronic devices. This course is also intended to introduce contemporary research to students through discussion and analysis of research manuscripts as case studies.", + "title": "Electronic Materials and Energy Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide an overview of the chemical reaction engineering aspects of pharmaceutical and fine chemical synthesis. Special focus is on controlling the chemo-, regio-, and stereo-selectivity. As preliminaries, a number of relevant chemical aspects and analytical methods are introduced. Homogeneous, heterogeneous, and enzyme catalysis are emphasised for the syntheses of many important pharmaceuticals and fine chemicals. This naturally leads to a host of important environmental issues and green chemical technologies. Important unit operations in pharmaceutical and fine chemical productions are also included in this module. This module is for both PG and UG students.", + "title": "Pharmaceuticals & Fine Chemicals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the concepts of heterogeneous catalysis with increasing complexities, starting from those involving polymeric phases, enzyme pockets, up to those involving zeolite cages and complex oxide surfaces. To achieve these, students will learn steady state approximation, catalytic cycles, catalyst structures, reaction mechanisms & kinetics, transport phenomena (diffusion, mass and heat transfer), and reaction engineering. Many reactions and catalysts of industrial importance will be emphasised throughout the module to illustrate these principles. Students will then learn how to apply their knowledge of these principles to the design of catalysts, reaction mechanism, and reaction kinetics rate laws for reactor design.", + "title": "Catalysis Science and Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5246", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students with a broad spectrum of knowledge in fundamentals of membrane science and engineering, as well as in membrane applications for chemical, environmental and biomedical engineering. The module starts with the introduction of various membranes and their applications. We then teach the general theory of membrane transport for pressure, concentration and electric field driven separation and purification processes. The basic principles of membrane fabrication for symmetric, asymmetric and composite membranes will be studied. Other focuses will be given to membrane fouling, liquid membranes, and facilitated transport in order to broaden students' knowledge in membrane usage and functional membranes. In order to inspire student interests in membrane applications for life science, the module will also include membranes for controlled release devices, biomimetic and biological membranes for life science.", + "title": "Membrane Science & Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5251", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Biotechnology plays increasingly important roles in chemical manufacturing, because it can utilize renewable resources and carry out the reactions at milder, safer and more environmentally-friendly conditions. This module introduces the foundational molecular biology tools that have enabled many biotechnological processes. To enable the students to have hands-on experiences with these theories, this module is also heavy in using computational tools during teaching and assessments. The computations would allow the students to practice the theories in silico and be able to handle large volume of data that are being generated by the omics technologies in many biotechnological applications.", + "title": "Molecular and computational tools for biotechnology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5252", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-0306PC3", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Molecular engineering plays a pivotal role in the development of next generation drug delivery systems. Toward that end, the goal of this course will be to educate students on the fundamental principles that underlie the molecular engineering of drug delivery systems. Key concepts of this course will include the exploration of fundamental reaction paradigms for polymeric synthesis and their modifications using small molecule based mechanistic paradigms including polar, radical, pericyclic, and transition metal mediated pathways across length scales. Students can thus expect to learn how to engineer advanced drug delivery systems at the molecular level for the treatment of disease", + "title": "Molecular Engineering of Advanced Drug Delivery Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5277", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to give students opportunity to critique current papers in biochemical engineering and provide practical understanding of cell culture and purification methods. Students will critique scientific impact of protein therapeutics and engineering aspects of recombinant protein production at commercial scales. They will be introduced to bioreactors, media design and analytical methods for cell culture. This is followed by topics on protein purification, and analytical methods of structure and function. Two practical sessions include culture of animal cells to produce, purify and characterise antibodies, SDS Page, western blots and ELISAs. This is a postgraduate module targeted at students who are interested in bioprocesses such as animal cell culture and protein purification.", + "title": "Special Topics in Biochemical Engineering and Bioseparations", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5371", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course in Chemical Engineering. Specific topics are selected on the basis of current teaching and research needs. Lectures will be given by both department staff and visiting specialists.", + "title": "Selected Topics in Advanced Chemical Engineering I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5391", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course in Chemical Engineering. Specific topics are selected on the basis of current teaching and research needs. Lectures will be given by both department staff and visiting specialists.", + "title": "Selected Topics in Advanced Chemical Engineering II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5392", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course in Chemical Engineering. Specific topics are selected based on teaching and research needs of the Department and current trends in chemical / biomolecular engineering research. Lectures will be given by Department staff and / or visiting specialists.", + "title": "Contemporary Topics in Advanced Chemical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CN5401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The recent decade has witnessed the rapid development of porous materials and their applications in clean energy and environmental sustainability including storage, separation, sensing, and catalysis. This module covers the chemistry, structure, characterization, and applications of various porous materials including zeolites, inorganic mesoporous materials, metal-organic frameworks (MOFs), covalent organic frameworks (COFs), and other newlyemerged porous materials. It is a multidisciplinary course integrating chemistry, materials science, and chemical engineering with a focus on addressing some of the most challenging problems such as hydrogen storage, carbon capture, and CO2 utilization.", + "title": "Fundamentals and Applications of Porous Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN5432", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to allow students to acquire knowledge in a selected field of energy systems through experiential learning. This will be done through a basic or applied research project hosted by a research lab or centre. The student will be guided by a professor in the domain chosen but is expected to work independently mostly. The project will be graded through a report and presentation.", + "title": "Energy Systems Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CN5550", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves supervised project over two semesters, on a topic approved by the Department. The project work should relate to one of the sub-areas of chemical engineering: chemical engineering sciences, chemical and biological systems engineering, environmentally benign processing and sustainability, biomolecular and biomedical sciences, and nanostructured and functionalized materials/devices.", + "title": "Chemical Engineering Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CN5555", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with\nwork attachment experience in a company", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CN5666", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CN5999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary aim of the module is to provide graduate students with a strong foundation in the engineering of chemical reactions and reactors. The module will cover a variety of topics, including molecular basis of chemical phenomena, theories to estimate kinetic rate coefficients, complex gas phase kinetics, heterogeneous catalysis, analysis of reactors for single and multi-phase chemical reactions, and multi-scale coupling of transport phenomena with chemical reactions. A semester-long multi-scale reactor design project will help consolidate and reinforce the material taught in classes. Strong links to current research in several fields will be established, with an emphasis on the generality of the underlying conceptual foundation and its utility in the research pursued by the enrolled students.", + "title": "Advanced Reaction Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN6020", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Survey of functional polymers. Polymer applications in photoresists, e-beam resists, printed wiring as encapsulants in polymer blends and polymer membranes. Electroactive polymers. Polymers in optoelectronics. Surface modified and functionalized polymers. Miscibility in polymer blends. Membrane science. Membrane making and membrane characterization.", + "title": "Advanced Polymeric Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN6162", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module begins with an introduction of how chemical engineering principles contribute to nanomaterials-driven sustainability. Following that is in-depth discourses on the fundamental concepts in the chemistry and physics of inorganic nanomaterials. Then, design of functional inorganic nanomaterials is introduced followed by the systematic discussion on synthesis, characterization, functionalization, properties and applications. Applications of these concepts would be realized in diverse, current and important sustainability topics such as inorganic nanomaterials for renewable energy generation and storage, green catalysis for fine chemicals, applications in environment and human health, and public concerns of inorganic nanomaterials exposure.", + "title": "Inorganic Nanomaterials for Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN6163", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Monday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide an overview of the chemical reaction engineering aspects of pharmaceutical and fine chemical synthesis. Emphasis is placed on the importance of controlling chemo- regio- and stereoselectivity. Most pharmaceutical and fine chemical syntheses are performed in the liquid phase. As preliminaries, a number of relevant physical-chemical concepts are introduced. Since many liquid syntheses are metal-mediated, emphasis is given to homogeneous catalysis and modified heterogeneous. This naturally leads to a host of important environmental issues. This is a postgraduate module targeted at students who have are interested chemical reaction engineering and particularly the special considerations required for the pharmaceutical and fine chemical industries.", + "title": "Pharmaceuticals & Fine Chemicals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN6222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students with a broad spectrum of knowledge in fundamentals of membrane science and engineering, as well as in membrane applications for chemical, environmental and biomedical engineering. The module starts with the introduction of various membranes and their applications. We then teach the general theory of membrane transport for pressure, concentration and electric field driven separation and purification processes. The basic principles of membrane fabrication for symmetric, asymmetric and composite membranes will be studied. Other focuses will be given to membrane fouling, liquid membranes, and facilitated transport in order to broaden students? knowledge in membrane usage and functional membranes. In order to inspire student interests in membrane applications for life science, the module will also include membranes for controlled release devices, biomimetic and biological membranes for life science.", + "title": "Membrane Science & Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CN6251", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Doctoral Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "CN6999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to computational thinking as applied to problems in science, with special emphasis on their implementation with Python/Python Notebook (Jupyter). A selection of examples will be chosen to illustrate (a) fundamentals of algorithm design in computer programming (b) solution interpretation, as well as (c) analysis of the computational solutions and data visualization using state-of-the-art tools in Python. The selection will tackle different types of approaches typically used in scientific computational thinking, including deterministic, probabilistic and approximation methods. The module will also highlight scientific computational issues such as accuracy and convergence of numerical results.", + "title": "Computational Thinking for Scientists", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "COS1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "5", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Friday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Friday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 52, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Friday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Friday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Monday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Friday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Thursday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for PR and PHS majors, and will introduce students to foundations in computational thinking and an introduction to coding in the R programming language, with the familiar environment of Excel used to help students make the transition to computational thinking. The aim is to prepare students with these foundations before they embark on their internships. The concepts of this module together with the experiential learning will form the bases for COS2102 Health and Pharmacy Informatics.", + "title": "Computational Thinking for Pharm Sciences & Pharmacy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "COS2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Orbital provides a platform for students to gain hands-on industrial experience for computing technologies related to students\u2019 own interests. Done in pairs of two, Orbital students propose, design, execute, implement and market their project to peers and faculty. Peer assessment and critique of others\u2019 projects are key components of the modules\u2019 deliverables.", + "title": "Independent Software Development Project (Orbital)", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CP2106", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Innovators practice the art of persuading people to accept changes in how they live\u2014in work, leisure and social interaction. This module\u2019s object is to introduce students to digital innovation, and to encourage them to embark on a personal journey of creativity and challenge. Inspirational innovators will be invited to present topics related to digital innovation, such as successful innovative projects of start-up teams and advanced development teams, innovative approaches such as Design Thinking, and opportunities for innovation, the vibrant intersection of energising technology trends and new markets. This module will be graded as \u201cCompleted Satisfactory\u201d or \u201cCompleted Unsatisfactory\u201d\n(CS/CU).", + "title": "Journey of the Innovator", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CP2201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is open to undergraduates who have completed at least 60 MCs and plan to proceed on an approved internship of at least 10 weeks in duration in the vacation. It recognizes work experiences in fields that could lead to viable career pathways that may/may not be directly related to the student\u2019s major. It is accessible to students for academic credit even if they had previously completed internship stints for academic credit not exceeding 12 MCs, and if the new work scope is substantially differentiated from previously completed\nones. The module is assessed on Completed Satisfactory/Uncompleted Satisfactory (CS/CU) basis.", + "title": "Work Experience Internship", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CP2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to provide a platform for innovative topics in computing that are not part of the regular curriculum to be presented to the students. This may include topics that are taught due to the availability of\na visiting expert, new developments in an area, or a particular event such as a competition that can be used to impart appropriate education to the students. The module may be offered as graded or CS/CU as appropriate to the topic.", + "title": "Topics in Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CP3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a part of an experimental global software engineering education initiative spearheaded by Stanford/Facebook. It is offered as part of the CP3101\nTopics in Computing series.\n\nStudent teams will be associated with a select group of open source software projects. These projects are characterized by being active in both development and utilization as well as being open to new and relatively inexperienced committers. They are also projects that are deemed to be relevant in today's software ecosystem. We also believe there is value in seeding awareness of how to contribute to open source projects like these among future technology leaders. Ideally there will also be some value from the development work student teams contribute back to the project as well.", + "title": "Global Open Source Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CP3101A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CP3106", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a project-based module that provides students with training in software engineering by working on an actual software system that supports a local voluntary welfare organisation. This module is graded on a Completed Satisfactorily/Completed Unsatisfactorily (CS/CU) basis.", + "title": "Computing for Voluntary Welfare Organisations", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "CP3107", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Work", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CP3108A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Work", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CP3108B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exploratory Project", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CP3109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a project-based module that provides students with training in software engineering by working on an actual software system that supports a local voluntary welfare organisation. This module is graded on a Completed Satisfactory/Completed Unsatisfactory (CS/CU) basis.", + "title": "Computing for Voluntary Welfare Organisations II", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "CP3110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The IT industry and related businesses are developing rapidly for which students need to have an opportunity to expose themselves to the latest industry developments. This internship module requires students to work in a\ncompany for a period of three months. Their progress on projects will be monitored during attachment, and their performance will be graded as \u201cCompleted\nSatisfactory/Completed Unsatisfactory (CS/CU)\u201d at the end of the attachment, based on the final project report. During the attachment, students are not expected to take other modules offered by the university.", + "title": "Internship", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "CP3200", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The information technology (IT) industry is in an everchanging state of evolvement and innovation. This module aims to acquaint students with the latest Information\nTechnology (IT) innovation, practices, and developments. Prominent leaders and practitioners in the IT industry will be invited to impart their knowledge and insights into the latest IT trends and developments from various industry arenas such as the finance, healthcare, consulting, manufacturing, and entertainment industries. Students' performance will be graded as \"Completed Satisfactory/Completed Unsatisfactory (CS/CU)\" at the end of the module based on the coursework.", + "title": "Industry Seminar", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CP3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The IT industry and related businesses are developing\nrapidly for which students need to have an opportunity to\nexpose themselves to the latest industry developments.\nThis internship module requires students to work in a company for a period of three months. Their progress on projects will be monitored during attachment, and their performance will be graded as \u201cCompleted Satisfactory/Completed Unsatisfactory (CS/CU)\u201d at the end of the attachment, based on the final project report.\n\nThis is the second three month internship for the School of Computing students. With two internships, the student will be able to experience work in two distinct types of organizations, such as a start-up and a MNC, or in two different industries.", + "title": "Internship II", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "CP3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module (together with CP3209) is part of the UROP (Computing) project. The objective of this module and the UROP (Computing) project in general, is to provide an opportunity for talented students to undertake a substantial research project under the supervision of faculty members of the School of Computing. Through this research collaboration, the student will get to experience at first hand the challenges and exhilaration of research, discovery and invention. This module should be followed by CS3209 to complete the UROP (Computing) project.", + "title": "Undergraduate Research in Computing I", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CP3208", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This year-long module provides an opportunity for students to undertake a substantial research project under the supervision of faculty members of the School of Computing. Through this research collaboration, the student will experience first-hand the challenges and exhilaration of research, discovery and invention.", + "title": "Undergraduate Research Project in Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CP3209", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module enables students to apply the computing knowledge they have assimilated in class to industrial projects through six-month attachment to companies/organizations. Students under attachment will be jointly guided by supervisors from both the companies/organizations and the school. Their progress on projects will be monitored during attachment, and their performance will be assessed (on Satisfactory/Unsatisfactory (S/U) basis) at the end of the attachment, based on the interim and final project reports. During the attachment, students are not expected to take other modules offered by the university.", + "title": "Advanced Technology Attachment Programme", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "CP3880", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Incubation Project", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "CP3881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "B.Comp. Dissertation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "CP4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this project module enables students to undertake a substantial computing-related project work over a period of one year. Students work individually on self-proposed projects or projects proposed by staff. They will have good opportunity to apply what they have learnt on practical problems, be it research-oriented or software development-oriented. Students should periodically submit a report make a presentation to the respective supervisors.\nThe project will be letter-graded.", + "title": "Computing Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CP4106", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The graduate research paper presentation is for evaluating the ability of the student to undertake a critical review of an existing research area. The student is expected to have necessary background and show competence in embarking on the PhD research. Students are expected to identify a promising research area. The paper should be self-contained and provide a good overview of the research problems, initial exploration of the research area, and insight to the research problems, with preliminary study and proposals on the outstanding research issues. It should contain more findings than a survery paper.", + "title": "Graduate Research Paper", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "CP5010", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The dissertation option gives individual students the opportunity for independent study and research in the area of their selected specialization. This will be carried out under the supervision of an academic staff, and the selection of the topic/area will be done in consultation with the supervisor in the area of expertise.", + "title": "MComp Dissertation", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "16", + "moduleCode": "CP5101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The exploratory project option gives individual students the opportunity for independent study and research in the area of their selected specialization. This will be carried out under the supervision of an academic staff, in possible cosupervision with a mentor from the industry or government agency. The selection of the topic/area will be done in consultation with the supervisor and the external mentor. All projects will be vetted by School of Computing Postgraduate Office.", + "title": "MComp Information Security Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CP5102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The project option provides individual students the\nopportunity and experience to work on a significant\ncomputing project. It aims to prepare students with\nsufficient practical and/or research experiences in the\ncomputing field. The project will be carried out under the\nsupervision of an academic staff. The selection of the\ntopic will be done in consultation with the supervisor. All\nprojects will be vetted by the School. The project will be\nassessed through a written project report and will be\nletter-graded.", + "title": "Master of Computing Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CP5103", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this project module is to allow graduate students an opportunity to undertake a substantial project work over a semester. Students may work individually on projects proposed by staff, possibly in collaboration with\nexternal companies. The students will have good opportunity to apply what they have learnt to some technical challenges or practical problems, be it researchoriented or software-development. The project will be assessed through a written project report and will be letter-graded.", + "title": "Graduate Project in Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CP5104", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an opportunity for teams of students to work with academic staff members in the area of computing expertise to identify and solve problems beyond the formal classroom setting. Through a combination of experiential, self-directed and team learning that spans from one to two semesters, it aims to develop personal capabilities, professional competencies and translates academic knowledge in an industry setting or research.", + "title": "Computing Capstone Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "CP5105", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an opportunity for students to work on solving problems beyond the formal classroom setting. Through a combination of experiential, self-directed and team learning that spans over two semesters, it aims to develop personal capabilities, professional competencies and translates academic knowledge to industry setting. The full-time 4-months attachment will take place during the second semester. Students should have completed 24MC of graduate-level modules prior to the start of industry internship attachment. Two topical modules from IT5100 series must be taken together with CP5106 prior to internship. Where appropriate, the industrial internship may be replaced by an internal internship with similar rigour that ensures computing development competencies.", + "title": "Computing Capstone Project (with Internship)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CP5106", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A PhD candidate will be required to give a Doctoral Seminar within 12 months after passing his/her PhD Thesis Proposal. The seminar, which should include any research findings or work from published papers.", + "title": "Doctoral Seminar", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "CP6010", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental concepts of problem solving by computing and programming using an imperative programming language. It is the first and foremost introductory course to computing. Topics covered include computational thinking and computational problem solving, designing and specifying an algorithm, basic problem formulation and problem solving approaches, program development, coding, testing and debugging, fundamental programming constructs (variables, types, expressions, assignments, functions, control structures, etc.), fundamental data structures (arrays, strings, composite data types), basic sorting, and recursion.", + "title": "Programming Methodology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS1010", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "B03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "B04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "C03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "C05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "C04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "B06", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "07A", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "D03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "C06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "08A", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental concepts of problem solving by computing and programming using an imperative programming language. It is the first and foremost introductory course to computing. Topics covered include computational thinking and computational problem solving, designing and specifying an algorithm, basic problem formulation and problem solving approaches, program development, coding, testing and debugging, fundamental programming constructs (variables, types, expressions, assignments, functions, control structures, etc.), fundamental data structures (arrays, strings, composite data types), basic sorting, and recursion.", + "title": "Programming Methodology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS1010E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "22", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "31", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 450, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 450, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "35", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "31", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "39", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "35", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "37", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 425, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "36", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "38", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 425, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "COM1-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "COM1-B112", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "COM1-B112", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "COM1-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "COM1-B108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1400", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1400", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "COM1-B108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1400", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "COM1-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1400", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "COM1-B112", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "COM1-B112", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-24" + }, + "venue": "LT19", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental concepts of problem solving by computing and programming using an imperative programming language. It is the first and foremost introductory course to computing. Topics covered include computational thinking and computational problem solving, designing and specifying an algorithm, basic problem formulation and problem solving approaches, program development, coding, testing and debugging, fundamental programming constructs (variables, types, expressions, assignments, functions, control structures, etc.), fundamental data structures (arrays, strings, composite data types), basic sorting, and recursion.", + "title": "Programming Methodology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS1010J", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Programming Methodology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS1010R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental concepts of problem solving by computing and programming using an imperative programming language. It is the first and \nforemost introductory course to computing and is equivalent to CS1010 and CS1010E Programming Methodology. Topics covered include problem solving by computing, writing pseudo-codes, basic problem formulation and problem solving, program development, coding, testing and debugging, fundamental programming constructs (variables, types, expressions, assignments, functions, control structures, etc.), fundamental data structures: arrays, strings and structures, simple file processing, and basic recursion. This module is appropriate for FoS students.", + "title": "Programming Methodology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS1010S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 900, + "covidZone": "Unknown" + }, + { + "classNo": "1V", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 900, + "covidZone": "B" + }, + { + "classNo": "24B", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "24C", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "19B", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "19C", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "18C", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "20A", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "20B", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "20C", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "21A", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "21B", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "22A", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "22B", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "22C", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "23A", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "23B", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "24A", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "02A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "02B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "02C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "03A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "03C", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "04A", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "09A", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "09B", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "09C", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "10A", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "10B", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "10C", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "15A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "17A", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "17B", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "18A", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "18B", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "07B", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "07C", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "08A", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "08B", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "08C", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "04C", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "05A", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "05B", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "05C", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "06B", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "07A", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "04B", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "16C", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "15B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "11B", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "15C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "17C", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "19A", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "21C", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "23C", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "03B", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "16B", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "06C", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "11A", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "11C", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "06A", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "16A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "42", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "44", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "45", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "46", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "47", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "48", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "49", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "51", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "35", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "36", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "37", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "38", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "39", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "40", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "31", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "41", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 600, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Friday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "43", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "50", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental concepts of problem solving by computing and programming using an imperative programming language. It is the first and foremost introductory course to computing and is equivalent to CS1010, CS1010S and CS1010E Programming Methodology. The module will be taught using the Python programming language and topics covered include problem solving by computing, writing pseudo-codes, basic problem formulation and problem solving, program development, coding, testing and debugging, fundamental programming constructs (variables, types, expressions, assignments, functions, control structures, etc.), fundamental data structures arrays, strings and structures, simple file processing, and basic recursion.", + "title": "Programming Methodology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS1010X", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2023-04-01", + "end": "2023-06-10" + }, + "venue": "COM3-01-21", + "day": "Saturday", + "lessonType": "Recitation", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1630", + "endTime": "1800", + "weeks": { + "start": "2023-04-14", + "end": "2023-05-26" + }, + "venue": "COM3-01-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1500", + "endTime": "1630", + "weeks": { + "start": "2023-04-15", + "end": "2023-05-27" + }, + "venue": "COM3-01-21", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1630", + "endTime": "1800", + "weeks": { + "start": "2023-04-15", + "end": "2023-05-27" + }, + "venue": "COM3-01-21", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1630", + "weeks": { + "start": "2023-04-14", + "end": "2023-05-26" + }, + "venue": "COM3-01-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2023-03-31", + "end": "2023-06-09" + }, + "venue": "COM3-01-21", + "day": "Friday", + "lessonType": "Recitation", + "size": 48, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [], + "examDate": "2023-06-16T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental concepts of problem solving by computing and programming using an imperative programming language. It is the first and foremost introductory course to computing and is equivalent to CS1010, CS1010S and CS1010E Programming Methodology. The module will be taught using the Python programming language and topics covered include problem solving by computing, writing pseudo-codes, basic problem formulation and problem solving, program development, coding, testing and debugging, fundamental programming constructs (variables, types, expressions, assignments, functions, control structures, etc.), fundamental data structures: arrays, strings and structures, simple file processing, and basic recursion.", + "title": "Programming Methodology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS1010XCP", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concepts of programming and computational problem solving, and is the first and foremost introductory module to computing. Starting from a small core of fundamental abstractions, the module introduces programming as a method for communicating computational processes. The module begins with purely functional programming based on a simple substitution-based execution model, and ends with a powerful modern imperative language based on a realistic environment-based execution model. Topics covered include functional abstraction, recursion, higher-order functions, data abstraction, algorithmic strategies, state mutation, loops and arrays, evaluation strategies, sorting and searching, debugging and testing.", + "title": "Programming Methodology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS1101S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "06G", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "06F", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09J", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08F", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09G", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08E", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "07E", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "07F", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "07G", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "06D", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "06E", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09H", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "10E", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "04D", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09F", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "07B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "05C", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09C", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "07C", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03E", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09D", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09E", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "07D", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "10B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "06C", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08C", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "01B", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "04C", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02G", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "04B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03C", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "01A", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "05B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02D", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02E", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03D", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "07A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "05A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "06B", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02C", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "15D", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "11C", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "10D", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "11D", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "15B", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "17B", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "04A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "10A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08L", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "07K", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03K", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "05H", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09K", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "10K", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02L", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "07J", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02K", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08K", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "01J", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "05G", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "06J", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "04L", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02J", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "01F", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08G", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "10G", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "04G", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "04J", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "05E", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "05F", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "01G", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03G", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "04K", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "04F", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "01D", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "10F", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "05J", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "05K", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "06K", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "07L", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09L", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "15A", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "11E", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "17A", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "18A", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "07H", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08J", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "10H", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "16C", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "10E", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "14B", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "16B", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "18B", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "10C", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "14A", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "16A", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "01E", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 790, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 790, + "covidZone": "Unknown" + }, + { + "classNo": "09D", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "09E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "01H", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "10B", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "10A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "14D", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "17D", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "18D", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "14C", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "05D", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08D", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "10D", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02F", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "10C", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "09A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "17C", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "18C", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "06A", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03J", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "10J", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03L", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03H", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "06H", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "04E", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02H", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "15C", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "09A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "11A", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "16D", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "11B", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "09C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Recitation", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "03F", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "01C", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "04H", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08H", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "01K", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "08B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Thursday", + "lessonType": "Recitation", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Thursday", + "lessonType": "Recitation", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Recitation", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces mathematical tools required in the study of computer science. Topics include (1) Logic and proof techniques propositions, conditionals, quantifications. (2) Relations and Functions Equivalence relations and partitions. Partially ordered sets. Well-Ordering Principle. Function equality. Boolean/identity/inverse functions. Bijection. (3) Mathematical formulation of data models (linear model, trees, graphs). (4) Counting and Combinatoric Pigeonhole Principle. Inclusion-Exclusion Principle. Number of relations on a set, number of injections from one finite set to another, Diagonalisation proof An infinite countable set has an uncountable power set; Algorithmic proof An infinite set has a countably infinite subset. Subsets of countable sets are countable.", + "title": "Discrete Structures", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS1231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 420, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 420, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Discrete Structures", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS1231R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces mathematical tools required in the study of computer science. Topics include (1) Logic and proof techniques propositions, conditionals, quantifications. (2) Relations and Functions Equivalence relations and partitions. Partially ordered sets. Well-Ordering Principle. Function equality. Boolean/identity/inverse functions. Bijection. (3) Mathematical formulation of data models (linear model, trees, graphs). (4) Counting and Combinatoric Pigeonhole Principle. Inclusion-Exclusion Principle. Number of relations on a set, number of injections from one finite set to another, Diagonalization proof An infinite countable set has an uncountable power set; Algorithmic proof An infinite set has a countably infinite subset. Subsets of countable sets are countable.", + "title": "Discrete Structures", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS1231S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "22B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 880, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 880, + "covidZone": "Unknown" + }, + { + "classNo": "08B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10C", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "25B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13C", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "23B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "06B", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "05A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "04A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "25C", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "01B", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "16A", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "11B", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "23A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "09B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "01A", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "21A", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02C", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "07A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "15C", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "06A", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "11A", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "07B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "21B", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "15A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "20A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "25A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "22A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "19A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "15B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "09A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "04B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "08A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "17A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "External Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS2004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CS2006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a follow up to CS1010. It explores two modern programming paradigms, object-oriented programming and functional programming. Through a series of integrated assignments, students will learn to develop medium-scale software programs in the order of thousands of lines of code and tens of classes using objectoriented design principles and advanced programming constructs available in the two paradigms. Topics include\nobjects and classes, composition, association, inheritance, interface, polymorphism, abstract classes, dynamic binding, lambda expression, effect-free programming, first class functions, closures, continuations, monad, etc.", + "title": "Programming Methodology II", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2030", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "12B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Friday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "14A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Friday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Friday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Friday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "14C", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Friday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "12A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Friday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "14B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Friday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "B" + }, + { + "classNo": "12C", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Friday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10C", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Friday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10D", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Friday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "14C", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12F", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12G", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10F", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10G", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12C", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12D", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10D", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10E", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10C", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14G", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14E", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Recitation", + "size": 52, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Recitation", + "size": 52, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 52, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 52, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 52, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 52, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "12E", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14D", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14F", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Recitation", + "size": 52, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Recitation", + "size": 52, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a follow up to CS1010. It explores two modern programming paradigms, object-oriented programming and functional programming. Through a series of integrated assignments, students will learn to develop medium-scale software programs in the order of thousands of lines of code and tens of classes using object-oriented design principles and advanced programming constructs available in the two paradigms. Topics include objects and classes, composition, association, inheritance, interface, polymorphism, abstract classes, dynamic binding, lambda expression, effect-free programming, first class functions, closures, continuations, monad, etc.", + "title": "Programming Methodology II", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2030S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "16B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "14B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "16A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "12A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "14A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "12B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "12D", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "12F", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "12E", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "12H", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "14C", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "12L", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "14A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "14B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "12J", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "10E", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "10F", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "10H", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "10D", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "08F", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "08G", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "08H", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "08J", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "08K", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "10A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "10C", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "08B", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "08C", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "08D", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "08E", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "08L", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "16C", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "16D", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "16E", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "16L", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "16G", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "16H", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "16J", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "16K", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "14E", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "14G", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "14H", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0338", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "14J", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "14K", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "14L", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "16A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10L", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "10J", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0336", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "12C", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "12B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "14D", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "12K", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "08A", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10G", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "10B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "16B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "16F", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "10K", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "12A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "12G", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 760, + "covidZone": "Unknown" + }, + { + "classNo": "14F", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the design and implementation of fundamental data structures and algorithms. The module covers basic data structures (linked lists, stacks, queues, hash tables, binary heaps, trees, and graphs), searching and sorting algorithms, and basic analysis of algorithms.", + "title": "Data Structures and Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2040", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "21", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1C", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 600, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 600, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1V", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 600, + "covidZone": "B" + }, + { + "classNo": "3A", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "2E", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "3B", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "3C", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "2A", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1D", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "2B", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "2C", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "3E", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "3D", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "4A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "5D", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "5E", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "5C", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "4C", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "5B", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "5A", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "4E", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1E", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1V", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 600, + "covidZone": "B" + }, + { + "classNo": "2D", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "4B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "4D", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "17", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 540, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 540, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 540, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 34, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 540, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1500", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1430", + "endTime": "1630", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1430", + "endTime": "1630", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1530", + "endTime": "1730", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1500", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1500", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1530", + "endTime": "1730", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1530", + "endTime": "1730", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1430", + "endTime": "1630", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1500", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1300", + "endTime": "1400", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1430", + "endTime": "1630", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1300", + "endTime": "1400", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1530", + "endTime": "1730", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-07-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the design and implementation of fundamental data structures and algorithms. The module covers basic data structures (linked lists, stacks, queues, hash tables, binary heaps, trees, and graphs), searching and sorting algorithms, basic analysis of algorithms, and basic object-oriented programming concepts.", + "title": "Data Structures and Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2040C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Monday", + "lessonType": "Laboratory", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Monday", + "lessonType": "Laboratory", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Monday", + "lessonType": "Laboratory", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Monday", + "lessonType": "Laboratory", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the design and\nimplementation of fundamental data structures and\nalgorithms. The module covers basic data structures\n(linked lists, stacks, queues, hash tables, binary heaps,\ntrees, and graphs), searching and sorting algorithms, and\nbasic analysis of algorithms.", + "title": "Data Structures and Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2040S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 26, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 26, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 26, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 26, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 26, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 26, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 26, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 26, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "25", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "49", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "50", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "45", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "47", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "46", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "44", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "35", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "36", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "37", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "38", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "39", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "41", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "42", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Thursday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "48", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 780, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "31", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Recitation", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 780, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "40", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "43", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to familiarise students with the fundamentals of computing devices. Through this module students will understand the basics of data representation, and how the various parts of a computer work, separately and with each other. This allows students to understand the issues in computing devices, and how these issues affect the implementation of solutions. Topics covered include data representation systems, combinational and sequential circuit design techniques, assembly language, processor execution cycles, pipelining, memory hierarchy and input/output systems.", + "title": "Computer Organisation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2100", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "17", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "31", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "31", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 700, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 420, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0114", + "day": "Monday", + "lessonType": "Laboratory", + "size": 17, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Computer Organisation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS2100R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the skills needed to communicate technical information to technical and nontechnical audiences, and to create comprehensible software documentation. A student-centric approach will\nbe adopted to encourage independent and collaborative learning while engaging students in team-based projects. Students will learn interpersonal and intercultural\ncommunication skills as well as hone their oral and written communication skills. Assessment modes include a variety of oral and written communication tasks such as reports, software guides, oral presentations, software demonstrations and project blogs.", + "title": "Effective Communication for Computing Professionals", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce the fundamental concepts and techniques necessary for the understanding and practice of design and implementation of database applications and of the management of data with relational database management systems. The module covers practical and theoretical aspects of design with entity-relationship model, theory of functional dependencies and normalisation by decomposition in second, third and Boyce-Codd normal forms. The module covers practical and theoretical aspects of programming with SQL data definition and manipulation sublanguages, relational tuple calculus, relational domain calculus and relational algebra.", + "title": "Database Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "Unknown" + }, + { + "classNo": "1V", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "21", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce the fundamental concepts and techniques necessary for the understanding and practice of design and implementation of database applications and of the management of data with relational database management systems. The module covers practical and theoretical aspects of design with entity-relationship model, theory of functional dependencies and normalisation by decomposition in second, third and Boyce-Codd normal forms. The module covers practical and theoretical aspects of programming with SQL data definition and manipulation sublanguages, relational tuple calculus, relational domain calculus and relational algebra.", + "title": "Database Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS2102R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the necessary conceptual and analytical tools for systematic and rigorous development of software systems. It covers four main areas of software development, namely object-oriented system analysis, object-oriented system modelling and design, implementation, and testing, with emphasis on system modelling and design and implementation of software modules that work cooperatively to fulfill the requirements of the system. Tools and techniques for software development, such as Unified Modelling Language (UML), program specification, and testing methods, will be taught. Major software engineering issues such as modularisation criteria, program correctness, and software quality will also be covered.", + "title": "Software Engineering", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Software Engineering", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS2103R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the necessary conceptual and analytical tools for systematic and rigorous development of software systems. It covers four main areas of software development, namely object-oriented system analysis, object-oriented system modelling and design, implementation, and testing, with emphasis on system modelling and design and implementation of software modules that work cooperatively to fulfill the requirements of the system. Tools and techniques for software development, such as Unified Modelling Language (UML), program specification, and testing methods, will be taught. Major software engineering issues such as modularisation criteria, program correctness, and software quality will also be covered.", + "title": "Software Engineering", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2103T", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Monday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Friday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B103", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G13", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G03", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concepts that serve as a basis for hundreds of programming languages. It aims to provide the students with a basic understanding and appreciation of the various essential programming-languages constructs, programming paradigms, evaluation criteria and language implementation issues. The module covers concepts from imperative, object-oriented, functional, logic, constraints, and concurrent programming. These concepts are illustrated by examples from varieties of languages such as Pascal, C, Java, Smalltalk, Scheme, Haskell, Prolog. The module also introduces various implementation issues, such as pseudo-code interpretation, static and dynamic semantics, abstract machine, type inferencing, etc.", + "title": "Programming Language Concepts", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Programming Language Concepts", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS2104R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a broad introduction to computer networks and network application programming. It covers the main concepts, the fundamental principles, and the high-level workings of important protocols in each of the Internet protocol layer. Topics include the Web and Web applications, DNS services, socket programming, reliable protocols, transport and network layer protocols, secure communication, LAN, and data communication. Practical assignments and handson exercises expose students to network application programming and various networking tools and utilities.", + "title": "Introduction to Computer Networks", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "14", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1V", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 430, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 430, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Monday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Monday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Monday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 480, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 480, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Introduction to Computer Networks", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS2105R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the basic concepts in operating systems and links it with contemporary operating systems (eg. Unix/Linux and Windows). It focuses on OS structuring and architecture, processes, memory management, concurrency and file systems. Topics include kernel architecture, system calls, interrupts, models of processes, process abstraction and services, scheduling, review of physical memory and memory management hardware, kernel memory management, virtual memory and paging, caches, working set, deadlock, mutual exclusion, synchronisation mechanisms, data and metadata in file systems, directories and structure, file system abstraction and operations, OS protection mechanisms, and user authentication.", + "title": "Introduction to Operating Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "17", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 420, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-020607", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 420, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Introduction to Operating Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS2106R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as an introductory module on information security. It illustrates the fundamentals of how systems fail due to malicious activities and how they can be protected. The module also places emphasis on the practices of secure programming and implementation. Topics covered include classical/historical ciphers, introduction to modern ciphers and cryptosystems, ethical, legal and organisational aspects, classic examples of direct attacks on computer systems such as input validation vulnerability, examples of other forms of attack such as social engineering/phishing attacks, and the practice of secure programming.", + "title": "Introduction to Information Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 260, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "12", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 460, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to (i) the fundamental principles, theory, algorithms, and data structures behind digital representation, compression, synchronization, and processing of image, audio, and video data types, and (ii) challenges and issues in developing media-rich applications, such as media streaming and media retrieval. Students will be exposed to the workings of common media file format and common manipulation techniques on media data. After taking the module, students should be confident enough in developing media applications and make appropriate trade-off and design decisions when dealing in media data in their software.", + "title": "Introduction to Media Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2108", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces basic concepts in Artificial Intelligence (AI) and Machine Learning (ML). It adopts the perspective that planning, games, and learning are related types of search problems, and examines the underlying issues, challenges and techniques. Planning/games related topics include tree/graph search, A* search, local search, and adversarial search (e.g., games). Learning related topics include supervised and unsupervised learning, model validation, and neural networks.", + "title": "Introduction to AI and Machine Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2109S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "13", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "12", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the necessary skills for systematic and rigorous development of software systems. It covers requirements, design, implementation, quality assurance, and project management aspects of small-to-medium size multi-person software projects. The module uses the Object Oriented Programming paradigm. Students of this module will receive hands-on practice of tools commonly used in the industry, such as test automation tools, build automation tools, and code revisioning tools will be covered.", + "title": "Software Engineering & Object-Oriented Programming", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2113", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "06", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the necessary skills for systematic and rigorous development of software systems. It covers requirements, design, implementation, quality assurance, and project management aspects of small-to-medium size multi-person software projects. The module uses the Object Oriented Programming paradigm. Students of this module will receive hands-on practice of tools commonly used in the industry, such as test automation tools, build automation tools, and code revisioning tools will be covered.", + "title": "Software Engineering & Object-Oriented Programming", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2113T", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "C03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "C03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "C03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "C03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "C01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "C01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Monday", + "lessonType": "Lecture", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "C01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Thursday", + "lessonType": "Lecture", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "C01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Lecture", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to develop flexible and logical problem solving skills, understanding of main bioinformatics problems, and appreciation of main techniques and approaches to bioinformatics. Through case studies and hands-on exercises, the student will (i) master the basic tools and approaches for analysis of DNA sequences, protein sequences, gene expression profiles, etc. (ii) understand important problems and applications of computational biology, including identifying functional features in DNA and protein sequences, predicting protein function, and deriving diagnostic models from gene expression profiles, (iii) be confident to propose new solutions to both existing and emerging problems in computational biology.", + "title": "Introduction to Computational Biology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Introduction to Computational Biology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS2220R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "CS Research Methodology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS2309", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "External Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CS3005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CS3006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an opportunity for the students to learn commonly-used network protocols in greater technical depth with their implementation details than a basic networking course. Students will perform hands-on experiments in configuring and interconnecting LANs using networking devices/technologies (e.g., routers, switches, SDN switches, and hubs), networking protocols (e.g., DHCP, DNS, RIP, OSPF, ICMP, TCP, UDP, wireless LAN, VLAN protocols, SIP, SSL, IPSec-VPN) and networking tools (e.g, tcpdump, netstat, ping, traceroute). Students will learn higher-layer network protocols and develop network applications (client/server, P2P) via socket programming.", + "title": "Computer Networks Practice", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the first part of a two-part series on the practice of software engineering in Software Development Life Cycle (SDLC). These two modules together provide the students with hands-on experience in working in project groups through a complete SDLC to develop a well-designed, welltested, large-scaled software system. This first part focuses on applying best software engineering practices on the analysis and design of software system. The students will practice analysis of user\u2019s\nneeds, formulation of computing requirements to meet the user\u2019s needs, modeling and design of the computer systems according to the requirements, and evaluation of the design.", + "title": "Software Engineering Project I", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Software Engineering Project I", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3201R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second part of a two-part series on the practice of software engineering in Software Development Life Cycle (SDLC). These two modules together provide the students with hands-on experience in working in project groups through a complete SDLC to develop a well-tested, large-scaled software system. This second part focuses on applying best software engineering practices on the implementation and testing of the software system. The students will practice efficient implementation of software components, system integration, software version control, and rigorous testing.", + "title": "Software Engineering Project II", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Software Engineering Project II", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3202R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with hands-on experience in\nworking in project groups through a complete SDLC to\ndevelop a well-designed, well-tested, large-scaled software\nsystem. The students will apply the current best software\nengineering practices on the analysis, design,\nimplementation, and testing of software system. Through\nthe project, students will practise analysis of user\u2019s needs,\nformulation of computing requirements to meet the user\u2019s\nneeds, modelling and design of the computer systems\naccording to the requirements, evaluation of the design,\nefficient implementation of software components, system\nintegration, software version control, and rigorous testing.", + "title": "Software Engineering Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "CS3203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 160, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 160, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to provide an introduction to the field of parallel computing with hands-on parallel programming experience on real parallel machines. The module is divided into four parts parallel computation models and parallelism, parallel architectures, parallel algorithm design and programming, and new parallel computing models. Topics includes theory of parallelism and models; shared-memory architectures; distributed-memory architectures; data parallel architectures; interconnection networks, topologies and basic of communication operations; principles of parallel algorithm design; performance and scalability of parallel programs, overview of new parallel computing models such as grid, cloud, GPGPU.", + "title": "Parallel Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Monday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A concurrent system consists of a set of processes that executes simultaneously and that may collaborate by communicating and synchronising with one another. Examples of concurrent systems are parallel programs that describe sets of collaborating processes. This module introduces the design, development and debugging of parallel programs. It will build on the concurrency concepts gained from the Operating Systems module. It covers concepts and modelling tools for specifying and reasoning (about the properties of) concurrent systems and parallel programs. It also covers principles of performance analysis, asynchronous and asynchronous parallel programming, and engineering concurrent systems and parallel programs.", + "title": "Parallel and Concurrent Programming", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide the students with foundational knowledge and understanding of different aspects of software engineering including requirements, modelling, architecture, behavior, environment, software analysis, validation and verification. It will serve as a second software engineering module exposing the students to the mathematical foundations of software engineering while simultaneously supplementing and elaborating the foundations in the form of a semester long project.", + "title": "Foundations of Software Engineering", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will practice software product engineering by working in small teams to develop well-tested, user-friendly, production-quality software for the real world. To support this goal, students work closely with users to understand their problems, gather their requirements, and obtain their feedback through a rapid, iterative, application design and development process. Students will also be exposed to practical issues for digital markets such as growing the user base of their application, deployment of the application on the Web or in the cloud system, and validating the UI design and UX of the application.", + "title": "Software Product Engineering for Digital Markets", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CS3216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the practice of software engineering on modern application platforms such as mobile devices, the Web and cloud systems. Students will work in small project teams to develop well-tested,\nproduction-quality software. This module focuses on building core software engineering skills and competencies in programming modern application platforms. It also trains students to work well in project teams. Students will be\nassessed on both their individual programming competencies and their software enginnering skills in final team project.", + "title": "Software Engineering on Modern Application Platforms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CS3217", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "COM1-VCRM", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modern mobile platforms such as smart phones and tablets are equipped with an increasing number of sensing modalities. In addition to traditional components such as keyboards and touch screens, they are also equipped with cameras, microphones, inertial sensor, and GPS receivers. With these modalities all packed into a single platform, it is important to empower application developers with basic knowledge and practical skills in dealing with these modalities. This module introduces the students to basic theories, concept and practical skills needed in input, processing and output of multimodal data on mobile platforms.", + "title": "Multimodal Processing in Mobile Platforms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth, hands-on experience in key aspects of software engineering that accompany the development of software. Based on proven principles and best practices, this module focuses on software architectural design from the perspective of the software process. It covers techniques for requirement elicitation and specification that provide sound base for architectural design. The module covers design decision exploration as well as patterns that explicate principles and best practices in replicable form.", + "title": "Software Engineering Principles and Patterns", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Software Engineering Principles and Patterns", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3219R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is concerned with design techniques involving the use of parallelism to improve the performance of computer systems. The module is divided into three parts. Part I considers the fundamental methods to improve the performance of single processor systems. Topics include the design principle of instruction set, memory hierarchy, pipeline design techniques, RISC and vector computer. In Part II, multi-processor systems using shared memory are examined in detail, and Part III, multi-processor systems that do not use shared memory are examined.", + "title": "Computer Architecture", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module builds upon the conceptual foundation formed in CS2106 and extends it to the study of real-life operating systems. The focus is to understand how actual operating systems work including the pragmatics, system architecture and design and implementation. Details will be drawn from contemporary operating systems such as Unix/Linux and Windows. Topics include kernel architecture and interfaces, computer architecture issues, process APIs and implementation, threads, scheduling, physical and kernel memory management, virtual memory, synchronisation and interprocess communication mechanisms, multi-processor issues, device characteristics and management, file system implementation, memory mapped files, special purpose file systems.", + "title": "Operating Systems Design and Pragmatics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This system-oriented module provides an in-depth study of the concepts and implementation issues related to database management systems. It first covers the physical implementation of the relational data model, which includes storage management, access methods, query processing, and optimisation. Then it covers issues and techniques dealing with multi-user application environments, namely, transactions, concurrency control, and recovery. The third part covers advanced topics such as on-line analytical processing, in-memory databases, and column stores.", + "title": "Database Systems Implementation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 270, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Database Systems Implementation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3223R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "After the complete sequencing of a number of genomes, we are in the stage to understand the mystery of our body, that is, we need to understand the information encoded in the genome and its relationship with RNA and protein. This aim of this module is to cover algorithms related to this stage. In the module, we will cover the algorithms related to genome annotation, motif identification, proteomics, population genetics, microarray, etc.", + "title": "Combinatorial Methods in Bioinformatics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to software development on the Web platforms. Students will be exposed to important computer science concepts, including networking, databases, computer security, user interface design, programming languages, and software engineering. These concepts will be tied together through hands-on practice in building a Web-based application using the current Web development technology. At the end of the module, students are expected to be able to design and develop a Web application, to appreciate the underlying technology needed to build a Web application, and to develop a fundamental understanding of related computer science concepts.", + "title": "Web Programming and Applications", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces different techniques of designing and analysing algorithms. Students will learn about the framework for algorithm analysis, for example, lower bound arguments, average case analysis, and the theory of NP-completeness. In addition, students are exposed to various algorithm design paradigms. The module serves two purposes: to improve the students' ability to design algorithms in different areas, and to prepare students for the study of more advanced algorithms. The module covers lower and upper bounds, recurrences, basic algorithm paradigms (such as prune-and-search, dynamic programming, branch-and-bound, graph traversal, and randomised approaches), amortized analysis, NP-completeness, and some selected advanced topics.", + "title": "Design and Analysis of Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "20", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "1V", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 460, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 460, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-B1-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Design and Analysis of Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3230R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines fundamental aspects of computation that every computer scientist should know. What is a finite automaton and how does it relate to regular expressions (and searching a database)? What is a context-free language and how does it relate to parsing languages? What is the P vs. NP problem and why does it matter? How do we decide if a problem is easy or hard? This module introduces techniques for precisely formulating problems and studying their properties using a variety of commonly used reasoning techniques (e.g., model equivalence, non-determinism, digitalisation, simulation and reduction).", + "title": "Theory of Computation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare students in competitive problem solving. It covers techniques for attacking and solving challenging computational problems. Fundamental algorithmic solving techniques covered include divide and conquer, greedy, dynamic programming, backtracking and branch and bound. Domain specific techniques like number theory, computational geometry, string processing and graph theoretic will also be covered. Advanced AI search techniques like iterative deepening, A* and heuristic search will be included. The module also covers algorithmic and programming language toolkits used in problem solving supported by the solution of representative or well-known problems in the various algorithmic paradigms.", + "title": "Competitive Programming", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare students in competitive problem solving. It covers techniques for attacking and solving challenging computational problems. Fundamental algorithmic solving techniques covered include divide and conquer, greedy, dynamic programming, backtracking and branch and bound. Domain specific techniques like number theory, computational geometry, string processing and graph theoretic will also be covered. Advanced AI search techniques like iterative deepening, A* and heuristic search will be included. The module also covers algorithmic and programming language toolkits used in problem solving supported by the solution of representative or well-known problems in the various algorithmic paradigms.", + "title": "Competitive Programming", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3233R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces logic as a means for specifying and solving computational problems. It explores how logic can be used to represent computational problems, how these representations can be proven correct, and how they can be executed on a computer. Students learn about logic as formal systems (semantic, axiomatic, and deductive) and how to write proofs in the different systems. They also learn how to use a proof assistant such as Coq and how to program in a logic programming language such as Prolog. Topics include classical and intuitionistic logic, SAT, Peano\u2019s axioms, Hoare logic, and other selected logic systems.", + "title": "Logic for Proofs and Programs", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Logic and Formal Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3234R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide a broad understanding of computer security with some indepth discussions on selected topics in system and network security. This module covers the following topics intrusion detection, DNS security, electronic mail security, authentication, access control, buffer overflow, memory and stack protection, selected topics in application security, for instance, web security, and well-known attacks.", + "title": "Computer Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3235", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B113", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the basics of modern information theory. It covers how information can be quantified, and what this quantification tells us about how well we can compress and transmit information without error. It discusses basic error correcting techniques, and information-theoretic cryptography. Topics covered include mathematical techniques, entropy measures, fundamental limits to data compression and noisy-channel coding, examples of error-correcting codes, examples of information theoretic cryptography (commitments, secure computation, key distribution, randomness extraction).", + "title": "Introduction to Information Theory", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Introduction to Information Theory", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3236R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Internet of Things (IoT), where a large number of physical objects embedded with computing power and sensors connect to the network for seamless cooperation between the cyber domain and the physical world, is revolutionizing our lives. This module will serve as an introduction to the IoT and provide a holistic view of the entire spectrum of the IoT system architecture from the devices to the fog and the cloud computing. The focus will be on designing IoT systems that balance both the functional and non-functional (communication bandwidth, security, safety, power) requirements. The module will have a significant project component.", + "title": "Introduction to Internet of Things", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3237", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-19", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is intended for students in computing and related disciplines whose work focuses on human-computer interaction issues in the design of computer systems. The course stresses the importance of user-centred design and usability in the development of computer applications and systems. Students will be taken through the analysis, design, development, and evaluation of human-computer interaction methods for computer systems. They will acquire hands-on design skills through laboratory exercises and assignments. The course also covers HCI design principles and emphasizes the importance of contextual, organisational, and social factors in system design.", + "title": "Interaction Design", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3240", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Interaction Design", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3240R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches some graphics hardware devices, reviews the mathematics related to the understanding, and discusses the fundamental areas of computer graphics. After completing the course, students are expected to understand the basic computer graphics terminology and concepts, and to be able to design and implement simple 2D and 3D interactive computer graphics related programs. As an enrichment part of the course, students are introduced the state-of-the-art development in computer graphics by viewing interesting video clips and experimenting with demo program made available in the course web.", + "title": "Computer Graphics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3241", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches some graphics hardware devices, reviews the mathematics related to the understanding, and discusses the fundamental areas of computer graphics. After completing the course, students are expected to understand the basic computer graphics terminology and concepts, and to be able to design and implement simple 2D and 3D interactive computer graphics related programs. As an enrichment part of the course, students are introduced the state-of-the-art development in computer graphics by viewing interesting video clips and experimenting with demo program made available in the course web.", + "title": "Computer Graphics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3241R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide fundamental concepts in 3D modeling and animation. It also serves as a bridge to advanced media modules. After taking this module, students should be able to use these concepts to easily build or work with digital models, manipulate the models by means of computer deformation and animation, and use lighting and rendering techniques to create appealing scenes. Topics include coordinate spaces, transforms, 3D model representations, hierarchical structures, deformation, procedural modelling, particle systems, character animation, shading networks, lighting, and scripting concepts.", + "title": "3D Modeling and Animation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3242", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0421", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the basic concepts in search and knowledge representation as well as to a number of sub-areas of artificial intelligence. It focuses on covering the essential concepts in AI. The module covers Turing test, blind search, iterative deepening, production systems, heuristic search, A* algorithm, minimax and alpha-beta procedures, predicate and first-order logic, resolution refutation, non-monotonic reasoning, assumption-based truth maintenance systems, inheritance hierarchies, the frame problem, certainly factors, Bayes' rule, frames and semantic nets, planning, learning, natural language, vision, and expert systems and LISP.", + "title": "Introduction to Artificial Intelligence", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3243", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "13", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Monday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "03", + "startTime": "1500", + "endTime": "1600", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1700", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1700", + "endTime": "1800", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1700", + "endTime": "1800", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1500", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1700", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1500", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1500", + "endTime": "1600", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-06-16T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Introduction to Artificial Intelligence", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3243R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces basic concepts and algorithms in machine learning and neural networks. The main reason for studying computational learning is to make better use of powerful computers to learn knowledge (or regularities) from the raw data. The ultimate objective is to build self-learning systems to relieve human from some of already-too-many programming tasks. At the end of the course, students are expected to be familiar with the theories and paradigms of computational learning, and capable of implementing basic learning systems.", + "title": "Machine Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3244", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "09", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1030", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-16" + }, + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1300", + "endTime": "1430", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-16" + }, + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1430", + "endTime": "1600", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-16" + }, + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1030", + "endTime": "1200", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-16" + }, + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-06-16T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Machine Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3244R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses the basic concepts and methods of information retrieval including capturing, representing, storing, organizing, and retrieving unstructured or loosely structured information. The most well-known aspect of information retrieval is document retrieval: the process of indexing and retrieving text documents. However, the field of information retrieval includes almost any type of\nunstructured or semi-structured data, including newswire stories, transcribed speech, email, blogs, images, or video. Therefore, information retrieval is a critical aspect of Web search engines. This module also serves as the foundation for subsequent modules on the understanding, processing and retrieval of particular web media.", + "title": "Information Retrieval", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3245", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Information Retrieval", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3245R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce techniques for electronic game design and programming. This module covers a range of important topics including 3D maths, game physics, game AI, sound, as well as user interface for computer games. Furthermore, it will give an overview of computer game design to the students. Through laboratory programming exercises, the students will have hands-on programming experience with popular game engines and will develop basic games using those engines.", + "title": "Game Development", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3247", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2023-01-23", + "end": "2023-04-10" + }, + "venue": "COM3-B1-11", + "day": "Monday", + "lessonType": "Laboratory", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-01-24", + "end": "2023-04-11" + }, + "venue": "COM3-B1-11", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-01-27", + "end": "2023-04-14" + }, + "venue": "COM3-B1-11", + "day": "Friday", + "lessonType": "Laboratory", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at providing students with technical skills and hands-on experience of user interface development. It focuses on the design and implementation of user interfaces in general, including graphical user interface. It covers essential topics including user interface models, psychology of humans and computers, user interface style, layout guidelines, GUI programming with widget toolkits, interaction models, event handling, multithreading, interacting with multimedia hardware, usability testing. Selected advanced topics such as geometric transformation, and 3D user interfaces, multiple-user interaction and real-time interaction are also covered.", + "title": "User Interface Development", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Artificial intelligence is increasingly integrated in our everyday lives, and becoming a core engine to power social and economic growth. This module covers the core concepts in artificial intelligence that underlie solutions to these challenging, multi-facted problems. Topics covered include knowledge representation and reasoning with uncertainty, preference, and time, constraint satisfaction, games and optimized decisions, human factors, and new advances in integrative AI and responsible AI. The goal of this class is to introduce students to a variety of approaches for solving real-life problems using the tools of AI.", + "title": "Foundations of Artificial Intelligence", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3263", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental concepts, theory, and algorithms in machine learning, and a variety of modeling techniques to extract information from raw data. The class will cover topics in both supervised and unsupervised learning, including problems in classification and regression, computational learning theory, reinforcement learning, probabilistic inference, ensemble learning, and more advanced topics. The class will cover both the underlying mathematical tools, as well as practical frameworks for solving real-world problems. At the end of the course, students are expected to be familiar with the theories and paradigms of computational learning, and capable of implementing basic learning systems.", + "title": "Foundations of Machine Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3264", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Reactive systems are real-time systems that continuously interact with the environment. This module introduces students to the software engineering principles for designing systems such as controllers and signal processors that are used in a wide variety of settings, including industrial plants, chemical reactors, flight and automotive controllers and robots. Topics to be covered will include fundamentals of control software, programming languages for real-time controllers, and verification and optimisation of software for digital control systems. Apart from a variety of programming assignments, this course will also introduce students to some relevant research topics in this area.", + "title": "Software Engineering for Reactive Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the first part of a two-part series on the development of large-scaled computer systems to solve real-world problems under specific themes such as healthcare, security and surveillance, tourism, etc. Students with complementary technical expertise will form project teams to work on real-world projects under the supervision of CS professors and industrial partners. This first part focuses on the analysis of the real-world problems, formulation of the computing requirements of the desired solution that meets the user\u2019s needs, design of the computer systems according to the requirements, and evaluation of the design.", + "title": "Thematic Systems Project I", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3281", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Thematic Systems Project I", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3281R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second part of a two-part series on the development of large-scaled computer systems to solve real-world problems under specific themes such as healthcare, security and surveillance, tourism, etc. Students with complementary technical expertise will form project teams to work on real-world projects under the supervision of CS professors and industrial partners. This second part focuses on the development of algorithms required for the systems, implementation and testing of the algorithms and the systems, and evaluation of the systems according to the users\u2019 requirements.", + "title": "Thematic Systems Project II", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3282", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Thematic Systems Project II", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS3282R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the first part of a two-part series on the development of media technology systems such as interactive systems, games, retrieval systems, multimedia computing applications, etc. Students will form project teams to work on media technology projects. This first part focuses on the analysis of the user\u2019s needs, formulation of the computing requirements of the desired solution that\nmeets the user\u2019s needs, design of the systems according to the requirements, implementation of first-cut prototype for evaluation purpose, and evaluation of the design.", + "title": "Media Technology Project I", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3283", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second part of a two-part series on the development of media technology systems such as interactive systems, games, retrieval systems, multimedia computing applications, etc. Students will form project teams to work on media technology projects. This second part focuses on the development of algorithms required for the systems, implementation and testing of the algorithms and the systems, and evaluation of the systems according to the users\u2019 requirements.", + "title": "Media Technology Project II", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3284", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students the opportunity to explore and conceptualize new digital products or services that will impact people and enterprises. Students will cultivate the importance of thinking \u201cdesign\u201d for the purpose of developing valuable, captivating and usable digital products or services. The module will provide students with insights into the innovation process and case studies of\nsuccessful innovation. Exposure to ideas from leading companies and serial entreprenurs will motivate ideation. Students will be required to benchmark their ideas for competitive positioning.", + "title": "Breakthrough Ideas for Digital Markets", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS3882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SEP Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS4004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CS4005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange CS Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Before software can be designed, its requirements must be well understood. This in turns requires a thorough understanding of the application domain. Based on the requirements, software engineers construct design models, and then use these design models as guide to construct software implementations. This module will cover formal specification and verification techniques for accurately capturing and reasoning about requirements, model and code. The topics covered include modeling notations, temporal logics, model checking, software model checking, theorem proving, and symbolic execution based analysis. Most importantly, the module will attempt to inculcate an appreciation and understanding of formal thinking in software design and construction.", + "title": "Formal Methods for Software Engineering", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce the principal ideas behind program compilation, and discusses various techniques for program parsing, program analysis, program optimisation, and run-time organisation required for program execution. Topics covered include regular expressions, context-free grammars, lexical analysis, syntax analysis; different algorithms for parsing codes, such as top-down parsing, bottom-up parsing; translation to abstract syntax using modern parser generator technology, intermediate representation, semantics analysis, type system, un-optimised code generation, code optimisation, data-flow analysis, instruction scheduling.", + "title": "Compiler Design", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Monday", + "lessonType": "Lecture", + "size": 49, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide the basic mathematical techniques to study the semantics and logical reasoning of programs and programming languages. This enables the students the ability to understand semantics specifications and to develop new ones for new languages. The course also describes and compares various advanced programming language features. The course combines theory and practice. Topics covered include axiomatic, denotational and operational semantics, type systems, template meta-programming, staged/generic programming, XML and XML processing.", + "title": "Formal Semantics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the students with theoretical knowledge and practical skill in the implementation of programming languages. It discusses implementation aspects of fundamental programming paradigms (imperative, functional and object-oriented), and of basic programming language concepts such as binding, scope, parameter-passing mechanisms and types. It introduces the language processing techniques of interpretation and compilation and virtual machines. The lectures are accompanied by lab sessions which will focus on language processing tools, and take the student through a sequence of programming language implementations. This modules\nalso covers automatic memory management, dynamic linking and just-in-time compilation, as features of modern execution systems.", + "title": "Programming Language Implementation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4215", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Programming Language Implementation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS4215R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the programming methodology of Constraint Logic Programming (CLP). It first covers programming in PROLOG, the basic\n\nCLP programming language. The main part of the course covers modelling of complex problems using constraints and rules, and the use of advanced\n\nalgorithms that are supported by the constraint solvers in modern CLP systems. Also covered are the mathematical foundations of CLP. Throughout\n\nthe course, practical exercises are performed using a modern CLP system such as CLP(R) or Eclipse.", + "title": "Constraint Logic Programming", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the concepts and practice of software testing including unit testing, integration testing, and regression testing. Various testing coverage criteria will be discussed. Debugging methods for finding the root-cause of errors in failing test cases will also be investigated. The use of testing and analysis for performance prediction, performance clustering and performance debugging will be studied. Students will acquire crucial skills on testing and debugging through hands-on assignments.", + "title": "Software Testing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Monday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The advent of high throughput technologies (e.g., DNA chips, microarray), biologists are being overloaded with information (e.g., gene expression data). A systematic way is needed to analyze the data to make sense of them. This module is introduced to provide students with knowledge of techniques that can be used to analyse biological data to enable them to discover new knowledge. At the end of the module, students will be able to identify the relevant techniques for different biological data to uncover new information. Topics include: Clustering analysis, classification, association rule mining; support vector machines; Hidden Markov Models.", + "title": "Knowledge Discovery Methods in Bioinformatics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4220", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Knowledge Discovery Methods in Bioinformatics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS4220R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the design and performance tuning of\ndatabase applications. The syllabus focusses on relational database applications implemented with relational database management systems. Topics covered include normalisation theory (functional, multi-valued and join dependency, normal forms, decomposition and synthesis methods), entityrelationship approach and SQL tuning (performance evaluation, execution plan verification, indexing, de-normalization, code level and transactions tuning). The syllabus optionally includes selected topics in the technologies, design and performance tuning of non-relational database applications (for instance, network and hierarchical models and nested relational model for an historical perspective, as well as XML and NoSQL systems for a modern perspective).", + "title": "Database Applications Design and Tuning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide solid foundation for students in the area of wireless networks and introduces students to the emerging area of cyber-physical-system/Internet-of-Things. The module will cover wireless networking across all layers of the networking stack including physical, link, MAC, routing and application layers. Different network technologies with different characteristic will also be covered, including cellular networks, Wi-Fi, Bluetooth and ZigBee. Some key concepts that cut across all layers and network types are mobility management, energy efficiency, and integration of sensing and communications. The module emphasizes on exposing students to practical network system issues through building software prototypes.", + "title": "Wireless Networking", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The world of parallel computer architecture has gone through a significant transformation in the recent years from high-end supercomputers used only for scientific applications to the multi-cores (multiple processing cores on a single chip) that are ubiquitous in mainstream computing systems including desktops, servers, and embedded systems. In the context of this exciting development, the aim of this module is to examine the design issues that are critical to modern parallel architectures. Topics include instruction-level parallelism through static and dynamic scheduling, shared memory, message-passing, and data parallel computer architectures, cache coherence protocols, hardware synchronization primitives, and memory consistency models.", + "title": "Multi-core Architectures", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The world of parallel computer architecture has gone through a significant transformation in the recent years from high-end supercomputers used only for scientific applications to the multi-cores (multiple processing cores on a single chip) that are ubiquitous in mainstream computing systems including desktops, servers, and embedded systems. In the context of this exciting development, the aim of this module is to examine the design issues that are critical to modern parallel architectures. Topics include instruction-level parallelism through static and dynamic scheduling, shared memory, message-passing, and data parallel computer architectures, cache coherence protocols, hardware synchronization primitives, and memory consistency models.", + "title": "Multi-core Architectures", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS4223R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the management of data in a distributed environment. It covers the fundamental principles of distributed data management and includes distribution design, data integration, distributed query processing and optimization, distributed transaction management, and replication. It will also look at how these techniques can be adapted to support database management in emerging technologies (e.g., parallel systems, peer-to-peer systems, cloud computing).", + "title": "Distributed Databases", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data science incorporates varying elements and builds on techniques and theories from many fields, including statistics, data engineering, data mining, visualization, data warehousing, and high-performance computing systems with the goal of extracting meaning from big data and creating data products. Data science utilizes advanced computing systems such as Apache Hadoop and Spark to address big data challenges. In this module, students will learn various computing systems and optimization techniques that are used in data science with emphasis on the system building and algorithmic optimizations of these techniques.", + "title": "Big Data Systems for Data Science", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4225", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 320, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to focus on advanced networking concepts pertaining to the modern Internet architecture and applications. It covers a range of topics including network performance (throughput, delay, Little\u2019s Law and M/M/1 queuing formula), and resource allocation and buffer management (max-min fair, round-robin and RED), intra- and inter-domain routing (RIP, OSPF and BGP), congestion control and modern variations of TCP (AIMD and Cubic TCP), peer-to-peer applications and content delivery networks (BitTorrent, Skype, Akamai), and data center networking and management (SDN and OpenFlow).", + "title": "Internet Architecture", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Friday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theoretical underpinnings of cryptography Modern cryptographic primitives can generate strings that look random, send messages that only intended recipients can read, authenticate individuals, run computations on sensitive data without compromising privacy, and perform several other seemingly paradoxical tasks We will study a number of these primitives with emphasis on how to: (i) define their security requirements rigorously, (ii) construct them, and (iii) prove that these constructions are secure We will focus on the theoretical foundations that they are built upon, using tools from algebra, number theory, combinatorics, and probability. This will involve rigorous mathematical", + "title": "Foundations of Modern Cryptography", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4230", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine some fundamental issues in parallel programming and distributed computing, and the relationships between the two. Parallel programming: mutual exclusion, semaphores, consistency, wait-free synchronization. Distributed computing: time, global state, snapshots, message ordering. Relationships: consensus, fault-tolerance, transactions, self-stabilization.", + "title": "Parallel and Distributed Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4231", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Theory of Computation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS4232R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers common algorithmic techniques for solving optimisation problems, and introduces students to approaches for finding good-enough solutions to NP-hard problems. Topics covered include linear and integer programming, network flow algorithms, local search heuristics, approximation algorithms, and randomized algorithms. Through analysis and application of the techniques to a variety of canonical problems, students develop confidence to (i) appropriately model a given optimisation problem, (ii) apply appropriate algorithmic techniques to solve the problem, (iii) analyse the properties of the problem and candidate algorithms, such as time and space complexity, convergence, approximability, and optimality bound.", + "title": "Optimisation Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Optimisation Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS4234R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Computational geometry is the study of algorithms for solving geometric problems. This course introduces the main topics and techniques in this field. They will be presented in connection with applications in CAD, databases, geographic information systems, graphics and robotics. Students will learn the main algorithmic techniques for solving geometric problems and the related discrete geometric structures. At the end of this module, students will be able to design and analyse geometric algorithms and data structures, and to apply these techniques to solve problems arising in applications.", + "title": "Computational Geometry", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce the foundation, principles and concepts behind cryptology and the design of secure communication systems. The emphasis is on the formulation and techniques of various cryptographic primitives, and on the secure usage of such primitives to achieve the goals of confidentially, integrity, and authenticity in both theoretical settings and practical scenarios. Basic topics include pseudorandom functions, symmetric key encryption, public key encryption, message\nauthentication codes, hash functions, digital signatures, key exchange and PKI. Selected topics may include: secret sharing, TCP/IP security, Kerberos, SSL, trusted computing, side-channel attacks.", + "title": "Cryptography Theory and Practice", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a practice security module with emphasis on hands-on experiences of computer security. The objective of this module is to connect computer security knowledge to practical skills, including common attacks and protection mechanisms, system administration, and development of secured software. Topics covered include network security, operating system security, and application security, such as DNS attacks, memory-error exploits, and web application attacks. Students will learn through lab-based exercises and assignments.", + "title": "Computer Security Practice", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Monday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Software engineering processes need to include security considerations in the modern world. This module familiarizes students to security issues in different stages of the software life-cycle. At the end of the module, the students are expected to understand secure programming practices, be able to analyse and check for impact of malicious inputs in programs, and employ specific testing techniques which can help detect software vulnerabilities.", + "title": "Software Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4239", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to expose students to the human-centered principles of designing and building virtual reality (VR) and augmented reality (AR) applications. Students will learn about the fundamentals of VR and AR, human perceptions of reality, and the design patterns and guidelines for user interactions within VR/AR applications. Students will gain hands on experience building VR/AR applications applying these interaction principles.", + "title": "Interaction Design for Virtual and Augmented Reality", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4240", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": { + "start": "2023-01-27", + "end": "2023-04-14" + }, + "venue": "COM3-B1-11", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2023-01-24", + "end": "2023-04-11" + }, + "venue": "COM3-B1-11", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2023-01-27", + "end": "2023-04-14" + }, + "venue": "COM3-B1-11", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Interaction Design for Virtual and Augmented Reality", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS4240R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the proliferation digital media, more and more information is available in non-textual forms. The ability to index, manage and retrieve media contents is of paramount importance. This module introduces the theory, design and technologies of media search. It covers the design of media search engine, the extraction of media features and their indexing, media concept annotation, media search paradigms, and interactive search. It also covers the applications of media search in social media, enterprise and personal media.", + "title": "Multimedia Information Retrieval", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The emergence of WWW, smart mobile devices and social networks has revolutionised the way we communicate, create, disseminate, and consume information. This has ushered in a new era of communications that involves complex information exchanges and user relationships. This module aims to provide students with a good understanding of the social network phenomena and computational skills for analysing the complex social relation networks between users, the contents they shared, and the ways contents and events are perceived and propagated through the social networks. The analysis will provide better understanding of the concerns and interests of users, and uncover live and emerging events that will affect the community.", + "title": "Social Media Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4242", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is for undergraduates who are interested in computer vision and its applications. It covers (a) the basic skills needed in handling images and videos, (b) the basic theories needed to understand geometrical computer vision, and (c) pattern recognition. Topics covered in image handling include contrast stretch, histogram equalization, noise removal, and color space. Topics covered in geometrical vision include affine transform, vanishing points, camera projection models, homography, camera calibration, rotation representations including quaternions, epipolar geometry, binocular stereo, structure from motion. Topics covered for pattern recognition include principal component analysis.", + "title": "Computer Vision and Pattern Recognition", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4243", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 172, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Computer Vision and Pattern Recognition", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS4243R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on core issues of representation and reasoning of the knowledge in the context of design of intelligent machines. We will focus on how logic can be used to formalise and perform deduction from existing knowledge. We will then discuss compilation techniques. Finally, we will discuss limitations of monotonic logic and discuss challenges for non-monotonic reasoning.", + "title": "Knowledge Representation and Reasoning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4244", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Monday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the major concepts and paradigms in planning and decision making in complex environments. It examines issues, challenges, and techniques in problem representation, goal or objective specification, response selection, and action consequence for a wide range of strategic and tactical planning and decision making situations. Topics covered include deterministic and non-deterministic planning, practical planning and acting under resource constraints and uncertainy, expected utility and rational decision making, decision networks, Markov decision processes, elementary game theory, and multi-agent planning and decision making.", + "title": "AI Planning and Decision Making", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4246", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1930", + "endTime": "2030", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "AI Planning and Decision Making", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS4246R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a general treatment of real-time and offline rendering techniques in 3D computer graphics. Specific topics include the raster graphics pipeline, viewing and transformation, real-time mapping techniques, real-time shadow algorithms, local reflection models, global illumination, distributed ray tracing, photon mapping, radiosity, volume rendering, image-based rendering and modelling, and strategies for anti-aliasing and photo-realism.", + "title": "Graphics Rendering Techniques", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4247", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with computer processing of human languages, including the use of neural networks and deep learning in natural language processing. The topics covered include: regular expressions, words and edit distance, n-grams, part-of-speech tagging, feed-forward neural networks, neural network training, word embedding, convolutional neural networks, recurrent neural networks, sequence-to-sequence models with attention, transformers, context-free grammars, syntactic parsing, semantics, and discourse.", + "title": "Natural Language Processing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4248", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0207", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0207", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "8", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Monday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "COM1-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1-MC module adds a research component to the host module, enabling students to acquire more in-depth understanding of the research issues pertaining to the subject matter.", + "title": "Natural Language Processing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CS4248R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the underlying science of Human-Computer Interaction (HCI) and its application to user interface design. It surveys a wide range of psychological theories beginning with organizational behaviour approaches, understanding of work and workflow within organizations, and moving on to understanding human psychological architecture and processing constraints. It demonstrates via a combination of scientific theory understanding and engineering modelling the solutions of design problems facing a user interface designer. It also covers new design methods and techniques available and the new conceptual mechanisms used in HCI such as the metaphors for describing user interaction.", + "title": "Phenomena and Theories of Human-Computer Interaction", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4249", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Friday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers algorithmic foundations of computation and communication privacy. It provides a thorough methodology for analysis of privacy against inference attacks using techniques from statistics, probability theory, and machine learning. Students will learn how to reason quantitatively about privacy, and evaluate it using the appropriate metrics. The module will help students to design privacy-preserving mechanisms for a range of systems from anonymous communication to data analytics. After this module, students should be able to identify privacy vulnerabilities in a system, design inference attacks, and propose effective countermeasures in a systematic manner.", + "title": "Algorithmic Foundations of Privacy", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Recent years have seen a dramatic rise in the use of algorithms for solving problems involving strategic decision makers. Deployed algorithms now assist in a variety of economic interactions assigning medical residents to schools, allocating students to courses, allocating security resources in airports, allocating computational resources and dividing rent. We will explore foundational topics at the intersection of economics and computation, starting with the foundations of game theory Nash equilibria, the theory of cooperative games, before proceeding to covering more advanced topics matching algorithms, allocation of indivisible goods, and mechanism design.", + "title": "Algorithmic Mechanism Design", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4261", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce basics of quantum computing and cover various well known algorithms e.g. Deutsch-Jozsa algorithm, Simon\u2019s algorithms, quantum Fourier transform, phase estimation, order finding, Shor\u2019s algorithm and Grover\u2019s algorithm. The module will also cover some basics in quantum information theory, cryptography and error correction.", + "title": "Quantum Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4268", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Logic is often called the \"calculus of computer science\" due to the central role played by logic in computer science akin to the role played by calculus in physics and engineering. This module will formally introduce and prove some of the fundamental results in logic to provide students with a rigorous introduction of syntax, semantics, decision procedures, and complexity of propositional and\nfirst-order logic. The course will be taught from a computer science perspective with particular emphasis on algorithmic and computational complexity components.", + "title": "Fundamentals of Logic in Computer Science", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4269", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the advent of the Internet-of-Things, the computing paradigm is quickly changing from the traditional cyber domain to cyber-physical domain. This is made possible from devices that are equipped with sensors and actuators that interact with the physical world. In this module, we will investigate how such sensing systems affect the notion of computer security. We will also explore the state-of-the-art research in the areas of sensing systems and how they can provide benefits to the security of the Internet-of-Things. This module will also investigate how an attacker may compromise the sensing information to exploit security vulnerabilities in these systems.", + "title": "IoT Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4276", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the most important capability for robots such as self-driving cars, domestic mobile robots, and drones to achieve full autonomy is the ability to perceive the 3D environment. A camera is an excellent choice as the main sensory device for robotic perception because it produces information-rich images, and is lightweight, low cost and requires little or no maintenance. This module covers mathematical concepts and algorithms that allow us to recover the 3D geometry of camera motions and the structures in its environment. Topics include projective geometry, camera model, one-/two-/three-/N-View reconstructions and stereo, generalized cameras and non- rigid structure-from-motion.", + "title": "3D Computer Vision", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4277", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the core algorithms and system architectures of intelligent robots. It examines the main system components for sensing, decision making, and motion control and importantly, their integration for core robot capabilities, such as navigation and manipulation. It covers the key algorithms for robot intelligence through inference, planning, and learning, and also provides some practical experiences with modern robot systems. A variety of Illustrative examples are given, e.g., self-driving cars, aerial drones, and object manipulation.", + "title": "Intelligent Robots: Algorithms and Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4278", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "After the complete sequencing of a number of genomes, we are in the stage to understand the mystery of our body, that is, we need to understand the information encoded in the genome and its relationship with RNA and protein.\nThis aim of this module is to cover algorithms related to this stage. In the module, we will cover the algorithms related to genome annotation, motif identification, proteomics, population genetics, microarray, etc.", + "title": "Combinatorial Methods in Bioinformatics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4330", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at providing students a deep understanding of various technical issues pertaining to the development of networked games and mobile games. Students will be exposed to concepts from distributed systems, operating systems, security and cryptography, networking and embedded systems. In particular, issues such as game server architectures (mirrored, centralized, peer-to-peer etc.), consistency management (bucket synchronization, dead reckoning etc.), interest management, scalability to large number of clients (C10K problem), cheat prevention and detection, power management, will be discussed.", + "title": "Networked and Mobile Gaming", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4344", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the advancements in the technology of graphics processing units (GPUs), many computations can be performed faster on the GPUs than the CPUs. They are also programmable, making them useful for not just computer graphics processing but also general-purpose computations. Therefore, they are a natural choice as high-speed coprocessors to the CPUs in various applications. This module introduces the architecture of GPU, program writing on GPU using high-level language such as Cg, and the use of GPU in applications including computer graphics, games, scientific computation, and image processing.", + "title": "General-Purpose Computation on GPU", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4345", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental technologies employed in Sound and Music Computing focusing on three major categories speech, music, and environmental sound. This module introduces the concept of sound and its representations in the analog and digital domains, as well as in time and frequency domains. Moreover, this module provides hands-on instruction on relevant machine learning tools, and an in-depth review of related technologies in sound data analytics (Automatic Speech Recognition, Automatic Music Transcription and Sound Event Detection) leading to a group project. Topics in sound synthesis, automatic music generation and music information retrieval will be covered for breadth.", + "title": "Sound and Music Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4347", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this project-based module is to provide an opportunity for the students to work in a group to design and develop a game following the main stages of game development process. The module will focus on the design of core dynamic, game mechanics, strategy, progression, balancing, game levels, interface and technical features including 3D graphics, animation, AI, physics, and networking. In addition, software engineering principles will be practised in developing the game software.", + "title": "Game Development Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4350", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Real-time graphics is driving many interactive computer applications, such as 3D games, VR, 3D modelling, and data visualization. Recent rendering techniques have been heavily exploiting the powerful graphics hardware to\nachieve unprecedented performance and effects. In this module, students study the modern real-time rendering pipeline and GPU architecture, learn about modern and traditional real-time rendering techniques, and write\nshaders to implement these techniques for the GPU. The syllabus includes multiple-pass rendering; shading and reflection models; procedural texture-mapping and shading; lights and shadows; noise and natural materials;\nnon-photorealistic rendering; volume rendering; deferred shading; scene management; post-rendering processing; performance analysis and optimization.", + "title": "Real-Time Graphics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4351", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover trends in the digital marketplace and emerging high-growth opportunities for digital businesses. The course will highlight issues facing companies with new products and services in an ever-changing digital marketplace. While the course will provide an overview on structuring of new ventures, the primary focus will be on opportunity identification and sources of competitive differentiation, particularly as they relate to digital innovation. To hone these skills the students will communicate by crafting a business plan.", + "title": "Digital Entrepreneurship", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is to test the students on basic concepts in theoretical computer science. In particular, the students will be tested on the following areas.\n\nA.\tDesign and Analysis of Algorithms\nB.\tTheory of Computation\nC.\tProgramming Languages\nD.\tLogic and Formal Systems\n\nThe respective undergraduate modules: CS3230, CS3231, CS3212, CS3234", + "title": "Foundation in Theoretical CS", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "CS5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is to test the students on basic concepts in computer systems. In particular, the students will be tested on the following topics.\n\nA. Advanced Operating Systems\nB. Computer Networks II\nC. Database Management Systems\nD. Computer Architecture\n\nThe respective undergraduate modules: CS3221, CS3103, CS3223, CS3220", + "title": "Foundation in Computer Systems", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "CS5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Constraint programming is an alternative approach to computing in which the programming process is limited to a generation of requirements (constraints) and to solving of them by general methods and domain dependent methods. This module discusses the basic aspects of constraint programming, focusing on how to model and solve the constraints. Students will learn problem modelling by means of constraints and the main techniques used to solve such systems of constraints. The module focuses on the fundamental notions of constraint satisfaction problems, local consistency, constraint propagation, complete and incomplete constraint solvers, and various search methods.", + "title": "Constraint Processing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to discuss the basic aspects of constraint and logic programming. It will focus on constraint logic programming and its realisation in Eclipse, a system that extends Prolog language by means of constraints. The course will focus on problem modelling by means of constraints, and on logic programming techniques concerned with constraints. Students will learn in detail a number of modules of the Eclipse system that aims to increase the versatility of programming by means of constraints. These include: fd (programming over finite domains), clp(R) (solving equations over reals), CHR (constraint handling rules).", + "title": "Logic Programming and Constraints", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Program analysis denotes automated processes for predicting, estimating or proving properties of program behavior, whether functional or non-functional. Example uses are compiler optimization, bug detection, performance evaluation, detection of security vulnerabilities, amongst many others. This module first provides the rigorous mathematical foundations. This step is necessary in order to understand the common elements within the broad area of software analysis. Secondly, through the use of a state-of-the-art program analysis system, this module provides hands-on instruction on programming real-life analyses. In the end, the graduating student will be able to address a broad spectrum of program analysis in a practical way.", + "title": "Principles and Practice of Program Analysis", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The immense growth in the complexity of software has increased the scope of errors, which are often critical. The nature of these errors is diverse, resulting from the diversity of the various classes of software: sequential, multithreaded, reactive and real-time. In this course, we will study techniques for verification, run-time monitoring and debugging of software which help us to give certain guarantees against such errors. The focus will be on automated validation techniques.", + "title": "Automated Software Validation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Monday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce the state-of-the-art architectural advances underlying the current generation of computing systems. A review of pipelined processor design and hierarchical memory design is followed by advanced topics including exploitation of instruction-level parallelism through dynamic instruction scheduling and speculation, exploiting thread-level parallelism through\nmultiprocessors, and optimizations for memory and storage subsystems. Throughout the module, particular emphasis will be placed on cost-performance-power-reliability trade-offs in designing the different architectural components.", + "title": "Advanced Computer Architecture", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The topic of Distributed Systems is now garnering increasing importance, especially with the advancement in technology of the Internet and WWW. The aim of this module is to provide students with basic concepts and principles of distributed operating systems, interprocess communications, distributed file systems, shared data, and the middleware approach. The module is taught in seminar style, and several case studies are included, e.g. CORBA. Topics: Introduction - Characteristics of Distributed Systems; Process Management Communication in Distributed Systems; Distributed Synchronisation; Distributed Real-time Systems; File Systems; Naming Security; Fault Tolerant Distributed Systems; Distributed Simulation; WWW as an application of Distributed System.", + "title": "Distributed Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an overview of the design, management and application of cloud computing. The topics include managing virtualization, cloud computing environments, cloud design patterns and use cases, data centre architectures and technologies, cloud services fulfillment and assurance, orchestration and automation of cloud resources, cloud capacity management, cloud economics, case studies.", + "title": "Cloud Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the performance related database administration issues. The topics include: an overview of query optimisation techniques, physical data base design, system configuration, buffer management, performance analysis and tuning techniques.", + "title": "Database Tuning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces fundamental principles behind data mining and efficient techniques for mining large databases. It provides an overview of the algorithmic aspect of data mining its efficiency (high-dimensional database indexing, OLAP, data reduction, compression techniques) and effectiveness (machine learning involving greedy search, branch and bound, stochastic search, parameter optimisation). Efficient techniques covered include association rules mining (Apriori algorithm, correlation search, constrained association rule discovery), classifier induction (decision trees, RainForest, SLIQ; Support vector machine; Naive Bayesian; classification based on association / visualisation), cluster analysis (k-means, k-mediods, DBSCAN, OPTICS, DENCLUE, STING, CLUSEQ, ROCK etc), and outliers/deviants detection (LOF, Distance-based outlier etc).", + "title": "Knowledge Discovery and Data Mining", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Monday", + "lessonType": "Tutorial", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Monday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Friday", + "lessonType": "Tutorial", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Friday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers advanced fundamental principles of computer networks and techniques for networking. The goal of this course is to teach these fundamentals/techniques that will remain important and relevant regardless of the hot topics in networks and networking. Briefly, the topics include advanced network architecture and design principles, protocol mechanisms, implementation principles and software engineering practices, network algorithmic, network simulation techniques and tools, performance analysis and measurement, and protocol specification/verification techniques.", + "title": "Advanced Computer Networks", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5229", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Monday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to study the various measures of difficulty of problem solving in computing, and to introduce some techniques in theoretical computer science such as non-determinism, digitalisation, simulation, padding, reduction, randomisation and interaction. Topics covered include: space and time complexity - the classes P, NP, co-NP, PSPACE, EXP, etc.; tape compression; linear speedup; polynomial reduction; Cook's theorem; Savitch's theorem; translation lemma; Gap theorem; NP-completeness and NP-hard problems; probabilistic complexity classes; approximation algorithms; and interactive protocols.", + "title": "Computational Complexity", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5230", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 110, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fundamental notions and requirements in computer system security and the mechanisms that provide security in various systems and applications. It aims to teach students the security perspective of popular computer systems, such as desktop systems, mobile systems, and web-based systems. Its topics include software security, operating system security, mobile security, web security, trusted platforms, and auditing and forensic analysis.", + "title": "Systems Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary role of the formal specification is to provide a precise and unambiguous description of a computer system. A formal specification allows the system designer to verify important properties and detect design error before system development begins. The objective of this course is to study various formal specification and design techniques for modelling (1) object-oriented systems, (2) real-time distributed systems, and (3) concurrent reactive systems. The course will focus on the state-based notations Z/Object-Z, event-based notation CSP/Timed-CSP. Graphical modelling notations, such as StateChart and UML (Unified Modelling Language) will also be addressed.", + "title": "Formal Specification and Design Techniques", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5232", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with a working knowledge of applying simulation techniques to model, simulate and study complex systems. It covers techniques in simulation model design, model execution, and model analysis. Students will have hands-on experience using a simulation package. The module will also introduce concepts of parallel and distributed simulation, and high level architecture.", + "title": "Simulation and Modelling Techniques", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course presents advanced techniques for the design and analysis of algorithms and data structures, with emphasis on efficiency and scalability. It will cover a variety of algorithmic topics that arise when coping with very large data sets. How do you design algorithms that scale well? How do you process streaming data? How do you construct algorithms that run efficiently on modern hardware? The goal of this module is to cover modern tools and techniques in algorithm design.", + "title": "Algorithms at Scale", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In computer science, automata are an important tool for many theoretical investigations. Various types of automata have been used to characterise complexity classes. This module covers automata theory in depth, describes the\nChomsky hierarchy, and introduces various advanced topics including automata structures, automata on infinite words, automata on trees and the learnability of classes of regular languages from queries and positive data.", + "title": "Advanced Automata Theory", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to provide students with a geometric viewpoint in problem solving. It lays a foundation for solving problems with computational geometric methods, and bridges the gap between theoretical computer science and the real applications by introducing application areas, such as bio-geometric modelling, computer graphics and mesh generation, as well as other engineering problems such as reverse engineering. Topics include: convex-hull algorithms, simplicial complexes, union of balls, Voronoi diagram, Delaunay triangulation, lifting and projecting, alpha shape, surface reconstruction, sphere algebra, orthogonality and complementarity, molecular skin surfaces, curvatures and surface meshing, deformation and morphing, etc.", + "title": "Computational Geometry and Applications", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Biology data are too enormous. Handling them using brute-force approaches becomes impossible and efficient algorithms are required. This module has an in-depth study of some of these advanced algorithms. Through the course, students not only are able to understand these algorithms in detail, but are also given chances to solve some research problems in this field. Topics include sequence comparison, structure comparison and prediction, phylogenetic tree reconstruction and comparison, sequencing by hybridisation, Genome rearrangements, gene network, micro-array.", + "title": "Advanced Combinatorial Methods in Bioinformatics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5238", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Thursday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students a working knowledge of computer performance evaluation and capacity planning. They will be able to identify performance bottlenecks, to predict when performance limits of a system will be exceeded, and to characterise present and future workload to perform capacity planning activities. Topics include performance analysis overview; measurement techniques and tools including workload characterisation, instrumentation, benchmarking, analytical modelling techniques including operational analysis, stochastic queuing network analysis; performance of client-server architectures; capacity planning; case studies.", + "title": "Computer System Performance Analysis", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5239", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module lays the theoretical foundation for graduate students to do research in multimedia: images, videos, audio, speech, graphics and text documents. The module covers the main theoretical issues common to various multimedia research. These issues provide a general framework within which specific techniques in particular research areas can be understood. Topics include: vector and signal representations of multimedia, spatial and frequency analyses, models and parameter estimation methods. Examples will be drawn from different types of media. Upon completion, students will be well-grounded to pursue further research in computer vision, graphics, natural language processing, audio analysis and multimedia applications.", + "title": "Theoretical Foundations in MultiMedia", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5240", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module exposes the graduate students to the fundamental theory of speech processing, focusing primarily on automatic speech recognition. Upon completion of this module, students should be able to perform research on speech recognition topics and commercial speech technology development. Topics covered by this module include speech signal processing, automatic speech recognition (ASR), continuous speech recognition, acoustic modelling using the Hidden Markov Model (HMM), language modelling for ASR and advanced speech recognition techniques for state-of-the-art large vocabulary continuous speech recognition (adaptation and robustness, discriminative training and decoding strategies).", + "title": "Speech Processing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the knowledge of deep neural network and enables them to apply deep learning methods effectively on real world problems. The module emphasizes on the understanding of the principles of neural networks and deep learning; practical guidelines and techniques for deep learning; and their applications. Through assignments and projects, students will design, develop, and evaluate deep learning-based solutions to practical problems, such as those in the areas of computer vision, bioinformatics, fintech, cybersecurity, and games.", + "title": "Neural Networks and Deep Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Monday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Text mining concerns the processing of unstructured natural language text to mine information and knowledge. It is distinguished from data mining in its focus on unstructured text rather than structured data present in traditional databases. Topics include text classification, text clustering, sentiment analysis, text summarization, information extraction (named entity recognition, relation and event extraction), and question answering. The module will emphasize the use of machine learning approaches to text mining.", + "title": "Text Mining", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5246", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is targeted at computer science graduate students and covers the major aspects of building streaming media applications -- from coding to transmission to playback. Issues such as transport protocols, control protocols, caching, buffering, synchronisation and adaptations will be examined.", + "title": "Systems Support for Continuous Media", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at providing students with an in-depth understanding of modern audio technologies, ranging from low-level audio representation to high-level content analysis; and from basic waveform to advanced audio compression and compressed domain processing. Upon completion of this module, students should be able to perform research such as narrowing the semantic gap between low-level features and high-level concepts. Topics include discretization, sampling, audio formats, audio synthesis, spatial audio, feature extraction, speech recognition, audio segmentation and summarization, source separation, and audio compression.", + "title": "Audio in Multimedia Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers a broad range of issues in the design and implementation of modern advanced operating systems. The topics covered in this module includes OS design strategies (including microkernels, mobile, embedded and real-time operating systems and the component\u2019s interfaces), priority and resource allocation strategies; scheduling algorithms (including for multi-core, multi-processors); naming, protection and security; UI and windowing systems; file system implementations (including network and distributed file systems); failure and recovery; and virtualization and the Internet-ready OS. They extend and provide in-depth coverage of material in earlier prerequisite OS modules.", + "title": "Advanced Operating Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5250", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Monday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a follow-up to CS5242 and covers\nadvanced topics in neural networks and deep learning.\nThis module explores the underlying mechanism of a\nvariety of different types of learning models: unsupervised,\nsemi-supervised, and adversarial learning models, that\nare not covered in CS5242. Topics may include:\ngenerative adversarial networks, adversarial machine\nlearning, zero-shot learning, geometric deep learning,\nneural architecture search.", + "title": "Neural Networks and Deep Learning II", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5260", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modern embedded systems are heterogeneous collections of multiple hardware and software components, which might be designed by different vendors and have different\ninterfaces. This heterogeneity, coupled with the complexity of embedded software and the complex features of modern processors make performance analysis of such systems a difficult problem. In recent years, there has been a lot of work in this area, especially because of its practical importance. In this course, we will discuss some of this work with the aim of getting a broad overview of this area. These will include formal models, algorithms, various simulation techniques, tools and case studies in the specific context of embedded systems, which significantly differ from techniques used for the performance analysis of general computer systems. Our focus will be on system-level design techniques, with the aim of critically accessing known models and methods in terms of their generality and ability at different stages of an embedded system design process. This course will be suitable for both graduate students and honors-year undergraduate students, who are interested in the general area of Computer Engineering. The projects/assignments will consist of a mix of theory and implementation and there will be enough flexibility to incline more towards one or the other direction.", + "title": "Performance Analysis of Embedded Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the design and implementation of software for programmable embedded systems. Embedded computing systems hidden inside everyday electronic devices such as hand-phones, digital cameras etc. are becoming more and more prevalent. However, the heterogeneous nature of the underlying hardware as well as tight constraints on size, cost, power, and timing pose significant challenges to embedded software development. This course presents techniques that address these distinctive characteristics of embedded software implementation. Topics include embedded software development for programmable processors and reconfigurable hardware, component-based design, optimizations for performance, power, code size, operating system issues, and case studies of available systems.", + "title": "Embedded Software Design", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce students to the various issues that arise in securing the networks, and study the state-of-the-art techniques for addressing these challenges. A number of most damaging attacks on computer systems involve the exploitation of network infrastructure. This module provides an in-depth study of network attack techniques and methods to defend against them. Topics include basic concepts in network security; firewalls and virtual private networks; network intrusion detection; denial of service (DoS); traffic analysis; secure routing protocols; protocol scrubbing; and advanced topics such as wireless network security.", + "title": "Network Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5321", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Database security has a great impact on the design of today's information systems. This course will provide an overview of database security concepts and techniques and discuss new directions of database security in the context of Internet information management. Topics covered include: Access control models for DBMSs, Inference controls, XML database security, Encrypted databases, Digital credentials and PKIs, Trust in open systems, and Peer-to-peer system security.", + "title": "Database Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5322", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will cover basic concepts in the design and analysis of randomized algorithms. It will cover both basic techniques, such as Chernoff bounds, random walks, and the probabilistic method, and a variety of practical algorithmic applications, such as load balancing, hash functions, and graph/network algorithms. The focus will be on utilizing randomization to develop algorithms that are more efficient and/or simpler than their deterministic counterparts.", + "title": "Randomized Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5330", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 110, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare graduate students for understanding the security of the latest web platform and its interplay with operating systems and the cloud infrastructure. The topics covered include the design of web browsers and web \napplications, vulnerabilities in web applications and web browsers, design of web scanners, authentication in web-based platforms, security policies and enforcement mechanisms. This module also covers security topics on the interface between the \nweb platform and the backend systems, such as the underlying database systems and cloud infrastructure.", + "title": "Web Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5331", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Biometrics (such as fingerprint, iris images) are commonly used for authentication. This module covers authentication methods, different types of biometrics, pattern recognition, performance measurement, spoofing attacks, as well as issues such as privacy, user acceptance, and standards compliance. Students will gain a solid understanding of the fundamentals of the technology underlying biometric authentication, and the key issues to be addressed for successful deployment. Both the theoretical and practical aspects of biometrics authentication will be discussed.", + "title": "Biometric Authentication", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5332", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces graduate students to the principles and techniques commonly used to tackle AI planning and decision making problems. It examines how to pose and solve decision making and planning problems in deterministic, probabilistic, and adversarial environments for both single and multiagent problems. Topics include deterministic planning, decision theory, decision networks, Markov decision processes, game theory, multi-agent planning, and reinforcement learning.", + "title": "Principles of Planning and Decision Making", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5338", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to provide a broad theoretical understanding of machine learning and how the theory guides the development of algorithms and applications. Topics covered include the approximation capabilities of common function classes used for machine learning, such as decision trees, neural networks, and support vector machines, the sample complexity of learning different function classes and methods of reducing the estimation error such as regularization and model selection, and computational methods used for learning such as convex optimization, greedy methods, and stochastic gradient descent.", + "title": "Theory and Algorithms for Machine Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5339", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers modelling methods that are suitable for reasoning with uncertainty. The main focus will be on probabilistic models including Bayesian networks and Markov networks. Topics include representing conditional independence, building graphical models, inference using graphical models and learning from data. Selected applications in various domains such as speech, vision, natural language processing, medical informatics, bioinformatics, data mining and others will be discussed.", + "title": "Uncertainty Modelling in AI", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5340", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Multimedia Computing and Applications", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5342", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From the covert digital water in Titanic to the mixed real and virtual actors in Avatar, from the arm-controllable Wii games to the completely full-body-play Xbox Kinect games, computer animation technologies have advanced significantly during the past decades, both in the movie and the game industries. This module reveals all the exciting behind-the-scene techniques that make these movies and games possible, including but not limited to motion capture, fluid animation, facial animation, and fullbody character animation. This is a project-based course that aims to provide strong foundation on advanced computer animation methods and prepare students for research in animation.", + "title": "Advanced Computer Animation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5343", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module analysis of data which can not fit in main memory and application of such analysis to web applications. The topics covered include: map-reduce as a tool for creating parallel algorithms that operate on very large amount of data, similarity search, data-streaming processing, search engine techonology, clustering of very large, high-dimensional datasets.", + "title": "Big-Data Analytics Technology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5344", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "There is a proliferation of social and digital media content data today generated by both consumers and firms. This module aims to introduce concepts, methods and tools for social and digital media analytics, and in the application and management of such analytics efforts in industry sectors such as telecommunications and consumer retail. Topics covered include network data in social and digital media, formal methods for social network analysis, analytics and visualization tools, population and structural models for network dynamics, and various industry case studies on social and digital media analytics. Instructional methods will include lectures, case analyses, assignments and projects.", + "title": "Social and Digital Media Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5345", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to bring together individual pedagogies\nof design, information, and computation, for teaching the\nanalysis and representation of data for visualisation.\nStudents will learn the methodology of developing and\nevaluating an information visualisation solution, common\ninformation visualisation techniques (such as those for\ntopical, spatial, hierarchical, temporal, and relational data),\nand methods for scaling up interactive visualisation with big\ndata. After the module, students should be able to use the\nexisting visualisation tools for building useful, interactive,\ninformation visualisation to facilitate complex data\nanalytics, exploration, understanding, and pattern\ndiscovery.", + "title": "Information Visualisation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5346", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The software business well exceeds a trillion dollars, covering companies that sell software products as well as corporations that depend primarily on software technology for their business. The course will cover the evolution of software business, and the continuous reshaping of industry. Students will be exposed to market dynamics affecting the birth, growth and transition of these businesses. The course will investigate business strategies followed by these companies. Students will be encouraged to reflect on trends emerging from the integration of innovative technologies and evolving consumer and enterprise needs. There will be special emphasis on Asia-Pacific markets and businesses.", + "title": "The Business of Software", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5351", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the design and performance tuning of database applications. The syllabus focuses on relational database applications implemented with relational database management systems. Topics covered include normalisation theory (functional, multi-valued and join dependency, normal forms, decomposition and synthesis methods), entity relationship approach and SQL tuning (performance evaluation, execution plan verification, indexing, de-normalization, code level and transactions tuning). The syllabus optionally includes selected topics in the technologies, design and performance tuning of nonrelational database applications (for instance, network and hierarchical models and nested relational model for an historical perspective, as well as XML and NoSQL systems for a modern perspective).", + "title": "Database Applications Design and Tuning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5421", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide solid foundation for students in the area of wireless networks and introduces students to the emerging area of cyber-physical-system/Internet-of-Things. The module will cover wireless networking across all layers of the networking stack including physical, link, MAC, routing and application layers. Different network technologies with different characteristic will also be covered, including cellular networks, Wi-Fi, Bluetooth and ZigBee. Some key concepts that cut across all layers and network types are mobility management, energy efficiency, and integration of sensing and communications. The module emphasizes on exposing students to practical network system issues through building software prototypes.", + "title": "Wireless Networking", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5422", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the management of data in a distributed environment. It covers the fundamental principles of distributed data management and includes distribution design, data integration, distributed query processing and optimization, distributed transaction management, and replication. It will also look at how these techniques can be adapted to support database management in emerging technologies (e.g., parallel systems, peer-to-peer systems, cloud computing).", + "title": "Distributed Databases", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5424", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data science incorporates varying elements and builds on techniques and theories from many fields, including statistics, data engineering, data mining, visualization, data warehousing, and high-performance computing systems with the goal of extracting meaning from big data and creating data products. Data science needs advanced computing systems such as Apache Hadoop and Spark to address big data challenges. In this module, students will learn various computing systems and optimization techniques that are used in data science with emphasis on the system building and algorithmic optimizations of these techniques.", + "title": "Big Data Systems for Data Science", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5425", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theoretical underpinnings of cryptography. Modern cryptographic primitives can generate strings that look random, send messages that only intended recipients can read, authenticate individuals, run computations on sensitive data without compromising privacy, and perform several other seemingly paradoxical tasks. We will study a number of these primitives with emphasis on how to (i) define their security requirements rigorously, (ii) construct them, and (iii) prove that these constructions are secure. We will focus on the theoretical foundations using tools from algebra, number theory, combinatorics, and probability. This will involve rigorous mathematical definitions and", + "title": "Foundations of Modern Cryptography", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5430", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Software engineering processes need to include security considerations in the modern world. This module familiarizes students to security issues in different stages of the software life-cycle. At the end of the module, the students are expected to understand secure programming practices, be able to analyse and check for impact of malicious inputs in programs, and employ specific testing techniques which can help detect software vulnerabilities.", + "title": "Software Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5439", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the major concepts and paradigms in planning and decision making in complex environments. It examines issues, challenges, and techniques in problem representation, goal or objective specification, response selection, and action consequence for a wide range of strategic and tactical planning and decision making situations. Topics covered include deterministic and nondeterministic planning, practical planning and acting under resource constraints and uncertainty, expected utility and rational decision making, decision networks, Markov decision processes, elementary game theory, and multiagent planning and decision making.", + "title": "AI Planning and Decision Making", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5446", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G4", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "G5", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "G6", + "startTime": "1930", + "endTime": "2030", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "G3", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G04", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "G02", + "startTime": "1930", + "endTime": "2030", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0339", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-02-60", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recent years have seen a dramatic rise in the use of\nalgorithms for solving problems involving strategic\ndecision makers. Deployed algorithms now assist in a\nvariety of economic interactions: assigning medical\nresidents to schools, allocating students to courses,\nallocating security resources in airports, allocating\ncomputational resources and dividing rent. We will\nexplore foundational topics at the intersection of\neconomics and computation, starting with the foundations\nof game theory: Nash equilibria, the theory of cooperative\ngames, before proceeding to covering more advanced\ntopics: matching algorithms, allocation of indivisible goods,\nand mechanism design.", + "title": "Algorithmic Mechanism Design", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5461", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Logic is often called the \"calculus of computer science\" due to the central role played by logic in computer science akin to the role played by calculus in physics and engineering. This module will formally introduce and prove some of the fundamental results in logic to provide students with a rigorous introduction of syntax, semantics, decision procedures, and complexity of propositional and\nfirst-order logic. The course will be taught from a computer science perspective with particular emphasis on algorithmic and computational complexity components.", + "title": "Fundamentals of Logic in Computer Science", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5469", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the advent of the Internet-of-Things, the computing\nparadigm is quickly changing from the traditional cyber\ndomain to cyber-physical domain. This is made possible\nfrom devices that are equipped with sensors and actuators\nthat interact with the physical world. In this module, we will\ninvestigate how such sensing systems affect the notion of\ncomputer security. We will also explore the state-of-the-art\nresearch in the areas of sensing systems and how they\ncan provide benefits to the security of the Internet-ofThings. Furthermore, this module will also investigate how\nan attacker may compromise the sensing information to\nexploit security vulnerabilities in these systems.", + "title": "IoT Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5476", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the most important capability for robots such as self-driving cars, domestic mobile robots, and drones to achieve full autonomy is the ability to perceive the 3D environment. A camera is an excellent choice as the main sensory device for robotic perception because it produces information-rich images, and is lightweight, low cost and requires little or no maintenance. This module covers the mathematical concepts and algorithms that allow us to recover the 3D geometry of the camera motions and the structures in its environment. Topics include projective geometry, camera model, one-/two-/three-/N-View reconstructions and stereo, generalized cameras and nonrigid structure-from-motion.", + "title": "3D Computer Vision", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5477", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the core algorithms and system architectures of intelligent robots. It examines the main system components for sensing, decision making, and motion control and importantly, their integration for core robot capabilities, such as navigation and manipulation. It covers the key algorithms for robot intelligence through inference, planning, and learning, and also provides some practical experiences with modern robot systems. A variety of Illustrative examples are given, e.g., self-driving cars, aerial drones, and object manipulation.", + "title": "Intelligent Robots: Algorithms and Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5478", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers theoretical foundations of trustworthy machine learning. It covers tools for the analysis of privacy, robustness, and fairness in machine learning using techniques from statistics, probability, and machine learning. Some questions considered include Can we trust machine learning frameworks to access sensitive personal data? Can we trust algorithms to learn robust decision rules in the presence of adversarial and noisy data? Can we build algorithms that provide fair predictions and avoid discrimination? Can we make machine learning models more verifiable, interpretable, ethical, and accountable? The module provides an algorithmic approach towards defining and achieving trustworthy machine learning.", + "title": "Trustworthy Machine Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5562", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental technologies employed in Sound and Music Computing focusing on three major categories: speech, music, and environmental sound. This module introduces the concept of sound and its representations in the analog and digital domains, as well as in time and frequency domains. Moreover, this module provides hands-on instruction on relevant machine learning tools, and an in-depth review of related technologies in sound data analytics (Automatic Speech Recognition, Automatic Music Transcription and Sound Event Detection) leading to a group project. Topics in sound synthesis, automatic music generation and music information retrieval will be covered for breadth.", + "title": "Sound and Music Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS5647", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces CS graduate students to various research areas in Computer Science. Study groups are organised for major research areas. Each study group provides a forum for students to read, present and discuss\nresearch papers, and acquire the basic research skills for literature review and critical comparison of existing work. Students will also gain a first experience in technical presentation and writing. This module will be graded as \u201cCompleted Satisfactory\u201d or \u201cCompleted Unsatisfactory\u201d (CS/CU).", + "title": "Exploration of Computer Science Research", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CS6101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses the contemporary concepts in the design and implementation of major programming languages and systems. It aims to provide students with advanced technical knowledge in evaluating, designing, and implementing an efficient and expressive programming language/system. Topics are selected from a group of contemporary issues that has substantial impact in the development of programming languages/systems, either in terms of performance efficiency or programming expressivity. These include, but not restricted to, computational models, program semantics, concurrency theory, garbage collection techniques, program analysis, type inference, program calculation and transformation, run-time profiling, implementation models, meta-programming.", + "title": "Advanced Topics in Programming Languages", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the topics in data base management systems with current research and industrial interests and importance. Examples of topics include multimedia data management, object-oriented database technology, data warehousing and data mining, integration of heterogeneous and legacy systems.", + "title": "Advanced Topics in Database Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate level course covers a broad range of the latest developments in computer networking and telecommunications in terms of new techniques and technologies, trends, open research issues and some related new principles and approaches in networking. Selected topics covered via class lectures and assigned readings include developments in the past three years. Upon completion of this course, the student will be able to understand the latest issues and proposed solutions in networking, and acquire the skills and methodology for identifying research problems. This course will help prepare students towards a research career in networking.", + "title": "Advanced Topics in Networking", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to provide students with the ability to model, simulate and analyse complex systems in a reasonable time. This course is divided into three parts and covers advanced techniques in simulation model design, model execution, and model analysis. A selection of model design techniques such as conceptual models, declarative models, functional models, constraint models, and multi-models will be discussed. Model execution techniques include discussion of serial and parallel discrete-event simulation algorithms. For model analysis, topics include input-output analysis, variance reduction techniques and experimental design.", + "title": "Advanced Modelling & Simulation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers advanced topics in human computer interaction that are of current research or application interests. Its aim is to examine both the theoretical bases that underlie the design of interfaces and advanced technologies for human computer interactions. A wide range of topics may be covered including psychological theories, organisational behaviour, virtual reality, augmented reality, and computer-supported cooperative work. The module illustrates where and when the theories are applicable, demonstrates the solutions using a combination of scientific theory understanding and engineering modelling. It also illustrates advanced technologies that form part of the solutions.", + "title": "Advanced Topics in Human-Computer Interaction", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to prepare students to embark on research in natural language processing (NLP). At the end of the course, the students will have experience in reading and critiquing research papers, and will have undertaken a substantial project on some aspects of NLP research. Topics covered include: Statistical parsing, Word sense disambiguation, SENSEVAL, co-reference resolution, machine translation, question answering.", + "title": "Advanced Natural Language Processing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers advanced topics in artificial intelligence that are of current research or application interests. A wide range of topics may be covered including soft computing (fuzzy logic, genetic algorithms, etc.), data mining, machine learning, image and video processing, artificial life, robotics, etc. The exact topics to be taught will depend on the lecturers teaching the module.", + "title": "Advanced Topics in Artificial Intelligence", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6208", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide a systematic treatment to cryptography techniques. Topics covered include: mathematical foundations; information theory; classical cryptographic systems: substitution cipher, shift cipher, affine cipher, hill ciphers, permutation cipher, etc.; design and analysis of block ciphers; pseudorandom numbers and sequences; design and analysis of stream cipher cryptosystems; identification and entity authentication; key management techniques; Rabin public-key encryption; McEliece public-key encryption; signature schemes: RSA, EIGamal, and digital signature standard; design and analysis of hash functions; cryptographic protocols; and efficient implementations.", + "title": "Topics in Cryptography", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide the meta-skills for research in computer science. How does one discover great research problems? What are the good strategies for solving research problems? How does one write papers or give presentations with great impact? Students will seek answers to these questions by critically examining and assessing successful and less successful examples of\nresearch.", + "title": "The Art of Computer Science Research", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Constructing simple mathematical models to describe a computer system can help in analysis and understanding of the characteristics, behaviour, and performance of the system. This module introduces students to the modelling techniques, commonly used models, applications of the models to performance modelling of computer systems, and experimental validation of the models. After completing the module, students are expected to have the confidence to construct, analyse, and validate a performance model for a computer system that they are interested in.", + "title": "Analytical Performance Modelling for Computer Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "There is a surge in both the industrial interest and the advancement of media technology. This course aims to bring in the latest advanced development in media technology to the postgraduates.", + "title": "Topics in Media", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Distributed Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Program analysis techniques allow one to automatically\nanalyse the behaviour of a computer program, to identify\nbugs and performance bottlenecks. This graduate level\nmodule covers advanced topics in program analysis that\nare of current research or application interests. Students\nwill explore the state-of-the-art techniques and systems for\nprogram analysis. After taking the module, students will\nbe able to apply advanced automated program analysis\ntools and techniques to verify, test, and debug programs,\nas well as be better prepared for conducting research in\nprogram analysis and apply them in related research\nareas.", + "title": "Advanced Topics in Program Analysis", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6215", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate level module covers advanced topics in machine learning that are of current research or application interests. The exact topics to be taught will depend on the lecturers teaching the module. Upon completion of this module, the student will have a deeper understanding on some of the latest research problems in machine learning as well as the state-of-the-art approaches and solutions. This module will help prepare students towards doing research in machine learning.", + "title": "Advanced Topics in Machine Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at graduate students who are doing\nor intend to do advanced research in programming\nlanguages and software engineering. It exposes students\nto recent advances in topics that include, but not limited\nto, software requirements modelling, design, testing,\nanalysis and verification, with focus on emerging\ntechnologies from research which have found increased\nindustry adoption such as software model checking,\nsymbolic execution based testing and automated program\nrepair.", + "title": "Topics in Prog. Languages & Software Engineering", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at graduate students who are doing\nor intend to do advanced research in programming\nlanguages and software engineering. It exposes students\nto recent advances in topics that include, but not limited\nto, deductive verification, program analysis, type systems,\nsoftware specification inference, search-based program\nverification such as model checking, as well as general\nconcepts such as abstraction and modularity in the\ncontext of object-oriented languages.", + "title": "Principles of Prog. Languages & Software Engineering", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate-level module covers advanced topics in computer systems that are of current research or application interests. Topics include operating systems,\nsystems architecture and hardware, distributed systems, computer networks, and the interaction between these areas. The exact topics to be taught will depend on the lecturers teaching the module. Upon completion of this module, the student will have a deeper understanding on some of the latest research problems in the area of computer systems, as well as the state-of-the-art approaches to address the problems. This module will help prepare students towards doing research in computer systems.", + "title": "Advanced Topics in Computer Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the rapid advances of computer and internet technologies, a large amount of data accumulates. Discovering knowledge from the data will give us a competitive advantage. The process of knowledge discovery involves pre-processing the data, mining or discovering patterns from the data, and post-processing the discovered patterns. In this course, we will review and examine the present techniques and the theories behind them and explore new and improved techniques for real world knowledge discovery applications. The course is designed to encourage active discussion, creative thinking, and hands-on project development.", + "title": "Advanced Topics in Data Mining", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6220", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This lecture/seminar-based module introduces some biological investigations enabled by the latest experimental technologies in biology. We focus on the role of computing in helping biologists with these investigations. Students are\nexpected to attend lectures, give seminars, and do projects. The seminars require the students to read papers related to the selected biological investigations, the\nenabling experimental technologies, and associated computational solutions. For the projects, students need to develop some methods/algorithms, integrate existing tools, or enhance existing tools with new functions.", + "title": "Advanced Topics in Computational Biology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare graduate students for research and development in information security, by investigating selected topics in cryptography and information theoretic security. Selected topics may include classical issues such as provable security, design of symmetric key ciphers, and public key cryptography, as well as emerging topics, such as pairing-based cryptography, homomorphic encryption, privacy-preserving methods, information hiding, and data forensic. Other topics of current research interests may also be included.", + "title": "Topics in Information Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare PhD students for research in security and privacy, by investigating security issues in various theoretical as well as system computer science areas such as software, networks, data analytics and machine learning, etc. It addresses security and privacy concepts and design principles from an adversarial perspective. Selected topics in security and privacy are covered, such as software security, applied cryptography, privacy-preserving data analysis, and design of secure distributed systems. Emerging topics of current research interests may be included as well.", + "title": "Advanced Topics in Security and Privacy", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at graduate students who are doing or intend to do advanced research in algorithms design and analysis in all areas of computer science. The module covers advanced material on combinatorial and graph algorithms with emphasis on efficient algorithms, and explores their use in a variety of application areas. Topics covered include, but are not restricted to, linear programming, graph matching and network flows, approximation algorithms, randomized algorithms, online algorithms, local search algorithms, algorithms for large datasets. The module will be a seminar-based module that will expose students to current research in these areas.", + "title": "Advanced Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate-level module covers advanced topics in the theoretical aspects of computer science that are of current research or application interests. Topics falling under this module include algorithms, theory of computation, formal models, and semantics. The exact topic may vary from year to year and depends on the instructor teaching the module. Upon completion of this module, the student will\nhave a deeper understanding on some of the latest research problems in one of the areas of theoretical computer science. This module will help prepare students towards doing research in theoretical computer science.", + "title": "Advanced Topics in Theoretical Computer Science", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6235", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a comprehensive and rigorous treatment of the main approaches in multimedia (document, image, video, graphics) analysis. Three main themes are covered: (1) representation and modelling of multimedia entities using various modelling approaches, (2) matching of a model with an input entity, and (3) derivation of a model from sample entities. It focuses on the non-vector-space approach, which complements the vector-space approach to multimedia analysis.", + "title": "Multimedia Analysis", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6240", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to familiarise graduate students with the ongoing research works in interactive 3D graphics. Topics covered may include: interactive technologies, graphics data structures (shape representation), image-based modelling and rendering, creation of artistic artifacts, viewing large models, and interactive modelling.", + "title": "Advanced Topics in Computer Graphics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is targeted to graduate students of computer science and information systems wishing to understand the issues in building, using and maintaining large\nvolumes of knowledge in digital libraries. Fundamentals of modern information retrieval is assumed. The course will focus on how such information retrieval technology operationalises traditional information finding skills of the librarian/cataloger/archivist, organised around 5S framework for digital\nlibrary education. Areas within digital libraries that will be covered include collection development, knowledge organisation, DL architecture, user behavior, services, preservation, management and evaluation and DL education and research. Students will round out their knowledge with case studies of how different disciplines (e.g. music, arts, medicine and law) impose different search, usability and maintenance requirements on the digital library.", + "title": "Digital Libraries", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents the advances in robotics research over a broad range of topics such as robot perception, learning, decision making and control, and human-robot interaction. The exact topics of focus may differ in each offering. Through this module, students will get familiar with recent research trends and developments in robotics and prepare for research in robotics and related fields.", + "title": "Advanced Topics in Robotics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6244", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the end of Moore's Law, we are witnessing a paradigm shift in computing platforms towards the inclusion of specialized hardware accelerators. In this module, we will explore the designs of system software on these emerging computing hardware platforms. We will first take a broad overview of existing and upcoming specialized hardware devices, including GPU, TPU, FPGA, SmartNICs, reconfigurable network switches, and other specialized ASICs. We will then discuss various topics in systems design for these new hardware platforms, e.g., OS constructs, abstractions, programming models, resource sharing and multiplexing, scheduling, co-designing with applications and algorithms, and joint processing with CPU.", + "title": "Topics in Computer Science: Systems Design for Next Gen Hardware", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6280", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar-style module explores the state-of-the-art advances and open research challenges in immersive videos, including free-viewpoint videos, 360-degree videos, volumetric videos, and light field videos. Discussions will focus on both algorithmic techniques and systems approaches to represent, compress, transmit, and render immersive immersive videos. Issues related to user experiences when interacting with immersive videos will also be discussed. This module aims to prepare graduate students interested in research and development in the intersection of multimedia processing, user interaction/experience, and networking systems.", + "title": "Topics in Computer Science: Immersive Videos", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6281", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This graduate seminar will look at practical issues in distributed data management, including topics related to distributed databases and blockchains. The module will focus on recent and on-going research, including topics such as: cloud storage systems, distributed consistency protocols, distributed query processing, IoT data management, stream processing platforms and real-time analytics, blockchain performance, blockchain security, blockchain transactions, smart contracts, and other similar topics.", + "title": "Topics in Computer Science: Practical Distributed Data", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6282", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Machine learning is increasingly being used in critical decision-making systems, yet is not reliable in the presence of noisy, biased, and adversarial data. Can we trust machine learning models? This module aims to answer this question, by covering the fundamental aspects of reasoning about trust in machine learning, including its robustness to adversarial data and model manipulations, the privacy risks of machine learning algorithms for sensitive data, the transparency measures for machine learning, and fairness in AI. It covers the algorithms that analyze machine learning vulnerabilities; and techniques for building reliable and trustworthy machine learning algorithms.", + "title": "Topics in Computer Science: Trustworthy Machine Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6283", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Reinforcement learning studies how an AI agent interacts with its environment and learns according to its experiences. The advances in recent years, especially since the introduction of deep reinforcement learning, have been significant and mpactful. Examples include AlphaGo, AlphaStar, OpenAI Five, chip design, nuclear fusion plasma controller etc. In this course, we will cover advanced topics in reinforcement learning. Students will be exposed to classic and recent papers on these topics. Students are expected to have a basic understanding of deep learning and reinforcement learning. Familiarity with tensor programming libraries (such as TensorFlow, JAX, PyTorch, etc) is required.", + "title": "Topics in Computer Science: Advanced Topics in Reinforcement Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6284", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Co-design of system and machine learning algorithms has led to faster and more scalable machine learning systems. The module aims to expose students to recent state-of-the-art co-design techniques to make deep learning run faster, touching on both system research and AI research. The specific topics include distributed deep learning, large-batch training, second-order optimization, asynchronous algorithms, neural network compression, federated machine learning, memory-efficient optimizers, model parallelism, efficient communication library, low-precision training.", + "title": "Topics in Computer Science: Bridging System and Deep Learning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6285", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar-style module exposes students to recent advances of a selected topic in computer science through readings and discussion. The selected topic varies from year-to-year. The module will be graded on a CS/CU basis.", + "title": "Lecture Series in Computer Science I", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CS6290", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar-style module exposes students to recent advances of a selected topic in computer science through readings and discussion. The selected topic varies from year-to-year. The module will be graded on a CS/CU basis.", + "title": "Lecture Series in Computer Science II", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CS6291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar-style module exposes students to recent advances of a selected topic in computer science through readings and discussion. The selected topic varies from year-to-year. The module will be graded on a CS/CU basis.", + "title": "Lecture Series in Computer Science III", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "CS6292", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses contemporary concepts in software engineering, ranging from domain analysis, requirement analysis and software architectures; formal methods, analysis, design and implementation. It aims to provide students with advanced technical and managerial knowledge in evaluating, designing, and implementing big-scale software. These include: Specialized methods for specific application domains (such as embedded systems or Web systems), in-depth study of software engineering sub-disciplines (such as testing or maintenance), as well as the issues of programming language support for software engineering. The module also provides students the opportunity to understand the methodology involved in software-engineering research.", + "title": "Advanced Topics in Software Engineering", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CS6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a foundational module aimed at providing a common conceptual ground for all the candidates in the PhD programme in Cultural Studies in Asia. It examines the works of various theorists from which Cultural Studies draw its concepts and analytic frameworks. It examines how these concepts and frameworks are utilized in the analysis of particular cultural practices and interventions in contemporary societies. Students gain additional depth as they work through the concepts and frameworks in the research papers for this module.", + "title": "Cultural Studies Theory and Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CSA6101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the various areas of research in Cultural Studies conducted by Asian scholars or scholars locating their research in Asia. It will examine the histories, concepts and analytic strategies that these scholars deploy in the analysis of the changing cultural landscapes and practices in contemporary Asia. Abiding themes of the module will be the conceptual constitution of the idea of 'Asia', the emergence of 'trans-Asian' practices and the possibility of 'pan-Asian' identities that these trans-location practices might engender.", + "title": "Cultural Studies in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CSA6102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all PhD candidates in Cultural Studies in Asia programme. It is a forum for candidates to engage each other in critical discussion of their dissertation and other research projects. Each candidate is required to present a formal research paper. Active participation from each is expected. The module will be graded Satisfactory/Unsatisfactory' on the basis of a candidate's presentation and participation in discussions throughout the semester.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "CSA6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is to be taught by an eminent visiting scholar in Cultural Studies in Asia, appointed as a visiting teaching fellow for one semester. The content of\nmodule will therefore vary according to the specialized interests of the visiting teaching fellow.", + "title": "Topics in Cultural Studies in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CSA6880", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "AS6-0333", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "AS6-0333", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CSX2991", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CSX2992", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CSX2994", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CSX2995", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CSX3991", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CSX3992", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CSX4991", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "CSX4992", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "CSX4993", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Breadth Module", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "CSX4994", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Covers computational techniques for the solution of problems arising in science and engineering, with algorithms developed for the treatment of typical problems in applications. This is an intensive course which will exhaustively review undergraduate numerical techniques, fill in gaps in incoming students' background, and prepare candidates for the PhD qualifying exam. Topics will be from the text, \"Numerical Recipes\". This course insures that students passing the qualifying exam will effortlessly be able to use this text as an important research reference and tool.", + "title": "Numerical Recipes", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CZ5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Covers the translation of a mathematical model to computer software in all aspects, including architecture, data structures, language, documentation, optimization, validation, and verification. Class projects involve teams developing software that implement these mathematical models, addressing important scientific questions, and conducting computational experiments. A knowledge of a programming language and familiarity with UNIX are assumed. The course will include extensive review of programming highlighting the use of UNIX file systems, the language Perl, and the use of libraries that are used in scientific computation (e.g. MPI, AVS, Lapack, NAG). The course will also serve as an introduction to techniques for large-scale computations, vector and parallel computation algorithms.", + "title": "Computational Tools", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CZ5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to mathematical models in science, engineering, industry and social science. Topics include basic model building (their simplification and interpretation), discrete, continuum and probabilistic models; dimensional analysis, asymptotic analysis, perturbation methods; numerical methods for solving differential equations, Monte Carlo methods for studying probabilistic models; the use of software environments for modeling and computation, including interpreted languages such as MATLAB, Mathematica or Maple for use in prototyping problem solutions.", + "title": "Modeling and Simulation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "CZ5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminar Module in Computational Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CZ5198", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Current topics in computational science to be determined by the Department.", + "title": "Topics in Computational Science 1", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CZ5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to theoretical and computational fluid dynamics, assuming no prior knowledge. Kinematics of fluid flow, stress and conservation laws, the governing equations and vorticity transport. Topics include hydroststics, imcompressible and irrotational flows, and an introduction to boundary layers and hydrodynamic stability. There will be extensive computational work on sample applications (e.g. nozzle flows, Orr-Sommerfeld equations, vortex simulation methods, etc).", + "title": "Computational Fluid Dynamics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "CZ5274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students with theory and skills to capture business insights from data for decision making using spreadsheets. Practical examples and cases with rich data are used to stimulate students\u2019 interest and\nforster understanding of the use of Business Analytics in management.", + "title": "Decision Analytics using Spreadsheets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DAO1704", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A9", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A7", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A8", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A11", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A6", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A8", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A9", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A7", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students with theory and skills to capture business insights from data for decision making using spreadsheets. Practical examples and cases with rich data are used to stimulate students\u2019 interest and\nforster understanding of the use of Business Analytics in management.", + "title": "Decision Analytics using Spreadsheets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DAO1704X", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "Q1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "Q2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "Q1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "Q3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "Q4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "Q3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "Q1", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "Q1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Monday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "Q2", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students with theory and skills to capture business insights from data for decision making using spreadsheets. Practical examples and cases with rich data are used to stimulate students\u2019 interest and forster understanding of the use of Business Analytics in management.", + "title": "Decision Analytics using Spreadsheets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DAO1704Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Data Science involves both a theoretical foundation of Statistics and practical implementation via programming. The two are typically covered separately, but his module aims to bring theory and practice together. It starts with some Python programming fundamentals, then walks through Statistics topics from visualizing and summarizing data, to estimating model parameters and hypothesis testing, and then linear regression. For each topic, Python illustrations and experimentations are interwoven to help students better appreciate how it practically works. Completing the cycle, the module finally deals with acquiring, cleaning, and organizing data using Python. Students can then independently execute a Data Science project.", + "title": "Programming for Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DAO2702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Monday", + "lessonType": "Lecture", + "size": 420, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Monday", + "lessonType": "Lecture", + "size": 420, + "covidZone": "B" + }, + { + "classNo": "A20", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A18", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A16", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A09", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A11", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A12", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A13", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A15", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A03", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A05", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A01", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A21", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A22", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A19", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A08", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A14", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A02", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A17", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A05", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A17", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A11", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A09", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Monday", + "lessonType": "Lecture", + "size": 260, + "covidZone": "B" + }, + { + "classNo": "A02", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A03", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A07", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A08", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A01", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Monday", + "lessonType": "Lecture", + "size": 260, + "covidZone": "B" + }, + { + "classNo": "A16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A12", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data Science involves both a theoretical foundation of Statistics and practical implementation via programming. The two are typically covered separately, but his module aims to bring theory and practice together. It starts with some Python programming fundamentals, then walks through Statistics topics from visualizing and summarizing data, to estimating model parameters and hypothesis testing, and then linear regression. For each topic, Python illustrations and experimentations are interwoven to help students better appreciate how it practically works. Completing the cycle, module finally deals with acquiring, cleaning, and organizing data using Python. Students can then independently execute a Data Science project.", + "title": "Programming for Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DAO2702X", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the substantive knowledge which has developed over the years in the field of Operations and Technology Management. It builds around the foundational topics of operations and highlights the relevance and strategic significance of technology and the operations function in enterprises.\n\nTopics covered include production technology, process analysis and process technology, quality management, and the role of technology in process control in both manufacturing and service organizations. Use of coordination technology such as ERP by firms to match demand and supply efficiently and effectively, operations strategy, and sustainability will also be introduced.", + "title": "Operations and Technology Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DAO2703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 420, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 420, + "covidZone": "B" + }, + { + "classNo": "F05", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F08", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F21", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F22", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F23", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F18", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F12", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F19", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F20", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F16", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F03", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F01", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F14", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F11", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F13", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0227", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F02", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F15", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F17", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F02", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F03", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F09", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F10", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F13", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F14", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F15", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F16", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F17", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F19", + "startTime": "1930", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "F04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F11", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F01", + "startTime": "0830", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F08", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F18", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theory, algorithms, and applications of optimisation. Optimisation methodologies include linear programming, integer programming, network optimisation, dynamic programming, and nonlinear programming. Problem formulation and interpretation of solutions will be emphasized. Throughout the course, references will be made wherever appropriate, to business applications, such as portfolio selection, options pricing, and vehicle routing. Students who are interested in computer and quantitative approaches in business will learn many useful techniques in large business system management from this course.", + "title": "Introduction to Optimization", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA3701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the era of big data, competitive advantage for enterprises is derived from data analytics and timely sharing of insights derived from data. The ability to understand data, derive valuable insights from data, and thus make objective managerial decisions has become an essential skill that graduates must master in order to excel in their career. This course introduces the basics of R, a powerful analytics environment, to organize, visualize, and analyse data, and uses case studies to teach students on how to analyse and summarise data and present findings in a structured, meaningful, and convincing way.", + "title": "Descriptive Analytics with R", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA3702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to management science models that characterise random phenomena in real world applications, particularly in the field of finance and operations management. We start with elementary probabilistic models and illustrate their applications in inventory management and financial engineering. We then construct discrete Markov chain models and demonstrate their applications in managing queues and for evaluating the performance measures of queueing systems. When analytical models are inadequate for studying real world random phenomena, simulation might be a feasible approach. We will discuss several well-known methods to simulate randomness.", + "title": "Stochastic Models in Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA3711", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Dynamic Pricing and Revenue Management is the state-of-art tool to improve the operational management of the demand for goods or services to more effectively align it with the supply and extract the maximum value. The course is designed to provide you: (1) a bundle of multidisciplinary knowledge and tactical tools that are readily applicable to real life business applications to deliver price recommendations; (2) conceptual frameworks that synthesize strategic principles, underlying logics, and high-level managerial insights needed by general managers and management consultants.", + "title": "Dynamic Pricing & Revenue Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA3712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers analytics tools, including machine learning, statistical modelling, and optimisation methods, to model, estimate, and manage quantitative risk. Hands-on implementation of these analytics tools in Python is an important component of this module.", + "title": "Analytics for Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA3713", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This Independent Study Module is for students with the requisite background to work closely with an instructor on a well-defined project in the area of Business Analytics.\nStudents will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA3751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This Independent Study Module is for students with the requisite background to work closely with an instructor on a well-defined project in the area of Business Analytics. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DBA3752", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Business analytics, built on the prevalence of data, is being applied to all aspects of business to\nenhance decision making. This module intends to expose students to recent developments in the\ntheory, technology and application of analytics in business. This module serves as a placeholder for\ncovering latest developments in business analytics (in theory, technology and/or applications) that are\nnot covered by other BA modules.\n\nThis module is also a placeholder for experimental or ad hoc elective modules in business analytics.", + "title": "Topics in Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA3761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Managerial success rests strategically on the ability to forecast the demand for the goods and services that a firm provides. Demand forecasting drives the effective planning of the supply chain: personnel requirements, capital investment, production schedules, logistics etc.This module surveys forecasting techniques and their applications. These encompass traditional qualitative (e.g. front line intelligence, Delphi method) and quantitative techniques (e.g. regression, time series) as well as emerging techniques based on neural networks. Concepts such as trends, seasonality and business cycles will be discussed. Their value in improving forecasts will be illustrated. The module makes extensive use of software including MS Excel and dedicated forecasting packages.", + "title": "Predictive Analytics in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA3803", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Big data and analytics, which have climbed to the top of the corporate agenda, promise to transform the way many companies operate, delivering performance improvements not seen since the redesign of core processes in the 1990s. In this module, we study how analytics is used to transform businesses and industries, using examples and case studies in e-commerce, healthcare, social media, Fintech, pharma, and beyond. Through these examples, students learn the use of predictive and prescriptive analytics methods such as linear regression, logistic regression, classification trees, random forests, social network analysis, time series modelling, clustering, optimization, and machine learning.", + "title": "Applied Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA4711", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Machine learning is often used to find the association of two events. For example, the frequency of hospital visits is strongly negatively correlated with life expectancy. Such strong associations might lead to non-sensible decisions like not seeing a doctor when one is sick. Beyond the warning \u201ccorrelation is not causation,\u201d we need a systematic way to disentangle correlation from causation. \n \nThis course will apply causal analytics to a wide range of managerial decisions, such as what makes government leaders confident that a COVID-19 vaccine is effective, what business policy boosts the economy, and which advertisement recommendation algorithm generates higher revenue.", + "title": "Causal Analytics for Managerial Decisions", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA4712", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This Advanced Independent Study Module is for students with the requisite background to work closely with an instructor on a well-defined project in the area of Business Analytics. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA4751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This Advanced Independent Study Module is for students with the requisite background to work closely with an instructor on a well-defined project in the area of Business Analytics. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DBA4752", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a placeholder for experimental or ad hoc elective modules in Analytics.", + "title": "Seminars in Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA4761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is for students interested to move away from Microsoft Excel to enable operational excellence and develop a competitive edge in the private equity industry. Students will learn how to get financial data and formulations out of spreadsheets, no matter how peculiar. Often, spreadsheets are used as a reporting tool, which they are not, and they create very elaborated and complicated financial models that are non-human readable. The aim for this module is to teach students different tidy data techniques to clean, structure, aggregate, and explore structured and unstructured data to drive insights and make better informed decisions.", + "title": "Sem in Analytics: Tidyverse Principles And Tidymodels", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA4761A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Business analysts / consultants hold strategic positions within the knowledge-based firm. They support the Supply Chain, Marketing, Finance and HR departments in refining their processes, making them more efficient, profitable and customer-centric. A 2006 Money magazine survey ranks the business analyst position among the top jobs with regards to salary, advancement prospects, satisfaction and stress level. The objective of this capstone course is to prepare participants for the work environment and the diverse challenges faced by business analysts and consultants. Through the pedagogical medium of cases, participants will polish their skills in analytics and the written and oral communications of their results to a Management audience. The course will cover topics such as Decision & Risk Analysis, Optimization, Simulation, Data Mining and Forecasting. Participants will gain extensive experience in analytical software such as Precision Tree, Solver and Evolutionary Solver, @Risk and StatTools. Cases will highlight timely problems e.g. cash flow / revenue management, supply chain optimization, reverse auctions, staff right-sizing, outsourcing, benchmarking, CRM (e.g. customer segmentation, clustering), seasonal demand forecasting etc.", + "title": "Analytical Tools for Consulting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA4811", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Supply Chain Analytics refers to data-driven supply chain \nmanagement wherein crucial decisions for companies to \ngain competitive edges in their respective businesses are \nsupported by scientific decision making methodologies \nusing analytics.\n\nThis course applies Business Analytics techniques to \nformulate supply chain models for evaluating and \noptimizing supply chain performances. Emphasis will be \nplaced on drawing practical perspectives and managerial \ninsights from analytical solutions. It will equip students with \nversatile analytical skills in modelling, analysing and \nsolving supply chain management problems from various \nindustries, and provide practical hands-on experience in \nplanning for customer demands, inventory consumption, \nproduction capacities, material requirements, etc.", + "title": "Supply Chain Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA4812", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Artificial Intelligence (AI) is becoming the new operational foundation of businesses. Technology companies such as Amazon, Microsoft, Google and Facebook have transformed their processes in order to harness data, develop structured and automated ways to analyse information and make better operational decisions. In this module, students will learn how businesses are using AI to make better decisions, improve operational processes and enhance products/services. Topics include the fundamentals of AI, implementing cutting-edge AI algorithms, AI applications in industry, challenges of AI in the real world, and how humans and machines can work together to realize AI\u2019s full potential for business growth.", + "title": "AI Strategies in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DBA4813", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We analyze price formation and economic performance in imperfectly competitive markets by using optimization, statistical and stochastic methods. Strategic interactions between the participants in these markets are emphasized and a theoretical framework is laid out. Theoretical models are analyzed with industry examples and datasets.", + "title": "Analytics in Managerial Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DBA5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Business Analytics Capstone Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "12", + "moduleCode": "DBA5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 220, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1600", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 220, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "A1", + "startTime": "1600", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 220, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "A1", + "startTime": "1600", + "endTime": "2130", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 220, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the basic quantitative background for decision making problems in finance, operations management, and supply chain management. In this module, various operations research models in linear programming, network flow problems and integer programming will be covered. The emphasis is on model building, solution methods, and interpretation of results. Topics on decision making under uncertainty and simulation will also be discussed. Python will be used for software implementation.", + "title": "Operations Research and Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DBA5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Network Science & Analytics is a rapidly emerging field standing at the confluence of network theory, statistical analysis and business intelligence. In our increasingly networked society, social linkages affect all aspects of our daily life. Businesses too are embedded in complex economic networks which play an important role in influencing the profitability of organizations. The past decade has witnessed a surge in availability of data from various kinds of networks. The goal of this module is to introduce students to this field through a combination of network fundamentals, hands-on experience with computational techniques and datasets, and exposure to business applications.", + "title": "Introduction to Network Science & Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DBA5104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Fintech refer to emerging financial services (backed by technology). Technology companies are moving into financial services and financial institutions are looking to technology to enhance their services. As the two worlds merges, understanding of fintech will be increasingly relevant to the skillset of anyone seeking to work in technology or finance. This module provides a primer to current developments in fintech and the relevant technologies. Students will have an opportunity to learn from real world case studies and dive into technologies that are being used in the industry such as Blockchain and AI.", + "title": "Fintech, Enabling Technologies and Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DBA5105", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a foundation for data analytics techniques and applications. It aims at \n(1) Emphasizing on an understanding of intuitions behind the tools, and not on mathematical derivations;\n(2) Incorporating real-world datasets and analytics projects to help students bridge theories and practices; and\n(3) Equipping students with hands-on experiences in using data analysis software to visualize the concepts and ideas, and also to practice solving problems.\n \nThe module covers commonly used analytics tools such as logistic regression and decision tree. Students are expected to get their hands dirty by applying the tools in the analytics software.\n(99 words)", + "title": "Foundation in Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DBA5106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce typical functions and processes in traditional banking and services, and discuss in depth the latest development on how data and analytics enhance/accelerate those functions and processes. The future roadmap of banking is covered as well, together with fintech disruptions. Various data and analytics team structures are explored with their pros and cons.", + "title": "Data Analytics in Banking", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DBA5107", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a general introduction to advanced data analytics methods. It covers advanced decision tree techniques, support vector machine, unsupervised, semi-supervised and reinforcement learning. Machine learning models for text analysis will be covered. Students are expected to learn the methodological foundations of various machine learning and data mining algorithms, to understand the advantages and disadvantages of various methods, to use Python to run these data mining methods and to learn how to handle unstructured data for business analytics.", + "title": "Advanced Analytics and Machine Learning", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DBA5108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to provide an introduction to the probability and statistical methods used by financial institutions and supply chain managers to model market,\ncredit and operational risk. Topics addressed include loss distributions, multivariate models, dependence and copulas, extreme value theory, risk measures, risk aggregation, risk allocation and supply chain risk management.", + "title": "Quantitative Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DBA5109", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to the current frontier of technology innovation and basic knowledge about starting a high-tech innovation business. Students will learn how to:\n1) Recognise a tech start-up opportunity\n2) Evaluate a tech start-up idea\n3) Establish a tech company from scratch\n4) Create a good Business Plan and secure VC funding\n5) Grow the business\nThis module requires students to learn by analysing realworld start-up cases. Also, they will be tasked to find a tech start-up opportunity and write a business plan.", + "title": "Technology Innovation and Entrepreneurship", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "DBA5110", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a practical experience in applying data analytics to real-world problems in today\u2019s healthcare landscape. Students will (1) understand the current challenges in healthcare and how data analytics can be used to transform healthcare, (2) learn emerging analytics techniques and concepts that is commonly used in healthcare used cases, and (3) gain hands-on experiences in using data analytics to solve healthcare problems. The module covers concepts such as model interpretation, data drifts and techniques like graph database and Convolutional Network Visualisation. Students are expected to develop codes in the analytics software.", + "title": "Healthcare Transformation with Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DBA5111", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-07", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course bridges the divide between technical skills and business know-how. Students will engage in a series of business case study discussions, guided group projects, and a final semester project. Applications will cover areas such as real time analytics in supply chain, cross dock selection, inventory flow design, credit scoring, portfolio selection, risk management, asset pricing and implementation of banking regulation. Students practice using real-world tools.", + "title": "Hands-on with Business Analytics (Finance)", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DBA5121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This elective module provides a seminar-style platform for senior undergraduate students in the School of Design and Environment to examine the concept, design,\ndevelopment and management of sustainable cities. The main focus is integration, and topics include the concepts of sustainable cities, frameworks for designing, developing and managing sustainable cities, city dynamics, institutional design, socio-spatial issues, energy, infrastructure management, and urban trends.", + "title": "Seminars in Sustainable Cities", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DE4201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This module is an introduction to the systems and approaches used to meet the challenges of natural resource protection and conservation and the contributions that can be made to the sustainability development agenda. It provides an insight into the prediction of development impacts using assessment procedures designed to meet mandatory legal requirements. The course will include assessment methodologies used in predicting impacts and in the design of mitigation measures, and monitoring and audit processes. It will compare environmental management and assessment systems used in practice through case study research. Targeted Students - For students on the M.Sc. (Environmental Management) program. Research students and students from other graduate programmes in NUS may apply subject to suitability of candidate and availability of places.", + "title": "Environmental Management And Assessment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DE5106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - The module will introduce students to the multi-disciplinary nature of environmental planning, by exploring the basic principles of sustainable development and the physical planning instruments that can be employed to achieve it. The course will include an introduction to urban and regional planning theory as the framework for the discussion of environmental planning procedures. The decision environment involving the policy framework and resources, the use of strategic, sectoral, master and local plans, regulatory instruments, economic measures, participatory processes and public investment projects will be covered. Processes of identifying desired developments and intensities, site selection, planning, design and construction management, mitigation and augmentation of environmental impacts would be discussed. The course will include a master planning project, that will demonstrate the technical, decision-making and plan formulation, site planning and design procedures involved. Targeted Students - For students on the M.Sc. (Environmental Management) program. Research students and students from graduate programs in architecture and urban design may apply subject to suitability of candidate and availability of places.", + "title": "Environmental Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DE5107", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - Candidates are required to investigate a relevant topic of their choice in the field of environmental management. Targeted Students- For students on the M.Sc. (Environmental Management) program.", + "title": "Study Report", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "DE5108", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - Candidates are required to investigate a relevant topic of their choice in the field of environmental management. The study should include a literature review, application of appropriate research methodology and is expected to produce relevant findings for advancement of the understanding and management of the environment. Targeted Students - For students on the M.Sc. (Environmental Management) program.", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "DE5109", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This module introduces students to the basic concepts, operational skills, and applications of the Geographic Information Systems (GIS) in environmental assessment, planning, and management. On completion of the module students should have acquired: 1) \tan understanding of the nature of GIS and environmental data; 2)\tan appreciation of the utilities and limitations of GIS in environmental management \tdecision-making; 3)\tknowledge in GIS project design and implementation; and 4)\tskills in data input, manipulation, and modeling in a GIS environment. Major topics include GIS principles, vector and raster GIS, data input and editing, database query and analysis, global positioning systems (GPS), remote sensing and image processing, GIS applications in hazard assessment and management, and GIS design and implementation issues. Target Students - An Elective module for students on the M.Sc. (Environmental Management) program. Research students and students from other graduate programmes in NUS may apply subject to suitability of candidate and availability of pl.", + "title": "Gis For Environmental Studies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DE5110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Managing and ensuring the sustainable use of the marine environment in the tropics is one of man?s greatest challenges today. Tropical coastlines support some of the highest densities of human population worldwide. The high biodiversity in unique habitat also provide rich fisheries and mineral resources. Prudent management of such a complex ecosystem requires a good knowledge and understanding of not only its physical, chemical and biological components, but also the interactions between these components. The nature of these interactions is often unique to the tropics, and most of these are poorly understood. The module provides a systematic approach to understanding the nature of the tropical environment, drawing from local, regional and international examples. Impacts of human activities, and the tools and techniques needed for management, will be discussed. The course is directed at students at the post-graduate level from the M.Sc. (Environmental Management) Programme, but is also suitable for graduates in other faculties in the University interested in this field, particularly those in Science and Engineering.", + "title": "Managing the Tropical Marine Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DE5111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a project-based learning enabling students to learn practically how to apply their learnings in a practical, hands-on setting \u2013 learning and contributing at the same time. The community projects give the opportunity to play an active role in engaging, developing, and building sustainable and resilient communities. Students will be exposed to a range of community studies that will hone intellectual and practical skills that form an essential toolkit for future community leaders. The topic will be selected field related to renewable energy, waste management and biodiversity supervised by a faculty member at NUS. (", + "title": "Community Projects", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DE5112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main aim of this module is to arrive at set of economic policies that would facilitate sustainable development. These policies are demonstrated at both microeconomic and macroeconomic levels. The distinguishing feature of this demonstration is the recognition of the laws of thermodynamics and ecological resilience.\nThe microeconomic analysis will begin with a critical review of basic concepts pertaining to consumption, preferences, demand, production, costs and markets. The standard approaches to natural resource management would be then considered in the light of this critical review. The internalization of thermodynamic principles and other scientific paradigms into the analytic frameworks of microeconomics can prompt deviations from the standard approaches to resource management.\nThe macroeconomic analysis begins with methods of environmental accounting, which recognizes nature as capital besides labour and manufactured capital. The validity of this perception will be tested by recourse to a simple macroeconomic framework, which explicitly regards all natural resources as an aggregate item of capital. The class will be guided towards the formulation and application of this macroeconomic framework for the analysis of sustainable development.\nThe final section of the course concerns the assembly of various management policies that strive for sustainable development.", + "title": "Environmental Economics and Sustainable Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DE5269", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Urban Analysis Workshop", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DEP5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Planners deal with a myriad of issues and have to work with various planning processes to deal with them. From an expert driven blueprint to the bottom-up public engagement, there is a constant flow of data that directly and indirectly aid them in their work. This module aims to furnish students with the appropriate tools to use when dealing with qualitative data. Some of them include field study, survey and interview, questionnaire design and site inspections, which will be applicable to urban planning analyses. Students will appreciate the discourse on quantitative versus qualitative data and the central ideas in qualitative research - appropriateness of methods and theories; perspectives of the participants and their diversity; reflexivity of the researcher and the research; variety of approaches; and methods in qualitative research. The course emphasizes on \u201chands on\u201d with actual field work forming the bulk of the learning process and provides the opportunity for students to learn to collect, analyze and present qualitative data relating to planning and urban issues. This would encourage a better appreciation of the social issues in the urban context.", + "title": "Qualitative Methods for Urban Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DEP5101A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a thorough understanding of the urban planning modes and their historical and socioeconomical contexts. It covers zoning, planning modules and plan-making processes. Zoning as the most fundamental tool managing city development and urban life will be elaborated. Topics of the nature and characteristics of urban planning models such as the Utopian City, the Garden City, the City Beautiful, Neighbourhood Unit, and New Town movement, will be covered. The processes of plan-making will be discussed in the context of Singapore and other Asian countries.", + "title": "Urban Planning History & Theory", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DEP5102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops skills and mindsets for integrative thinking at vastly different scales. Students will be organised into teams and assigned a design and planning brief for a district in a city or metropolitan area that is impacted by regional dynamics and has regional implications. Students will undertake analysis at urban and regional scales to identify the key planning issues and to propose integrated and sustainable planning solutions.", + "title": "Urban and Regional Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "DEP5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module uses economic analysis to explain issues relating to policies and economics in urban and regional growth. Some of the topics covered include why cities exist, why firms cluster, and city growth, land rents and land use patterns, real estate cycles, land use planning, location decisions of firms, industries, and households, roles of local government, public finance and regional competitiveness policies. The prerequisite module is elementary microeconomics. I recommend students who lack this prerequisite knowledge to self-study microeconomics by reading any textbook in economics. A preparatory lecture note is also provided for those who lack the background.", + "title": "Urban and Regional Economics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DEP5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Urban Infrastructure and Mobility Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DEP5105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2_ER4-5", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Integrated Urban Planning Studio", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "DEP5106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "0800", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The dissertation offers the opportunity to conduct independent research and to demonstrate analytical and communication skills by investigating a topic of interest and of relevance to the urban planning. The length of the dissertation shall be no more than 10,000 words.", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "DEP5107", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The MUP Internship Module offers the opportunity to gain practical experiences in urban planning and research in a professional environment. The internship must cover 2 working days (16 hours) per week during a period of 3 months. Students must participate in relevant planning and/or research projects, their work must be supervised and evaluated by the program director of MUP or an appointed tutor of the programme. For the evaluation, students must write a monitoring internship report, in which they reflect their experiences. The internship position may be self-sourced or organised through the Departments of Architecture or Real Estate. Self-sourced positions have to be reviewed by the internship advisor of the departments, before it can be approved for credits.", + "title": "MUP Internship Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "DEP5108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "DEP5109 is the last studio project of the MUP programme.\nIn coordination with the supervising tutor(s), students can\nchoose topic and content of an individual final project\n(master project) in the field of urban planning. The aims of\nthe module are twofold: On the one hand students should\nprove their ability to undertake complex urban planning\nand research projects on an individual basis. On the other\nhand students have the opportunity to specialise\nthemselves with a project in a specific field of urban\nplanning that align their individual interest and their\nintended professional perspective.", + "title": "Integrated Planning Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "DEP5109", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "DEP5110 is the second studio module of the MUP programme, including two different scale levels of Urban Planning: the level of urban design on local level (precinct and neighbourhood) and the level of urban planning at a larger township scale. Students work at choice in different subgroups learning to deal with the two scales of design and planning via an integrated assignment (urban design and urban planning). The results will be confronted with each other to discuss scale dependency as well as methodological implications of design and planning approaches.", + "title": "Urban Design and Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "DEP5110", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will acquaint students with the state of the art of planning technologies and research questions from practice.\nThe module is structured to give students an introduction to data science and basic programming, leading to the state of the art of planning technologies, which will be taught by external lecturers from practice. The students will work on real-world urban planning problems using contemporary tools and developing own solutions.", + "title": "Planning Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DEP5111", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of DEP5112 is to introduce MUP Year 1 students to the comprehensive urban planning policies and processes by reviewing planning practices and tools that are commonly used. As a graduate course, broad overviews of both the fundamental knowledge and technical skills will be provided. Using the City of Singapore as the students\u2019 planning laboratory, students are expected to understand the city by using tools such as demographics, land use and zoning analysis, travel patterns, housing affordability, economic sectors, and urban, all of which should have informed decisions to make functional urban plans in Singapore.", + "title": "Planning Policy and Process", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DEP5112", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR1-2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Working with quantitative data is common in the planning profession. This module provides planning students with an introduction to the quantitative methods and techniques used in planning practice and urban research. It will prepare students to conduct basic statistical analysis of data themselves as well as to critically review analyses prepared by others. The emphasis is on how to develop sound arguments and research design, such that students appreciate both the power and limitation of quantitative analysis in planning discussions.", + "title": "Quantitative Methods for Urban Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DEP5113", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ER1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to assist the Master of Urban Planning programme students in their studio projects and is dedicated to discovering new tools and methods of Geographical Information Systems (GIS) applied to the field of urban planning. During the semester, students will learn about advanced field analytics, network dynamics, environmental analytics and others. Apart from that, students will learn to develop their own models and methods in PyQGIS.", + "title": "Advanced GIS for Urban Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DEP5114", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module theoretically and empirically investigates the existing paradigms and emergent challenges of urbanization in contemporary China. The module has weekly topics that were identified to help students engage in major topics of urbanization in China. These topics include the shifting state-business and state-society relationships in urban development and spatial production, the transforming design practice, the economics of land and housing, and emergent demographic and environmental challenges. Supported by reading materials and class discussions, students will work in teams as well as independently on selected topics to identify the shifts and investigate the forces behind them.", + "title": "Urbanization in China and Emergent Issues", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DEP5116", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Graduate Diploma in Dental Implantology is aimed at provided a sound scientific grounding and clinical training in implant dentistry. This course is designed mainly for practising general dental practitioners who are interested in the field of dental Implantology.\n\nThis course will be a part-time course to cater to the needs of dental practitioners who will usually only be able to emabark in part-time programmes.", + "title": "Dental Implantology", + "faculty": "Dentistry", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DI5100", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Locally, the population is ageing quickly. Oral health is an integral and pivotal part of overall health especially for the elderly. The Graduate Diploma in Geriatric Dentistry aims to empower practising dental practitioners to meet the oral health needs of the elderly. The programme will expose participants to clinical and public health aspects of geriatric dentistry hence equipping them with a holistic and comprehensive set of evidence-based skills to manage oral conditions in the elderly and improve their oral health.", + "title": "Graduate Diploma in Geriatric Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "DI5200", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital Organisation Model enables participants to acquire skill set to analyse, evaluate the different digital organisation models and the implementation considerations for such models. Some topics covered include SWOT analysis on leveraging Industry 4.0 and Smart Nation trends and opportunities, evaluation of digital model archetypes, building blocks of digital organisation, applying technology innovation with business innovations etc.", + "title": "Digital Organisation Models", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Frontier", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Frontier", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Frontier", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Frontier", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Frontier", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Frontier", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital Organisation Model enables participants to acquire skill set to analyse, evaluate the different digital organisation models and the implementation considerations for such models. Some topics covered include SWOT analysis on leveraging Industry 4.0 and Smart Nation trends and opportunities, evaluation of digital model archetypes, building blocks of digital organisation, applying technology innovation with business innovations etc.", + "title": "Digital Organisation Models", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5101P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Digital Agility and Change Leadership enables participants to acquire skill set to lead their organisation with abilities to sense, response and adapt quickly to market changes and evolving customer needs in a complex and volatile digital business environment today. Some topics covered include practices of agile leadership style, implementation of agile practices, adopting digital first mind-set and developing cohesive change leadership strategies to increase organisation\u2019s agility and digital quotient.", + "title": "Digital Agility and Change Leadership", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2300", + "weeks": [ + 7, + 9, + 11, + 13 + ], + "venue": "Pinnacle", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7, + 9, + 11, + 13 + ], + "venue": "Pinnacle", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital Agility and Change Leadership enables participants to acquire skill set to lead their organisation with abilities to sense, response and adapt quickly to market changes and evolving customer needs in a complex and volatile digital business environment today. Some topics covered include practices of agile leadership style, implementation of agile practices, adopting digital first mind-set and developing cohesive change leadership strategies to increase organisation\u2019s agility and digital quotient.", + "title": "Digital Agility and Change Leadership", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5102G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Pinnacle", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital Agility and Change Leadership enables participants to acquire skill set to lead their organisation with abilities to sense, response and adapt quickly to market changes and evolving customer needs in a complex and volatile digital business environment today. Some topics covered include practices of agile leadership style, implementation of agile practices, adopting digital first mind-set and developing cohesive change leadership strategies to increase organisation\u2019s agility and digital quotient.", + "title": "Digital Agility and Change Leadership", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5102P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Innovation by Design enables participants to acquire skill set to re-imagine organisation innovation and transform business with innovative product and services through strategies such as design thinking and adaptation of digital technologies. Some topics covered include applying design approaches such as customer-centricity, creative ideation and rapid experimentation to transform customer experience, leadership roles to foster organisation innovation culture, leveraging on open innovation ecosystem etc.", + "title": "Innovation By Design", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-03-18", + "end": "2023-04-29", + "weeks": [ + 1, + 3, + 4, + 5, + 7 + ] + }, + "venue": "Pinnacle", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2200", + "weeks": [ + 11 + ], + "venue": "Pinnacle", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 9 + ], + "venue": "Pinnacle", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Innovation by Design enables participants to acquire skill set to re-imagine organisation innovation and transform business with innovative product and services through strategies such as design thinking and adaptation of digital technologies. Some topics covered include applying design approaches such as customer-centricity, creative ideation and rapid experimentation to transform customer experience, leadership roles to foster organisation innovation culture, leveraging on open innovation ecosystem etc.", + "title": "Innovation By Design", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5103P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Digital Leadership Capstone project will provide students with the opportunity to practice their newly acquired digital leadership knowledge for a real company or organization. The project will bring together the disciplines that the students have learnt, and require them to reflect, synthesize and apply what they have learnt in the course modules in the real world context.\nIn small teams, the students will be required to progressively compile their portfolio of analysis, findings and recommendations on the target company during the course and finally demonstrate their ability to present and communicate their final recommendations at the executive level.", + "title": "Digital Leadership Capstone Project", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "DL5107", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Digital Leadership Capstone project will provide students with the opportunity to practice their newly acquired digital leadership knowledge for a real company or organization. The project will bring together the disciplines that the students have learnt, and require them to reflect, synthesize and apply what they have learnt in the course modules in the real world context. In small teams, the students will be required to progressively compile their portfolio of analysis, findings and recommendations on the target company during the course and finally demonstrate their ability to present and communicate their final recommendations at the executive level.", + "title": "Digital Leadership Capstone Project", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "DL5107C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": { + "start": "2022-11-14", + "end": "2022-11-14" + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Strategic Thinking & Foresight enables participants to acquire skill set for strategic thinking and robust foresight that enable leaders to identify and implement digital transformation for organisation to realise the opportunities and manage risk of disruptive technological, economic and social change. Some topics covered include application of strategy framework for digital transformation, sense-making techniques, trends, horizon scanning & market driver analysis for digitalisation, scenario planning & strategy development, building digital capacity etc.", + "title": "Strategic Thinking & Digital Foresight", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-01-27", + "end": "2023-03-03", + "weeks": [ + 1, + 3, + 5, + 6 + ] + }, + "venue": "Pinnacle", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-28", + "end": "2023-03-04", + "weeks": [ + 1, + 3, + 5, + 6 + ] + }, + "venue": "Pinnacle", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Strategic Thinking & Foresight enables participants to acquire skill set for strategic thinking and robust foresight that enable leaders to identify and implement digital transformation for organisation to realise the opportunities and manage risk of disruptive technological, economic and social change. Some topics covered include application of strategy framework for digital transformation, sense-making techniques, trends, horizon scanning & market driver analysis for digitalisation, scenario planning & strategy development, building digital capacity etc.", + "title": "Strategic Thinking & Digital Foresight", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5201P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Digital Business Strategy enables participants to acquire skill set for creating digital business strategy and developing the digital product/service portfolio to create and transform the business. Some topics covered include frameworks and strategies for creating a digital business, developing the digital product/ service portfolio &transformation roadmap, valuing and justifying business case for digitalisation, leadership skills to collaborate with key stakeholders to drive and evolve the digital strategy etc.", + "title": "Digital Business Strategy", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-08-06", + "end": "2022-09-17", + "weekInterval": 2 + }, + "venue": "Pinnacle", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2300", + "weeks": { + "start": "2022-08-05", + "end": "2022-09-16", + "weekInterval": 2 + }, + "venue": "Pinnacle", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital Business Strategy enables participants to acquire skill set for creating digital business strategy and developing the digital product/service portfolio to create and transform the business. Some topics covered include frameworks and strategies for creating a digital business, developing the digital product/ service portfolio &transformation roadmap, valuing and justifying business case for digitalisation, leadership skills to collaborate with key stakeholders to drive and evolve the digital strategy etc.", + "title": "Digital Business Strategy", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5202P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Mastering Digital Architecture enables participants to acquire skill set to evolve enterprise IT architecture in the context of digital transformation and to design the digital architecture that is flexible, scalable and adaptable to changes that enable business to be disruptive and innovative. Some topics covered include analysing architectural trends for digital transformation, design and implementation considerations for a digital architecture to support new business models and emergent technologies, Platform architecture, best practices and governance of digital architecture etc.", + "title": "Mastering Digital Architecture", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-01-27", + "end": "2023-02-24", + "weekInterval": 2 + }, + "venue": "Influence", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-28", + "end": "2023-02-25", + "weekInterval": 2 + }, + "venue": "Influence", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-01-06", + "end": "2023-01-06" + }, + "venue": "Blue_Ocean", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-07" + }, + "venue": "Blue_Ocean", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Mastering Digital Architecture enables participants to acquire skill set to evolve enterprise IT architecture in the context of digital transformation and to design the digital architecture that is flexible, scalable and adaptable to changes that enable business to be disruptive and innovative. Some topics covered include analysing architectural trends for digital transformation, design and implementation considerations for a digital architecture to support new business models and emergent technologies, Platform architecture, best practices and governance of digital architecture etc.", + "title": "Mastering Digital Architecture", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5203P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Talent & Leadership Pathways enables participants to acquire skill set to lead high-performing digital workforce, drive change and interact strategically across boundaries with multiple stakeholders in the complex business environment, through developing leadership quality such as self-awareness, strategic thinking, and influencing skills. Some topics covered include creating responsive organisation, developing competencies of the digital leader, harnessing talent from everywhere and the learning pathways and development for future-ready digital workforce etc.", + "title": "Talent and Leadership Pathways", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-08-06", + "end": "2022-09-10", + "weeks": [ + 1, + 2, + 4, + 6 + ] + }, + "venue": "Influence", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2022-08-05", + "end": "2022-09-09", + "weeks": [ + 1, + 2, + 4, + 6 + ] + }, + "venue": "Influence", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Talent & Leadership Pathways enables participants to acquire skill set to lead high-performing digital workforce, drive change and interact strategically across boundaries with multiple stakeholders in the complex business environment, through developing leadership quality such as self-awareness, strategic thinking, and influencing skills. Some topics covered include creating responsive organisation, developing competencies of the digital leader, harnessing talent from everywhere and the learning pathways and development for future-ready digital workforce etc.", + "title": "Talent and Leadership Pathways", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5301P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Managing Digitalisation Complexity enables participants to acquire skill set to deal with volatility, uncertainty, complexity, ambiguity (VUCA) and rapid changes to sustain competitive advantage in a complex digital economy. Some topics covered include system thinking, complex project management, scaling enterprise product management, strategies for crisis management, driving process and operational excellence, leading networked organisations, managing complexity in global workforce etc.", + "title": "Managing Digitalisation Complexity", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-03-11", + "end": "2023-04-29", + "weekInterval": 2, + "weeks": [ + 1, + 3, + 6, + 8 + ] + }, + "venue": "Influence", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2023-03-10", + "end": "2023-04-28", + "weekInterval": 2, + "weeks": [ + 1, + 3, + 6, + 8 + ] + }, + "venue": "Influence", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Managing Digitalisation Complexity enables participants to acquire skill set to deal with volatility, uncertainty, complexity, ambiguity (VUCA) and rapid changes to sustain competitive advantage in a complex digital economy. Some topics covered include system thinking, complex project management, scaling enterprise product management, strategies for crisis management, driving process and operational excellence, leading networked organisations, managing complexity in global workforce etc.", + "title": "Managing Digitalisation Complexity", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5302P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Digital Governance enables participants to acquire skill set to develop digital governance framework for establishing accountability, key roles and decision-making authority for an organization\u2019s digital strategy that are aligned to corporate governance, policies and management structure. Some topics covered include evolving traditional IT governance, risk and compliance model to meet requirements of digital business, collaborating with senior management and key stakeholders, establishing linkages between digital and broader corporate governance practices to ensure effective risk and performance management etc.", + "title": "Digital Governance", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-24", + "end": "2022-11-05", + "weekInterval": 2 + }, + "venue": "Pinnacle", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2200", + "weeks": { + "start": "2022-09-23", + "end": "2022-11-04", + "weekInterval": 2, + "weeks": [ + 1, + 3, + 7 + ] + }, + "venue": "Pinnacle", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2200", + "weeks": [ + 9 + ], + "venue": "Influence", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital Governance enables participants to acquire skill set to develop digital governance framework for establishing accountability, key roles and decision-making authority for an organization\u2019s digital strategy that are aligned to corporate governance, policies and management structure. Some topics covered include evolving traditional IT governance, risk and compliance model to meet requirements of digital business, collaborating with senior management and key stakeholders, establishing linkages between digital and broader corporate governance practices to ensure effective risk and performance management etc.", + "title": "Digital Governance", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DL5303P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201CLS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1201TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202CLS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMA1202TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301CLS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMA1301TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401CLS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401L01", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401LAF", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401PH", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1401TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMA1402L01", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1201ACC", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1201BSP", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1201DAO", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0509", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0509", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1201DO", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1201FIN", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1201MKT", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1201MNO", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1202ACC", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1202BSP", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1202DAO", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1202DO", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1202FIN", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1202MKT", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMB1202MNO", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMB1203ACC", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMB1203BSP", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMB1203DAO", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMB1203DO", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMB1203FIN", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMB1203MKT", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMB1203MNO", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMB1204ACC", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMB1204BSP", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMB1204DAO", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMB1204DO", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMB1204FIN", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMB1204MKT", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMB1204MNO", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMC1401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMC1401CS", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMC1401IS", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMD1401ARA", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMD1401ARB", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMD1401ARC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMD1401PF", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DMP1201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DMP1202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMR1201GC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMR1201GEQA", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G01", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMR1201WRA", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMR1201WRB", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMS1401CM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMS1401FST", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMS1401LS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMS1401MA", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMS1401PC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMS1401SP", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMS1401ST", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMS1401ZB", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DMX1101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DMX1101AI", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DMX1101CT", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DMX1102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DMX1103", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DMX1104", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DMX1105", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DMX1106", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DMX1107", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DMX1108", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMX1201", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMX1201AI", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMX1201CT", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMX1202", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMX1203", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMX1204", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMX1301", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMX1301AI", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMX1301CT", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "DMX1302", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMX1401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMX1401AI", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMX1401CT", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMX1402", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "DMX1501", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "DMX1501AI", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "DMX1501CT", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "DMX1601", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "7", + "moduleCode": "DMX1701", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "DYOM via edX MOOC", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "DMX1801", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DMY1201RF", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401ACT", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401EH", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401ELC", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401FA", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401HL", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401KE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401LED", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401PGP", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401PSP", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401RF", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401SOG", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401TH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401TSG", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Your Own Module", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DMY1401TT", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course considers the operation of a supply chain from a managerial perspective, serving two main objectives to provide tools for design, analysis, management and performance improvement of supply chains, and to introduce and discuss recent influential innovations in supply chain management such as B2B portals. Students will be taught to appreciate the need to balance between responsiveness and efficiency in the four major components of the chain Inventory, Transportation, Facilities, and Information. These four components will be introduced to the students through suitable mathematical and behavioural models. It is recommended that students have some understanding of the Internet and e-business.", + "title": "Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-05", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary aim of this course is to get students interested in and acquainted with the fundamental concepts, models and instruments in purchasing and materials management. Key areas like buying supplies, logistics, contracts, stock and inventory control, distribution and warehouse management will be covered. Some insights into the current developments and biggest problem areas in this field are provided. A combination of informative and interactive lectures and application-oriented case assignments will be used for the pedagogy and considerable attention is devoted to the discussion of practical / managerial issues.", + "title": "Procurement Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide a comprehensive and systematic coverage of managing operations in service or service-oriented organisations such as banks, hospitals, airlines, retail outlets, restaurants and consultant agencies. Specifically, students will focus on the problems and analysis relating to the design, planning, control and improvements of service operations. Topics covered include service strategy, system design, location and layout of service systems, resource allocation, workshift scheduling, vehicular scheduling and routing, and service quality. This course is essential for students wishing to work in service or service-oriented environments.", + "title": "Service Operations Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will present a strategic perspective of the operations function and establish the close link between operations management and competitive success. Students completing the course should be in position to analyze the key role of operations in the entire corporate strategy and formulate a consistent operations strategy. Our focus will be on the analysis and design of business processes that ensure the most effective and efficient utilization of resources and delivery of products/services. We will juxtaposition operations concepts with elements from finance, economics and strategy. We will establish how many firms leverage their operations as their key strategic advantage.", + "title": "Operations Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3704", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course helps students to learn about the strategic importance of good distribution planning and operations. A strategic framework of physical distribution design is presented to help build critical managerial skills for decision making in the management of physical distribution and transportation of goods and services. The course emphasizes the application of quantitative and analytical techniques to physical distribution system design (facility location, vehicle routing and fleet planning) and transportation management in Asia. Some programming knowledge of Visual Basic is assumed. Where available, Asian cases will used to highlight and educate the reader on unique business operations in this region.", + "title": "Physical Distribution Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3712", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Many organizations recognize that introducing new products, processes, or programs in a timely and cost effective manner requires professional project management. This module covers all aspects of project management at an introductory level. Students of the module are expected to gain a fundamental understanding of the planning issues and tradeoffs that arise in project management, and then develop various tools and techniques that help in managing projects better. Some of the specific topics we will discuss include project selection, project teams and organizational issues, project monitoring and control, project risk management, project resource management, and managing multiple projects.", + "title": "Project Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3713", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to study how a company can use its operations to improve environmental performance and contribute to business success at the same time.", + "title": "Sustainable Operations Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3714", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Ops & Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Ops & Supply Chain Management (2 MC)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DOS3752", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a course in some specialised area of operations and supply chain management that is not already covered by the existing modules. The topics offered could be of particular contemporary relevance or of significant current interest to industry. Examples of such topics include logistics processes, project management, Asian supply chain management, supply chain in the e-Business era, and operations in financial services.", + "title": "Topics in Operations & Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a course in some specialised area of operations and supply chain management that is not already covered by the existing modules. The topics offered could be of particular contemporary relevance or of significant current interest to industry. Examples of such topics include logistics processes, project management, Asian supply chain management, supply chain in the e-Business era, and operations in financial services.", + "title": "Topics in Operations & Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3761X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a course in some specialised area of operations and supply chain management that is not already covered by the existing modules. The topics offered could be of particular contemporary relevance or of significant current interest to industry. Examples of such topics include logistics processes, project management, Asian supply chain management, supply chain in the e-Business era, and operations in financial services.", + "title": "Topics in Operations & Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3761Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a course in some specialised area of operations and supply chain management that is not already covered by the existing modules. The topics offered could be of particular contemporary relevance or of significant current interest to industry. Examples of such topics include logistics processes, project management, Asian supply chain management, supply chain in the e-Business era, and operations in financial services.", + "title": "Topics in Operations & Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3761Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In a modern digitalised economy, organisations need to\nbe innovative, and the ability of managers to understand\nand manage innovation has become a necessity to help\ntheir companies adapt and compete in the dynamic\nbusiness environment. Advances in technology and the\ngrowing digitalization of business has brought about\nincreased collection and availability of data. It is\nimperative that firms leverage on data analytics to\nenhance efficiency and effectiveness of business\noperations, thereby enhance the differentiation and\ncompetitive advantage of the firm. This course is directed\nat business managers who must understand the\nimportance and impact of technology and business\ninnovation.", + "title": "Technology and Business Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS3811", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through interactive learning (\u201cLearn, Dream, Make\u201d) this module trains students to tackle real-world problems with real-world solutions.\n\nStudents explore contemporary issues in supply chain management through guided analysis of case examples, design and build of an app and development of a basic business plan to support their proposed solutions.\n\nPractical experience in the tools and techniques for delivering actionable intelligence complements skills in understanding and navigating organisational behaviour.", + "title": "Supply Chain Applied Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS4711", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Supply chains have become far-flung and global as companies expand their operations to new markets and new supply sources. Concurrently, a number of macro-trends are emerging and evolving which cause changes to traditional supply chains structures and assumptions. These include changing macroeconomic environments, impact of new technologies, changing company strategies and new regulations.\nCompanies will have to continuously evaluate their strategies and adapt their supply chains to deal with these changes. They will need to improve their flexibility, coordination, and responsiveness to deal with the risks and opportunities.", + "title": "Co-ordination and Flexibility in SCM", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS4712", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Service design is a process that seeks to understand ways to develop the environments and programs that lead to a high level of service quality. Often times, the success of a business is dependent on the quality of service that is provided to its customers. This is most evident in businesses where there is a blurry line between product and service. When the ultimate product is service, the quality of this service is the main element that can predict the success and profitability of the company.", + "title": "Service Design", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS4714", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This Lean Six Sigma course aims to equip students with insights, tools and techniques which can be easily deployed to reduce non-value add activities and set SMART goals for business. In this module, students will learn proven principles of operational excellence, tools and their association with business situations to become agile. The following will be covered 1) Lean Six Sigma as a key driver for sustainable competitive advantage, 2) How to leverage on Lean Six Sigma to create value both in manufacturing and services, and 3) What it takes to drive Lean transformation and build a culture of continuous improvement", + "title": "Lean Principles for Operational Excellence", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS4715", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Ops & Supply Chain Mgt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS4751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Ops & Supply Chain Mgt (2 MC)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DOS4752", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed primarily to provide B.B.A./B.B.A.(Acc.) Honours students specialising in operations and supply chain management with an opportunity for advanced study in that concentration. The course would be research-oriented involving extensive literature reviews. Students will be expected to read journal articles and make presentations on topics relevant to the module.", + "title": "Seminars in Operations and Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS4761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Visualization is an invaluable tool for supporting analysis and decision making in modern business. Students will: (i) manipulate relational data sets, aggregate the data and generate visual representations; (ii) build a thorough understanding of data aggregation processes; (iii) learn to use interactivity to support data exploration and counterfactual (\u201cwhat-if\u201d) analysis; and (iv) learn how to communicate ideas effectively with data.\n\nThis course will include a substantial hands-on-learning component, and supports the development of highly marketable skills in visualization. Applications will be drawn from operations, supply chain management and other aspects of business.", + "title": "Data Visualisation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS4811", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The information age has brought with it a host of new technologies - and an overabundance of choices. Businesses are faced with myriad ways of identifying, developing or acquiring and deploying technologies. Organisations of different sizes in different clusters will have different technology needs at various stages of their growth. Different types of technology bring about different types of organizational change, and managers should tailor their own roles accordingly. Technology for organisational productivity and technology to enable the organisation to create new revenue streams need to be differentiated and tackled with different methodologies. Categorizing technologies in this manner can help leaders determine which technologies and when to invest in and how they can assist organizations in making the most of them.", + "title": "Business-Driven Technology", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS4812", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to help students improve problem solving skills in business settings. It will introduce a systematic approach to identify, structure, and solve problems under uncertainty and complexity. This course will emphasize a set of thinking principles and practical tools that are broadly applicable to solving managerial problems. The module is offered as an elective in the Operations and Supply Chain Management specialization and Business Analytics specialization.", + "title": "Managerial Problem Solving", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DOS4813", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Supply chains have become far-flung and global as companies expand their operations to new markets and new supply sources. Concurrently, a number of macro-trends are emerging and evolving which cause changes to traditional supply chains structures and assumptions. These include rising costs in the usual outsourcing manufacturing sites, entering into emerging markets, changing country regulations and regional trade agreements, impact of technologies on new business models and process changes, cross-border M&A, and emerging marketing companies expanding regionally, etc. Companies will have to continuously evaluate their strategies and adapt their supply chains to deal with these changes. They will need to improve their flexibility, coordination, and responsiveness to deal with the risks and opportunities.", + "title": "Supply Chain Coordination and Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DOS5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will look at how supply chain management can be used effectively to improve financial performance. It will look at management trade-offs between long-term and short-term supply chain decisions. It will also look how companies improve their cash flow using better inventory management and supply chain financing. Participants will also form teams to play a supply chain simulation game. It requires teams to make annual supply chain management decisions that will impact revenue growth, cut costs, and/or manage risks of the company, taking into consideration management trade-offs and both short-term and long-term profitability, with an overall strategic plan.", + "title": "Managing the Financial Supply Chain", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "DOS5101A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "HSS-04-01", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Supply chains have become far-flung and global as\ncompanies expand their operations to new markets and\nnew supply sources. Concurrently, a number of macrotrends in outsourcing, near-shoring, changing country\nregulations and regional trade agreements, impact of\ntechnologies and new business models., new logistics\ninfrastructure, etc, are emerging. These cause changes\nand evolution of traditional supply chains structures and\nassumptions.\nCompanies will have to continuously evaluate their\nstrategies and adapt their supply chains to deal with these\nchanges. They will need to improve their flexibility,\ncoordination, and responsiveness to deal with the risks\nand opportunities.", + "title": "Supply Chain Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "DOS5101B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Business analysts and consultants hold strategic positions within the knowledge-oriented firm. They play a major role in making the Supply Chain, Marketing, Finance and HR departments more efficient, customer-centric and profitable. The course prepares participants for the work environment and the diverse challenges faced by business analysts and consultants. Specifically, they will develop analytical models and gain experience with software used in the industry to garner insights into contemporaneous managerial challenges such as optimization of resources, pricing, business expansion decisions, risk management etc.", + "title": "Analytical Tools for Consulting", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DOS5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Analytics have been used to uncover the tightest of\nbottlenecks, fine-tune processes to save the most time,\nand alleviate operation teams\u2019 most persistent frustrations,\nall for delivering goods and services in the most\ncompetitive way.\nThis module is an introduction to analytics from a\nconsulting perspective. We will deal with a wide range of\nindustry segments and varied interactive functional areas,\nand analyse issues as a consultant would approach them,\nusing a gamut of analytics tools.\nDSC5222B Analytics for Consulting \u2013 Part 2 will build on\nthe foundations and tools covered in this Part.", + "title": "Analytics for Consulting - Part 1", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "DOS5102A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In DSC5222A Analytics for Consulting \u2013 Part 1, an\nanalytics foundation was laid for the analytics-inclined\nwould-be consultant who aims to champion decisionmaking using the data dimension within clients\u2019\norganization. This module continues building quantitative\nknow-hows for the sought-after pilots on the data super\nhighway.", + "title": "Analytics for Consulting - Part 2", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "DOS5102B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the emerging dynamics that drive optimization and risk management in today\u2019s increasingly complex international supply chains. The impact of disruptive technolgies such as the industrial Internet of things (IIOT), the Cloud and real-time data analytics will be factored into ongoing discusions and case studies.\n\nStudents will learn about other influential factors impacting cross-border supply chains, including global trade management, tax regimes, export controls and sactions, environmentally \u201cgreen\u201d standards, and ethical/anti-corruption regulations.", + "title": "Global Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DOS5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module uses case studies to demonstrate that focus on reducing environmental impact not only allowed companies to comply with increased regulations to reduce footprints but also to reduce their costs, to improve the quality of their products/services and to enhance the reputation of their brands. Many multinational companies have started to reap the benefits from investing in clean technology and building sustainability into their supply chain operations. The objective of this course is to study how a company can reshape its supply chain and operations to improve environmental performance and contribute to business success at the same time.", + "title": "Sustainable Supply Chains", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DOS5104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The increasing prevalence of e-commerce for B2C sales, especially post-Covid-19 pandemic, is leading to requirements for careful planning of logistics operations, including warehouse design, global freight transportation, network planning, and last-mile delivery. At the same time, companies need to look at how they can streamline procurement processes and improve sourcing for logistics reliability and supply chain resilience. This course looks at these issues related to procurement and logistics operations and planning to derive competitive advantage by reducing total logistics costs and improving supply chain resilience. Cases to illustrate the concepts and management tools will be discussed.", + "title": "Logistics Operational Planning and Procurement", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DOS5105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Interest in supply chain management, both in industry and in academia, has grown rapidly over the past three decades, and continues to grow. While many companies recognize the importance of analysing their supply chains, most of them perform the analysis using experience and intuition with very few analytical models. In contrast, the academic community has developed various models and tools for supply chain management. This course intends to fill this gap by discussing state-of-the-art models, strategies, and solution methods that are important for supply chain management. Impact of trade tension and disruption caused by COVID-19 will be discussed too.", + "title": "Supply Chain Models and Strategies", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DOS5106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Trade and global supply chains are interlinked in many ways, in areas such as sourcing, freight, customs duties, and financing. In recent years, trade issues have come to the fore, with potential to affect global supply chain structures. This course will cover considerations for international trade such as comparative advantage, new market entry, use of incoterms, and trade documentation. It will also look at how supply chain finance can be used as tools to improve cash flow, and different types of financing mechanisms.", + "title": "International Trade and Supply Chain Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "DOS5107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The abundance of data being harvested from various sectors of today\u2019s society increases the demand for skilled data science practitioners. This module introduces foundational data science concepts to prepare students for tackling real-world data analytic challenges. Major topics include basic concepts in probability and statistics, data manipulation, supervised and unsupervised learning, model validation and big data analysis, alongside special topics discussed in guest lectures delivered by practicing data scientists from government and industry. Throughout the course, students will learn fundamental R programming skills to implement and apply the data science methods in motivating realworld case studies from diverse fields.", + "title": "Introduction to Data Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 300, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 280, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide participants with a foundation on what data science is. There will be a focus on linking business questions to statistical techniques, and linking analytical results to business value.\n\nBy the end of the course, participants will know how to make sense of data using simple statistical techniques and how best to visualize data. Two software that are very widely used in the data science industry will be introduced in this class: Tableau for data visualisation and presentation, and Python for data analysis.", + "title": "Introductory Data Science with Python and Tableau", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA1361", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1300", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-06" + }, + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1300", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-05" + }, + "venue": "S14-0620", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1300", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-04" + }, + "venue": "S14-0620", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1300", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-03" + }, + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1300", + "weeks": { + "start": "2023-06-23", + "end": "2023-07-07" + }, + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data visualisation is an essential tool for data analytics. This module is an introduction to data cleaning, exploration, analysis and visualisation. Students will learn how to take raw data, extract meaningful information, use statistical tools, and make visualisations. Topics include programming in R, introduction to data storage systems, data manipulation, exploratory data analysis, dimension reduction, statistical graphics for univariate, multivariate (high-dimensional), temporal and spatial data, basic design principles and critical evaluation of visual displays of data.", + "title": "Essential Data Analytics Tools Data Visualisation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "9", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Monday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 47, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Friday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at introducing basic concepts and wellestablished\nnumerical methods that are very related to the\ncomputing foundation of data science and analytics. The\nemphasis is on the tight integration of numerical\nalgorithms, implementation in industrial programming\nlanguage, and examination on practical examples drawn\nfrom various disciplines related to data science. Major\ntopics include: computer arithmetic, matrix multiplication,\nnumerical methods for solving linear systems, least\nsquares method, interpolation, concrete implementations\nin industrial program language, and sample applications\nrelated to data science.", + "title": "Essential Data Analytics Tools: Numerical Computation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Friday", + "lessonType": "Lecture", + "size": 380, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 380, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Thursday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 1ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DSA2310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "DSA2312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "DSA2313", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course uses data analytics to analyse customer lifetime value, identify high value customers, and customers to upsell and cross-sell to. Students would learn how this enables businesses to devise customer retention campaigns, customer profiling and segmentation strategies and product marketing This course would cover the following key techniques used to derive actionable insights Descriptive Statistics, RFM Modelling, Customer Segmentation, Customer Profile, Customer Lifetime Value, Market Basket Analysis, Association Rule Mining, and Product Recommendation & Marketing Strategy. The software programming language used in this course is R programming.", + "title": "Data Analytics for Customer Insights", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA2361", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Decision tree methods predict the value of a target variable by learning simple decision rules from the data. In this module, participants will learn decision tree methods and how to use software to build predictive models and score variables in terms of their importance. They will use real data to compare the strengths and weaknesses of decision tree models with those obtained by linear and logistic regression and discriminant analysis. Participants will also learn how to handle data with missing values without requiring prior imputation. Possible applications include economic surveys, credit card data, vehicle crash tests data and precision medicine.", + "title": "Decision Trees for Machine Learning and Data Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA2362", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-06" + }, + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": { + "start": "2023-06-23", + "end": "2023-07-07" + }, + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-04" + }, + "venue": "S14-0620", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-05" + }, + "venue": "S14-0620", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-03" + }, + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to be a continuation of DSA1101 Introduction to Data Science. It focuses on data science methodology and the ability to apply such methodology to practical applications. Real-world problems will be provided by both industrial and academic partners in domains such as transportation, consulting, finance, pharmaceutics, life sciences and physics.", + "title": "Data Science in Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Tutorial", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Convex optimisation is an indispensable technique in\ndealing with high-dimensional structured problems in data\nscience. The module covers modelling examples; basic\nconcepts for convex functions and sub-gradients; gradient\nand sub-gradient methods; accelerated proximal gradient\nmethods; stochastic block coordinate descent methods;\nLagrangian duals; splitting algorithms and implementations.", + "title": "Essential Data Analytics Tools: Convex Optimisation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA3102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Lecture", + "size": 290, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 270, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DSA3310", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. It gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students from Cohorts AY2020/2021 and before, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DSA3311", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 16-20 weeks during regular semester. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "FOS Undergraduate Professional Internship Programme 3S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "DSA3312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduates students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 3S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "DSA3313", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data analytics refers to the process of examining data sets to extract the information they contain. It may be of interest to understand how one set of \u201coutput\u201d variables in the data set depends on another set of \u201cinput\u201d variables. This module introduces students to commonly used techniques in inferential analytics. Topics include parameter estimation, assessing the precision of estimates, linear regression (model building, interpretation and diagnosis), resampling methods, logistic regression, trade-off between interpretability and prediction, connection to prescriptive analytics. Students will gain practical experience applying these techniques to realworld data.", + "title": "Inferential Data Analytics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA3361", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data analytics refers to the process of examining data sets to extract the information they contain. It may be of interest to predict the future values of one set of \u201coutput\u201d variables in the data set using the future values of another set of \u201cinput\u201d variables. This module introduces students to commonly used techniques in predictive analytics. Topics include: the paradigm of statistical learning, model selection and validation, a set of basic models for learning. Students will gain practical experience applying these techniques to real-world data.", + "title": "Predictive Data Analytics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA3362", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of the module are to develop skills for independent data-driven research and to promote the application of novel problem-solving strategies in data science. On completion of the module, students should be able to demonstrate an appreciation of the current state of knowledge in a particular field of research, to master the techniques required for the study of a research question, and to communicate research findings clearly and concisely in written and spoken English.", + "title": "Honours Project in Data Science and Analytics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "DSA4199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Dimensionality is an issue that can arise in many scientific\nfields such as medicine, genetics, business and finance,\namong others. The statistical properties of estimation and\ninference procedures must be carefully established when\nthe number of variables is much larger than the number of\nobservations. This module will discuss several statistical\nmethodologies useful for exploring voluminous data. They\ninclude principal component analysis, clustering and\nclassification, tree-structured analysis, neural network,\nhidden Markov models, sliced inverse regression, multiple\ntesting, sure independent screening (SIS) and penalized\nestimation for variable selection. Real data will be used for\nillustration of these methods. Some fundamental theory for\nhigh-dimensional learning will be covered.", + "title": "High-Dimensional Statistical Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA4211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Tutorial", + "size": 195, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 195, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 195, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Computational optimisation is ubiquitous in statistical learning and machine learning. The module covers several current and advanced topics in optimisation, with an emphasis on efficient algorithms for solving large scale data-driven inference problems. Topics include first and second order methods, stochastic gradient type approaches and duality principles. Many relevant examples in statistical learning and machine learning will be covered in detail. The algorithms will be implemented using the Python programming language.", + "title": "Optimisation for Large-Scale Data-Driven Inference", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA4212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 225, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the logistics and transport sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Logistics and Transport", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA4261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the logistics sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Logistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4261A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the transport sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Transport", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4261B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons: data scientists from partnering organisations in the health and medicine sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Health and Medicine", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA4262", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the health sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Health", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4262A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the medicine sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Medicine", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4262B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the business and commerce sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Business and Commerce", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA4263", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the business sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Business", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4263A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the commerce sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Commerce", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4263B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the public policy and society sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Public Policy and Society", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA4264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the public policy sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Public Policy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4264A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the society sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Society", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4264B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the economics and finance sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Economics and Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA4265", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the economics sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Economics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4265A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the finance sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4265B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons: data scientists from partnering organisations in the science and technology sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Science and Technology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA4266", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S8-0314", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the science sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4266A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The practice of data science involves sense-making, the ability to formulate problems or hypotheses in real-world situations. Only when algorithms and technology are applied to meaningful problems or hypotheses can useful information be extracted from data for making decisions. This module is conducted as a series of hackathons data scientists from partnering organisations in the technology sector provide the real-world situations and data which will enable students to gain practical experience in (i) formulating problems, (ii) solving them by applying, or developing and implementing, appropriate data-analytic tools and techniques, and (iii) communicating findings and insights gained clearly.", + "title": "Sense-making Case Analysis: Technology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSA4266B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For Bachelor of Science (Honours) students to participate full-time in a six-month-long project in an applied context that culminates in a project presentation and report.", + "title": "Applied Project in Data Science and Analytics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "DSA4299", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For Bachelor of Science (Honours) students to participate full-time in a six-month-long project in an applied context that culminates in a project presentation and report.", + "title": "Applied Project in Data Science and Analytics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "DSA4299C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces basic issues of data collection, data cleaning, data management and programming skills for processing big data. Topics include basic tools for data manipulation and visualization, basic statistic tools for understanding data, programming in Perl and/or Python, principles of data cleaning and data sharing, case studies in which machine learning and AI play an important role.\nThe module is the first half of a one-year introduction to big data in practice.", + "title": "Introduction to Big Data for Industry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the theory and methods of machine learning, including the description of modern algorithms, their theoretical basis, and the illustration of their applications to real-world problems. Major topics include: PAC learning, VC dimension, support vector machines, kernel methods, boosting, convex optimization, stochastic gradient descent, regression, clustering, generative models, decision trees, neural network, on-line learning, reinforcement learning.", + "title": "Foundations of Machine Learning", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the concepts, theories and methods of machine learning. It provides a high-level view to modern algorithms, discuss their theoretical basis, and illustrate their applications to real-world problems arising from mining big data, such as recommendion system for online shopping and diagnosis of rare diseases. Major topics include: probabilistic reasoning, probably approximately correct (PAC) learning, Vapnik\u2013Chervonenkis dimension, support vector machines, basic learning theory, reinforcement learning, deep learning.", + "title": "Foundations of Machine Learning", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5102X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Data-driven machine learning inference is usually modelled as optimization problems in data science. This module covers basic optimization algorithms that are frequently used for solving data-driven inference problems and training deep learning models. The topics include the first and second order methods, stochastic gradient approaches, dynamic programming, structured-matrix factorization. Case studies covered in the module include optimization models in cancer diagnosis, recommendation systems for e-commerce, and image deblurring in image processing. Python is used for algorithm implementation.", + "title": "Optimization Algorithms for Data Modelling", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental concepts and tools for effectively managing, searching, and extracting data from databases and data warehouses. It introduces database models, data querying programming languages and relational and semi-structured database systems. In addition, it introduces the basic techniques for data integration for different data types.", + "title": "Principles of Data Management and Retrieval", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the concepts, theories, and methods of machine learning. It provides a high-level view to algorithms, discuss their theoretical basis, and illustrate their applications to real-world problems arising from mining big data, such as recommendation system for online shopping and diagnosis of rare diseases. Major topics include: probabilistic reasoning, convex optimization, support vector machines, decision trees, unsupervised learning, basic learning theory, reinforcement learning, deep learning.", + "title": "Principles of Machine Learning", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Student will study different practical issues of data science. Students taking this module will form project teams and work on a project to enhance knowledge and computing skills for deriving insights from data through machine learning. Project topics include classification of text document, movie recommendation system, image recognitions, identification of biomarkers for cancer, and diagnosis of rare disease, in which application of machine learning techniques is vital. The module is the second half of a one-year introduction to big data in practice.", + "title": "DSML Industry Consulting and Applications Project", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "DSA5201", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces advanced topics in machine learning and their applications to real-world problems. Sample topics include data driven modelling, data assimilation, convex learning problems, regularization and stability, multiclass predictors, dimension reduction, feature selection and generation, graphical models, hidden Markov models, Gaussian random field, reinforcement learning, deep learning.", + "title": "Advanced Topics in Machine Learning", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5202", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": { + "start": "2023-05-13", + "end": "2023-06-10" + }, + "venue": "LT26", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-05-29", + "end": "2023-06-12", + "weekInterval": 2 + }, + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims at presenting the fundamentations and\nimportant computational algorithms that are very related to\nimportant applications in visual information processing and\nanalysis: from image acquisition to processing, and to\ninterpretation/understanding. The emphasis is on the tight\nintegration of mathematical foundations, numerical\nalgorithms, and programming implementation techniques\nrelated to industrial applications.\n\nMajor topics include: fundamentals for pictorial data\nacquisition and processing, Computational method for 3D\nreconstruction, Visual data categorization and\nsegmentation, computational methods for visual learning\nand their applications in pattern analysis.", + "title": "Visual Data Processing and Interpretation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Deep learning is a powerful machine learning tool for artifical intelligence and data sciences, with a wide range of real-world applications. This course aims at introducing basic concepts, numerical algorithms, and computing frameworks in deep learning. The emphasis is on the numerical algorithms, implementation in industrial computing framework, and examination on real data-intensive problems drawn from practical applications. Major topics include: Basics on optimization theory and algorithms, regularization and stability, learning theory, clustering, supervised learning, deep neural network, programming in python, tensor flow.", + "title": "Deep Learning and Applications", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces selected topics of the state-ofthe-art data science approaches (e.g. data mining, machine learning, and deep learning) as well as their applications in finance such as asset allocation and sentiment analysis. Industry professionals may be invited to come to share their understandings and outlooks of data science techniques and their applications in financial services.", + "title": "Data Science in Quantitative Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to reflect the recent rapid growth in the applications of data science and machine learning (DSML). Its objective is to introduce the ways in which DSML is used to transform a specific industry, such as healthcare, e-commerce, finance and the pharmaceutical industry. The module will demonstrate how data is analysed in depth to solve practical problems. The interplay between modelling and tool development will be emphasized. The module will be taught using the case studies method. The topics covered may vary each time and will be decided by the lecturers. Python is used for programming projects.", + "title": "Advanced Topics in Data Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide participants with a foundation in\ndata science, and introduce several essential tools and\ntechniques for this field. These tools include the Python\nprogramming language; the techniques include frequently\nused predictive models such as deep learning, regression\nand random forests.\n\nEvery industry domain collects more data today than it did\njust five years ago. This course will utilise real datasets from\nthe manufacturing, human resource, and customer\nanalytics fields to demonstrate how the vast amounts of\ndata collected can be used to improve processes and\ndecision-making.", + "title": "Data Analytics for the Digital Workplace", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSA5231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, participants will be introduced to data science applications in such domains as commerce, education, finance, health and services, and the connections between the associated analytical techniques and topics in Mathematics will be elucidated. The topics include: functions, graphs, vectors, differentiation, probability, hypothesis testing, correlation and linear regression. Participants will also gain hands-on experience in data exploration and the development of a data-science deliverable for educational purposes.", + "title": "Data Science for Mathematics Teachers", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "DSA5731", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the abundance of available data today, many organisations are looking to leverage insight from that data for decision-making. Having the skills required to work with data provides a competitive edge. This course introduces basic concepts and tools in analytics. They will allow an individual to obtain an understanding of his/her data with the goal of making decisions from it. There will be a focus on practical methods that are applicable to a wide range of data sets, types and domains.", + "title": "Data Analytics: Principles and Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "DSA5811", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces intermediate concepts and tools in analytics, building on the foundation gained in Data Analytics: Principles and Practice for problem formulation and problem-solving using data. It equips the participant with the basic knowledge to build models, understand them and diagnose their performance. To demonstrate the application of these concepts, this course introduces the linear regression model, Bayesian models and time series models.", + "title": "Data Analytics: Further Principles and Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "DSA5812", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Data visualisation empowers organisations to effectively communicate actionable conclusions from their data for decision-making. This course will provide participants with a foundation in data visualisation principles. These include identifying the foundational elements of a graph and discussing the value of a chart. The practical aspect will delve into data retrieval and cleaning procedures in preparation for plotting.", + "title": "Data Visualisation: Principles and Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "DSA5821", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course builds on the topics in Data Visualisation: Principles and Practice to further equip the participant with skills for generating domain-specific graphics. Participants will gain experience with techniques from high-dimensional data sets and unstructured data sets.", + "title": "Data Visualisation: Further Principles and Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "DSA5822", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A variety of computer-based modelling and prediction tools are available to practitioners for learning from data collected in diverse fields including business, medicine and public policy to generate insights for decision-making. This course introduces participants to the trade-off between prediction and interpretability, the difference between regression and classification, and the basic principles of supervised and unsupervised learning. Participants will gain practical experience in the application of model selection and resampling methods to commonly used supervised regression and classification tools with real-world data.", + "title": "Learning from Data: Principles and Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "DSA5831", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Decision trees are supervised learning methods widely used for classification and regression. They are popular with practitioners because of the interpretability of the tree structures, reasonably good prediction accuracy, fast computational speed, and wide availability of software. In this course, participants will learn how to build and implement decision tree models, and assess their performance. The versatility of decision trees is demonstrated through practical applications. Participants will also learn how to improve prediction accuracy using bagging, random forests and boosting.", + "title": "Learning from Data: Decision Trees", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "DSA5841", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Support vector machines (SVMs) are a set of supervised learning methods widely used for classification. An SVM discriminates between two classes by generating a decision boundary that optimally separates classes after transforming the input data into a high-dimensional space. SVMs are popular because they are memory efficient and can address a large number of predictor variables. In this course, participants will learn how to build and implement SVMs, and assess their performance. The versatility of SVMs is demonstrated through practical applications.", + "title": "Learning from Data: Support Vector Machines", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "DSA5842", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Neural networks consist of input and output layers, as well as (in most cases) hidden layers consisting of interconnected units that transform the input data into an output. Their architecture makes them capable of learning and modelling nonlinear and complex relationships. In this course, participants will learn how to build and implement neural network models, and assess their performance. The versatility of neural networks is demonstrated through applications. Practical considerations about network architecture, model training and computational resources will be discussed.", + "title": "Learning from Data: Neural Networks", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "DSA5843", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students with theory and skills to capture business insights from data for decision making using spreadsheets. Practical examples and cases with rich data are used to stimulate students\u2019 interest and\nforster understanding of the use of Business Analytics in management.", + "title": "Decision Analytics using Spreadsheets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC1704", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students with theory and skills to capture business insights from data for decision making using spreadsheets. Practical examples and cases with rich data are used to stimulate students\u2019 interest and\nforster understanding of the use of Business Analytics in management.", + "title": "Decision Analytics using Spreadsheets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC1704X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Data Science involves both a theoretical foundation of Statistics and practical implementation via programming. The two are typically covered separately, but his module aims to bring theory and practice together.\n\nIt starts with some Python programming fundamentals, then walks through Statistics topics from visualizing and summarizing data, to estimating model parameters and hypothesis testing, and then linear regression. For each topic, Python illustrations and experimentations are interwoven to help students better appreciate how it practically works. Completing the cycle, the module finally\ndeals with acquiring, cleaning, and organizing data using Python. Students can then independently execute a Data Science project.", + "title": "Programming for Business Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC2702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an introduction to, and an understanding of, the substantive knowledge which has developed over the years in the field of Operations and Technology Management (OTM). The module also highlights the relevance and strategic significance of technology and the operations function in enterprises. \n\nThis module will build around the foundational topics of operations. Students will be exposed to the process view of oraganizations. Topics such as product (or service) technology, process analysis and process technology, quality management and the role of technology in process control in both manufacturing and service organizations will be introduced.\n\nStudents will also learn about how firms match demand and supply efficiently and effectively with the support of coordination technology such as ERP. Operations strategy and sustainability will also be introduced at the entrance\nlevel.", + "title": "Operations and Technology Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC2703", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course considers the operation of a supply chain from a managerial perspective, serving two main objectives: to provide tools for design, analysis, management and performance improvement of supply chains, and to introduce and discuss recent influential innovations in supply chain management such as B2B portals. Students will be taught to appreciate the need to balance between responsiveness and efficiency in the four major components of the chain: Inventory, Transportation, Facilities, and Information. These four components will be introduced to the students through suitable mathematical and behavioural models. It is recommended that students have some understanding of the Internet and e-business.", + "title": "Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary aim of this course is to get students interested in and acquainted with the fundamental concepts, models and instruments in purchasing and materials management. Key areas like buying supplies, logistics, contracts, stock and inventory control, distribution and warehouse management will be covered. Some insights into the current developments and biggest problem areas in this field are provided. A combination of informative and interactive lectures and application-oriented case assignments will be used for the pedagogy and considerable attention is devoted to the discussion of practical / managerial issues.", + "title": "Procurement Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide a comprehensive and systematic coverage of managing operations in service or service-oriented organisations such as banks, hospitals, airlines, retail outlets, restaurants and consultant agencies. Specifically, students will focus on the problems and analysis relating to the design, planning, control and improvements of service operations. Topics covered include service strategy, system design, location and layout of service systems, resource allocation, workshift scheduling, vehicular scheduling and routing, and service quality. This course is essential for students wishing to work in service or service-oriented environments.", + "title": "Service Operations Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theory, algorithms, and applications of optimisation. Optimisation methodologies include linear programming, integer programming, network optimisation, dynamic programming, and nonlinear programming. Problem formulation and interpretation of solutions will be emphasized. Throughout the course, references will be made wherever appropriate, to business applications, such as portfolio selection, options pricing, and vehicle routing. Students who are interested in computer and quantitative approaches in business will learn many useful techniques in large business system management from this course.", + "title": "Introduction To Optimisation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to management science models that characterise random phenomena in real world applications, particularly in the field of finance and operations management. We start with elementary probabilistic models and illustrate their applications in inventory management and financial engineering. We then construct discrete Markov chain models and demonstrate their applications in managing queues and for evaluating the performance measures of queueing systems. When analytical models are inadequate for studying real world random phenomena, simulation might be a feasible approach. We will discuss several well-known methods to simulate randomness.", + "title": "Stochastic Models In Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Managerial success rests strategically on the ability to forecast the demand for the goods and services that a firm provides. Demand forecasting drives the effective planning of the supply chain: personnel requirements, capital investment, production schedules, logistics etc.This module surveys forecasting techniques and their applications. These encompass traditional qualitative (e.g. front line intelligence, Delphi method) and quantitative techniques (e.g. regression, time series) as well as emerging techniques based on neural networks. Concepts such as trends, seasonality and business cycles will be discussed. Their value in improving forecasts will be illustrated. The module makes extensive use of software including MS Excel and dedicated forecasting packages.", + "title": "Predictive Analytics in Business", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course helps students to learn about the strategic importance of good distribution planning and operations. A strategic framework of physical distribution design is presented to help build critical managerial skills for decision making in the management of physical distribution and transportation of goods and services. The course emphasizes the application of quantitative and analytical techniques to physical distribution system design (facility location, vehicle routing and fleet planning) and transportation management in Asia. Some programming knowledge of Visual Basic is assumed. Where available, Asian cases will used to highlight and educate the reader on unique business operations in this region.", + "title": "Physical Distribution Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Operations and Supply Chain Management (TIOSCM)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3222X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Operations and Supply Chain Management (TIOSCM)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3222Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Operations and Supply Chain Management (TIOSCM)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3222Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will present a strategic perspective of the operations function in any business. As a part of the course, the student will develop an appreciation of the fact that operations management is closely linked to competitive success of a firm. After taking the course the student should be in position to analyze the key role of operations in the entire corporate strategy framework and formulate a consistent operations strategy. The focus will be on the analysis of business operations and the design of appropriate processes that ensure the most effective and efficient utilization of resources. During the sessions we will constantly juxtaposition operations concepts with the elements\\basic inputs from finance, economics and strategy so as to appreciate the impact of operations on the overall business strategy.", + "title": "Operations Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Dynamic Pricing and Revenue Management is the state-of-art tool to improve the operational management of the demand for goods or services to more effectively align it with the supply and extract the maximum value. The course is designed to provide you: (1) a bundle of multidisciplinary knowledge and tactical tools that are readily applicable to real life business applications to deliver price recommendations; (2) conceptual frameworks that synthesize strategic principles, underlying logics, and high-level managerial insights needed by general managers and management consultants.", + "title": "Dynamic Pricing & Revenue Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The global trend towards shorter life cycles for products and services has led many companies to focus on improving their approaches to managing change. Many organizations increasingly recognize that introducing new products, processes, or programs in a timely and cost effective manner requires professional project management. This course examines the management of\ncomplex projects and the tools that are available to assist managers with planning and controlling such projects. Some of the specific topics we will discuss include project selection, project teams and organizational issues, project\nmonitoring and control, project risk management, project resource management, and managing multiple projects. Both \u201ctraditional\u201d applications of project management (such as engineering or construction projects) and \u201cmodern\u201d\nones (such as IT projects or change management) will be discussed. The course includes extensive use of software products that are available to assist project managers. We will study the relationship between these products and the\nrequirements of managing large, complex projects.", + "title": "Project Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to study how a company can\nuse its operations to improve environmental performance\nand contribute to business success at the same time.", + "title": "Sustainable Operations Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In a modern digitalised economy, organisations need to\nbe innovative, and the ability of managers to understand\nand manage innovation has become a necessity to help\ntheir companies adapt and compete in the dynamic\nbusiness environment. Advances in technology and the\ngrowing digitalization of business has brought about\nincreased collection and availability of data. It is\nimperative that firms leverage on data analytics to\nenhance efficiency and effectiveness of business\noperations, thereby enhance the differentiation and\ncompetitive advantage of the firm. This course is directed\nat business managers who must understand the\nimportance and impact of technology and business\ninnovation.", + "title": "Technology and Business Innovation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based\nresearch and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Ops & Supply Chain Mgt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC3229", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students withthe requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Ops & Supply Chain Mgt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSC3239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Seminar in Operations and Supply Chain Management (SIOSCM)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SIOSCM: Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC4211F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Service design is a process that seeks to understand ways to develop the environments and programs that lead to a high level of service quality. Often times, the success of a business is dependent on the quality of service that is\nprovided to its customers. This is most evident in businesses where there is a blurry line between product and service. When the ultimate product is service, the\nquality of this service is the main element that can predict the success and profitability of the company.", + "title": "SIOSCM: Service Design", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC4211G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Seminars in Operations and Supply Chain Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC4211X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Business analysts / consultants hold strategic positions within the knowledge-based firm. They support the Supply Chain, Marketing, Finance and HR departments in refining their processes, making them more efficient, profitable and customer-centric. A 2006 Money magazine survey ranks the business analyst position among the top jobs with regards to salary, advancement prospects, satisfaction and stress level. \n\n\n\nThe objective of this capstone course is to prepare participants for the work environment and the diverse challenges faced by business analysts and consultants. Through the pedagogical medium of cases, participants will polish their skills in analytics and the written and oral communications of their results to a Management audience.\n\n\n\nThe course will cover topics such as Decision & Risk Analysis, Optimization, Simulation, Data Mining and Forecasting. Participants will gain extensive experience in analytical software such as Precision Tree, Solver and Evolutionary Solver, @Risk and StatTools. Cases will highlight timely problems e.g. cash flow / revenue management, supply chain optimization, reverse auctions, staff right-sizing, outsourcing, benchmarking, CRM (e.g. customer segmentation, clustering), seasonal demand forecasting etc.", + "title": "Analytical Tools for Consulting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC4213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced level course on operations and supply chain management. We will focus on three of the important topics in operations and supply chain management: coordination, flexibility, and production. Our objective is to provide our students further understanding on these three selected topics by discussing a variety of related issues and modeling/analysis tools. The students should have taken DSC2006 Operations Management and DSC3201 Supply Chain Management (or similar courses) before taking this course so that they have a general understanding of the problems, issues, and basic modeling tools in operations and supply chain management. \n\n\n\nIn this course, we not only aim to introduce the students a variety of recent developments and business insights in these three topics, but also want to teach the students how to conduct analysis to gain these insights. A lot of modeling/analysis tools discussed in this course will be quantitative based. In particular, the students should be prepared to apply mathematics concepts such as probability and calculus throughout the semester. In addition, it will be helpful if the students have taken DSC2003 Management Science.\n\n\n\nThe first part of this course is to expose students to a variety of modeling tools available for their analysis. In the second part of this course, we will cover articles from the academic literature on coordination, flexibility, and production issues in operations and supply chain management. The focus will be on articles that offer management insights and/or present novel and applicable algorithmic ideas for new supply chain models. Supplementary readings will be used to enhance the understanding of the issues involved.", + "title": "Co-ordination and Flexibility in SCM", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC4214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Visualization is an invaluable tool for supporting analysis and decision making in modern business. Students will: (i) manipulate relational data sets, aggregate the data and generate visual representations; (ii) build a thorough understanding of data aggregation processes; (iii) learn to use interactivity to support data exploration and counterfactual (\u201cwhat-if\u201d) analysis; and (iv) learn how to communicate ideas effectively with data.\n\nThis course will include a substantial hands-on-learning component, and supports the development of highly marketable skills in visualization. Applications will be drawn from operations, supply chain management and other aspects of business.", + "title": "Data Visualisation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC4215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The information age has brought with it a host of new technologies - and an overabundance of choices.\n\nBusinesses are faced with myriad ways of identifying, developing or acquiring and deploying technologies.\n\nOrganisations of different sizes in different clusters will have different technology needs at various stages of their growth.\n\nDifferent types of technology bring about different types of organizational change, and managers should tailor their own roles accordingly. Technology for organisational productivity and technology to enable the organisation to create new revenue streams need to be differentiated and tackled with different methodologies.\n\nCategorizing technologies in this manner can help leaders determine which technologies and when to invest in and how they can assist organizations in making the most of them.", + "title": "Business-driven Technology", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students with fundamental knowledge of using R, a powerful complete analytical environment, to organize, visualize, and analyze data. It is, however, not a programming course. It will focus on case studies from the most commonly used tasks that a business analyst will face on a day-to-day basis and how R could be used to handle such cases. \n\nThe topics covered in the course include foundations of R programming, data visualization, regression-based data modelling, classification, and social media analysis.", + "title": "Business Analytics with R", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for\nadmission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Ops & Supply Chain Mgt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC4219", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for\nadmission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Ops & Supply Chain Mgt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DSC4229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We analyze price formation and economic performance in imperfectly competitive markets by using optimization, statistical and stochastic methods. Strategic interactions between the participants in these markets are emphasized and a theoretical framework is laid out. Theoretical models are analyzed with industry examples and datasets.", + "title": "Analytics in Managerial Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an opportunity for teams of students to work with organizations throughout the world to identify important organizational issues, engage in data collection and analysis, and recommend insightful solutions. Through action-based learning that spans over one year, it aims to develop personal capabilities, professional competencies, and academic knowledge in a real business setting.", + "title": "Business Analytics Capstone Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "DSC5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Statistics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a foundation for data analytics techniques and applications. It aims at\n\n(1) Emphasizing on understanding of intuitions behind the tools, and not on mathematical derivations;\n(2) Incorporating real-world datasets and analytics projects to help students bridge theories and practices; and\n(3) Equipping students with hands-on experiences in using data analysis software to visualize the concepts and ideas, and also to practise solving problems.\n\nThe module covers commonly used analytics tools such as logistic regression and decision tree.\n\nStudents are expected to get their hands really dirty by applying the tools in the analytics software (Python).", + "title": "Foundation in Data Analytics I", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSC5106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will look at how supply chain management\ncan be used effectively to improve financial performance.\nIt will look at management trade-offs between long-term\nand short-term supply chain decisions. It will also look how\ncompanies improve their cash flow using better inventory\nmanagement and supply chain financing.\nParticipants will also form teams to play a supply chain\nsimulation game. It requires teams to make annual supply\nchain management decisions that will impact revenue\ngrowth, cut costs, and/or manage risks of the company,\ntaking into consideration management trade-offs and both\nshort-term and long-term profitability, with an overall\nstrategic plan.", + "title": "Managing the Financial Supply Chain", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "DSC5221A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "BIZ2-0509", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The vast amount of data generated by economic activities such as consumption, production and investment increases the demand for data science practitioners with a knowledge of economic analysis. This module introduces foundational data science concepts to prepare students for tackling data analytic challenges in economics and related fields such as finance, public policy and society. Topics include basic concepts in probability and statistics, data manipulation, supervised and unsupervised learning, model validation and big data analysis. Students will learn fundamental R programming skills to implement and apply the data science methods in motivating real-world case studies from economics and related fields.", + "title": "Introductory Data Science for Economics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSE1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to be a continuation of DSE1101 Introductory Data Science for Economics. It focuses on data science methodology and the ability to apply such methodology to practical applications. Real-world problems will be provided by both industrial and academic partners in economics, finance, public policy and society.", + "title": "Practical Data Science for Economics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSE3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces digital currencies, one of the most demanded digital technologies. We present practically relevant methods and technologies from data science, mathematical finance, neuroeconomics and time series and network analysis, and elaborate with examples in cryptocurrencies market analysis, crypto-assets and derivatives, stable coins and blockchain-based solutions for the digital economy (e.g., P2P lending). The use of GitHub and network techniques will be taught. Empirical research and code implementations will be demonstrated. Guest lecturers with rich working and research experience in the area will be invited to share their expertise in the module.", + "title": "Digital Currencies", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSE4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces several state-of-the-art data science methods and approaches in statistical modeling, machine learning and deep learning with data-driven applications in finance and FinTech such as derivative pricing, portfolio optimisation, robo-advising and risk management. Real-data analysis and code implementations will be demonstrated. Guest lecturers with rich working and research experience from academia and industry will be invited to share their latest research findings or their experience in and outlooks on data science techniques and implementations in the modern financial industry.", + "title": "Data Science in FinTech", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSE4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "R is the language of analytics in academic institutions, and increasingly also in corporations. This module introduces R, and then use it to manipulate data, compute summaries, construct visual analytics, and do statistical tests of relationships.", + "title": "Descriptive Analytics with R", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSN3702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Statistical learning is machine learning for statistical analysis. An example of statistical learning would be constructing a predictive function based on a large volume of data. Students will be introduced to the use of statistical learning techniqes via an online platform, using data similar to those they might encounter in their future workplaces.", + "title": "Statistical Learning for Managerial Decision", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSN4712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a placeholder for experimental or ad hoc elective modules in Analytics.", + "title": "Seminars in Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSN4761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through interactive learning (\u201cLearn, Dream, Make\u201d) this module trains students to tackle real-world problems with real-world solutions.\n\nStudents explore contemporary issues in supply chain management through guided analysis of case examples, design and build of an app and development of a basic business plan to support their proposed solutions.\n\nPractical experience in the tools and techniques for delivering actionable intelligence complements skills in understanding and navigating organisational behaviour.", + "title": "Supply Chain Applied Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DSS4711", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students use design principles to develop their creative potential and practise design thinking using a people-centered approach to solve problems and create new possibilities. Through practical activities, students will discover tools and mindsets that guide them in navigating ambiguity in a creative process, observing and learning from others in unfamiliar contexts, and generating and experimenting with ideas quickly. While students draw on design thinking as a personal creative skillset, they will also value the impact of design that affords people the opportunity and privilege to shape the world that they, and others, inhabit.", + "title": "Design Thinking", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTK1234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "O33", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O35", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O31", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O45", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O43", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O39", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O42", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O29", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E22", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O32", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O46", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O47", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O48", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O41", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O38", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O24", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O25", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O27", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E24", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O34", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O26", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O44", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O37", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "O21", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "O25", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O37", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O39", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O40", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E45", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E47", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O34", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E40", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E41", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E39", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O27", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E35", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E36", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E37", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E33", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E27", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E25", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E29", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E32", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O24", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O36", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O38", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E42", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O33", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O35", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O30", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E24", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E26", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E38", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E49", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O32", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E48", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E30", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O21", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O41", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR8", + "day": "Friday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E46", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O31", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E34", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E31", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E21", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E43", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O26", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "O6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "E44", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "G2", + "startTime": "1800", + "endTime": "2000", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "SDE3-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "G4", + "startTime": "1800", + "endTime": "2000", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "SDE4-EXR-1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "G6", + "startTime": "1800", + "endTime": "2000", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "SDE3-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "G1", + "startTime": "1800", + "endTime": "2000", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "SDE3-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "G7", + "startTime": "1800", + "endTime": "2000", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "SDE3-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "G3", + "startTime": "1800", + "endTime": "2000", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "SDE3-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "G5", + "startTime": "1800", + "endTime": "2000", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "SDE3-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "G8", + "startTime": "1800", + "endTime": "2000", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "SDE4-EXR-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students use design principles to develop their creative potential and practise design thinking using a people-centered approach to solve problems and create new possibilities. Through practical activities, students will discover tools and mindsets that guide them in navigating ambiguity in a creative process, observing and learning from others in unfamiliar contexts, and generating and experimenting with ideas quickly. While students draw on design thinking as a personal creative skillset, they will also value the impact of design that affords people the opportunity and privilege to shape the world that they, and others, inhabit. DTK1234A is a variant module of DTK1234, co-taught by studio tutors. Learning objectives are applied to address spatial issues via projects undertaken in AR1101 or LAD1001.", + "title": "Design Thinking", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTK1234A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to refresh students on fundamental engineering mathematics. Topics covered include MATLAB, ordinary differential equations, vector calculus, matrices, complex numbers, Fourier analysis and probability and statistics.", + "title": "Engineering Mathematics", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DTS2701", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Defence Technology Systems Project", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DTS3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Fundamental Mathematics and Physics", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "DTS5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "C4isr", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Firepower & Infrastructure Protection", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Land Systems", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Air Systems", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Naval Systems", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Communications", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "DTS5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Electronic Warfare", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Computer Networks and Data Fusion", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DTS5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Sensors", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Lasers and Electro-Optics", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Communications", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "DTS5311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Sensors", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "DTS5312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Physics of Weapon Systems", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "DTS5321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Control, Guidance & Propulsion", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "DTS5322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Engineering Materials", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "DTS5331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Protection Technology", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Operations Modelling & Decision Making", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Operational Test & Experimentation", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Systems Engineering", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Systems Simulation & Heuristics", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "DTS5404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Defence Systems Assessment & Modelling", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "LARGE SCALE SYSTEMS ENGINEERING", + "title": "Large Scale Systems Engineering", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5701", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the key underlying principles and concepts of C3 engineering and their application in the design, development and integration of C3 systems in modern armed forces. Using a systems engineering approach, the module will also enable participants to have a good appreciation of the key\nconsiderations and challenges as well as good engineering practices associated with C3 design and integration with sensor and weapon systems. Topics related to emerging trends, concepts and technologies will also be covered.", + "title": "C3 Systems", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5702", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module to operations research which will cover both deterministic and stochastic models for effective decision-making. Topics include mathematical programming (overview on models building and sensitivity analysis; computer-based solutions), multi-criteria decision analysis, reliability and\nmaintenance, queueing theory and simulation. Relevant cases on military applications will be discussed.", + "title": "Operations Research", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5703", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "INTEGRATED LOGISTICS SUPPORT", + "title": "Integrated Logistics Support", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5704", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Modelling and Simulation", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5707", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Survivability", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5708", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Information Operations", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5710", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Integration Project", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "DTS5711", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Thesis Project", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "DTS5712", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Systems Engineering & Design", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5713", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This class defines a holistic approach to project management for the development of new complex techno-centric systems. The emphasis is on the relationships and interconnections between project management processes and systems engineering processes for new complex systems. Specific topics include change management, strategy, project organization, team development, leadership styles, priorities, task development, scheduling, cost estimation, performance monitoring, constraint management, and project audits. Students apply these concepts on a project while working in teams. Mastery of these key tools is important for career development, as projects are a major approach for organizations to achieve their strategic goals.", + "title": "Systems Engineering Project Management", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5720", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Power Pack For Military Vehicles", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5721", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Protection Design", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5722", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Vehicle Dynamics", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5723", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design and Case Studies", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "DTS5724", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Model-Based Systems Engineering", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5725", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introductory module providing an overview of the topic and a flavour of the details which should be more fully explored in depth through other modules. It explains systems architecting, engineering, lifecycles, associated activities, products, applications, processes, models, methods and strategies. The module is intensive and challenges the students to think creatively.", + "title": "Fundamentals of Systems Engineering and Architecting", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5726", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Operational Test and Evaluation (OT&E) enables validation of the as-designed, built, and verified system\u2019s satisfaction of the users\u2019 operational needs. This module answers these questions: What is OT&E? Why is OT&E needed? What is its objective? When is OT&E performed during the system development phase? How is OT&E carried out? Who is responsible for performing OT&E?\nWhat is the system developer\u2019s role in OT&E? Where is OT&E carried out? What are OT&E best practices? The module illuminates the OT&E fundamentals and methods with examples and case studies. Topics include:\n- Role Test & Evaluation (T&E) in System Acquisitionand Development\n- Interrelationships & Integration of Developmental T&E (DT&E) and OT&E\n- System Operational Effectiveness and Suitability\n- Fundamentals of OT&E\n- Life Fire Test and Evaluation\n- OT&E Methods and Tools\n- OT&E Examples\n- OT&E Best Practices\n- OT&E Case Studies", + "title": "Operational Test and Evaluation", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5727", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Thesis", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "DTS5729", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introductory module on systems\nengineering providing an overview of the topic and the\ndetails which should be more fully explored in depth\nthrough other modules. It explains systems, systems\nengineering, systems development lifecycles and\nprocesses, applications and methods to mitigate risks.", + "title": "Fundamentals of Systems Engineering", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DTS5731", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module to artificial intelligence (AI)\nand data analytics (DA). It covers various topics of AI and\nDA. The AI topics include heuristic search, constraint\nsatisfaction, logic and inference, and natural language\nprocessing. The DA topics include data preprocessing,\ndata visualization, classification, model evaluation,\ndecision trees, neural networks, deep learning, association\nanalysis, and clustering.", + "title": "Artificial Intelligence and Data Analytics", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5732", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces sensor and intelligence\ntechnologies and their applications in the operational\ncontext, mainly focusing on the most commonly deployed\nsensor technologies such as Radar and Electro-Optical\n(EO) sensors as well as established and emerging\nintelligence areas such as communications intelligence\n(COMINT), electronic intelligent (ELINT) and Open-Source\nIntelligence (OSINT).\nThe underlying technical principles for performance\nassessments in various environments, such as electronic\nwarfare and design trade-offs will be covered and\nreinforced through the use of application examples.", + "title": "Sensors and Intelligence", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5733", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the principles, technologies and\noperational aspects of smart weapon systems e.g. guided\nweapons, precision munitions and unmanned vehicles\n(UxVs). The interplay of various sub-systems for target\nidentification & tracking, guidance/navigation, command\nand control and their impact on mission effectiveness will\nbe examined with consideration of counter-measures and\ncounter-counter-measures. Additional topics include\nadvanced concepts for autonomy, interoperability and\nteaming and cooperation. The course will include case\nstudies of these weapon systems in actual combat.", + "title": "Guided Systems", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5734", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces cybersecurity concepts and their\napplications. It aims to illustrate how systems can fail\nunder malicious activities, and how the threats can be\nmitigated and managed. Topics include cryptography,\ncommunication channel security, system security, trusted\ncomputing, policy making, human factors, etc. Applications\nsuch as cloud security, IOT security, security operations\ncentres, AI in cybersecurity, and case studies on wellknown\nattacks will be used to reinforce the learning of\nvarious foundational concepts.", + "title": "Cybersecurity", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "DTS5735", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is to allow students to integrate\nmulti-dimensional defence technology that include C3,\nSensors and Intelligence, Artificial Intelligence, Guided\nWeapons, Unmanned Systems, Cyber, Operations\nResearch, Systems Engineering, etc, to study, formulate\nand analyse an actual military problem with the goal of\nrecommending a design solution with the principles of\nsystems engineering and design that involve complex\nsystems.", + "title": "Systems Design Project", + "faculty": "Temasek Defence Sys. Institute", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "DTS5736", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to promote a strong research culture among the research students of the Faculty of Dentistry as well as improving their communication skills through presentations and conference attendance. It is spread over the candidature of the students and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Seminar module", + "faculty": "Dentistry", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "DY5190", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Endodontic Residency Training Programme comprises of didactic, clinical and research components. Clinical training incorporating state-of-the-art technologies is corroborated with advanced didactic instruction in the principles of Endodontics and the basis for biomedical sciences. An array of features includes laboratory practical, seminars, lectures,literature reviews, multidisciplinary diagnostic and treatment planning sessions as well as undergraduate teaching. There may also be an opportunity for a 3-4 weeks attachment at Baylor College of Dentistry in USA for increased educational exposures.\n\nResearch is an integral part of the program and the resident is required to engage in a clinical or basic science research project. The resident is encouraged to attend conferences (both local and international) and present their research findings, conduct table-clinics, etc. at such meetings.\n\nThe main research interest of the Endodontic Residency Training Program is in the understan", + "title": "Endodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "DY5310", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Oral & Maxillofacial Surgery programme is a three-year programme, incorporating an applied basic science component to be taken in the first year. Students with a Primary MDS or its equivalent are exempted from the Basic Science course and Examination.\n\nThe Oral & Maxillofacial Surgery residency programme will enable the resident to:\n? Acquire the widest theoretical knowledge to be competent in the foundation for the practice\nof Oral & Maxillofacial Surgery;\n? Acquire the foundation and practical experience in Oral & Maxillofacial Surgery to be competent to enter into higher specialty training;\n? Effectively interface with other specialties and disciplines in patients requiring interdisciplinary management, especially in head and neck conditions, orthognathic surgery, cleft lip and palate management;\n? Acquire the experience to carry out research projects, to critically evaluate scientific publications and to communicate clinical and research papers in journals and conference", + "title": "Oral & Maxillofacial Surgery", + "faculty": "Dentistry", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "DY5320", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Orthodontic Residency Training Programme is accredited by the Royal College of Surgeons of Edinburgh to enable candidates who successfully complete the course to sit for the Membership in Orthodontics (MOrthRCS Edinburgh). This enables the acquisition, by assessment, of the Fellowship of the College of Surgeons (FDSRCS Edinburgh) after 5 further years of clinical practice as a specialist.\n\nThe curriculum follows the recommended content by the Erasmus Committee which has been accepted by the European Commissioners in Brussels as satisfying the requirements for specialist practice in Europe.", + "title": "Orthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "DY5330", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The 3 year Periodontology Residency course comprises didactic, clinical and research components. The course covers all aspects of Periodontology from clinical practice to applied basic sciences relevant to the discipline. The course also include a segment in implant dentistry. The programme will enable the resident to i) acquire basic and advanced clinical skills in providing periodontal care to patients presenting with a range of periodontal disease based on sound scientific principles ii) acquire basic skills in implant dentistry including maintenance and management of peri-implant diseases iii) be clinically competent in treatment planning of advanced periodontal disease with a multi-disciplinary approach iv) understand the basic concepts in research and able to carry out research independently v) critically review the literature and apply it to clinical practice.", + "title": "Periodontology", + "faculty": "Dentistry", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "DY5340", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The three-year Prosthodontic Residency Training Programme comprises didactic, clinical, technical and research components covering all aspects of Prosthodontics including applied basic sciences relevant to prosthodontics, advanced fixed and removable partial and complete denture prosthodontics, occlusion, TMD, dental materials science, maxillo-facial prosthodontics and dental implants. The programme will equip the resident to 1) have basic sciences education as a foundation for clinical and technical skills; 2) be proficient in diagnosis, planning and treatment of patients with exceptional prosthodontic problems including the management of patients requiring full mouth rehabilitation using fixed and removable prostheses and implant supported prostheses with an emphasis on cases requiring interdisciplinary care and coordination; 3) be proficient in laboratory technical skills sufficient to evaluate technical work, communicate effectively with technicians and be able to train others in these skills; 4) be effectively interfaced with other specialties and disciplines in the care of patients requiring interdisciplinary therapy; and 5) acquire the experience to conduct independent research.", + "title": "Prosthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "DY5350", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Paediatric Dentistry programme is a three-year programme, incorporating an applied basic science component to be taken in the first year. Students with a Primary MDS or its equivalent are exempted from the Basic Sciences course and Examination. \n\nThe Paediatry Dentistry residency programme will enable the resident to:\n- Acquire the widest theoretical knowledge to be competent in the foundation for the practice of Paediatric Dentistry;\n- Acquire the foundation and practical experience in Paediatric Dentistry to be competent to enter into higher specialty training;\n- Be proficient , competent and ethical in all aspects of dentistry for children and adolescents from birth to 18 years of age;\n- Acquire the experience to carry out research projects, to champion and advance paediatric dentistry efforts.", + "title": "Paediatric Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "DY5360", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the foundation skills and best practices for managing business analytics projects within the industry which includes understanding how to successfully manage business analytics projects to meet all stakeholders\u2019 requirements, data analytics framework (CRISP-DM), data cleaning, management and processing, data visualization & data governance.", + "title": "Analytics Project Management", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "EBA5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "Inspire_Theatre", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5 + ], + "venue": "Ambition_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3, + 4, + 6 + ], + "venue": "Ambition_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Ambition_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5 + ], + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-04-15", + "weeks": [ + 1, + 2, + 4, + 13, + 14, + 15 + ] + }, + "venue": "Beacon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "Innovation_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7, + 8, + 9 + ], + "venue": "Influence", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the foundation skills and best practices for managing business analytics projects within the industry which includes understanding how to successfully manage business analytics projects to meet all stakeholders\u2019 requirements, data analytics framework (CRISP-DM), data cleaning, management and processing, data visualization & data governance.", + "title": "Management of Business Analytics Project", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "EBA5001A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the foundation skills and best practices for managing business analytics projects within the industry which includes understanding how to successfully manage business analytics projects to meet all stakeholders\u2019 requirements, data analytics framework (CRISP-DM), data cleaning, management and processing, data visualization & data governance.", + "title": "Analytics Project Management", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "EBA5001G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11, + 12, + 13 + ], + "venue": "Beacon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the fundamental concepts of analytics like managing business analytics projects, basic statistics, R programming, linear regression and logistic regression, time series analysis, recommender systems and text analytics.", + "title": "Business Analytics Practice", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "13", + "moduleCode": "EBA5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-28" + }, + "venue": "Ambition_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-06-27", + "end": "2022-08-01", + "weeks": [ + 1, + 3, + 4, + 5, + 6 + ] + }, + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-02", + "end": "2022-10-01", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 14 + ] + }, + "venue": "Beacon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-26" + }, + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-20", + "end": "2022-09-27" + }, + "venue": "Ambition_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8, + 9 + ], + "venue": "Innovation_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8, + 9 + ], + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8, + 9 + ], + "venue": "Innovation_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-24", + "end": "2022-10-22", + "weeks": [ + 1, + 3, + 4, + 5 + ] + }, + "venue": "Ambition_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-22" + }, + "venue": "Ambition_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Innovation_I", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-23", + "end": "2022-09-23" + }, + "venue": "Ambition_I", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Innovation_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 6 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the fundamental concepts of analytics like managing business analytics projects, basic statistics, R programming, linear regression and logistic regression, time series analysis, recommender systems and text analytics.", + "title": "Business Analytics Practice", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "13", + "moduleCode": "EBA5002G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip the learners the skills to manage data and provide analytics solution for customer relationship management and run campaigns effectively for growth. To achieve this CRM concepts and infrastructure, Customer Life Cycle Management principles, concepts of multivariate analysis like dimension reduction, cluster analysis, profiling, Propensity models, Attrition/churn Models, RFM Analysis, CLV calculation, Campaign Management principles etc. are covered.", + "title": "Customer Analytics", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "EBA5003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "Momemtum", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Integrity", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "Momemtum", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "Horizon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Integrity", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "Momemtum", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "Horizon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Integrity", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "Horizon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2 + ], + "venue": "Innovation_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9, + 10 + ], + "venue": "Horizon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-18", + "end": "2023-04-01", + "weeks": [ + 1, + 2, + 3, + 7 + ] + }, + "venue": "Ambition_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "Innovation_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-28", + "weeks": [ + 1, + 2, + 4 + ] + }, + "venue": "Innovation_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Innovation_I", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2 + ], + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Innovation_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip the learners the skills to manage data and provide analytics solution for customer relationship management and run campaigns effectively for growth. To achieve this CRM concepts and infrastructure, Customer Life Cycle Management principles, concepts of multivariate analysis like dimension reduction, cluster analysis, profiling, Propensity models, Attrition/churn Models, RFM Analysis, CLV calculation, Campaign Management principles etc. are covered.", + "title": "Customer Analytics", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "EBA5003G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-28", + "weeks": [ + 1, + 2, + 4 + ] + }, + "venue": "Innovation_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches fundamental and advanced skills in practical language processing. This includes fundamental text processing techniques, text analytics applications, deep learning techniques and their application in sentiment mining and chatbots development.", + "title": "Practical Language Processing", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "EBA5004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-02", + "end": "2022-09-10", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11 + ] + }, + "venue": "Ambition_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-24", + "end": "2022-10-15", + "weeks": [ + 1, + 3, + 4 + ] + }, + "venue": "Beacon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Momemtum", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-15", + "end": "2023-03-01" + }, + "venue": "Innovation_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-13", + "end": "2023-02-27" + }, + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-14", + "end": "2023-02-28" + }, + "venue": "Innovation_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Influence", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Influence", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Influence", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-23", + "end": "2023-03-02" + }, + "venue": "Innovation_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches fundamental and advanced skills in practical language processing. This includes fundamental text processing techniques, text analytics applications, deep learning techniques and their application in sentiment mining and chatbots development.", + "title": "Practical Language Processing", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "EBA5004G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-18", + "end": "2022-07-18" + }, + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the advanced concepts of predictive modeling and Time Series Forecasting and their application in few special areas like Health Care & Service Industry in addition to other domains like Public Services, IT Services, Finance, Airlines, Logistics, Transport, Hotel & Tourism Industries. The topics include Conjoint Analysis, ARIMA & SARIMA, Transfer Functions, GARCH, Survival Analysis, Econometric modelling & forecasting, Design of Experiments, Prescriptive analytics for revenue and profitability optimization, Dynamic pricing & revenue management, Personalized targeting using Retail data, marketing and salesforce optimization etc.", + "title": "Specialized Predictive Modelling and Forecasting", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "EBA5005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-02", + "end": "2022-10-15", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 13, + 14, + 15, + 16 + ] + }, + "venue": "Innovation_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-06", + "end": "2023-02-20" + }, + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-08", + "end": "2023-02-22" + }, + "venue": "Ambition_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-09", + "end": "2023-02-23" + }, + "venue": "Ambition_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-07", + "end": "2023-02-21" + }, + "venue": "Ambition_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Ambition_I", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the advanced concepts of predictive modeling and Time Series Forecasting and their application in few special areas like Health Care & Service Industry in addition to other domains like Public Services, IT Services, Finance, Airlines, Logistics, Transport, Hotel & Tourism Industries. The topics include Conjoint Analysis, ARIMA & SARIMA, Transfer Functions, GARCH, Survival Analysis, Econometric modelling & forecasting, Design of Experiments, Prescriptive analytics for revenue and profitability optimization, Dynamic pricing & revenue management, Personalized targeting using Retail data, marketing and salesforce optimization etc.", + "title": "Specialized Predictive Modelling and Forecasting", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "EBA5005G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the foundation skills and best practices to process/engineer Big Data arising from diverse data sources. It also teaches the skills & knowledge required for analyzing Big Data as well as its industry applications in various domains like Transport, Supply Chain, Logistics, Ecommerce, Retail, Marketing, F&B and Social Media & Entertainment, etc. by deploying a common framework.", + "title": "Big Data Analytics", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "EBA5006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9, + 11, + 12 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9, + 11, + 12 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9, + 11, + 12 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-02-11", + "weeks": [ + 1, + 2, + 4, + 5, + 6 + ] + }, + "venue": "Ambition_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-25", + "end": "2023-03-11" + }, + "venue": "Horizon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Momemtum", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Ambition_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10, + 11, + 12 + ], + "venue": "Influence", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Ambition_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Ambition_I", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Beacon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Momemtum", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Beacon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Momemtum", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Ambition_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the foundation skills and best practices to process/engineer Big Data arising from diverse data sources. It also teaches the skills & knowledge required for analyzing Big Data as well as its industry applications in various domains like Transport, Supply Chain, Logistics, Ecommerce, Retail, Marketing, F&B and Social Media & Entertainment, etc. by deploying a common framework.", + "title": "Big Data Analytics", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "EBA5006G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-02", + "end": "2023-01-02" + }, + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-07" + }, + "venue": "Ambition_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Enterprise Business Analytics project is designed to be a building block for students to consolidate and put into practice ther skills, tools and techniques learned during the Masters programme. \nThis implementation intensive experience will give students the opportunity to analyse the business needs of a functional area in an organization and suggest and apply Business Analytics techniques to provide business insights and identifiable benefits. \nThe project may take form of a typical consulting engagement or alternatively it may involve the experimental application and validation of a Business Analytics technique such as neural nets, text mining, decision trees etc.", + "title": "Capstone Project in Data Analytics", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "EBA5007", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "0959", + "weeks": [ + 2 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "0959", + "weeks": [ + 2 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to some of the basic concepts, methods, and models in economics to equip the students to think economically. These tools will enable students to understand current economic issues and appreciate economics in their everyday lives.", + "title": "Introduction to Economic Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W29", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W33", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W31", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W35", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W30", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W14", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W16", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W12", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W22", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W25", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W26", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W28", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W23", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W18", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W20", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 325, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Monday", + "lessonType": "Lecture", + "size": 325, + "covidZone": "B" + }, + { + "classNo": "W32", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W27", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W17", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W13", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W34", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W19", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W24", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W21", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W08", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W17", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "Unknown" + }, + { + "classNo": "W16", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W09", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W18", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W25", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W26", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W20", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W24", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W21", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W30", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W22", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W28", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "Unknown" + }, + { + "classNo": "W27", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W23", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W29", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W19", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to teach the basic principles of economics to undergraduates from non-economic majors. It introduces students to elementary microeconomic and macroeconomic concepts and provides them with an economic framework to understand the workings of individual markets, the aggregate economy, as well as international trade and finance.", + "title": "Principles of Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC1301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is for students who have studied the principles of economics and will take them through to the next level in their study of microeconomics. Our approach stresses the relevance and application of microeconomic theory in both managerial and public policy decision making. A combination of tables, figures, and simple mathematics will be used to provide the grounding in the key principles of microeconomics for further study in the economics programme.", + "title": "Microeconomic Analysis I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W13", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "W18", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W20", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W19", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course develops the analytical tools to study short-run fluctuations in aggregate economic activities. We emphasize the micro-foundations of macroeconomics and investigate the determinants of consumption, saving, investment, labor demand and labor supply. We derive the IS-LM and AD-AS frameworks and use these frameworks to understand why the economy goes through booms and busts. We also discuss different theories of the business cycles, such as the Keynesian and the Real Business Cycle theories. In particular, we examine their assumptions and policy implications for macroeconomic stabilisation.", + "title": "Macroeconomic Analysis I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W08", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "Unknown" + }, + { + "classNo": "W16", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W18", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W09", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "Unknown" + }, + { + "classNo": "W12", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to enable students to integrate relevant basic mathematical knowhow with economic analysis. The main objective is to develop in the\nstudents the process skills for formulating and solving economic problems mathematically. Topics include equilibrium analysis, understanding and use of matrix algebra and differential and integral calculus in formulating and solving economic problems, comparative\u2010static analysis, and selected optimization problems in economics.", + "title": "Quantitative Methods for Economic Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W05", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Friday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W02", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W12", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W13", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W09", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course helps to let students appreciate the use of accounting in measuring the efficiency and performance of firms, and its relevance in the study of Economics. Students would be able to critically evaluate financial statements and interpret key financial ratios in the study of firms. Consequently, students would be equipped with the necessary tools to analyze and project the performance of firms in economic models.", + "title": "Financial Accounting for Economists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to managerial economics including the organizational aspects of business. Managerial economics extracts from microeconomic theory those concepts and techniques that enable managers to select strategic direction, to allocate efficiently the resources available to the organization, and to respond effectively to tactical issues. Students will analyse how the economist is able to provide valuable insights to managers on topics such as costs, prices, markets, mergers, divestitures, globalization, and personnel policies. The important role of the entrepreneur in the economy will be examined and students will also gain an insight into the real world- functioning of business management.", + "title": "Economic Analysis of Business", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W03", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "W01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in statistics for economists. The goal of this course is to provide a rigorous foundation for students who intend to study econometrics. This course broadly covers descriptive statistics, probability and statistical inference, and bivariate linear regression. More specifically, it covers the following topics (1) summarizing economic data, (2) classical probability theory, (3) random variables and probability distributions, (4) sampling distributions, (5) point and interval estimation, (6) hypothesis testing, and (7) bivariate linear regression analysis.", + "title": "Foundations for Econometrics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + }, + { + "classNo": "W10", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W11", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W05", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W08", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W06", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The rise of the Chinese economy has profound impact on the world and our region. In this module, students will learn to appreciate the basic structure of China's economy by exploring its historical origins, cultural backgrounds, geographical features, and institutional evolutions. The module aims to help students develop capability of comprehending changes of economic and business environment in China and their likely implications on Southeast Asian economies.", + "title": "Economy of Modern China I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2374", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The economic causes of environmental and resource problems are a major theme of the module. Economic theory is applied to environmental questions associated with resource exploitation; the problem of externalities and their management through various economic institutions, economic incentives and other instruments and policies. Means of analysing the economic implications of environmental policy are also discussed as well as the valuation of environmental quality, assessment of environmental damages, and tools needed for the evaluation of projects such as cost-benefit analysis, and environmental impact assessments. Selected topics on international environmental issues will also be discussed.", + "title": "Environmental Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2383", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in economics. The topics covered will be dependent on the interest and specialities of regular or visiting staff in the Department.", + "title": "Topics in Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is offered under FASSTrack Asia programme. Society has oriented itself within cities for more than 10 millennia. Cities enable trade, self-protection and social expression. They also create the need for politics, law and administration. This module introduces students to microeconomic theory, then uses these concepts to investigate urbanism. We discuss why cities form, how cities can succeed, and why some cities fail. We draw examples from both ancient and modern cities, with particular emphasis on cities in Asia.", + "title": "Topics in Economics: The Rise and Fall of Great Cities", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2880A", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is offered under the FASSTrack Asia programme. This course is designed to help students understand economic growth processes by analysing the experience of Japan, South Korea, Taiwan, Hong Kong and relating them to the experience of Singapore. Major topics include catching-up debate, comparisons of East Asian models, the role of the state, industrial and trade policy, globalisation, the Asian financial crisis, the balance sheet recession and so on.", + "title": "Topics in Economics: Miracle and Crisis in East Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC2880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of the foundation module on microeconomics. It is designed to equip students with the standard tools and techniques to analyze microeconomic issues and to prepare them to access higher level modules that utilize microeconomic analysis. \n\n\n\nThe module begins with a review of several foundation topics on consumer and producer theory covered in the prerequisite course, i.e. EC2101. It then moves on to discuss the general equilibrium model, whereby consumers and producers are put together in a general equilibrium framework. After that, it covers choice over time, i.e. inter-temporal choice and choices over different states of the world, i.e. choices under uncertainty. It then continues with game theory. This topic will be discussed extensively. Coverage will include various solution concepts for one-shot games and sequential move games. Applications of the theory on the issues of oligopolistic competition, entry and entry prevention, and network economics will receive a great deal of attention. Finally, the module ends with the asymmetric information, i.e. moral hazard and adverse selection and its application on the internal organisation of the firm. Throughout the course, empirical observations and real-life cases pertaining to the issues discussed in this module are presented.", + "title": "Microeconomic Analysis II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Friday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W10", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W15", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W13", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W14", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0510", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0510", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course follows up on Macroeconomics I (EC2102). We review consumption and investment theories, and study the determinants of money demand and supply. Aggregate Supply functions under differing assumptions regarding labour-market clearing and price expectations (rational or adaptive) are derived next, and combined with the Aggregate Demand function to study policy and other effects. We next examine the expectations-augmented Phillips Curve, and simple inflation-unemployment dynamics. We also study further policy issues (time inconsistency, Ricardian Equivalence, profit-sharing), open-economy macroeconomics (the Mundell-Fleming model), and simple growth theory (the Solow model and the AK endogenous growth model).", + "title": "Macroeconomic Analysis II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "W04", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "Unknown" + }, + { + "classNo": "W08", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W13", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W05", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Econometrics combines economic theory with mathematical and statistical tools to provide estimates that help answer important economic questions. This course will focus on the theoretical underpinnings, practical implementation and interpretation of results from the multiple regression model in cross-sectional data settings. It will also introduce students to panel data, fixed effects regression, and instrumental variables regression.", + "title": "Econometrics I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course builds on earlier modules on econometrics and statistics such as EC2303 and EC3303. It will cover a range of econometric methods used for analyzing economic data in microeconomic and macroeconomic applications. Whilst there will be some theoretical discussions, the main aim of the module outcome is for students to be able to apply econometrics techniques in practical situations, independently, using STATA.", + "title": "Econometrics II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3304", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "Unknown" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Friday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0110", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on teaching programming tools and econometric software for economics. The aim is for students to master basic programming skills and to\nknow how to use broadly used econometrics software. It will be a \"hands-on\" module during which students will learn to explore, modify, manage, and analyze data. They will also learn how to learn by themselves skills that will not be covered in class. At the end of the course, students will be able to produce a given analysis starting from any type of raw data. Applications will cover several fields of applied economics.", + "title": "Programming Tools for Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3305", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on teaching programming tools to transform and explore economic data or data in general using the R software. The students will learn different data structures, conditional statement, loops, function writing, and different popular and powerful packages in R so that they are able to write their own codes and to use packages\u2019 tools to subset and manipulate the data, and build different econometric models. They will apply the acquired knowledge to real-life data problems.", + "title": "Economic Data Analysis with R Programming", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3305R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students in economics and other social sciences to game theory, a theory of interactive decision making. This module provides students with the basic solution concepts for different types of non-cooperative games, including static and dynamic games under complete and incomplete information. The basic solution concepts that this module covers are Nash equilibrium, subgame perfect equilibrium, Bayesian equilibrium, and perfect Bayesian equilibrium. This module emphasizes the applications of game theory to economics, such as duopolies, auctions, and bargaining.", + "title": "Game Theory & Applications to Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3312", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module continues from EC2104. Topics include more advanced mathematical tools and techniques for economic analysis such as static optimization and comparative statics, dynamic systems and dynamic optimization.", + "title": "Mathematics for Economists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3314", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course considers the behaviour of firms in a market economy. It has two parts. One - the basic theory part - considers how firms behave under different market structures. The other part is policy-oriented. It applies tools from the basic theory part to everyday problems and scenarios and tries to assess market efficiency and effects of possible intervention by the government or regulatory agencies. The two parts proceed simultaneously. Real-life problems or scenarios are introduced and while discussing them the required theory is developed. Students must be able to take derivatives and solve optimization problems and think critically in a logical manner.", + "title": "Industrial Organisation I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3322", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the economic analysis of the following: (1) the structure and role of financial institutions, (2) tools and conduct of monetary policy, including monetary theory. Topics include the role of money, debt and equity; financial institutions and markets; regulation; financial crises; interest rates; commercial bank operations; the money supply process; theories of money demand; conduct of monetary policy and its role in different macroeconomic frameworks: international role of money; monetary policy in Singapore. As financial activities and events affect our everyday lives, this course should be of interest to a wide variety of students.", + "title": "Money and Banking I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3332", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W04", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to certain areas of financial economics. It attempts to develop a theoretical foundation for choice under uncertainty, portfolio analysis and equilibrium asset pricing models. A considerable portion of the course will also be devoted to the fixed-income securities and derivative securities. Since this is an economics course in a liberal arts and sciences setting, we will emphasize economic concepts whenever possible, and spend time on the intellectual and economic development of investment analysis.", + "title": "Financial Economics I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3333", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W06", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 175, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0510", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0510", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0510", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0510", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "International trade is about how nations interact through trade of goods and services. This module focuses on the real transactions across borders (i.e., those transactions that involve a physical movement of goods or a tangible commitment of economic resources), such as the pattern of trade, gains from trade, and trade volume.", + "title": "International Trade I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3342", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the theory and practice of international macroeconomics and finance. The objective of this module is to give students a\ntheoretical framework to think about a wide variety of current issues in international finance: current account deficit, global imbalances, exchange rate\ndetermination, monetary policy in an open economy setting, and global financial crisis in 2008.", + "title": "International Finance I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3343", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W04", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the economic analysis of the government sector using microeconomic tools. Principles and policies concerning both taxation and expenditure are covered. In particular, the effects of various fiscal arrangements on efficiency in resource allocation and on equity are analysed. The focus is on developing analytical tools to evaluate public policy proposals, particularly as they relate to Singapore's budgetary process.", + "title": "Public Finance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3351", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module employs the analytical tools of economics to provide a better understanding of the workings and outcomes of labour markets. It applies economic theory to analyze and predict the behaviour of and relationship between labour market participants; to understand the causes of important labour market trends and developments; and to discuss and evaluate policies affecting labour services. Major topics covered include the theory of individual labour supply, labour demand, economics of education, training and migration, trade unions and collective bargaining, economics of personnel, pay determination and productivity.", + "title": "Labour Economics I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3361", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides students with a general knowledge on various aspects of the economics of population. It commences with a discussion of basic demographic tools and then takes up topics in population analysis of interest to economists. Topics to be covered include: demographic transition, Malthusian theory, the economic determinants of fertility and migration, population growth and economic growth, optimum population, and the economics of ageing. The module is for students with strong microeconomic background and with interest in the economics of population.", + "title": "Population Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3362", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the economics of developing countries. The first three lectures will focus on principles and concepts of development. The second part of the module will provide an overview of theories of development. The third part will examine development strategies and policies designed to address issues of growth and development and will, in this instance, focus on the development experiences of selected Asia-Pacific economies. This segment of the module will provide students with an appreciation of the development problems, possibilities and prospects in these regional economies.", + "title": "Development Economics I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3371", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses the economic development experiences of the ASEAN economies in post-war years with emphasis on the role of ASEAN economic cooperation. Major topics covered include agricultural and rural development, industrialisation, international trade, resource transfers, development of local capital, ASEAN's international economic relations and future prospects for ASEAN growth and economic cooperation.", + "title": "Asean Economies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3373", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to help students understand certain key contemporary issues in the Chinese economy, particularly those relating to the process of its transition from a centrally planned closed economy to a market-based economy open to international trade. Students are expected to develop a comprehensive and critical perspective of China's economic transition and its impact on the rest of the world economy.", + "title": "Economy of Modern China II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3374", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines economic miracles of Japan and Korea and their central business organizations, keiretsu and chaebols, that brought the success. It then analyzes how they responded to the challenges of the transition from catching\u2010up economies to mature economies, and how their business organizations functioned in the transition process.", + "title": "Economy and Business of Japan and Korea", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3375", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\u201cEuropean Economic Integration\u201d covers the historical origins, contemporary developments, institutions and the major economic and other policy areas of the European Union: The Single Market, Monetary Union, customs union, sectoral policies (competition, regional development, agriculture, environment, research, social policy, transportation, energy, industry, trade etc), her future enlargement and cooperation in internal security/immigration and external security and foreign policy. The tutorials focus on individual economic and political country profiles of the EU\u2019s current and future member states. The objective is to give students a sound background to evaluate the EU\u2019s and her member states current and future economic and political situation and to study the evolution and the problems of regional integration in using the world\u2019s most advanced model case. As the course is interdisciplinary in nature (covering economics, politics, contemporary history and law), interested students from other faculties are encouraged to attend. Basic economic literacy and some knowledge of European history and politics are a definite plus.", + "title": "Economics of European Integration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3376", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "India is one of Asia\u2019s most important economies and amongst the largest in the world. However, India\u2019s, and South Asia\u2019s trade/investment integration with the rest of Asia remains limited. With business\u2010friendly government firmly in power in India, the module will focus on applied aspects of the macroeconomic fundamentals, and growth strategies in India and South Asian economies, and their cross\u2010border thematic issues with policy relevance (e.g. demographic dividend, overcoming poverty, income inequality, knowledge economy, R&D/innovation, environmental challenges, governance issues, etc). The module will also deal with the ongoing and planned intra\u2010regional, and interregional cooperation measures (eg. SAARC, SAFTA, SASEC, ASEAN, RCEP, GMS, BRICS\u2019 NDB, etc).", + "title": "Emerging India in Asia's Economic Integration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3378", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides students with a general knowledge on various aspects of urban economics. It uses microeconomic analysis to explain why cities exits, where they develop, how they grow, and how different activities are arranged within cities. Models of firm, industrial and household location decisions will form the basis in analysing urban land use patterns and trends. Other topics covered include housing markets, the role of the government in the urban economy, and urban transportation. The module is for students with strong microeconomic background and with interest in urban economics.", + "title": "Urban Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3381", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines economics of natural resource use and energy economics. The materials covered include basic concepts of renewable and non-renewable resources and energy, dynamics of resource use, optimal use of renewable resources, optimal depletion of exhaustible resources, intergenerational equity in resource use, profiles of energy resources and technology, demand for and supply of energy, energy and growth, economics of climate change, and issues relating to sustainability. Through this module, students could acquire interdisciplinary nature of resource and energy use.", + "title": "Resource and Energy Economics I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3384", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International transportation has evolved into a complex system involving ocean carriers, ports, terminals and multimodal transport intermediaries. In such networks, major container hubs, such as this of Singapore, play a crucial role as 'nodes' and trans-shipment centres. Nowadays, the optimization of global supply chains requires a holistic approach to shipping through the study of what has come to be known as Maritime Economics and Logistics (MEL). The course follows this approach, focusing on liner (container) shipping, its operations, structure and regulatory environment.", + "title": "Maritime and Shipping Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3385", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-24" + }, + "venue": "AS6-0214", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1200", + "endTime": "1400", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-24" + }, + "venue": "AS6-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The rapid process of globalisation over the last decade with intensive international trade, foreign investment and manufacturing outsourcing and the booming resources sector, has had pervasive effects on the way ports are built and operated, from providing simple ship shelter and warehouse services to much more complex, multimodal terminal services, from monopoly to competition, and from state/government-owned to local private corporations. Port Economics explores fundamental issues related to port operation and management from the economic perspective, including but not limited to port planning and development, competition, tariff design, performance monitoring, policies and regulations.", + "title": "Port Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3386", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the works, ideas and significance of many of the most influential economists and writers on economic topics of the last four hundred years or so. We will start with the development of analytical economics during the mercantile era in Europe and reach the second half of this century when we will overview the main competing schools in economics and appreciate their historical background. Students will be expected to read parts of the original works of the most important economists they will meet such as David Hume, Adam Smith, David Ricardo, Karl Marx, William Stanley Jevons, Alfred Marshall, John Maynard Keynes, Milton Friedman and possibly others. Students will be encouraged to treat this as a research course in which they will be expected to show initiative in finding and using relevant sources. The first lecture will discuss certain aspects of the course, what is expected of students, what they are likely to learn and the different approaches to the subject they will come across.", + "title": "Evolution of Economic Thought & Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3391", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "Unknown" + }, + { + "classNo": "W01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines the key modalities in the evolution of European Economic and Social Institutions from the collapse of the Holy Roman Empire all the way through the rise of Capitalism and the Industrial Revolution. The development of novel property rights, new technologies, altered social relations, demographic change, and transformed political structures, are the principal areas to be studied. A special feature to this evaluation is to contextualise the European achievement in the context of related world history, in particular, its close linkage to non-European societies via the modus of Colonialism.", + "title": "European Economic History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3392", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course defines, describes, and analyses the underlying concepts and characteristic features of modern economic systems. It provides students with tools to understand and compare economic systems in today's rapidly changing world, especially the transition economies.", + "title": "Comparative Economic Systems", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3393", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses how findings and insights from psychology can be incorporated formally and rigorously into economics to improve its descriptive and predictive powers. It will also discuss the implications for policymakers. The module does not require any background in psychology but it does assume that the students have had rigorous training in microeconomics, macroeconomics, and econometrics.", + "title": "Economics and Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3394", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we examine the interaction between economics and ethics along several dimensions. We uncover the ethical underpinnings of economics as commonly taught and practiced in its selection of topics, measurements and principles. We examine how incorporating ethical motivations in individual\ndecision\u2010making enriches economic models and explains important features in modern economies. We also look at how economics influences the value\nsystems of participants in the economic system. Current issues in which economic considerations appear to be in conflict with ethics will be discussed.", + "title": "Economics and Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3395", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\"Why is there this thing called \u201cgovernment\u201d? Why do we need to own stuff? Why is theft illegal? Why is\nit occasionally good to breach a contract?\u201d These questions touch very distinct areas of the law. But\nthere is one way to go about answering all of them: Economic Analysis! In this class we will show that\neconomic efficiency is what makes a good law and that laws that don\u2019t make sense can be critiqued with\neconomic arguments. Law and economics is a class that expands the scope of economics and limits the\narbitrariness of the law.", + "title": "Economic Analysis of Law I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3396", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0312", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3551R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in Economics. The topics to be covered will depend on the interest and expertise of regular or visiting staff member in the department.", + "title": "Topics in Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes a multi\u2010disciplinary, practitionerdriven perspective to analysing government policies and actions. It does this by applying three conceptual paradigms to studying government, namely standard economics, behavioural economics and organisational psychology. The course will first examine governments through the lens of market failures and how economists have viewed the role of government. It will then examine the cognitive limits of economic agents and explore how behavioural economics offers the prospect of better policy design. In the third segment, the course explores government actions through the lens of organisational psychology, and examines how bureaucratic inertia impedes reform and innovation.", + "title": "Topics in Economics: Understanding Government", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad overview of Southeast Asian economic history from \u201cpre-modern\u201d times to the present day. The focus will be broad rather than narrow, and we shall devote attention both to internal developments in Southeast Asia and to the region\u2019s long and varied engagement with other parts of the world. Some familiarity with economic concepts and with Southeast Asian history obviously will be helpful, but there are no prerequisites for the module. The course will be conducted in lecture/discussion format.", + "title": "Topics in Economics: Economic History of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module immerses students in the economic history of Penang, and by extension, the Straits Settlements. We consider how political conflicts across the globe centuries ago explain the diaspora in Penang today. We examine the lives of different linguistic, religious, and political communities \u2014 Malays, Chinese, Chulia, Armenians, Sephardi Jews, and British \u2014 as well as the birth of hybrid identities \u2014 Baba Nyonya, Jawi Peranakan, and Eurasians. We explore how globalization enabled a few immigrants to go from rags to riches. We observe the different players \u2014 merchants, coolies, and bureaucrats. We study the interaction and evolution of labor, capital, and technology.", + "title": "Topics in Economics: Empire, Economics, and Identity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3880D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to help students to understand how the demand and supply of healthcare services interact to yield market outcomes (price, quantity, and quality) \nin various healthcare markets, such as US, UK, Singapore, and China. Students will learn to analyse (1) the behaviour of consumers, insurers, physicians, and hospitals using basic economic frameworks; (2) the impacts of public policies in health and medical care from an economic perspective.", + "title": "Topics in Economics: Introduction to Health Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC3880G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to provide students with a sound understanding of modern microeconomic theory. The first half of the course introduces the fundamental tools of microeconomic analysis. It covers consumer theory, firm theory, and general equilibrium. The second half consists of introduction to a number of topics which signify the recent development in microeconomics. These topics include decisions under uncertainty and asymmetric information, and non-cooperative game theory and its applications.", + "title": "Microeconomic Analysis III", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is divided into two sections; long\u2010 and short\u2010 run macro\u2010economic analysis. In the first section, we shall discuss various theories of economic growth using inter\u2010temporal optimization models, which include neo\u2010classical growth models and overlapping\u2010generations models. In the second section, we shall add stochastic elements to the standard neo\u2010classical growth model and use it to study business cycles. Our focus will be to highlight the similarities and differences between the Real Business Cycle and New\u2010Keynesian Models. This course is suitable for students intending to pursue graduate studies or quantitative research (in ministries, statutory boards, etc.) in Economics.", + "title": "Macroeconomic Analysis III", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4302", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at consolidating what was covered in Econometrics I and II and provide a reasonable training in econometric theory and sound empirical analyses. In addition the module will cover non-linear models, time series econometrics (including cointegration and error correction models), simultaneous equations models and more on other topics such as microeconometrics. The module will be highly useful for honours theses that deal with applied problems.", + "title": "Econometrics III", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies techniques for forecasting, evaluating forecast performance and associated uncertainty, and comparing and combining forecasts that are tailored to the typical characteristics of economic and financial data. The emphasis is put on application of these techniques to forecasting real world data using a popular software package such as Stata or EViews.", + "title": "Economic and Financial Forecasting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4304", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers applied econometrics topics that are useful for policy. The aim is to introduce statistical methods to measure the causal impact of policy and provide firm foundations under which policy evaluation is valid. Fields for which the methods can apply includes economics of education, labour economics and development economics.", + "title": "Applied Econometrics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4305", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers selected topics including economics of asymmetric information, auction and mechanism design, and matching and market design. The module will focus on delivering the economic insights and minimize the use of mathematical tools. Emphasis will be placed on main applications such as design of efficient and revenue\u2010maximizing auctions, design of stable school choice mechanisms, and design of efficient and optimal contracts.", + "title": "Applied Microeconomic Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4306", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module draws on the tools of macro\u2010economic\nanalysis developed in EC2102 and EC3102. It applies the\ntools to understand the classic and contemporary macroeconomic problems and policies The first half of the semester will be devoted to a quick review of important tools of Macroeconomic analysis. The second half will employ the tools to analyse significant historical as well as contemporary macroeconomic events.", + "title": "Issues in Macroeconomics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4307", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will introduce the students to machine learning and data mining methods for economics problems. It will provide a conceptual understanding of the popular machine learning supervised methods including decision trees, neural networks, and support vector machines as well as some unsupervised learning methods. Students will be able to learn how these methods differ from and complement the econometric models and to choose the right one for a given task. To apply the theory, the student will work on hands-on in-class examples, assignments, and the final project.", + "title": "Machine Learning and Economic Forecasting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4308", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers advanced mathematical techniques applied in economic\ntheory and economic modelling. A major focus on the course will be Dynamic Optimization, including recursive methods and optimal control theory. The emphasis will be placed on both mathematics and economic applications. Students who are interested in pursuing higher degree in economics are strongly encouraged to take this course.", + "title": "Mathematical Economic Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course studies models that depart from the standard Walrasian environment through the introduction of search and matching frictions, with applications to labour, goods, marriage and money markets. By introducing frictions, we can use our models to think more deeply about issues like wage/price dispersion, unemployment compensation, whether sellers should post prices or conduct auctions, or even why money is held.", + "title": "Search Theory and Applications", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4313", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies topics in the economics of industrial organization at an advanced undergraduate level. Models of rivalry between firms will be developed and used to analyse a rich array of firm strategies, and their implications for competition policy and/or regulation. Students should be able to use the methods learnt to engage in business and public policy analysis of firm behaviour. Examples of topics which may be included include an analysis of product differentiation, price discrimination, collusion, mergers, vertical constraints, predatory pricing, entry deterrence, bundling and tying, switching costs and network compatibility choice.", + "title": "Industrial Organisation II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This model gives a brief understanding of the requirement of moral values in economic theories. This module focuses to deal with the methods of measurement of inequality, statistical modelling of income distribution, theories of distribution, empirical regularities, country case studies and policy issues. Issues related to standard of living, Human Development Index, concepts of absolute and relative poverty and measurement come under the purview of this module.", + "title": "Income Distribution Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies antitrust and competition policy: the economic analysis of firms acting \"anticompetitively\" and how competition authorities might respond to their actions. It draws on the study of industrial organization.", + "title": "Economics of Competition Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4324", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the economics of digital multi-sided platforms such as those run by the big-tech firms Alibaba, Amazon, Apple, Facebook, Google and Tencent. Given such businesses are based on network effects and data, these businesses raise many new economic and strategic questions that policymakers and market participants are currently grappling with, and which our standard economic analysis does not properly address. The module will develop industrial organization models of multi-sided platforms to explore interesting strategy and economic policy questions specific to these platforms.", + "title": "The Economics of Digital Platforms", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4325", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course exposes students to tools and concepts used at central banks. The course introduces the New Keynesian Model (NKM) and its recent extensions, familiarizes students with monetary policy analysis using this framework, and discusses empirical evidence and puzzles. Open economy aspects will be highlighted whenever suitable. The theoretical concepts will be applied to historical episodes in monetary policy\u2010making using material issued by central banks, the International Monetary Fund (IMF) or the Bank for International Settlement (BIS).", + "title": "Monetary Economics and Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics include recent developments in monetary theory and policies, rational expectations, demand for money-econometric analysis and empirical studies, the role of money in general equilibrium, a framework for the determination of money supply, issues in monetary policy such as money neutrality, rules versus discretion, policy credibility, exchange rate determination, monetary policy co-ordination, theories of interest rate determination and structure, credit rationing, issues in bank management, financial markets and instruments, bank regulations, internationalization of banking, and monetary policy and foreign exchange management in Singapore.", + "title": "Money and Banking II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4332", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an in-depth analysis of the theories and models that are essential to the understanding of financial decision making. The course covers topics on decision making under certainty and uncertainty, no-arbitrage pricing theory, mean-variance portfolio selection theory, capital asset pricing model, efficient market hypothesis, mathematics of derivative securities, pricing theory and applications of contingent claims such as standard options, mortgage-backed securities and interest-rate instruments.", + "title": "Financial Economics II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4333", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0312", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Market microstructure studies how trading takes place in financial markets. The module will cover theoretical models and the associated empirical analysis employing game theory and econometric theory. We first analyse the movement of security prices by time series models. Second, we investigate various trading strategies adopted by market participants. We then examine three main types of theoretical models of trading: inventory models, sequential trading models, and strategic trading models. Finally, we study how trading rules and institutional details may lead to different trading processes.", + "title": "Financial Market Microstructure", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4334", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course applies some of the 'core' theory from the pure theory of trade and international finance to some topics of interest in the international arena. Topics might include: the gains from trade revisited, endogenous growth and trade policy, the 'new' protectionism, multinational corporations and the transfer of technology, the 'new' regionalism, reforming the international financial architecture, predicting exchange rates movements, coping with international capital flows, the prospects for monetary integration in Asia, international money, the euro, and the internationalisation of the Singapore dollar, the international debt problem.", + "title": "International Trade II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4342", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The International Monetary System is the worldwide framework that facilitates cross-border flows of financial capital to finance investment and trade. Today\u2019s system traces its roots to the late 19th century. Before World War I, major currencies were tied to gold, implying a system of fixed exchange rates without room for independent monetary policy. Today no major currency is tied to gold, and monetary policy is independent. Employing the tools presented in International Finance I, the course discusses how the system has operated throughout time and why it changed. The discussions are embedded in the economic context of the times.", + "title": "International Finance II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4343", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course equips students with analytical and empirical tools to understand why the government intervene in the economy and through which mechanism this intervention takes place. We analyse the trade-off faced by the government in designing various public policies, e.g. taxes and subsidies, social protection programs, public good provisions, environmental protection, and healthcare. Theoretical tools are deployed to understand the decision-making process by economic actors and to predict how will they react to the policies. Careful empirical analyses using state-of-the-art methods is discussed to assess these theoretical predictions using the data available in the field.", + "title": "Public Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4351", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An honours module that covers the application of macro and micro economics to address practical real world economic questions facing Singapore. It makes use of a wide range of advanced economic tools and approaches, and shows how to apply these to practical issues.", + "title": "Singapore Economy: Practice and Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4352", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0312", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide overview of the economics of health and medical care. It examines the roles of hospitals, physicians, and health insurance, the determinants of health, and institutional features of health care system. Students learn how to apply economic and econometric tools to analyse them and discuss related public policy.", + "title": "Health Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4353", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module uses microeconomic theories and models to understand and examine a range of issues related to education and education policy. Major topics studied include how and why individuals make decisions to\ninvest in education, the variety of factors that influence student performance and outcomes, and the effects of various educational reforms.", + "title": "Economics of Education", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4354", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course covers the theories and empirics of economics of ageing. There are three segments. The first segment introduces the concepts of population ageing and economic models incorporating effects of aging. The second segment equips students with methodology and tools to approach the topic on ageing. The last segment highlights the economic impacts of ageing, in terms of economic growth, fiscal pressures and sustainability, pension analyses and health financing. With reference to Singapore\u2019s context, this course will examine policy options available to mitigate the effects of ageing, including their trade-offs.", + "title": "Economics of Ageing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4355", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0312", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to train students to how use big data to analyse advanced labour market issues. Issues discussed include the impacts of the recent technology improvements on labour supply and labour demand; the effects of minimum wage on employment; labour market discrimination; theory and recent developments on income wage and wealth inequality and intergenerational mobility. Students learn current econometric and theoretical methods used in applied microeconomics and how to apply these methods in analysing the issues that they are interested in.", + "title": "Big data and Labour Market Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4361", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies global and regional factors that influence international migration and its impact on welfare and development outcomes of individuals and communities in source as well as destination countries.", + "title": "Immigration Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4362", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a foundation in applied population economics in both developed and developing countries, with a focus on macro\u2010demographic patterns and transitions, marriage and fertility, and household formation and bargaining. In addition to learning underlying models of economic decision\u2010making, students will use Stata to conduct economic analysis of demographic trends, and they will write an original research paper that applies some of the principles covered to a topic of their choosing.", + "title": "Applied Population Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4363", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an in-depth analysis of some important theories and issues concerning economic growth and development in developing countries. Important theories and/or models relating to various issues concerning development will be examined. The course will also discuss policy issues relating to such areas as agricultural development, income distribution, industrialisation, trade, and foreign investment. The course is of interest to students interested in development theories and their application to finding solutions to policy problems in developing countries.", + "title": "Development Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4371", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with comprehensive understanding of the nexus between technology, innovation and economy. It deals with major theories of 'technology economics' and attempts to synthesise them with historical and comparative perspective. An emphasis is placed on methodology due to the interdisciplinary characteristics of the subject. Some questions to be explored include: (1) major characteristics of technological change, (2) impacts of technical changes on the economy, (3) competitive strategies of firms and nations in coping with technological changes, (4) globalisation of production and R&D networks, (5) comparison of national innovation systems of East Asian countries, (6) Singapore's future in technological development.", + "title": "Technology and Innovation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4372", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W02", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0510", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0510", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0510", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "W03", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0510", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar module aims at an in-depth analysis of the structural changes in the Singapore economy, critical evaluation of the development strategies and policies, and discussion of issues, problems, and policy options. Seminar topics will include sources of growth and productivity, changing development strategies, economic restructuring, savings, Central Provident Fund and social security, foreign reserves and exchange rate management, development of the financial centre and other services, industrial policy and the pattern of industrialisation, role of foreign investment and foreign workers, domestic entrepreneurship, wages policy, the labour market and manpower development, export competitiveness, public housing and public transport.", + "title": "Policy Issues of Singapore Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4373", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we use economic theory and quantitative methods to understand why some countries grew rich while others did not. Since the operation of an economy cannot be devoid of its institutional context, special attention will be paid to the political economy of development. Besides the economics literature, we will also read selected works by historians, political scientists, and sociologists to gain a more comprehensive understanding of development issues in Asia, Africa, and the West in recent centuries.", + "title": "Global Economic History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4377", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to expose students to the key problems and issues in transport economics and to ideas that have wider applications across the transport sector. As an applied area of microeconomics, the course focuses on demand, production and costs, pricing and investment, and competition and regulation. The course will apply theories in a variety of contexts so that students will gain valuable insights into the particular characteristics of transport modes. Assessment tasks will be designed to allow students to explore these matters in depth.", + "title": "Transport Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4382", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will undertake a rigorous theoretical and empirical study of the economic effects of environmental policies at the local, national, and global\nlevel. It will make use of microeconomic and statistical analysis at the intermediate level, and will incorporate real-world examples. The module will be divided into two parts: first, we will discuss how markets fail to efficiently allocate resources in the presence of pollution, along with the class of policies used to correct those failures. The second part will focus on the empirical techniques used by economists to assign values to environmental commodities.", + "title": "Environmental Economics and Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4383", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers topics relating to energy and its use. The topics covered are characteristics of energy, the demand for energy, perspectives on the supply (and supply technology) of energy, energy modelling, economics of energy security, energy industry and energy market deregulation, energy trading, energy policy, and energy and growth. Through this module, students could understand efficient and economic use of energy, acquire interdisciplinary nature of energy use, and expedite solution mechanisms for externalities caused by the energy use.", + "title": "Resource and Energy Economics II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4384", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to how housing markets function. While theoretical motivations will be provided, the focus of the module will be on the empirical analysis of important issues in housing and urban economics. The empirical techniques taught in this module will be applicable to all other areas of economics that model micro behaviour.", + "title": "Housing Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4387", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "New business ventures that fulfil unmet demands by using new ideas or technologies are a critical driving force of economic growth. This module will examine the role of entrepreneurship in modern economy. The topics to be covered include what gives rise to entrepreneurship, how is entrepreneurship financed,\nwhat makes start-ups successful, and whether and how public policy promotes entrepreneurship. The student will learn to understand these issues from an interdisciplinary perspective that is informed by recent insights from economics, finance, business strategy, sociology, and psychology.", + "title": "Economics of Entrepreneurship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4391", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "\"Comparative Business Cultures\" will approach the subject area from both the microeconomic level (organization theory and organizational sociology) and from a macro perspective the societal settings, the legal and normative environment, and the macroeconomic and structural context within the North American, and the different European and Asian business cultures. At each step their compatibility with the concepts of globalization will be reviewed. The tutorial will deepen this study in analyzing pertinent corporate histories and biographies of important business leaders active in the different business cultures under review. The objective is to raise students' awareness of intercultural differences in business and organizational behaviour and communication at both practical and analytical level. This should be useful for future careers in globally operating corporations or international organizations. As the course is interdisciplinary in nature (covering economics, sociology, psychology and business administration), interested students from other faculties are encouraged to attend. Basic economic literacy, practical experience in business organizations and some overseas travel are a plus.", + "title": "Comparative Business Cultures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4392", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to Behavioural Economics, a relatively new field of economics. It is based on the belief that economists should aspire to making assumptions about humans that are as realistic as possible. Specifically, it tries to incorporate into economics the insights of other social sciences, especially psychology and sociology. In this course, we will be looking at models with precisely formulated assumptions and thinking about the careful empirical testing of both the assumptions and the conclusions. The course will be weighted more towards the empirical parts.", + "title": "Behavioural Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4394", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the second module in a sequence of two modules in the Economic Analysis of Law. In this module, the students are introduced to the efficiency issues in common law; the economics of public law, such as competition and regulatory policies; the economics of constitutional law and public choice, such as the theory of the state, democracy and social welfare, rent seeking and legislation, and cost-benefit analysis; and some other topics, such as family law, environmental law, and discrimination law.", + "title": "Economic Analysis of Law II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4396", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses inequality within a country, across countries, and across generations. We will study mechanisms of inequality such as discrimination and segregation. We will also investigate the role of institutions in creating and perpetuating inequality. Finally, we will examine social mobility.", + "title": "Economics of Inequality", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4398", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to highlight the most\nimportant areas of policy analysis in which insights\nfrom behavioural economics have fruitfully been\napplied. It discusses the underlying behavioural\ntheory, and shows how this can be applied to policy\nanalysis. A strong focus of the course is to outline\nmethods and discuss results that focus on empirically\ntesting and quantifying non-standard motives. We\nalso discuss how such policies can be piloted and\nevaluated within an evidence-based policy\nframework. The course also showcases how\nbehavioural insights are used in public policy for\nSingapore.", + "title": "Behavioural Public Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4399", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For this module, students are required to write a scholarly report of not\nmore than 40 typed pages (including bibliography and appendices) on current economic issues, or on theory or methodology in economics based on their research.Please register EC4401 manually with the Department. Please refer to\nhttp://www.fas.nus.edu.sg/ecs/ for more information on the EC major requirement.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "EC4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For this module, students are required to write a scholarly report of not more than 40 typed pages (including bibliography and appendices) on current economic issues, or on theory or methodology in economics based on their research. Please register EC4401HM manually with the Department.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "EC4401HM", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4753", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in economics. The topics covered will be dependent on the interest and specialities of regular or visiting staff in the Department.", + "title": "Topics in Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4880", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module uses microeconomics to study the economics of careers, focusing on university graduates. It will include discussions of occupational choice, investment in human capital, gender considerations, inter-firm mobility, mobility in hierarchies, team production and matching, specialization and the division of labor, cognitive versus communication skills, incentives, commitment and meetings.", + "title": "Topics in Economics: Economics of Careers", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in econometrics. The topics covered will be dependent on the interest and specialities of regular or visiting staff in the Department.", + "title": "Topics in Econometrics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in Applied Economics. The topics covered will be dependent on the interest and specialities of regular or visiting staff in the Department.", + "title": "Topics in Applied Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4882", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in economic policy. The topics covered will be dependent on the interest and specialities of regular or visiting staff in the Department.", + "title": "Topics in Economic Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC4883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to provide students with a sound understanding of modern microeconomic theory. Microeconomic theory is concerned with the behaviour of individual economic agents such as individual people, households, firms and single industries. The course presents a rigorous treatment of the principles governing individual behaviour and an introduction to general equilibrium analysis. Other topics that will be covered include game theory, information economics, and welfare economics. Knowledge of basic mathematics is necessary. This includes equations, coordinate geometry, functions of several variables, real analysis, calculus, and vector algebra.", + "title": "Microeconomic Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to provide students with a sound understanding of modern microeconomic theory. Microeconomic theory is concerned with the behaviour of individual economic agents such as individual people, households, firms and single industries. The course presents a rigorous treatment of the principles governing individual behaviour and an introduction to general equilibrium analysis. Other topics that will be covered include game theory, information economics, and welfare economics. Knowledge of basic mathematics is necessary. This includes equations, coordinate geometry, functions of several variables, real analysis, calculus, and vector algebra.", + "title": "Microeconomic Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5101R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide modern macroeconomic models which are essential in the study of economics at the graduate level. Three main parts of the course are growth theory, business cycle models, and the investigations of certain components in the aggregate demand. Topics under each part are wide-ranging: the Solow model, the infinite horizon model, overlapping generations model, and endogenous growth models are covered for the growth part. The business cycle models deal with real business cycles, the Lucas model, and New Keynesian models. Finally, consumption, consumption-based asset pricing models and investment are studied for the aggregate demand components.", + "title": "Macroeconomic Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide modern macroeconomic models which are essential in the study of economics at the graduate level. Three main parts of the course are growth theory, business cycle models, and the investigations of certain components in the aggregate demand. Topics under each part are wide-ranging: the Solow model, the infinite horizon model, overlapping generations model, and endogenous growth models are covered for the growth part. The business cycle models deal with real business cycles, the Lucas model, and New Keynesian models. Finally, consumption, consumption-based asset pricing models and investment are studied for the aggregate demand components.", + "title": "Macroeconomic Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5102R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory level core module for graduate students. Students are required to have a background knowledge in econometrics at least at the level of EC3304 Econometrics II. Students who do not have this background will be advised to take EC3304 first as an additional module which will not be counted towards CAP. The broad topics covered include mathematical and statistical pre-requisites (matrix algebra and statistical inference), standard regression analysis (OLS, GLS, IV, ML, SUR techniques), and applications oriented topics on cointegration, panel data, and limited dependent variable models.", + "title": "Econometric Modelling and Applications I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory level core module for graduate students. Students are required to have a background knowledge in econometrics at least at the level of EC3304 Econometrics II. Students who do not have this background will be advised to take EC3304 first as an additional module which will not be counted towards CAP. The broad topics covered include mathematical and statistical pre-requisites (matrix algebra and statistical inference), standard regression analysis (OLS, GLS, IV, ML, SUR techniques), and applications oriented topics on cointegration, panel data, and limited dependent variable models.", + "title": "Econometric Modelling and Applications I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5103R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main purpose of this module is to provide students with a systematic exposition of certain advanced mathematical techniques and to relate them to the various types of economic theories and analyses in such a way that the mutual relevance of the two disciplines is clearly brought out. Basically, the module is divided into 5 major parts: (a) static analysis, (b) comparative static analysis, (c) dynamic analysis, (d) optimization problems and mathematical programming, and (e) welfare economics. The mathematical tools appropriate for each are then introduced in due order within the economic framework of each topic. The module is expected to provide students with a clear understanding of the numerous existing economic models, including models of the market, of the firm, and of the consumer, national income models, input-output models, and models of economic growth.", + "title": "Mathematics for Economists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main purpose of this module is to provide students with a systematic exposition of certain advanced mathematical techniques and to relate them to the various types of economic theories and analyses in such a way that the mutual relevance of the two disciplines is clearly brought out. Basically, the module is divided into 5 major parts: (a) static analysis, (b) comparative static analysis, (c) dynamic analysis, (d) optimization problems and mathematical programming, and (e) welfare economics. The mathematical tools appropriate for each are then introduced in due order within the economic framework of each topic. The module is expected to provide students with a clear understanding of the numerous existing economic models, including models of the market, of the firm, and of the consumer, national income models, input-output models, and models of economic growth.", + "title": "Mathematics for Economists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5104R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to numerical methods in economics commonly used to simulate and solve models in the fields of macroeconomics, international trade, finance, and industrial organization. The first half of the module focuses on learning the basic tools of numerical analysis including optimization, approximation, non-linear equations, numerical differentiation/integration and parallel computation. The second half of the module applies these tools to solving dynamic equilibrium models that are widely adopted for quantitativeapplied research in macroeconomics. No prior experience in coding is required, and this module aims at facilitating students\u2019 own development in MATLAB/FORTRAN programming.", + "title": "Computational\u00a0Methods\u00a0in\u00a0Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this course is to provide a rigorous training in univariate and multivariate time series analysis. Univariate techniques are mainly used for forecasting and multivariate techniques are used for both forecasting and policy analyses. Starting with simple ARMA and GARCH models the course moves on to more advanced topics involving non-stationary multivariate processes. Students will learn to use Monte Carlo techniques as well as a lot of practical applications.", + "title": "Time Series Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5314", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this course is to provide a rigorous training in univariate and multivariate time series analysis. Univariate techniques are mainly used for forecasting and multivariate techniques are used for both forecasting and policy analyses. Starting with simple ARMA and GARCH models the course moves on to more advanced topics involving non-stationary multivariate processes. Students will learn to use Monte Carlo techniques as well as a lot of practical applications.", + "title": "Time Series Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5314R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the basic research methodologies in Experimental Economics. The course also provides a survey of the most significant results obtained in Economics from human experiments. Students will learn all facets of conducting experimental research from problem formulation to experimental design to the conducting of pilot experiments. The structure of the course includes seminars, laboratory participation, and a student project.", + "title": "Experimental Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5319", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to make in-depth analysis and understand various theoretical issues of modern industrial organisation. The approach of this course is game theoretic. In the beginning, basic concepts of non-cooperative game theory are reviewed in detail. This lays the foundation to study various applications of game theoretic models in the field of industrial organisation. The course is aimed for Masters' students and researchers in Economics interested in the area of Industrial Organisation.", + "title": "Industrial Organisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Industrial Organisation", + "title": "Industrial Organisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5322R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a standard graduate module on Cost-Benefit Analysis. The Welfare Foundations of Cost-Benefit Analysis are emphasised throughout the module. Topics include investment criteria in the public sector; risk and uncertainty; valuing costs and benefits when prices change; problems of distribution; shadow pricing; externalities and public goods; and the social rate of discount. In addition, students are expected to use Cost-Benefit Analysis in a number of case-studies.", + "title": "Cost-Benefit Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cost- Benefit Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5324R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the main policy impact evaluation methods. The aim is to understand how to evaluate the causal impact of a policy and how to choose the best method depending on the type of policy and on the context. This module is suitable for students interested in policy issues.", + "title": "Policy Impact Evaluation Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5326", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the main policy impact evaluation methods. The aim is to understand how to evaluate the causal impact of a policy and how to choose the best method depending on the type of policy and on the context. This module is suitable for students interested in policy issues.", + "title": "Policy Impact Evaluation Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5326R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "EC5332 is a first year graduate course on money, banking and financial markets. Topics covered include central banking and monetary policy, prudential supervision, financial markets and stochastic processes, the banking industry in South-East Asia, the role of price expectations, and modern theories of money, inflation, interest rates and the exchange rate. An important part of the course is the discussion of selected academic articles, with emphasis placed on the motivation and techniques underlying the theoretical and empirical work.", + "title": "Money & Banking", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Money & Banking", + "title": "Money & Banking", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5332R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course surveys and studies the various theories of international trade and applies them to the analysis of current trade problems. The topics covered include theories explaining trade patterns, the effect of trade on national welfare and welfare of groups within a country, trade policy, international economic integration and so on. The target group of students are those who had background in economics and would like to have more in-depth knowledge of trade theories and current trade problems.", + "title": "International Trade", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5342", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course surveys and studies the various theories of international trade and applies them to the analysis of current trade problems. The topics covered include theories explaining trade patterns, the effect of trade on national welfare and welfare of groups within a country, trade policy, international economic integration and so on. The target group of students are those who had background in economics and would like to have more in-depth knowledge of trade theories and current trade problems.", + "title": "International Trade", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5342R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module applies economic principles to analyse budgetary policies and programmes of the public sectors. Topics covered include the following:the economic role of the state; the privatisation phenomenon; theory and practice of tax reform; effects of taxes and expenditure on work effort, saving, investment and risk taking; the role of fiscal incentives in economic management; financing of social security, health care and education and; international aspects of taxation.", + "title": "Public Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5352", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5352R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an introduction to the principal questions addressed in the health economics literature at the graduate level, and to equip students with the basic tools to undertake health policy research and analysis. The tools of microeconomic analysis will be used to analyse the behaviour of consumers, providers and insurers in the health care market. The module will also examine and compare the Singapore health care system and health care policies with those of developed countries such as the US, Canada and the UK, and the different approaches toward reforming the health care systems and health care policies in these countries.", + "title": "Health Economics & Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5353", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Labour economics is a major area in economics and its importance to the Singapore economy need not be overemphasized. It is one of the largest and essential fields in economics. It studies the decision of everyday life, especially how people earn a living. It helps students to construct logical, internally consistent arguments concerning economic variables, and apply constructed models into real world. The module is offered in all U.S. top economics department. We would be able to fill the gap by offering the module to our graduate students. These courses cater to both coursework students and masters and PhD students who want do their research in labor related topics.", + "title": "Labour Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5361", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Labour economics is a major area in economics and its importance to the Singapore economy need not be overemphasized. It is one of the largest and essential fields in economics. It studies the decision of everyday life, especially how people earn a living. It helps students to construct logical, internally consistent arguments concerning economic variables, and apply constructed models into real world. The module is offered in all U.S. top economics department. We would be able to fill the gap by offering the module to our graduate students. These courses cater to both coursework students and masters and PhD students who want do their research in labor related topics.", + "title": "Labour Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5361R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces several important economic growth models. The main focuses will be on studying the underlying sources of economic growth and analyzing how government policies influence the growth process. Major topics include exogenous growth models, endogenous growth models with capital accumulation, technological progress through R & D and growth, growth models with learning-by-doing, diffusion of technology and growth, growth in open economy, and empirical studies of economic growth.", + "title": "Growth Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5372", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a rigorous and comprehensive coverage of environmental and natural resource economics. The main objective of the module is to illustrate how the study of mainstream economics needs to be reoriented in the light of the following premises: the natural environment is the core of any economy and economic sustainability cannot be attained without environmental sustainability. The course is intended to equip participants with introductory skills that would enable the analyses of environmental and economic policy issues.", + "title": "Economics of the Environment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5383", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The rapid process of globalisation over the last decade has had pervasive effects on global shipping and logistics. This could not occur without creating profound impact on the way ports are developed, operated and managed, from providing simple ship shelters and warehouse services to much more complex multimodal terminal services, from monopoly to competition, and from state government-owned to local private corporations. Port Economics taught at graduate level tudies key topics in port management in depth and provides students with analytical and quantitative analysis tools that are essential to research and making decisions related to port operation, management and policy formulation.", + "title": "Issues in Port Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5386", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The rapid process of globalisation over the last decade has had pervasive effects on global shipping and logistics. This could not occur without creating profound impact on the way ports are developed, operated and managed, from providing simple ship shelters and warehouse services to much more complex multimodal terminal services, from monopoly to competition, and from state government-owned to local private corporations. Port Economics taught at graduate level tudies key topics in port management in depth and provides students with analytical and quantitative analysis tools that are essential to research and making decisions related to port operation, management and policy formulation.", + "title": "Issues in Port Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5386R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide an in-depth insight into selected specific issues that are of concern to maritime and port industry as well as to policy makers. The issues covered include shipping markets, shipping networks, increasing ship sizes, cabotage, freight determination, port choice, efficiency measurements, maritime safety, maritime hub strategy and green maritime logistics.", + "title": "Issues in Maritime and Shipping Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5387", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide an in-depth insight into selected specific issues that are of concern to maritime and port industry as well as to policy makers. The issues covered include shipping markets, shipping networks, increasing ship sizes, cabotage, freight determination, port choice, efficiency measurements, maritime safety, maritime hub strategy and green maritime logistics.", + "title": "Issues in Maritime and Shipping Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5387R", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study module is designed to enable the student to explore an approved topic in Economics in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5660", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in economics. The topics covered will be dependent on the interest and specialities of regular or visiting staff in the Department.", + "title": "Topics in Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics in Economics", + "title": "Topics in Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EC5880R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Game theory has been at the core of much of the contemporary research in economics. The importance of the subject arises from the pervasiveness of the assumption of rational behavior in many human sciences. Applications of game\ntheory have arisen in many fields of economics, such as industrial organization, international economics, labor, finance, and political science. This module is\ndesigned to present the main ideas and methods of game theory at graduate level, emphasizing on its theoretical foundations and practical implications.", + "title": "Topics in Microeconomics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to recent developments in growth theory and discusses their empirical relevance. Topics include sources of economic growth, cross-country income differences, neoclassical growth theory, human capital and\ngrowth, innovation and growth, finance and growth and trade and growth.", + "title": "Topics in Macroeconomics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to recent developments in growth theory and discusses their empirical relevance. Topics include sources of economic growth, cross-country income differences, neoclassical growth theory, human capital and growth, innovation and growth, finance and growth and trade and growth.", + "title": "Topics in Macroeconomics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5882R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is designed to help students become comfortable and creative as economic researchers and modelers. The course covers microeconomic theories and its applications in various policy analyses. Topics include economic and econometric modeling, and empirical strategies in identifying causal relationship.", + "title": "Topics in Applied Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC5883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As an essential module for economics PhD students, this module aims to equip them with the tools of modern microeconomic theory and prepare them to be independent researchers. As a subsequent module following EC5101, this module focuses on general equilibrium and welfare theory, game theory, and information economics.", + "title": "Advanced Microeconomic Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course builds on EC5102 Macroeconomic Theory, and stresses the use of dynamic programming in the study of macroeconomic problems. The emphasis will be placed on building and analyzing models and analyzing existence, optimality and dynamic properties of equilibria. The theory of dynamic programming will be developed in some detail and be applied to macroeconomic issues such as economic growth (including multi-sector models and endogenous growth), economic fluctuations, recursive competitive equilibrium, search and matching models, design of optimal monetary and fiscal policies, neo-Keynesian models, and advanced topics in consumption, investment and asset pricing.", + "title": "Advanced Macroeconomic Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a core module for PhD students. It is aimed at providing a good training in econometric theory and applications. It covers some topics already covered in EC5103 but at a more theoretical level. Asymptotic theory, ML and GMM estimation, extremum estimators, non-linear models, simultaneous equations models are among the topics covered under this module.", + "title": "Econometric Modelling and Applications II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers a number of advanced mathematical techniques that are frequently used for solving dynamic optimisation problems in economics. Topics include calculus of variations, dynamic programming and optimal control theory. The emphasis would be placed on both mathematics and applications in economics. This module would carry four modular credits.", + "title": "Advanced Mathematics for Economists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a comprehensive introduction of modern game theory at a PhD graduate level. Topics include strategic games, extensive games, incompleteinformation games, repeated games, interactive epistemology, mechanism design, implementation theory, and information economics.", + "title": "Advanced Game Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to train students in advanced econometric applications in various areas. This is a reading-intensive course; students are required to read a large volume of journal articles in the relevant areas and analyse them. Students can make requests to cover topics that are of interest to them. This is an ideal setting for Ph.D. students to try out their thesis research topics. Topics such as Bayesian econometrics, panel regression with unit-root time series, and macroeconometric modelling for forecasting and policy analyses are likely to be covered under this module.", + "title": "Topics in Econometrics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a Ph.D. level course. While it covers the content of EC5314/EC5214, more emphasis is laid on theory.", + "title": "Advanced Time Series Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6314", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to modern economic principles, techniques and applications of contract theory in organizations and markets.\nAuthorities want to design incentives such that interacting players, both internal and external, take decisions that further the organization's goals. In the marketplace competition from rivals often determine an organization\u2019s internal incentives. Most of the interactions take place under asymmetric information environment about the players' actions and types. A prior, basic knowledge\nof game theory will be assumed for this module.", + "title": "Contract Theory and Applications", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6316", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to make in-depth analysis and understand various theoretical issues of modern industrial organisation. This course will also provide a platform for research students interested to work in the area of industrial organisation. The courses are directed to develop the analytical skills of the students so that they can handle the deeper issues in their future independent research career. The approach of this course will be game theoretic. In the beginning, basic concepts of non-cooperative game theory will be reviewed in detail. This will lay the foundation to study various applications of game theoretic models in the field of industrial organisation.", + "title": "Advanced Industrial Organisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This PhD level course will cover two broad topics in the Money and Banking: 1) Monetary Policy (including Exchange Rate Policy) and Money Demand; and 2) Related Issues from the Banking Crises. First topic will cover some issues surrounding the behaviour of Money demand and its implications on the overall effectiveness of the monetary policy under different stages of economic developments. The second topic will survey issues emerging from the latest banking crisis in East Asia, such as structure of ownerships, regulations and the role of banking problems in the recent balance of payment crisis (capital account crisis) in East Asia.", + "title": "Advanced Money & Banking", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an in-depth study of the trade theories and models that are important in the analysis of policy issues relating to international trade. Some contemporary issues in the field of international trade will also be discussed. At the end of the course, the student should be able to master the basic theoretical framework and analytical tools necessary for the study of contemporary trade issues. Other than theory, the course also emphasizes the analysis of recent issues such as the new developments in the WTO, and the controversy of regional trade liberalisation.", + "title": "Advanced International Trade", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6342", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is mainly concerned with the operation of international financial markets, focusing on the on-shore and offshore banking systems, international capital flows, and restructuring international financial system. The intent is to investigate how to reduce the likelihood of financial panics and crisis in the international context. Theories developed in the field of international finance will be carefully studied, and policy issues concerning the recent world financial market turbulence will also be discussed. Students are required to write a major term paper concerning relevant issues.", + "title": "Advanced International Finance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6343", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine selected topics of Public Finance in greater depth. There are basically three sections. The first section examines welfare theorem, market successes, market failures and government success and government failures. The second section focuses on tax issues, tax reforms and tax challenges. The third section will examine financing of government expenditures on education, healthcare and old age.", + "title": "Advanced Public Finance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6351", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Public Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6352", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the course is to acquaint students with modern topics, modelling strategies, econometric methods, and empirical work in the field of labour economics. Students are also encouraged to extend the course material to develop their independent research interests that could potentially lead to their Ph.D. thesis topics. This module will provide a solid empirical and theoretical grounding in many areas of labour economics, and prepare students to write a dissertation in the field.", + "title": "Advanced Labour Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6361", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an in-depth treatment of alternative theories and approaches to economic growth and development, and development problems and strategies pertaining to poverty and income distribution, unemployment and rural-urban migration, agriculture, industry,trade and foreign resources.", + "title": "Advanced Development Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6371", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces several important economic growth models and modeling techniques. The main focus will be on building and solving mathematical models of growth, studying the underlying sources of economic growth, and analysing how government policies influence the growth process. Major topics include mathematical modeling of growth, exogenous growth models, endogenous growth models with capital accumulation, technological progress through R&D and growth, growth models with learning-by-doing, diffusion of technology and growth, growth in open economy, and empirical studies of economic growth.", + "title": "Advanced Growth Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6372", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters or more and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EC6770", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in economics. The topics covered will be dependent on the interest and specialities of regular or visiting staff in the Department.", + "title": "Topics in Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in decision-making under uncertainty, game theory, and information economics.", + "title": "Advanced Topics in Microeconomics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with several important topics in macroeconomics. Topics include new growth theory, business cycles, unemployment, inflation and macroeconomic policy. The module introduces students to recent developments in these areas.", + "title": "Advanced Topics in Macroeconomics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6882", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is designed to help PhD students to master the necessary skill to become successful economic researchers and modelers.\nThe course covers advanced economic theories and its applications in various policy analyses. Topics include economic and econometric modeling, and empirical strategies in identifying causal relationship.", + "title": "Advanced Topics in Applied Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Behavioral economics stresses the need to incorporate psychological considerations into economic thinking. Experimental economics, including lab and field experiments, builds on the premise that theoretical implications are subject to testing in controlled laboratory settings. There is a natural synergy between them and neuoroimaging and genetics leading to the development of neuroeconomics. This course covers the growing literature in behavioral and experimental economics, including neuroeconomics, and study individual differences in economic behaviour beyond those explicable by culture and socialization towards a deeper understanding of business and market behavior.", + "title": "Behavioral and Experimental Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EC6884", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with a sound understanding of modern microeconomic theory. It will cover the aspects of microeconomic theory that are required to analyse contemporary economics issues and to create new models to explain the behaviour of individuals, firms, and markets, and to evaluate economic policies. The topics will include consumer and producer theories, analysis of risk and uncertainty, game theory and its applications in economics, general equilibrium, market failure and welfare economics. The course considers the problem of incomplete and asymmetric information in market interactions, including the issues of moral hazard, adverse selection, and signaling. The impact of government policies on economic activities will also be examined.", + "title": "Microeconomics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This subject covers topics in modern Macroeconomic Theory and Policy at the advanced level. The emphasis will be laid on recent advances in the theories about long-term growth and short-term business cycle, and in the related empirical and policy debates. The growth theory includes neoclassical growth models (particularly the Ramsey and overlapping-generations models), and various endogenous growth models with knowledge spillovers, human capital and R&D investment. We also consider income distribution, convergence, income ranking, and population ageing in the growth models. The business cycle theory includes the real-business cycle model and various New Keynesian models. The policy issues include national debt, social security, and monetary policies. It helps students understand the frontier debates in macroeconomics.", + "title": "Macroeconomics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 125, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an applications-oriented introductory level module for students who do not have a sufficient training in econometrics. Students who have already completed modules at this level can opt for higher level econometric modules. Students will be provided with hands-on training in computer software such as SAS, EViews and Excel. The module covers probability distributions and statistical inference, matrix algebra, simple and multiple linear regression models, diagnostic testing, dummy variable regressions, time series econometrics including cointegration and error correction models.", + "title": "Quantitative & Computing Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to machine learning and data mining methods for economics problems. The module will explain the core concept\nof well\u2010known supervised learning algorithms including decision trees, neural networks, and support vector machines. Differences between these methods and econometrics methods will be discussed. This module will move on to explain unsupervised learning methods. Emerging topics, such as time series data mining, text mining or other methods for unstructured data mining, will also be covered. Examples, assignments, and the final project will be designed to help students learn using machine learning techniques to complement traditional econometrics analysis.", + "title": "Machine Learning and Economic Forecasting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5304", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will introduce our economic students to practical approaches to handling all kinds of data using R programming language. Students will first learn how to code like a programmer and learn how to work with common data structures in R before expanding their skills to wrangling data, summarizing and visualizing the data, and addressing data quality problems. Then, we will explore different packages which are widely used and powerful for data manipulations. We expect the course to equip the students with relevant data analyzing skills using one of the most programming languages for work or further studies.", + "title": "R Programming for Economists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5305", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course is an introduction to the Python language for economic applications. First, students will be introduced to basic programming concepts, such as data structure, conditionals, loops, variables functions, and some handy libraries. Second, students will learn some popular machine learning techniques and applied econometrics tools with hands-on coding exercises to estimate the causal effects of some policies/interventions, such as the effect of implementing a government policy, changing a price, introducing a new product, etc.", + "title": "Python Programming for Economists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5307", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces a diverse set of statistical tools allowing data-driven decisions based on causal insights. The module broadly consists of two parts. Part I introduces core concepts and methods for causal inference techniques in applied econometrics, e.g., instrumental variables, difference-in-differences, propensity score matching, and synthetic control methods. Part II discusses a selection of new developments at the intersection of machine learning and econometrics, such as instrument selection with LASSO, Causal Forests, and double/robust machine learning.", + "title": "Machine Learning for Applied Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5308", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover topics that are not covered under ECA5103 Quantitative and Computing Methods. Topics such as Bayesian econometrics, microeconometrics, panel regressions, limited dependent variable models, simultaneous equations models and marcoeconometric modelling for forecasting and policy analyese are likely to be covered under this module.", + "title": "Topics in Econometrics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5313", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-06-16T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with vigorous training in applied financial econometrics. It covers topics on characteristics of macroeconomic and financial data; basic concepts of linear and non-linear time series models stationary time series models, ARMA models; stochastic volatility models; GARCH models and diagnostic tests; value at risk analysis; and multivariate conditional time-varying models. Students are expected to do several computer based projects.", + "title": "Financial Econometrics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5315", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module emphasizes applied cost-benefit analysis. The module examines the theoretically correct approaches in the key areas and then focuses on the methods and practices in the application of cost-benefit analysis. Topics include investment criteria in the public sector, risk and uncertainty, valuing and identifying costs and benefits, shadow pricing, and the social rate of discount. In addition, students are expected to use cost-benefit analysis in a number of actual case studies.", + "title": "Project & Policy Evaluation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5325", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is to offer a broad overview of financial assets traded in the money, options, and stock markets. It includes valuation of bonds and securities, analysis of options and futures contracts, asset pricing models and some applications.", + "title": "Financial Markets & Portfolio Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5333", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 22, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a theoretical and practical treatment of corporate financial theory for students who have completed an introductory course in financial economics. Topics covered in this course will include an overview of financial management; comparisons of financial and real investment; capital budgeting and valuing real assets and real options; risk and return of assets; capital structure and dividend policy, and mergers and acquisitions; applications of portfolio management techniques in corporate finance.", + "title": "Corporate Finance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5334", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "W1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an in-depth analysis of the theories and models that are essential to the understanding of contingent claims. The course covers topics on mathematics of financial derivatives, stochastic models of securities price movements, Black-Scholes analysis and risk-neutral valuation, analytical and numerical procedures for various option-embedded products. Students taking this module are expected to have some basic knowledge of options and futures.", + "title": "Derivative Securities", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5335", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module studies how trading takes place in financial markets. We cover theoretical models and the associated empirical analysis employing game theory and econometric theory. We first analyse the movement of security prices by time series models. Second, we investigate various trading strategies adopted by market participants. To understand increasingly popular computerized trading, we cover programming and econometric software such as Excel VBA and R. Then, we examine three main types of theoretical models of trading: inventory models, sequential trading models, and strategic trading models. Finally, we study how trading rules and institutional details may lead to different trading processes.", + "title": "Applied Financial Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5337", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops the analytical tools required for understanding various issues that arise in the international economy. It is divided broadly into two sections, the first focusing on the real side of the economy while the second introduces money, covering upon economy macroeconomics. The emphasis in this module is to teach the workhorse models of the discipline, with reference to the empirical data, so that the student will have the ability to apply the tools to conduct research.", + "title": "International Trade & Finance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5341", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module undertakes an in-depth study of topics in international trade. The topics include the gains from trade, the determinants of comparative advantage, the effects of trade on the income distribution, gravity equations, firm heterogeneity, multinational enterprises, and trade policy. The module will cover the theoretical models, recent empirical evidence, and current events to introduce students to the core analytical tools that trade economists use. These tools are relevant for developing a critical understanding of the wide range of issues and debates faced in the global economy, especially as international trade has come under increasing public and political scrutiny.", + "title": "Advanced International Trade", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5342", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to provide students with an in-depth knowledge of topics in international finance. The module will cover the current account and balance of payments accounting; inter-temporal trade; the determination of exchange rates; monetary and fiscal policy under fixed and flexible exchange rates; several major puzzles in international finance. In addition to providing analytical tools, this module also covers a number of relevant current issues: sovereign default, international financial crisis, and safe assets.", + "title": "Advanced International Finance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5343", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of the module is to gain appreciation of how economic theory can be used to analyse both the individual components of the fiscal system, such as effects of various taxes and expenditures, as well as the size and the behaviour of the government sector itself. The module encompasses the traditional, public choice and supply side approaches. While the main focus is on partial equilibrium analysis, wherever feasible or relevant, e.g. in incidence analysis, a general equilibrium approach is also included. The theory of social choice is also discussed.", + "title": "Public Finance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5351", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate module on economic growth and development is organised into three parts. Part 1 will survey alternative theories and approaches to economic growth and development. Part 2 will focus on development problems and strategies planning to poverty and income distribution, unemployment and rural-urban migration, agriculture, industry, trade and foreign resources. Part 3 will offer analysis of the development experiences of selected countries in ASEAN and East Asia.", + "title": "Economic Growth And Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5371", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 32, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 33, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the concepts of big data, analytics and technologies. The main goal aims at managing and analysing a set of big data. Big data differs from traditional data, as the nature of big data is massive, unstructured, granular, and heterogeneous. Big data is produced by various digital resources and domains including smart phones with multiple sensors, a variety of digital\nmedia produced by various social media, and billions of on\u2010line financial transactions. The topics of this module covers big data scalability and process, infrastructure, and analytics using Hadoop, HBase, MapReduce, R, in\u2010database analytics, mining of data streams, etc.", + "title": "Big Data Analytics and Technologies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5372", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth study of Singapore's economic structure and development strategies in the context of a changing global and regional economic environment. It examines the various policy options available based on economic principles and theories. Thereby the course provides an opportunity for the application of theoretical concepts to the analysis of the Singapore Economy. A basic knowledge of micro and macro economics and applied economics such as development, public finance and monetary economics are very useful.", + "title": "The Singapore Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5373", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0312", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth study of Singapore's economic structure and development strategies in the context of a changing global and regional economic environment. It examines the various policy options available based on economic principles and theories. Thereby the course provides an opportunity for the application of theoretical concepts to the analysis of the Singapore Economy. A basic knowledge of micro and macro economics and applied economics such as development, public finance and monetary economics are very useful.", + "title": "The Singapore Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "ECA5373R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with a basic understanding of the contemporary Chinese economic system and an analytical framework for the study of the modern Chinese economy. Through lecturing and class discussions on the literature, the students will develop the ability to comprehend the major theoretical and policy issues in China's economic development and transformation. They will also attain confidence in applying theoretical-quantitative approaches to the analysis of these issues.", + "title": "The Modern Chinese Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5374", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to enhance understanding of economic growth by analysing the experience of East Asian countries. By looking at both common and specific factors across the countries and related theoretical issues, it attempts to provide students with both analytical and realistic view on development process. The major topics include catching-up debate, comparisons of Asian models, the role of the state, industrial and trade policy, foreign direct investment, globalisation, and the Asian financial crisis.", + "title": "Economic Growth in East Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5375", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modern market design principles are creatively and increasingly improving a range of economic and other systems. This module will cover the principles behind the design of markets and how they are actually applied. The first part introduces the theory of auctions and discusses how auctions for radio spectrum licenses, internet key search words and advertisements, and eBay work. The second part covers other types of systems which include applications that are as diverse as allocation of environmental permits, systems for matching medical interns to hospitals, partner matching (e.g., marriage), and facilitating kidney exchange.", + "title": "Auctions and Market Design", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5376", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a rigorous study of the\nprinciples and methods of behavioural economics.\nDrawing heavily on psychological literature,\nexperimental research and formal economic model, the\nmodule systematically explores important departures\nfrom predictions of the neoclassical model and\ninvestigates their implications on individuals, firms, and\npolicy. Original academic journal articles will be used as\nthe primary source for teaching and learning.\nThroughout the module, the emphasis will be on the\nderivation of economic models, exploration of\nexperimental designs and methods, empirically testing\nresults as well as the extrapolation of the findings on\nthe non-standard motives.\n(", + "title": "Behavioural Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5377", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an overview of key urban economic theories, including increasing return and spatial equilibrium, urban transportation and urban\nforms, housing choices and residential externalities, and urban growth and public finance. These theories are then applied to the analysis of urban challenges, such as urbanization, land\u2010use efficiency, housing affordability, and sustainable urban development.", + "title": "Urban Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5381", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the economics behind environmental issues and problems and policies designed to address them. Topics are focused on valuation of nonmarket goods, cost\u2010benefit analysis, project selection, correcting market failures especially in the provision of public goods, the tragedy of the commons, and climate change.", + "title": "Environmental Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5383", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cultural Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5394", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Political Economy of Globalisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5395", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Evaluating and commercializing intellectual assets (IA) is important to seek capital source or cash for any entity who owns any form of IA like goodwill,\nbranding, patent, trademark, copyright, trade secret, etc. The objective of this module is to examine the business context of IA, the legal aspects of IA that\nheavily affect its value, the financial principles and applications against which IA might be evaluated, and from which exploitation strategies might be derived. This module will equip financial and business professionals with critical understanding of IA valuation, IP management and exploitation strategy making, and economic principles underlying IP value.", + "title": "Economics of Business and Law of Intellectual Assets", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5396", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study module is designed to enable the student to explore an approved topic in Economics in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Heads and/or Graduate Coordinators approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5660", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is designed to help students become comfortable and creative as economic researchers and modelers. The course teaches both the principles of microeconomic theory and the fundamental concepts in the various fields of applied microeconomics, such as health economics, public economics and labour economics. Students will learn how to use various\neconomic tools to predict how various parties might respond to changes in public policies.", + "title": "Topics in Applied Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is to introduce students to the application of economic theory to public policy. The emphasis will place on economic\nanalysis of public policy. Topics include market failures and government intervention, intellectual property right protection, taxation, income distribution, education, public goods, social security and health care.", + "title": "Topics in Economic Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5881", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-06-16T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module applies the tools of macroeconomic analysis to analyze issues related to the determination of output, unemployment and inflation in the economy. It utilizes various economic frameworks and models for understanding\nmacroeconomic developments and events. The module examines the applications of macroeconomic theory to policy in analysing the causes of\nmacroeconomic events and their consequences.", + "title": "Topics in Applied Macroeconomics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the field of behavioural economics. In the first part of the course, we will familiarize students with specific\nempirical problems of the standard model in economics, which assumes that individuals are fully rational, act consistently over time, and are strictly\nselfish. We will show how departures from these assumptions can be modelled and integrated into economics analysis. In the second part, we will show how this approach can be put to use. We will study how policy interventions can be made more effective, for example in resource conservation, retirement savings, and human\u2010resource practices.", + "title": "Applied Behavioural Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ECA5884", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to contemporary issues, emerging technologies and new frontiers in electrical engineering. It serves to demonstrate to students how the EE curriculum is designed to address these aspects via a top-down approach. The module consists of 5 distinct parts of approximately 4 hour lectures and integrated with some self-learning activities. Each part focuses on each of the following areas / topics:\n\n\u2022\tCommunications and Networking\n\u2022\tPower and Energy Systems\n\u2022\tMicro / nanoelectronics\n\u2022\tControl & Robotics\n\u2022\tGrand challenges for engineering \u2013 the role of EE \n\nThe lectures will be conducted by a group of faculty members who are experts in the respective areas. Although the lectures are meant to focus on contemporary issues and emerging technologies, an appropriate level of historical perspective will be used to demonstrate how each subfield has evolved from the traditional areas of EE so that students can see both the connections between different areas and the driving force behind the rapid development and expansion of EE in the last few decades. Prior to this series of lectures focusing on specific areas, a detailed introduction of the EE curriculum will also be given in the first lecture. The philosophy underpinning the curriculum and its strength and constraints will be highlighted. The module will conclude with student presentations on a topic in an area of their interest. Students are assessed through assignments, reports and presentations.", + "title": "Emerging Technologies in Electrical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE1001X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the important area of signal processing and communications which are two major areas in electrical engineering. daily lives. It uses an open-ended project approach, and students are guided through the various parts of the project to build the different component modules which can finally be integrated into a complete communication system. It exposes students to the concepts of signals, spectra, sampling, digitization, coding, transmission and reception over physical channels, receiver noise, symbol detection and message reconstruction. Both the systems and the physics aspects of communication are covered. Students will be assessed through assignments, laboratory reports and a final project report with oral presentation.", + "title": "Introduction to Signals and Communications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE1003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces electrical engineering students to\nwhat engineers do and the engineer's thought process.\nThis is the first of a two-part module: Engineering\nPrinciples and Practice (EPP) I and II. Real engineering\nsystems will be used to show how engineers use different\ndisciplines of engineering, and combine them to make\nthings work. Through grasping engineering fundamentals,\nstudents learn how engineering systems work and fail\n(EPP I). Through learning where systems get energy and\nhow they are controlled, students learn how multidisciplinary\nconcepts are tied together (EPP II). The\nstudents will learn basic design, experimentation and\nevaluation of engineering systems.", + "title": "Engineering Principles and Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "EE1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces first year electrical engineering students to what engineers do and to the engineer's thought process. This is the first of a two-part module Engineering Principles and Practice (EPP) I and II. Real engineering systems will be used to show how engineers use different disciplines of engineering to make things work. Through grasping engineering fundamentals, students learn how engineering systems work and fail (EPP I). Through learning where systems get energy and how they are controlled, students learn how multi-disciplinary concepts are tied together (EPP II). Students will also learn basic design, experimentation and evaluation of engineering systems.", + "title": "Electrical Engineering Principles and Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE1111A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Monday", + "lessonType": "Laboratory", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Monday", + "lessonType": "Laboratory", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Monday", + "lessonType": "Laboratory", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module exposes high school students to electrical and computer engineering principles through experiential learning. It focuses on the engineering principles and practice of how computer-aided systems are designed and built. They are first taught the fundamental principles of electronic circuits through laboratory sessions and group discussions. Through the experiential learning activities, students also build up their hands-on skills. They are then guided to apply these principles and skills to build a sensor-assisted autonomous robotic vehicle as a grand finale challenge. Upon completing the module, they can appreciate the importance of circuits, signals, and sensors in system implementation.", + "title": "Electrical & Computer Engineering Principles & Practice", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE1111B", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-16" + }, + "venue": "", + "day": "Friday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "", + "day": "Monday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second part of the two part module\nEngineering Principles and Practice (EPP) I and II and\nfollows closely the same learning objectives. Most modern\nengineering systems are more electric. They convert some\nraw form of energy, such as fuel, mechanical or energy\nstored in battery, into electrical form. We see this in every\nengineering system from trains, biomedical devices,\nchemical plants, electric cars, aircrafts and ships to ICT\ndevices such as computers, handphones, tablets etc.\nHence, energy conversion, distribution, and sensing &\ncontrol will form the backbone of this knowledge segment.", + "title": "Engineering Principles and Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "EE1112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Electromagnetic (EM) and transmission line theory is essential in all disciplines of electrical and computer engineering. EM theory is the fundamental basis for understanding transmission lines and electrical energy transmission. To understand and solve EM and transmission line problems encountered in electrical and computer engineering, rigorous analytical methods are required. At the end of this module, in addition to being able to solve EM and transmission line problems, the student will be able to design transmission line circuits, design electrical elements with lumped behaviour, and mitigate EM interference. To enhance understanding, case studies and computer visualisation tools will be used. Topics covered: Static electric and magnetic fields. Maxwell's equations. Electromagnetic waves: plane-wave propagation, behaviour at interface between media, shielding, electromagnetic compatability. Transmission lines. Impedance matching. Radiation. Case studies.", + "title": "Engineering Electromagnetics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Electromagnetic (EM) and transmission line theory is essential in all disciplines of electrical and computer engineering. EM theory is the fundamental basis for understanding transmission lines and electrical energy transmission. To understand and solve EM and transmission line problems encountered in electrical and computer engineering, rigorous analytical methods are required. At the end of this module, in addition to being able to solve EM and transmission line problems, the student will be able to design transmission line circuits, design electrical elements with lumped behaviour, and mitigate EM interference. To enhance understanding, case studies and computer visualisation tools will be used. Topics covered: Static electric and magnetic fields. Maxwell's equations. Electromagnetic waves: plane-wave propagation, behaviour at interface between media, shielding, electromagnetic compatability. Transmission lines. Impedance matching. Radiation. Case studies.", + "title": "Engineering Electromagnetics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2011E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the mathematical fundamentals of probability theory and complex variables which are necessary in the study of integrated circuits, communications, communication networks, control systems, signal processing, energy and new media. There is a strong emphasis on the application of these concepts to electrical and computer engineering problems, such as the Gaussian distribution in communications, random variable distributions for system reliability, complex integral theorem and complex integral formulas.", + "title": "Analytical Methods in Electrical and Computer Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2012", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Friday", + "lessonType": "Lecture", + "size": 175, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Lecture", + "size": 175, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the mathematical fundamentals of probability and statistics which are necessary in the study of integrated circuits, communications, communication networks, control systems, signal processing, energy and new media. There is a strong emphasis on the application of these concepts to electrical and computer engineering problems, such as the Gaussian distribution in communications, random variable distributions for system reliability, Bayes theorem in parameter estimation, and hypothesis testing for signal detection.", + "title": "Analytical Methods in Electrical and Computer Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "EE2012A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a first course that introduces fundamental digital logic, digital circuits, and programmable devices. The course also provides an overview of computer systems. This course provides students with an understanding of the building blocks of modern digital systems and methods of designing, simulating and realizing such systems. The emphasis of this module is on understanding the fundamentals of digital design across different levels of abstraction using hardware description languages.", + "title": "Digital Fundamentals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EE2020", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the students\u2019 knowledge on electronic devices and their use in the design of circuits. The physical principles behind the operation of these devices, their operation and usage in electronic circuits to achieve important functions will be the back bone of this module. The topics covered include basic semiconductor physics, drift and diffusion of carriers, pn diode, diode circuits, Bipolar Junction Transistor (BJT), and Metal Oxide Semiconductor (MOSFET), design of single stage amplifiers using BJTs and MOSFETs, CMOS inverter, multistage amplifiers, current source and sink. Students will be assessed through assignments, test and a final examination.", + "title": "Devices and Circuits", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2021", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the increasing concern of the environmental pollution and related global warming problems, there is a renewed interest in understanding of electrical power and energy systems. Thus, there is an apparent need for an introductory course on electrical energy systems for electrical engineering students. In view of this need, this course has been designed to provide an overview of traditional energy sources, electrical energy generation, transmission, distribution and utilization systems. The concepts of renewable energy sources, distributed renewable energy generation and smart-grid structure are introduced. The key issues of energy requirement in portable electronic computing system and wireless energy transfer are covered.", + "title": "Electrical Energy Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2022", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a fundamental course in signals and systems. Signals in electrical engineering play an important role in carrying information. Signals going through a system is an inevitable process. It allows engineers to understand the system. Thus in this course the relationship between signals and systems will be taught. The concepts which are important include time and frequency domain representations, Fourier and Laplace transforms, spectrum of a signal, frequency response of systems (Bode diagrams), sampling theorem, linear time invariant systems, convolution, transfer functions, stability of feedback systems, modulation and filters.", + "title": "Signals and Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2023", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a fundamental course in signals and systems. Signals in electrical engineering play an important role in carrying information. Signals going through a system is an inevitable process. It allows engineers to understand the system. Thus in this course the relationship between signals and systems will be taught. The concepts which are important include time and frequency domain representations, Fourier and Laplace transforms, spectrum of a signal, frequency response of systems (Bode diagrams), sampling theorem, linear time invariant systems, convolution, transfer functions, stability of feedback systems, modulation and filters.", + "title": "Signals and Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2023E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with the experience of programming devices and computer interfaces. The course builds upon the C language programming skills the students have learnt in the previous semester and teaches them how to utilize programming to build simple digital systems. The course culminates in an open-ended project in which students will have the opportunity to design and build a digital system of their choice.", + "title": "Programming for Computer Interfaces", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EE2024", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Power electronics is an enabling technology used widely in electric power processing unit. It is an integral part of all electronic equipment from household appliances through information technology to transportation systems. This\nmodule provides basic working principles and their design for generic power electronic converter circuits. After going through this module students should be able to analyze, evaluate and carry out basic design of power electronic circuits for a large variety of applications. The topics covered are: Power semiconductor devices and terminal characteristics. Switching circuits design and protection circuits. AC-DC converters, DC-DC converters and DC-AC converters: basic analysis and performance evaluation.", + "title": "Power Electronics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a first course that introduces fundamental digital logic, digital circuits, and programmable devices. This course provides students with an understanding of the building blocks of modern digital systems and methods of designing, simulating and realizing such systems. The emphasis of this module is on understanding the fundamentals of digital design across different levels of abstraction using hardware description languages, and developing a solid design perspective towards complex digital systems.", + "title": "Digital Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2026", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-03-07", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-03-07", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-03-07", + "day": "Monday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-03-07", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on the basic circuit concepts introduced through EE1111A, this module introduces the operating principles of transistors and how they are used in amplifier circuits. It discusses the foundational concepts of transistor amplifiers and analyses their performance. It also introduces operational amplifiers as a circuit component and describes how functional analog circuits, which can be applied to solving complex engineering problems, can be designed and analysed using operational amplifiers. LTSpice will be introduced as a circuit analysis tool. To augment learning, two laboratory sessions will be included focusing on the topics of single transistor amplifiers and Op-Amp circuits, respectively.", + "title": "Electronic Circuits", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2027", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8, + 11 + ], + "venue": "E4A-06-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 12 + ], + "venue": "E4A-06-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8, + 11 + ], + "venue": "E4A-06-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 12 + ], + "venue": "E4A-06-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8, + 11 + ], + "venue": "E4A-06-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 12 + ], + "venue": "E4A-06-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8, + 11 + ], + "venue": "E4A-06-07", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8, + 11 + ], + "venue": "E4A-06-07", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students how to program microcontrollers and achieve computer interfacing using C programming and industry-standard protocols. This module covers C programming, microprocessor instruction sets, and how to program microcontrollers to interface with other devices in order to build an embedded system. The course culminates in an assignment in which students design and build a complex embedded system (IoT node) that meets requirements and specifications.", + "title": "Microcontroller Programming and Interfacing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2028", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-03-07", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-03-07", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a first course that introduces programming in C\nlanguage. It exposes fundamental programming\nmethodologies to be followed which involves capturing the\nspecifications provided, designing and scripting a solution,\ncoding and compiling towards solving real-life complex\nproblems. Emphasis will be given on problems in\nElectrical Engineering topics. Topics in the module\ninclude, introduction to C language programming\nconstructs (variables, types, expressions, assignments,\nfunctions, arrays, structures, basic pointer operations\netc.), writing pseudo-codes, problem solving using\nElectrical Engineering applications, program development,\ncoding, testing and debugging facilitating a design\ntowards solving complex problems.", + "title": "C Programming", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE2028A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles of modern\nelectrical energy systems; including three-phase analysis,\nelectric generations, electric loads, and power electronic\nconverters. Students will learn how to analyse, model, and\npredict the performance of energy systems and devices\nincluding single-phase and three-phase systems,\ntransformers, and various types of generators. Students\nwill develop a broad systems perspective and an\nunderstanding of the principal elements of electrical\nenergy systems. This will serve as the foundation of\nhigher-level topics in power engineering. Furthermore,\nlectured materials are relevant to PE exams for preparing\nstudents to work effectively in complex electrical\nengineering problems.", + "title": "Introduction to Electrical Energy Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "EE2029", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module emphasizes on the practical aspects related to modules EE2021 Device and Circuits and EE2022 Electrical Energy Systems. It also provides students with an integrated perspective about the two modules. Students will first learn about the device characterizations, such as diode, LED, solar cell, transistor, operational amplifiers, etc. They will then proceed to build interesting circuits blocks involving the devices learnt earlier. With these accumulated knowledge on device and circuit blocks, students will move on to system projects that require the integration of knowledge across different fields, such as devices, circuits and portable electrical energy systems.", + "title": "Circuit and Systems Design Lab", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "EE2031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This lab module introduces students to the practical aspects of designing a communication system. This module builds on the concepts learnt in EE2011\nEngineering Electromagnetism and EE2023 Signals and Systems. Students will start the experiments with the Frequency Modulation (FM) technique in conjunction with a voltage controlled oscillator (VCO). This is followed by experiments with FM demodulation techniques, simplex communication and duplex communication. Then students will learn about the reflection coefficient and plot it in the Smith Chart. Subsequently an antenna is designed and the building blocks of the communication system are characterized. Finally the complete communication system is assembled and measured.", + "title": "Signals & Communications Design Lab", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "EE2032", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as the hands-on counterpart for EE2027 and EE2023. Students will practice and strengthen the knowledge learnt in electromagnetics, devices and circuits, and signals and systems through a series of experiments with the aim of integrating these knowledge to build an integrated digital communication system. The experiment will touch on important concepts, such as opamp characterization, circuit design specifications and component choice, frequency domain signal analysis, OOK modulation, frequency spectrum, and wireless communication system. Towards the end, the students will form an integrated view on these topics through a mini-project that encompass all these fields.", + "title": "Integrated System Lab", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2033", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-03-07", + "day": "Monday", + "lessonType": "Laboratory", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-03-07", + "day": "Friday", + "lessonType": "Laboratory", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E4A-06-07", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "LT3", + "day": "Monday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E4A-06-07", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second part of the two part module Engineering Principles and Practice (EPP) I and II and follows closely the same learning objectives. Most modern engineering systems are more electric. They convert some raw form of energy, such as fuel, mechanical or energy stored in battery, into electrical form. We see this in every engineering system from trains, biomedical devices, chemical plants, electric cars, aircrafts and ships to ICT devices such as computers, handphones, tablets etc. Hence, energy conversion, distribution, and sensing & control will form the backbone of this knowledge segment.", + "title": "Electrical Engineering Principles and Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2111A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Monday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Monday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Monday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4A-06-03", + "day": "Monday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to various machine learning concepts and applications, and the tools needed to understand them. Topics include supervised and unsupervised machine learning techniques, optimization, overfitting, regularization, cross-validation and evaluation metrics. The mathematical tools include basic topics in probability and statistics, linear algebra, and optimization. These concepts will be illustrated through various machine-learning techniques and examples.", + "title": "Introduction to Machine Learning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE2211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 700, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Lecture", + "size": 800, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will give students some general computing as well as more specific software skills for solving engineering problems. LabVIEW is widely adopted software in the industry for data acquisition and instrument control. The teaching of LabVIEW will be based on engineering fundamentals that students have learnt in the first two years. This will also help them to consolidate concepts that have been learnt in the various technical modules. Through a series of integrated miniprojects carried out in the lab, students will be guided in their exploration of engineering principles and problem solving using the tools available in LabVIEW.", + "title": "Labview for Electrical Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3013C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will give students some general computing as well as more specific software skills for solving engineering problems. LabVIEW is widely adopted \nsoftware in the industry for data acquisition and instrument control. The teaching of LabVIEW will be based on engineering fundamentals that students have learnt in the first two years. This will also help them to consolidate concepts that have been learnt in the various technical modules. Through a series of integrated \nminiprojects carried out in the lab, students will be guided in their exploration of engineering principles and problem solving using the tools available in LabVIEW.", + "title": "Labview for Electrical Engineers", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3013E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Frugal engineering is a philosophical approach to product design which addresses the needs of customers with very low purchasing power. In essence, it is about designing a product which meets the needs of customers who cannot afford products with \u201cbells and whistles\u201d features. Frugal engineering involves rethinking entire production and maintainance processes. It is not only a challenging mindset to inculcate in young budding engineers, but it is also a rich training ground to foster critical thinking skills which are pertinent to conceptualizing products that\nmaximizes the value to customers. The objectives of this module is to expose students to frugal engineering through a field trip to the rural communities in the region to observe first-hand the way of life in such communities and to develop ideas of products which will bring benefit to a large segment of this community. Students will also engage with industries with a frugal engineering focus.", + "title": "Exploring Frugal Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "EE3030A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is about placing students in an active environment or community (Living Lab), providing them with opportunities to conceptualize products or services\nwhich will later be designed and developed in the ECE laboratories. The Living Labs (LL) may be rehabilitation centres in hospitals, orphanages, block of HDB flats,\nhawker centres, etc where good opportunities abound for technology to play a role in overall improvements of such places. Students in this module will spend 3 weeks\nconducting field work, observing and engaging users in the LL, with the objective of conceptualizing products/services which will benefit a large segment of the users. Students will be encouraged to realize their ideas in the other project modules in the curriculum.", + "title": "Living Lab in the Communities", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "EE3030B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an engineering module that focuses on the conceptualization, design and development of technology oriented new products. It integrates innovation, product planning, marketing, design and manufacturing functions of a company. This module gives students an opportunity to conceptualize and design a product. The module is designed for electrical engineering students to experience an integrated learning of innovation and enterprise pertaining to new product development where technology plays a central role. The major topics include innovation, opportunity management, identification of customers\u2019 needs, product specification, design, planning, testing, manufacturing, and commercialization. Intellectual property and its relationship with all facets", + "title": "Innovation & Enterprise I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3031", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an engineering module that focuses on the conceptualization, design and development of technology oriented new products. It integrates innovation, product planning, marketing, design and manufacturing functions of a company. This module gives students an opportunity to conceptualize and design a product which they will eventually be able to prototype. Thus it is designed for electrical engineering students to experience an integrated learning of innovation and enterprise pertaining to new product development where technology plays a central role. The major topics include innovation, opportunity management, identification of customers\u2019 needs, product specification, design, planning, testing, manufacturing, and commercialization. Intellectual property and its relationship with all facets of new technology product design are also covered.\n\nGuest speakers from relevant industries will be invited to present practical aspects of innovation and new product development.", + "title": "Innovation & Enterprise I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3031E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will work in a team project to design and build an electronic system which includes both digital and analog circuits and therefore requires both\nhardware and software design. The functionalities of the electronic system are determined by the students themselves. They will go through the steps of conceptual\nsystem design, detailed technical design, bread-board prototyping, printed circuit board implementation, system integration, testing & debugging and demonstration of the final working model. The project work will be continuously documented by each student in an individual project design portfolio.", + "title": "Innovation & Enterprise II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "EE3032", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Wireless communication and sensing systems play an ever increasing role in society. This module introduces the RF and microwave hardware systems and circuits. The applications include Cellular Mobile Communications, Near-field/Far-field RFID, Doppler and FMCW Radars, and remote sensing", + "title": "Introduction to RF and Microwave Systems & Circuits", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3104C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Wireless communication and sensing systems play an ever increasing role in society. This module introduces the RF and microwave hardware systems and circuits.\n\nThe applications include: GSM/CDMA, RFID, UWB, WLAN, Bluetooth, Zigbee, Radar and remote sensing", + "title": "Intro to RF and Microwave Sys & Circuits", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3104E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course on analog and digital communication systems. It starts with an overview of analog and digital communications. Analog communication techniques such as amplitude modulation and frequency modulation are studied. The advantages of digital over analog communications in the presence of noise are discussed. Next, pulse coded modulation and waveform quantization techniques are discussed as the bridge from analog to digital communications. The communications channel and limits of communications (e.g., Shannon's coding theorem) are also presented. Next various digital modulation techniques such as phase shift keying and quadrature amplitude modulation are covered. Source coding techniques for data compression, including fixed and variable length codes, are presented. Then, channel coding techniques for error detection and error correction are covered. We wrap the course with an introduction to communication networks.", + "title": "Communication Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3131C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamentals of analog and digital communications. It starts with an overview of modern communication systems based on analog and digital techniques and an elaboration on the advantages of digital over analog systems. Then, the basic analog communication techniques are introduced, including amplitude/frequency modulation and demodulation. This is followed by an introduction of analog-to-digital conversion techniques, including signal sampling and quantization theory. Finally, it introduces the three main building blocks of digital communication systems, including source coding, channel coding, and digital modulation/demodulation.", + "title": "Communication Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3131E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches students the basics in the design of the various classes of microprocessors. Contents include design of simple micro-controllers, high performance CPU design using parallel techniques, memory organization and parallel processing systems. Topics also include the development of support tools to enable efficient usage of the developed microprocessor. The course emphasizes practical design and students are expected to be able to synthesize microprocessors at the gate level at the end of this course.", + "title": "Computer Architecture", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3207E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the design of embedded systems covering four key areas, namely, specifications and requirement determination, architectural design, software development and hardware development. The unified system design approach emphasizes hardware software co-design in the final synthesis of the application. Students will be brought through a design cycle in a realistic project. Topics covered include: System specification and requirement analysis; Object relationship and system structure; Quantifying behaviour; Targeting architecture: hardware/software partitioning; Resource estimation; Programmable platforms; Developing application software and targeting RTOS; Hardware design and implementation; System integration and debugging techniques; Design to meet regulatory standards.", + "title": "Embedded Computer Systems Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the design of embedded systems covering four key areas, namely, specifications and requirement determination, architectural design, software development and hardware development. The unified system design approach emphasizes hardware software co-design in the final synthesis of the application. Students will be brought through a design cycle in a realistic project. Topics covered include: System specification and requirement analysis; Object relationship and system structure; Quantifying behaviour; Targeting architecture: hardware/software partitioning; Resource estimation; Programmable platforms; Developing application software and targeting RTOS; Hardware design and implementation; System integration and debugging techniques; Design to meet regulatory standards.", + "title": "Embedded Computer Systems Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3208E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce the mobile robot systems\u2019 architecture and key components such as various sensor and actuator technologies. Various locomotion mechanisms adopted by robotic systems will be discussed. The module will also introduce basic principles of robot motion control. Robot Operating System (ROS) will be utilized for simulation in virtual environments.", + "title": "Robotic System Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3305", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces recent technological developments enabling cyber-physical systems, which in turn define Industry 4.0. Topics are organized under Internet of Things, Data Analytics, Robotics and Automation, and Additive Manufacturing. The module provides a common technology foundation for students in the Industry 4.0 Specialisation programme. This module is a core module in the Industry 4.0 Specialisation.", + "title": "Introduction to Cyber Physical Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3306", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Feedback systems are ubiquitous in both the natural and engineered world. They are essential for maintaining our environment, enabling our transportation and communications systems; and are critical elements in our aerospace and industrial systems. For the most part, feedback control systems function accurately and reliably in the background. This course aims at introducing the magic of feedback, and tools for analysing and designing control systems. The fundamental knowledge of feedback and the related area of control systems are useful to students with diverse interests. Topics covered include feedback principles, time and frequency analysis of control systems, and simple controller design.", + "title": "Feedback Control Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3331C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Feedback systems are ubiquitous in both the natural and engineered world. They are essential for maintaining our environment, enabling our transportation and communications systems; and are critical elements in our aerospace and industrial systems. For the most part, feedback control systems function accurately and reliably in the background. This course aims at introducing the magic of feedback, and tools for analysing and designing control systems. The fundamental knowledge of feedback and the related area of control systems are useful to students with diverse interests. Topics covered include feedback principles, time and frequency analysis of control systems, and simple controller design.", + "title": "Feedback Control Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3331E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on integration of analog circuits on silicon using CMOS technology. The topics covered include processing and modeling background, basic circuits, reference circuit design, single stage amplifiers, operational amplifiers, noise issues and advanced design methods.", + "title": "Integrated Analog Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3408C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on integration of analog circuits on silicon using CMOS technology. The topics covered include processing and modeling background, basic circuits, reference circuit design, single stage amplifiers, operational amplifiers, noise issues and advanced design methods", + "title": "Integrated Analog Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3408E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Electronic devices are the basic building blocks of all electronic gadgets used in our daily life. A solid understanding of the fundamental device concepts is essential for the electrical engineer to keep up with the fast evolution of new device technology. This module emphasizes on the properties of electronic materials and the operation principles of key electronic devices including p-n diode, bipolar junction transistor (BJT), MOS capacitor and (MOSCAP). Additional issues related to dielectric materials and non- semiconductor materials will be introduced. Contacts between metal and semiconductor will also be covered.", + "title": "Microelectronics Materials and Devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3431C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Electronic devices are the basic building blocks of all electronic gadgets used in our daily life. A solid understanding of the fundamental device concepts is essential for the electrical engineer to keep up with the fast evolution of new device technology. This module emphasizes on the properties of electronic materials and the operation principles of key electronic devices including p-n diode, bipolar junction transistor (BJT), MOS capacitor and (MOSCAP). Additional issues related to dielectric materials and non- semiconductor materials will be introduced. Contacts between metal and semiconductor will also be covered.", + "title": "Microelectronics Materials and Devices", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3431E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Power electronics forms an integral part of all electronics equipment from household appliances through information technology to transportation systems. This module develops the working knowledge, the foundation theory for generic power electronic circuits and the principles of their design. At the end of this module the student should be able to analyze and evaluate and carry out basic design of power electronics system for a large spectrum of applications. The topics covered are: Power semiconductor switches and characteristics. AC-to-DC converters and their performance. DC-to-DC converters: analysis and performance. DC-to-AC converters; analysis and performance. Switching circuits design and protection.", + "title": "Power Electronics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3501E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers generation, transmission and distribution of electric energy in large-scale modern power system. Upon completion of this course, students will be able to model, analyze, and predict the performance of three-phase systems, transformers, and transmission and distribution networks. The topics covered are: three-phase systems; real, reactive and apparent power. rotating magnetic field; synchronous and asynchronous machines; transformers; single line representation of three-phase systems; per unit notation; electricity transmission networks; high voltage cables; distribution systems; Singapore electricity network; power quality; harmonics; and environmental considerations.", + "title": "Electrical Energy Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3505C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles of modern electrical energy systems; including three-phase analysis, electric generations, electric loads, and power electronic converters. The module is designed specifically to help students develop a broad systems perspective and an understanding of the principal elements of electrical energy systems. The expectation is that students completing the module will be able to handle adequately the electrical aspects of a range of applications. This will serve as the foundation of higher-level topics in power engineering. Furthermore, students will be prepared to work effectively with electrical engineers on the joint solution of complex problems.", + "title": "Intro to Elect Energy Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3506C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The production of electronic games whether on a computer, video console, or a handheld device is a highly interdisciplinary and team-oriented task. This module provides a holistic overview (big picture) of electronic gaming and provides insights about the interplay of the single disciplines, components, and workflows. The course covers the basics of the games industry and game production, ranging from the business environment and development processes, to hardware platforms, game structures, and tool and technology basics. Students will be able to develop their own game product proposal in a group work project.", + "title": "Electronic Gaming", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to signal processing methods. It is aimed at preparing students for high-level technical electives and graduate modules in signal analysis and machine intelligence. The topics covered include discrete time signal processing, introduction to wavelet transform, probability and random signals, stochastic processes, eigendecomposition, principal component analysis and multimedia applications.", + "title": "Signal Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3731C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to signal processing methods. It aimed at preparing students for high-level technical electives and graduate modules in signal processing and new media. The topics covered include: digital filtering, multirate digital signal processing, introduction to wavelet transform, probability and random signals, Wiener filter, AMAR model, linear prediction, singular value decomposition, principle component analysis and multimedia applications.", + "title": "Signal Processing Methods", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3731E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles of data engineering, which includes the tools and technologies to build the data pipelines and data services needed to do find insights in big data. Specific topics include data collection, data cleansing, data wrangling, and data integrity. Techniques for data analytics, data storage and retrieval, and data visualization will also be covered. In addition to basic principles of data engineering, the module will expose students to open source industry tools and best practices, as well as ethical considerations.", + "title": "Data Engineering Principles", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE3801", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will do a research project over two semesters on a topic of current interest in Electrical and Computer Engineering. Students learn how to apply skills acquired in the classroom and also think of innovative ways of solving problems. Apart from intrinsic rewards such as the pleasure of problem solving, students are able to acquire skills for independent and lifelong learning. The objective of this module is to teach skills, such as questioning, forming hypotheses and gathering evidence. Students learn to work in a research environment.", + "title": "B.Eng. Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "EE4001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will do a team project that involves a varied mix of research, design and development components. It is carried out over two semesters on a topic of current interest in Electrical and Computer Engineering. Students learn how to apply knowledge and skills acquired in the classroom and also think of innovative ways of solving complex problems. Apart from problem solving, students are able to acquire skills for independent lifelong learning, teamwork and effective communication.", + "title": "Design Capstone", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "EE4002D", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This research capstone project provides students with an opportunity to work on a complex engineering problem with a strong element of investigative and exploratory research. It requires a confluence of knowledge, skills and capabilities in project management and communications. The project will involve a varied blend of research, design and development activities and is carried out over two semesters. The project proposal can come from a faculty member or student. It may arise during the student\u2019s industrial attachment or as part of an on-going research project and may involve direct industrial and research institutes\u2019 participation. Students will be assessed individually.", + "title": "Research Capstone", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "EE4002R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a hands-on approach to IP management from early stages of technology and inventions to the later stages of commercialization. The idea is to provide pragmatic knowledge dealing with one of the most exciting avenues for economic growth and wealth creation. Those planning to pursue the path of a practising engineer will find the module most useful.", + "title": "Intellectual Property: Harnessing Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE4031", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction and exposure to the technology concepts that underlie blockchain and its applications. The engineering considerations of a blockchain system will be discussed along with examples from different fields including data science and engineering. Topics include distributed computing systems and their problems, peer-to-peer networks and distributed ledgers, trust models for blockchain and the essentials of cryptography. We will also look at the value proposition of blockchain technology solutions.", + "title": "Blockchain Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE4032", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Radio and microwave systems are used for information transmission. This module therefore introduces the student to a broad range of enabling knowledge and skills commonly employed by RF and microwave engineers to specify, analyse and design radio and microwave transmission systems. Topics covered: Time-varying EM fields: guided waves, evanescent modes and plane-wave propagation. Radiation: radiation mechanism, magnetic vector potential, current distribution on a thin wire, Hertzian dipole, Half-wave dipole & monopole. RF Antennas: parameters, aperture antennas and arrays. RF Amplification: stability, gain and small-signal narrowband design. RF Generation: conditions for oscillation, oscillator design and dielectric resonators. RF Receivers: receiver and mixer parameters. RF Systems: system gain and noise figure, satellite and terrestrial systems.", + "title": "RF Communications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Radio and microwave systems are used for information transmission. This module therefore introduces the student to a broad range of enabling knowledge and skills commonly employed by RF and microwave engineers to specify, analyse and design radio and microwave transmission systems. Topics covered: Time-varying EM fields: guided waves, evanescent modes and plane-wave propagation. Radiation: radiation mechanism, magnetic vector potential, current distribution on a thin wire, Hertzian dipole, Half-wave dipole & monopole. RF Antennas: parameters, aperture antennas and arrays. RF Amplification: stability, gain and small-signal narrowband design. RF Generation: conditions for oscillation, oscillator design and dielectric resonators. RF Receivers: receiver and mixer parameters. RF Systems: system gain and noise figure, satellite and terrestrial systems.", + "title": "Radio-Frequency (RF) Communications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4101E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course begins with the review of mathematical preliminaries such as probability, random process and signal space concepts. It covers the design of modulation and optimum demodulation methods for digital communications over an additive white Gaussian noise channel. Emphasis will be placed on error rate performance for the various digital signaling techniques (ASK, BPSK, FSK, MPSK, QAM, OQPSK, CPM, MSK and GMSK) and on the channel bandwidth requirements. Subsequently, the course will focus on channel coding (Block codes and Convolutional codes), channel equalization and carrier, symbol synchronization.", + "title": "Digital Communications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Coding techniques are used for data compression and reliable communication of digital information over imperfect channels. This module introduces students to a wide range of standard enabling techniques and methods that are deployed in the telecommunications and computing industries. The topics covered are: information measures, source and channel models, various source coding schemes including Huffman coding, run-length coding, linear predictive coding, transform coding, and various channel coding schemes including cyclic codes, BCH codes, Reed-Solomon codes and convolutional codes.", + "title": "Coding Theory And Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Microwave amplifiers, oscillators, mixer and detectors, and electronic switches are basic components of microwave systems. The performance of these components is critical to system performance. This module therefore teaches the design of these components to satisfy performance specifications. Topics covered: Amplifiers: theory, LNA and multistage design; Oscillator theory: nonlinear negative resistance, startup, stability, power generation; Gunn and IMPATT diode oscillators; Design of planar passive components and their application; PIN diode switch and phase shifter analysis and design; Mixers and detectors: theory, mixer and detector diodes, diode detectors and mixers.", + "title": "Microwave Circuits & Devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Spread spectrum modulation is the enabling technology for many current mobile wireless communication systems and is a leading candidate for next generation communication systems. This module introduces students to spread spectrum communications, including modulation (direct-sequence and frequency hopping) and detection (single and multiuser). The topics covered also include wireless fading channels, sequence design (binary shift register sequences), sequence acquisition/tracking, cellular communications and the application of spread spectrum to Code Division Multiple Access (CDMA) systems.", + "title": "Spread Spectrum Communications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Solid-state microwave circuits are usually realised using planar technologies, which integrate some or all components on a substrate. Moreover, monolithic microwave integrated circuits (MMICs) enable commercial application of microwave technology. This module therefore teaches design methods for microwave integrated circuits. Topics covered: review of design concepts. MIC Design: fabrication techniques, modeling of active and passive networks, microstrip and coplanar lines. MMIC Design: lump element design, foundry rules, modeling of active and passive networks, design techniques - Layout and DRC Checks. Selected Hands-on design work on (a) Passive Network - MIC filter and coupler, and (b) Active Network - MMIC oscillator and mixer.", + "title": "RFIC and MMIC Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Radio and microwave systems rely on efficient guiding and distribution of electromagnetic (EM) energy. Radio and microwave systems need to be immune from external EM interference and need to ensure that they do not cause interference of their own. To achieve these requirements, this module will equip and foster the students with balanced and particularly more hands-on oriented contents on radio frequency (RF) designs and practical systems, through live experiments, software learning, and real-life RF examples. Topics covered: transmission systems, resonator cavity, impedance matching network, electromagnetic interference (EMI) and shielding, multi-port scattering and corresponding measurement methods, as well as antenna characterizations and design.", + "title": "Radio Frequency Design and Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4112", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Thursday", + "lessonType": "Packaged Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Radio and microwave systems rely on efficient transmission and distribution of electromagnetic (EM) energy. Radio and microwave systems need to be immune from external EM interference and need to ensure that they do not cause interference of their own. To achieve these requirements, this module will equip and foster the students with balanced and particularly more hands-on oriented contents on radio frequency (RF) designs and practical systems, through live experiments, software learning, and real-life RF examples. Topics covered: transmission systems, resonator cavity, impedance matching network, electromagnetic interference (EMI) and shielding, multi-port scattering and corresponding measurement methods, radiation, and antenna characterizations.", + "title": "Radio Frequency Design and Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4112E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course begins with a review of mathematical preliminaries such as random processes and signal space concepts. It covers the design of modulation and demodulation schemes for digital communications over an additive white Gaussian noise channel. Emphasis will be placed on error rate performance for various digital signaling techniques and on error control coding techniques for reliable communications.", + "title": "Digital Communications & Coding", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course begins with a review of mathematical preliminaries such as random processes and signal space concepts. It covers the design of modulation and demodulation schemes for digital communications over an additive white Gaussian noise channel. Emphasis will be placed on error rate performance for various digital signaling techniques and on error control coding techniques for reliable communications. Topics include the optimal receiver principle, modulation/demodulation techniques, signaling over band limited channels and important channel codes such as Reed-Solomon codes, turbo codes and LDPC codes.", + "title": "Digital Communications & Coding", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4113E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an introduction to the fundamental principles and components of optical communication systems. The module objective is to provide a basic understanding of present optical communication systems as well as future engineering challenges. To this end, the module covers the basic concepts of fiber optics, data modulation in optical fiber channels, management of fiber degrading effects, and wavelength division multiplexing. It also includes the basic constituent components of optical communication systems, including transmitters, receivers, optical amplifiers, and optical fibers.", + "title": "Optical Communications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to serve as a first course in stochastic signal analysis-and-processing for senior and graduate engineering students. It aims to bridge the gap between the elements of probability theory, as taught in early undergraduate level modules, and the basic concepts needed in contemporary signal processing applications. Topics include: general concepts and classification of random variables and\nstochastic processes; transformation of random variables; effects of linear time-invariant filtering on the autocorrelation function and power spectrum of a stochastic process; Gaussian, chi and chi-square statistics; random binary signals, random walk process, Wiener-L\u00e9vy process; Poisson and related processes; random telegraph signals.", + "title": "Random Signals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth treatment of fundamental topics of network design based on the Internet protocol stack model. It is aimed at making students understand how networks work through understanding of the underlying principles of sound network design. This course covers topics including network requirements, architecture, protocol stack models, Ethernet Token Ring, Wireless, and FDDI networks, bridges, switching and routing in IP and ATM networks, and internetworking. Apart from learning the concepts in networks, the students will gain expertise in analyzing and designing networking protocols through mini-projects.", + "title": "Computer Networks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth treatment of fundamental topics of network design based on the Internet protocol stack model. It is aimed at making students understand how networks work through understanding of the underlying principles of sound network design. This course covers topics including network requirements, architecture, protocol stack models, Ethernet Token Ring, Wireless, and FDDI networks, bridges, switching and routing in IP and ATM networks, and internetworking. Apart from learning the concepts in networks, the students will gain expertise in analyzing and designing networking protocols through mini-projects.", + "title": "Computer Networks", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4204E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces engineering undergraduate students to the basic concepts of quantum communication technology, focusing on applying analytical methods of ECE to study quantum communication systems. In particular, it aims to provide engineering students with the necessary skills for the analysis of practical quantum communication devices. The topics include nonlocal games, quantum cryptography, randomness quantification, quantum random number generators and quantum secure communication. The module only requires that the students have basic understandings of probability theory, statistics, linear algebra, and communication systems. No quantum physics background is required.", + "title": "Quantum Communication and Cryptography", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced networking module aims to equip students with the basics and theories of Internet-related technologies, which are necessary for computer/network engineers. The topics that will be covered include Internet architecture, Internet applications and their protocols (HTTP, FTP, DNS, Email, P2P, BitTorrent, etc.), wireless and mobile networks, mobility management, multimedia networking, and network security.", + "title": "Network Protocols and Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Friday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will enable students to know the basics and theories of Internet-related tenchologies which offer the background knowledge & skills required for computer or network engineers. Contents covered include Internet Architecture & client/server applications, Client & Server Computing, Internetworking concepts & Architectural Model, Transport protocols: UDP/TCP, TCP/IP socket programming, Routing protocols, Domain Name System, Mobile IP, and Next Generation IP.", + "title": "Network Protocols and Applications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4210E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers data analytics for the Internet of Things. It starts with an introduction to the Internet of Things (IoT) systems, including the enabling technologies, IoT network architectures and protocols. IoT systems have applications such as semiconductor manufacturing, smart power grids, and healthcare. The module then covers data science fundamentals such as Bayesian statistics, classification, supervised learning, unsupervised learning, and deep learning. The module also covers basic machine learning algorithms such as decision trees, logistic regression, support vector machines, and neural networks. Students will visualize and analyze real-world data sets via practical IoT case studies.", + "title": "Data Science for the Internet of Things", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to introduce the students to the problems and solutions of modern computer vision, with the main emphasis on recovering properties of the 3D world from image and video sequence. After this module, students are expected to be able to understand and compute the basic geometric and photometric properties of the 3D world (such as point depth and surface orientation), and to apply various methods for video manipulation such as segmentation, matting, and composition. Main topics covered include: Singular value decomposition, projective geometry, Marr's paradigm, calibration problems, correspondence and flow, epipolar geometry, motion estimation, reflectance models, shape from shading, photometric stereo, color processing, texture analysis and synthesis, advanced segmentation, matting and composition techniques.", + "title": "Computer Vision", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Image perception such as color, etc will be covered in EE4212, and hence this topic is deleted. Coverage of some enhancement topics is deleted, as these are covered in EE3206, restoration is streamlined. About four hours would be saved through this which will be utilized towards topics in video processing such as representation, block based motion estimation, motion compensated filtering and coding.", + "title": "Image and Video Processing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module are to present the theoretical foundations of real-time systems and to discuss the practical aspects of their implementation. It describes the characteristics of a real-time computing system and students are taught how to design a real-time embedded system using structured data flow methodology. Concepts of time-critical I/O and real-time deadlines are emphasized, as are the important aspects of real-time operating systems, scheduling and the practical implementation of embedded systems and firmware. Other topics covered include deadlock management and process communications. Various case studies on industrial real-time systems will be exhibited to give students a real-world feel for such systems. Students will undertake a mini project involving a real-time embedded system. Topics covered: Introduction to real-time and embedded systems; Time critical I/O handling; Real-time embedded software design; Concurrent programming; Real-time operating systems; Scheduling and time-critical processing; Deadlock management; Process communications; Case studies of real-time embedded systems.", + "title": "Real-Time Embedded Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module are to present the theoretical foundations of real-time systems and to discuss the practical aspects of their implementation. It describes the characteristics of a real-time computing system and students are taught how to design a real-time embedded system using structured data flow methodology. Concepts of time-critical I/O and real-time deadlines are emphasized, as are the important aspects of real-time operating systems, scheduling and the practical implementation of embedded systems and firmware. Other topics covered include deadlock management and process communications. Various case studies on industrial real-time systems will be exhibited to give students a real-world feel for such systems. Students will undertake a mini project involving a real-time embedded system. Topics covered: Introduction to real-time and embedded systems; Time critical I/O handling; Real-time embedded software design; Concurrent programming; Real-time operating systems; Scheduling and time-critical processing; Deadlock management; Process communications; Case studies of real-time embedded systems.", + "title": "Real-Time Embedded Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4214E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Digital Entertainment is a new and highly promising market, and its products and services have become increasingly popular in recent years. The underlying technologies have been in a continuous state of innovation since their inception. In this module we address the unique practical and theoretical issues of digital entertainment. The major topics covered include: Digital Media Technology, Digital Imaging Devices, Computer-Human Interaction, Game Design and Programming, Gaming Hardware, and Mobile Entertainment.", + "title": "Technology Of Digital Entertainment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the design of systems with close integration between hardware and software, a main characteristic of IoT systems. There is an emphasis on the design of custom hardware accelerators/hardware-software co-design, which can reduce the amount of data (and hence the power) required to be communicated through the network from an IoT node, while keeping the power requirement for computations at an acceptable level. Students will learn the design of such systems through HDLs and high-level languages. The project involves collecting sensory data (real or simulated) and processing it using custom accelerators.", + "title": "Embedded Hardware System Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the foundation for a more advanced level control systems course. Topics include system description, controllability, observability, selection of pole locations for good design, observer design, full-order and reduced-order observers, combined control law and observer. It is also a first course in nonlinear systems and control. Topics include non-linearities in control systems, use of root-locus in analysis of non-linear systems, describing function and its use in analysis and design of control systems, non-linear ordinary differential equations, singular points, and phase-plane analysis.", + "title": "Advanced Control Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4302", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "01", + "startTime": "1730", + "endTime": "2000", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "E1-06-07", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "2000", + "endTime": "2100", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1730", + "endTime": "2000", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Packaged Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "2000", + "endTime": "2100", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "E1-06-07", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-06-17T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover sensors, instrumentation and control systems commonly used in the industry. The sensor and instrumentation part includes topics such as signal processing and conversion, transducers and actuators, instrumentation amplifiers, non-linear amplifiers, issues pertaining to grounds, shields and power supplies. The control portion covers the evolution and types of control systems, centralized control, direct digital control (DDC), distributed control systems (DCS), fieldbuses, PID control tuning methods and refinements, auto-tuning principles and implementation, available industrial PID controllers and their operation. It will include other common control systems such as feed-forward, cascade, ratio, selective, split range, time-delay compensation, sequence control and PLC.", + "title": "Industrial Control Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EA-02-11", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover sensors, instrumentation and control systems commonly used in the industry. The sensor and instrumentation part includes topics such as signal processing and conversion, transducers and actuators, instrumentation amplifiers, non-linear amplifiers, issues pertaining to grounds, shields and power supplies. The control portion covers the evolution and types of control systems, centralized control, direct digital control (DDC), distributed control systems (DCS), fieldbuses, PID control: tuning methods and refinements, auto-tuning principles and implementation, available industrial PID controllers and their operation. It will include other common control systems such as feed-forward, cascade, ratio, selective, split range, time-delay compensation, sequence control and PLC.", + "title": "Industrial Control Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4303E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with system theory, analysis tools and design methods in discrete-time domain. It is the first course in control and automation that systematically introduces the basic concepts and principles in sampling, Z-transform, zero-order-hold, discrete equivalence and the relations to discrete-time control design. It further examines the design issues for digital PID, PID auto-tuning, phase compensator, and the model predictive control, including the performance criteria, pole-placement, as well as numerous illustrative application examples.", + "title": "Digital Control Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fuzzy logic and neural networks, two tools used in robotics, and their application. It examines the principles of fuzzy sets and fuzzy logic, which leads to fuzzy inference and control. It also covers the structures and learning process of a neural network including genetic algorithm and classification. Topics covered include fuzzy set theory, fuzzy systems and control of robots, basic concepts of neural networks, single-layer and multilayer perceptions, self-organizing maps, neural network training and neural network modelling of robots. Applications to Robotics will be specifically elaborated throughout the course.", + "title": "Fuzzy/Neural Systems for Intelligent Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4305", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental knowledge, theories and applications of fuzzy logic and neural networks. It examines the principles of fuzzy sets and fuzzy logic, which leads to fuzzy inference and control. It also gives students an understanding of the structures and learning process of a neural network. Topics covered include: fuzzy set theory, fuzzy systems and control, basic concepts of neural networks, single-layer and multilayer perceptrons, self-organizing maps and neural network training.", + "title": "Introduction To Fuzzy/Neural Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4305E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module distributed autonomous robotic systems will cover topics such as multi-agent systems, multiple robotic systems and computational intelligence. The tools presented include genetic algorithms, simulated annealing, soft computing and multi-objective optimisation. Some applications to pattern recognition, function mapping, sensor fusion, obstacle avoidance and learning in robotic systems are also presented.", + "title": "Distributed Autonomous Robotic Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 100% CA module introduces students to the various stages in the design cycle of a closed-loop control system, namely modeling, identification, simulation, controller design and implementation. Students will appreciate the concepts of models and model structures, the ways to obtain them and their applications. Two modeling approaches will be covered; physical modeling which includes the principles and phases ofmodeling using basic physical relationships, and identification approaches covering both non-parametric and parametric identification. Practical issues in modeling, including instrument calibration, model structure selection, data collection configuration, selection of test signals and model validation will also be duly covered. Via project work, students will consolidate the topics covered in class with hands-on experience in modeling, simulating and controlling real systems. They will be equipped with useful practical skills at the end of this course.", + "title": "Control Systems Design And Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the concepts behind making mobile ground robots and unmanned aerial vehicles autonomous. Basic methods underlying robot path planning, sensor fusion, obstacle avoidance and mapping in robotic systems will be taught. The most recent advances in these systems will also be discussed. Students will use the Robot Operating System (ROS) to simulate and implement these methods to enhance their learning experience.", + "title": "Autonomous Robot Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4308", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to introduce the robotic senses that support natural interactions between humans and robots and enable robots to perceive human living environment. It examines the principles of robotic auditory system, spoken dialogue system, robotic vision system, and laser imaging system. It will study the strategy to integrate the robotic perceptual abilities to address real world problems, such as visual language grounding, and 3D semantic maps.", + "title": "Robot Perception", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4309", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Optoelectronics is the study of the interaction of light/radiation with the electronic properties of matter, which are mainly but not exclusively semiconductor-based. This module is designed with a mix of theory and application, emphasizing both the fundamental principles underlying device operation and the relevant technology in the photonics industry. At the end of the module, the student will be equipped with the basic physics of light production, emission and modulation, in semiconductors, electro-optic crystals and liquid crystal substances, and their application in display components and devices, and optical communications. Experiments on optical heterodyning, liquid crystal modulation and characteristics of semiconductor lasers and LEDs are included for practical hands-on experience. Topics covered include basic photometry and radiometry; bandgap engineering in III-V and II-VI compound semiconductors, exciton, isoelectronic traps; LED, semiconductor laser, photodetectors, optical modulators, liquid crystals, display technologies, and recent advances e.g. nanophotonics, organic LEDs and quantum well detectors. Topics covered: Basic photometry and radiometry. Bandgap engineering in III-V and II-VI compound semiconductors. Exciton, isoelectronic traps. LED, semiconductor laser and photodetector device structure and operational characteristics. Optical modulators. Liquid crystal displays. Nanophotonics.", + "title": "Optoelectronics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course builds on the basic concepts in electronics which students learned in earlier courses. This will enable students to design complex electronic circuits and systems for processing analog signals. Topics covered: Passive filters, poles and zeros; Transistor amplifiers, Negative feedback amplifiers; Oscillators; Mixers, modulators and demodulators for communication systems; Instrumentation amplifiers, CMRR; DC power supply design: Linear and switching regulators, current limiting; Power amplifiers: Output stage, efficiency and distortion; Active filters; Interconnections: propagation of signal and energy in transmission lines; and introduction of design techniques for integrated circuits (IC).", + "title": "Analog Electronics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4407", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with essential concepts in electronics to enable them to understand and design complex electronics circuits and systems for processing analog signals.Topics covered: Techniques for implementing specific amplifier frequency response involving poles and time constants; Negative feedback amplifiers; Oscillators: RC, LC and crystal-controlled oscillators; Power amplifiers: Output stage, efficiency and distortion; DC power supply design: Linear and switching regulators, current limiting; Mixer, modulators and demodulators for communication systems; Active filters; Instrumentation amplifiers, CMRR; Applications of current mirror circuits.", + "title": "Analog Electronics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4407E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of the general failure mechanisms in integrated circuits and three MOS technology specific reliability mechanisms (i.e., CMOS latchup, gate oxide reliability and hot carrier reliability). A brief introduction on the failure analysis methodology will also be covered. At the end of this module, students will gain a basic understanding of the various failure/reliability issues in silicon devices. Topics covered: Introduction to IC Failure Analysis. General failure mechanisms in integrated circuits: Bonding, packaging and metallization failures. Electrical stress failures: electromigration and ESD/EOS. Technology specific reliability mechanisms: CMOS latchup, gate oxide reliability and hot-carrier reliability.", + "title": "Silicon Device Reliability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4408", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module first gives an introduction of microelectronic devices applicable to IoT systems and applications deployed in our day-to-day modern gadgets/equipment, e.g., smartphones, wearable electronics and driverless cars. The devices include sensors for sensing various types of physical parameters (temperature, speed, position, etc.), storage devices, etc. The working principles of these devices will be described pertaining to an application. Specifications, usability and, key features of these devices will also be analysed so that students will learn how to utilize these devices in a wide range of IoT related applications such as health care, transportation, etc.", + "title": "Modern Microelectronic Devices & Sensors", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4409", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an opportunity for students to learn analog and mixed-signal IC design through an integrated circuit prototyping project using commercial design flows. The module spans in two semesters. The chip design and test are carried out in the first and second semester, respectively. The chip fabrication is done at an external foundry during the semester break. Lectures are given at the beginning of the two semesters, covering the project related topics and other important issues in IC design. This module is targeted at those electrical engineering students who have strong interests in IC design. The module is based on continuous assessment.", + "title": "Integrated Circuit And System Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "EE4410", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is offered to electrical engineering students who have strong interests in integrated circuit (IC) design. It teaches students analog and mixed-signal IC design\nthrough an integrated circuit chip design project using commercial design flows. Intensive lectures pertaining to the project will be delivered in the first week. The lectures\ncover topics in noise analysis and reduction layout design, electrostatic discharge (ESD), latch up and testability. Students will then proceed with the design according to the given specifications for their projects. The design is carried out in a team of usually 3 students.", + "title": "Integrated Circuit Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4410A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the major process technologies used in the fabrication of integrated circuits and other microelectronic devices. Each lecture topic covers important scientific aspects of silicon wafer processing steps. Simulations and laboratory experiments provide hands-on experience on basic operation and fabrication of MOS devices. Topics include: crystal growth and wafer preparation, epitaxy, oxidation, diffusion, ion implantation, lithography, plasma technology, etching, deposition, and metallization.", + "title": "Silicon Processing Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the operation, modeling and fabrication of silicon bipolar and MOS transistors, the understanding of which is essential for the integrated circuit engineer. At the end of this module, students will gain a good understanding of the issues regarding the design and fabrication of modern silicon transistors as their dimensions continue to shrink. They will be exposed to the basic techniques of modeling, simulation and technology of these devices. Topics covered: MOS Capacitor: C-V characteristics, physical models; MOSFETs: long and short channel devices, threshold voltage, subthreshold behaviour, device scaling, short-channel effects, gate, drain and dielectric engineering; Bipolar transistors: structures and operations, high current effects, emitter, base and collector engineering; Polyemitter and Si-Ge heterojunction transistors; CMOS, bipolar and BiCMOS technology.", + "title": "Technology & Modelling Of Si Transistors", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4412", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the students to the design of integrated circuits. It covers basic concepts including integrated circuits fabrication technology, CMOS and nMOS design, inverter design, aspect ratios of pull-up and pull-down transistors, switching characteristics of CMOS and nMOS inverters, latch-up, stick diagram, design rules, mask layout, sub-systems design, ASIC challenges and issues, ASIC design flow, Verilog hardware design language basics, and logic synthesis. Each student will do a design exercise using the EDA tools.", + "title": "Integrated Digital Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4415", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 72, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 72, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the students to the design of integrated circuits. It covers basic concepts including integrated circuits fabrication technology, CMOS and nMOS design, inverter design, aspect ratios of pull-up and pull-down transistors, switching characteristics of CMOS and nMOS inverters, latch-up, stick diagram, design rules, mask layout, sub-systems design, ASIC challenges and issues, ASIC design flow, Verilog hardware design language basics, and logic synthesis. Each student will do a design exercise using the EDA tools.", + "title": "Integrated Digital Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4415E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As devices scale down, quantum effects become important when their size reaches the nanometer regime (typically 100 nanometers or less). Devices with nanometer features, i.e., nano-devices, exhibit properties different from conventional bulk devices. The making of nanodevices, e.g., single electron transistor, carbon nanotube/ graphene transistor, spintronic devices, quantum well/dot laser, has been made possible by the emergence of the nano-processing and characterization tools. This module aims to provide an introductory coverage on the concepts and principles that form the basis for understanding an\ninterdisciplinary field with an emphasis on electrical engineering. Topics covered include nano-lithography, nano-layering, nano-characterization, and nano-devices.", + "title": "Nano-Device Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4431", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the theory, operating principles, and basic function of (i) photovoltaic, thermoelectric, and fuel cell-based electric energy generation devices and (ii) electric energy storage systems. Major topics covered are the photovoltaic (PV) effect, solar cells (silicon wafer cells, thin-film cells, organic cells), PV modules, the thermoelectric effect, thermoelectric devices, fuel cells\n(proton exchange membrane cells, high-temperature cells), pumped hydroelectric energy, compressed air energy, flywheels, rechargeable batteries (lead-acid, lithium ion, etc), electrolytic hydrogen, and supercapacitors.", + "title": "Devices for Electric Energy Generation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4432", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Information storage is indispensable for every computerized system. Currently there are three major\ntypes of information storage technologies, i.e., magnetic data storage, optical disks, and solid-state memories. Although the operation principles are different, the common driving force for all these surface-based information storage technologies in the last few decades was the reduction of bit size so as to make it possible to store more data on a specific surface area. As a result, all these data storage devices are now operating in the nanometer regime. This module adopts a model-based approach to introduce information storage through focusing on the basic principles of various types of data storage systems and the associated roles of\nnanotechnology in each field. Emphasis will be on materials, devices and technologies that have made it possible to maintain a remarkable growth rate in storage density in the last decades and emerging technologies for tackling challenges ahead. Topics covered include solid state memory, optical disks, magnetic recording, and emerging technologies.", + "title": "Nanometer Scale Information Storage", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4433", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to the industry practice on the technology, design, layout and testing of digital and memory integrated circuits (IC). Students will be introduced to the different types of devices which are manufactured in a foundry. Students will learn about the ideas of design for testability through lectures, hands on exposure to different testing and debugging tools and industrial visits. Specific topics include wafer technology and devices, digital logic and memory design and layout, fundamentals of digital and static random access memory (SRAM) testing, design for testability, fault isolation and electrical characterization.", + "title": "Integrated Circuit Technology, Design and Testing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4434", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to equip students with the physical foundation of metal oxide semiconductor (MOS) device physics and the theoretical background for understanding end applications in modern transistors and memory devices (e.g., Flash, phase change random access memory, etc.). Upon the successful completion of this module, the student is expected to gain an understanding on the principles of operation and physics of modern MOS transistors and memory devices. Such knowledge is useful for careers in the wafer fabrication plants, foundries, design houses and the microelectronics industry.", + "title": "Modern Transistors and Memory Devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4435", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to equip students with the physical foundation of metal oxide semiconductor (MOS) device physics and the theoretical background for understanding end applications in modern transistors and memory devices (e.g., Flash, phase change random access memory, etc.). Upon the successful completion of this module, the student is expected to gain an understanding on the principles of operation and physics of modern MOS transistors and memory devices. Such knowledge is useful for careers in the wafer fabrication plants, foundries, design houses and the microelectronics industry.", + "title": "Modern Transistors and Memory Devices", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4435E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the new information age, fabrication process technology continues to be employed in the manufacturing of ultrahigh density integrated circuits such as microprocessor devices in computers. This module focuses on the major process technologies and basic building blocks used in the fabrication of integrated circuits and other microelectronic devices (e.g., solar cells). Understanding of fabrication processes is essential for undergraduate students who wish to develop their professional career in the microelectronics industry such as in wafer fabrication plants, foundries and design houses.", + "title": "Fabrication Process Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4436", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the new information age, fabrication process technology continues to be employed in the manufacturing of ultra-high density integrated circuits such as microprocessor devices in computers. This module focuses on the major process technologies and basic building blocks used in the fabrication of integrated circuits and other microelectronic devices (e.g., solar cells). Understanding of fabrication processes is essential for undergraduate students who wish to develop their professional career in the microelectronics industry such as in wafer fabrication plants, foundries and design houses.", + "title": "Fabrication Process Technology", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4436E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Lecture", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Photonics technology is everywhere around us, and disruptive advances in photonics have impacted our everyday lives, e.g., LED lighting, flexible OLED displays in mobile phones, ultra-thin and curved television displays. This course will introduce the underlying photonic principles underlying these recent photonic applications, i.e., the generation, modulation and detection of light, and their application. Emphasis is placed on the fundamentals of device operation and their use in current photonic devices and applications. The aim is to equip students to meet the demand of the expanding optoelectronic industry and to prepare them for advanced study and research in photonic technology. Topics include introduction to photometry, and electro-optical properties of semiconductors and lowdimensional semiconductor structures, as well as applications such as light emitting devices, lasers, detectors, modulators and displays. Recent advances e.g. quantum devices, and organic LEDs and photonic crystals will also be introduced.", + "title": "Photonics - Principles and Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4437", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the theory, operating principles, and basic function of solar cells and photovoltaic modules. Major topics covered are the status of the PV market, the properties of sunlight, properties of semiconductors, efficiency limits of solar cells, carrier properties in semiconductors, currents in p-n diodes in the dark and under illumination, computer simulation of solar cells, characterisation of solar cells, technology of silicon wafer solar cells, technology of thin-film solar cells, properties of interconnected solar cells, technology of PV modules, and the characterisation and testing of PV modules", + "title": "Solar Cells and Modules", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4438", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modelling of power systes bus admittance and bus impedance matrices, network building algorithms. Load flow studies problem formulation, computer solution techniques; economic load dispatch. Energy market restructuring. Fault analysis symmetrical components, sequence impedance networks, symmetrical and unsymmetrical faults. Protection components, differential, and earth fault protection systems.", + "title": "Power System Management And Protection", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4501", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LT1", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Motion control in industrial, commercial and transportation systems is carried out using electric drives. This module provides students with the working knowledge of various components of an electrical drive system and their control for efficient energy conversion. Students would be taught the basic principle of operation of variable speed DC and AC Drive systems. After completion of this module, students are expected to select and size electrical drives for any given application and should be able to perform design of different drive components. The topics covered are: Characteristics and sizing of power semiconductor controlled electric drives; DC motor drives: speed and torque control; Induction motor drives: voltage control and variable frequency control; Drives application examples.", + "title": "Electric Drives & Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4502", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Power electronics is an enabling technology used widely in electric power processing unit. It is an integral part of all electronic equipment from household appliances through information technology to transportation systems. This module provides working principles and design for power electronic converter circuits. After going through this module, students should be able to analyze, evaluate and carry out design of power electronic circuits for a large variety of applications. The topics covered are: Power semiconductor devices and terminal characteristics. Switching circuits design and protection circuits. AC-DC converters, DC-DC converters and DC-AC converters: analysis and performance evaluation.", + "title": "Power Electronics for Sustainable Energy Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4503", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a state-of-the-art overview of devices, development and basic understanding of the physics of power semiconductors. The module covers Carrier physics in power devices mobility, resistivity, life-time, high-level injection; Breakdown voltage and junction termination avalanche breakdown, punch-through breakdown; Power devices power MOSFET for synchronous rectifiers, power diode and recovery phenomena, power transistor and quasi-saturation effects, gate turn-off thyristor, MOS-controlled bipolar device; Smart power ICs evolution, high-voltage power MOSFETs in integrated circuits, technological limitations in power ICs, protection techniques in power ICs.", + "title": "Power Semiconductor Devices & ICs", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4505", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-16" + }, + "venue": "E5-03-19", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Packaged Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the principle of operation and design aspects of magnetic recording systems. It introduces the key issues involved in the design and system level integration of disk drives. Students will be exposed to current practice and new trends through both theory and practice in the laboratory. Topics covered include: Basics of magnetic recording and playback, different types of heads used for recording and playback, modeling and mathematical representation of recording/playback process, design and fabrication process for heads and disks. Integration of different components of hard disk drive, signal processing for recording and playback, servomechanism for access of data, efficiency of recording and encoding of data, reliability of recording and error correction codes, transfer of data between hard disk drive and host computer.", + "title": "Magnetic Recording Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4506", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an introductory view of the microelectromechanical systems (MEMS) in various application areas, and also the knowledge on micromachining technology for making the physical sensors and actuators. Key topics are MEMS design and process cycles, bulk and surface micromachining technology, structural deposition and etching, inertial, thermal sensors, actuators, micro-motors and micro-pumps, structural consideration and integration issues.", + "title": "Silicon Micro Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4509", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Energy sustainability is important both due to the limited global petroleum reserves and due to the global warming effects of greenhouse gases released by the use of fossil fuels. This module focuses on the types of electrical components and schemes used in solar photovoltaic (PV) energy systems. Besides the characteristics of solar radiation, stand-alone PV schemes with battery energy storage and grid-connected PV schemes will be covered.", + "title": "Solar Photovoltaic Energy Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4510", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the students with a good overview of renewable energy generation techniques for promoting the advancement and use of economically and environmentally sustainable energy systems. Renewable energy sources including solar, wind, hydro and geothermal are studied in detail. The module will cover the integration of these sources into the smart grid, and strategies for demand side management for efficient resource utilisation. Issues related to environmental impact of renewable energy generation, as well as, their economics will be discussed. Models of smart distribution systems with embedded generation and microgrids will be introduced.", + "title": "Renewable Generation and Smart Grid", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4511", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With growing importance of renewable energy systems there is a need for future engineers who can conceptualize and design such system. This module will use project based learning methods to help future power engineers to conceptualize and design renewable energy system consisting of sources such as Solar, Wind, Fuel cells etc. \n\nAlong with design practices for distribution networks and power converters, it will introduce them to standards in practice of electrical connection. Each student will go through a process of design, simulate and test their designs.", + "title": "Renewable Energy Systems Capstone Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4512", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Electric Vehicles will start being ubiquitous as means of personal transport. With nations around the world announcing targets for adopting electric vehicles in their vehicular transport mix, growth in this area is going to be inevitable. The module will explain how Electric Vehicle of different types (BEV, PHEV, FCEV) are dimensioned, what are their best operating regimes how they are charged. The dimensioning of key component of EVs such battery systems and traction motor drive trains will be explained. Different charging standards like CHADemo will be presented and the impact of charging infrastructure on the Grid will be explained.", + "title": "Electric Vehicles and their Grid Integration", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4513", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this module is to introduce physics, principles, and operating mechanisms of various kinds of sensors. This module will provide electrical engineering students with central core knowledge about sensors in designing and developing for bio-medical applications. The major topics in this module cover; Brief Summary of Sensor Technology, Basic Sensor Structures, Sensing Effects, Physical Sensors and Their Applications in Bio-Medical Engineering, Sensors for Measuring Chemical Quantities in Bio-Medical Engineering, Miscellaneous Bio-Sensors and technologies, Biocompatibility of sensors, and Future trends in Bio-Sensor Technology.", + "title": "Sensors For Biomedical Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4601", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this module is to introduce biophysics, electric circuit models and engineering oriented principles of bioelectronics and bioelectricity. This module will provide electrical engineering students with central core knowledge to use semiconductor devices as bio-sensing devices, and to understand the electrical biophysics of human physiology and their biomedical applications. The major topics in this module cover: brief review of MOSFET transistor and SPICE modelling, solid-electrolyte Interface, potentiometric bioelectronics devices: principles of MOSFET-based bioelectronic devices, amperometric bioelectronics devices, microfabrication technologies for bioelectronic devices, introduction to bioelectricity, neurons and neuronal networks, bioelectric measurements.", + "title": "Bioelectronics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4602", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to present an overview of biomedical imaging systems. The course will examine various imaging modalities including X-ray, ultrasound, nuclear, and MRI. How these images are formed and what types of information they provide will be presented. Image analysis techniques will also be discussed. Specific analysis techniques will include the analysis of cardiac ultrasound, mammography, and MRI functional imagery.", + "title": "Biomedical Imaging Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4603", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we introduce the anatomy and physiology of the visual and auditory systems as well as their psychophysical characterizations. In addition, we study computational models that not only serve to provide insights into the functional organization of biological systems, but also to generate predictions for new experiments. These models are used increasingly in digital media coding and compression. They are also the basis for new generations of machines that are more aware of their environment, better adapted to the user and more intuitive to interact with. Major topics include the perception of objects, color, and motion, 3D vision, visual attention, and hearing.", + "title": "Biological Perception in Digital Media", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4604", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the fundamentals of medical instrumentation systems, and bio-signal processing. The physiology of bio-signals, including how they are generated, recorded/collected and are used clinically, will be presented. The purpose of the signal processing methods ranges from noise and artifact reduction to extraction of clinically significant features. The course gives each participant the opportunity to study the performance of a method on real bio-signals. The major topics covered in this module are: Basic concepts of biomedical instrumentation, Cardiovascular system and measurements, Respiratory system and measurements, Neuro-physiological measurements, Signal conditioning and various analysis (linear and nonlinear) techniques.", + "title": "Bio-Instrumentation & Signal Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4605", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Digital video technology has become ubiquitous. It allows professionals and amateurs alike to easily capture, record and display moving pictures. Digital video processing algorithms have found their way into camcorders, DVD players, laptops, mobile phones, and many other devices. In this module, we discuss the theoretical foundations and practical applications of video technology. The major topics covered include video representation, motion estimation, video compression, video communication, digital video hardware, as well as video enhancement and understanding.", + "title": "Video Processing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This project module gives students hands-on insights into mechanics/simulation components of a game engine. The primary focus is the underlying game logic, like game physics, artificial intelligence and world simulation (and not presentation components like graphics or sound). Brief overview and introduction lectures will be followed by small group projects. Each student will participate in three different projects of four weeks. Students will need to come up with ideas and designs of interesting subsystems, reason about the integration into a game, and implement a prototype. Example projects are explosion physics, herd animal behaviour, and thunderstorm simulation.", + "title": "Game World Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "EE4702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad view of the state-of-the-art in digital media technologies. The major topics covered are: business & market environment, film production technologies, TV technology, audio production, mobile media technologies, human-computer interaction and user interface design, virtual reality, mixed reality, and tangible media.", + "title": "Digital Media Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4703", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to introduce students to the fundamental concepts underlying digital image processing and techniques for manipulating and analysing image data. This course will provide students with a foundation for computer vision and image processing, which is important for those intending to proceed to biomedical engineering, intelligent systems and multimedia signal processing. The following topics are taught: elements of a vision system, image acquisition, 2-D discrete Fourier transform, image enhancement techniques, theoretical basis and techniques for image compression, segmentation methods including edge detection, and feature extraction such as texture measurement.", + "title": "Image Processing and Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4704", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Thursday", + "lessonType": "Packaged Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the basic concepts and techniques in computer vision and digital image processing. The following topics are taught: elements of a vision system, image acquisition, 2-D discrete Fourier transform, image enhancement techniques, error-free and lossy compression, segmentation methods, and representation and description methods.", + "title": "Introduction to Computer Vision and Image Processing", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4704E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces different modes of human robot interactions, methods for detecting humans, understanding human behaviors and intentions, and methods for humanrobot coordination and collaboration. Human-robot interactions include physical and non-physical (e.g. social) interactions. Physical interactions include human assistance and wearable robotics. Non-physical interactions include natural language understanding, spoken dialogue, gestures and \u201cbody language\u201d, and multimodal interaction fusing different interaction modalities. Human-robot coordination and collaboration include human-robot handovers, robotic assistants and coworkers. User interface design for mutual communications between robot and humans is covered, including social interaction. Several applications and scenarios will be included.", + "title": "Human-Robot Interaction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4705", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students data analytics and machine learning techniques for solving large scale engineering problems. The module covers statistics and machine learning concepts and algorithms such as linear regression, support vector machine, decision trees, feature engineering, deep learning, and reinforcement learning. How these algorithms are scaled up and incorporated in data engineering pipelines to tackle large scale problems will be covered. Students will be exposed to practical case studies of engineering problems with realistic datasets or streaming data, and perform data engineering operations using software tools.", + "title": "Learning from Data", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE4802", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module Ii", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5002", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Electrical Engineering Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "EE5003", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers data science for the Internet of Things. The topics include data science fundamentals such as Bayesian statistics, classification, supervised learning, unsupervised learning, and deep learning. The module will also cover several basic machine learning algorithms such as decision trees, logistic regression, support vector machines, and neural networks. Students will visualize and analyze real-world data sets via practical IoT case studies.", + "title": "Data Science for Internet of Things", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5020", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-02-24", + "end": "2023-02-24" + }, + "venue": "E5-03-21", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "E5-03-21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-25", + "end": "2023-02-25" + }, + "venue": "E5-03-21", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-02-23", + "end": "2023-02-23" + }, + "venue": "E5-03-21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 7 + ], + "venue": "E5-03-21", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-02-21", + "end": "2023-02-21" + }, + "venue": "E5-03-21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cloud computing is an attractive paradigm for cost\nefficiency and management flexibility which brings in\nseveral benefits for Internet of Things (IoT). This module\nprovides a comprehensive treatment of the concept and\ntechniques related to cloud-based services for IoT\napplications. It first briefly reviews IoT basics and then\ndiscusses cloud computing and request models that can\nbe used for IoT. It also introduces network function\nvirtualization (NFV), orchestration, and IoT Gateway.\nTutorial and hands-on will be provided to the students to\nacquire practical experience in working with cloud\nplatforms and use/test the cloud-based services for IoT\napplications.", + "title": "Cloud based Services for Internet of Things", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5021", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 13 + ], + "venue": "E5-02-32", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E5-02-32", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce tools and methodologies for\ncyber secucity of IoT systems. The topics covered include\nthe basic of cyber security for IoT systems, threats and\nvulnerabilities, tools and techniques for detecting attacks,\nand mitigation strategies. In addition to the fundatental\nconcepts, students will be exposed to hands on training for\nanalysing IoT and cyber-physical system data for detecting\ncyber-threats and attacks.", + "title": "Cyber Security for Internet of Things", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover wireless networks that are relevant to Internet of Things (IoT). The module provides the concepts and operational details of multi-hop, mesh, ad hoc and personal area networks. It also covers aspects such as medium access control, routing and transport protocols.", + "title": "Wireless Networks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5023", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-01-13", + "end": "2023-02-24" + }, + "venue": "E3-06-02", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sensor networks feature prominently in the Internet of\nthings (IoT). This module covers the principles of wireless\nsensor networks that enables visibility into the physical\nprocesses happening around us. Pertinent issues such as\nenergy management and distributed information\nprocessing leading to applications such as event detection\nwill be covered. The coupled relationship between wireless\nsensor network performance, information processing, e.g.\nat edge computing nodes, and networking protocols,\ntogether with energy considerations will be emphasized.", + "title": "IoT Sensor Networks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5024", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1700", + "endTime": "2100", + "weeks": { + "start": "2023-04-21", + "end": "2023-04-21" + }, + "venue": "EA-06-03", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a hands-on approach to IP management from early stages of technology and inventions to the later stages of commercialization for IoT related technologies. The idea is to provide pragmatic knowledge dealing with one of the most exciting avenues for economic growth and wealth creation. Those planning to pursue the path of a practising engineer will find the module most useful.", + "title": "Intellectual Property: Innovations in IoT", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5025", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces machine learning methods and\ntheir applications for data analytics. Students taking this\ncourse will learn modern machine learning techniques\nincluding classification, regression and generative models\nand algorithms as well as how to apply them to data\nanalytics. The course starts with machine learning basics\nand some classical machine learning methods, followed by\nsupervised and unsupervised data clustering, data\ndimensionaliy reduction for visualization and data\nclassification. The students are expected to have solid\nbackground knowledge on calculus, linear algebra,\nprobability and basic statistics.", + "title": "Machine Learning for Data Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5026", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "2100", + "weeks": { + "start": "2022-11-17", + "end": "2022-11-17" + }, + "venue": "E5-02-32", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main objectives of this graduate module are to equip\nstudents with the fundamentals of statistical pattern\nrecognition (SPR) algorithms and techniques. PR deals\nwith automated classification, identification, and/or\ncharacterisations of signals/data from various sources.\nBecause real world data is noisy and uncertain, we will\nfocus on SPR techniques, with particular emphasis on the\ntheoretical foundations of various techniques. Topics\ncovered include: fundamentals of parameter estimation\n(maximum likelihood, maximum-a-posteriori, posterior\npredictive), supervised learning, generative models, naive\nBayes, discriminative models, logistic regression, nonparametric\ntechniques, Bayesian decision theory.", + "title": "Statistical Pattern Recognition", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5027", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "2100", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-22" + }, + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce the students to the fundamentals for securing cyber physical systems and industries reliant on information and communication technologies. The students will be exposed to the key technologies behind cyber physical systems and Industry 4.0 and their security vulnerabilities. Tools and techniques for protecting against these vulnerabilities will be introduced and the students will also work with data from case studies from security breached in industrial systems to gain hand on experience in detecting and defending against cyber attacks. The module will use practical systems such as smart grids for illustrating the concepts and as test cases.", + "title": "Security for Industrial Control Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5028", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the necessary fundamentals in power systems modelling and analysis. Power system simulation involves modeling power generation equipment, planning the integration of power plants and renewable generation sources onto the electric grid, and performing power flow optimization. Students will learn how mathematical approaches and simulation tools are used for the design, modeling, planning, and analysis of power distribution grids. Students will gain hands-on experience on simulation and analysis of power systems with embedded generation, and visualisation of large power distribution systems.", + "title": "Power Flow Modelling and Optimization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5040", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-08-08", + "end": "2022-09-19" + }, + "venue": "E5-03-19", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "When synchronous generators in an interconnected grid are subjected to a disturbance, exchange of energy among generators occurs to minimize the power imbalances. Such dynamics are captured in the form of electromechanical oscillations, and are inherent to power grids. From the utility perspective, poorly damped oscillations can trigger rotor-angle instability and cause wide-area blackouts. Hence, real-time assessment using advanced sensors like Phasor Measurement Unit (PMU) are used to improve grid stability. Additionally, proper design of the excitation system in a synchronous generators is critical. This module provides a holistic view of identifying and mitigating stability issues among synchronous generators.", + "title": "Grid Stability and Security", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5041", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-26", + "end": "2022-11-14" + }, + "venue": "E5-03-19", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Smart grids will be the energy delivery systems of the future. A smart grid is an electrical grid that can monitor, predict, and intelligently respond to the behaviour of all electric power suppliers and consumers connected to it in order to deliver reliable and sustainable electricity services as efficiently as possible. This module presents various smart grid architectures, functions of all its components like distributed energy sources, communication and measurement technology, energy management systems, operation management systems etc.", + "title": "Building blocks of Smart grids", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5042", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a comprehensive discussion of demand side management in the context of future Smart Grids. This course will assist power system professionals in planning and operating a power system with increasing penetrations of Demand Side Management (DSM) programs, renewable resources and distributed generation. It will examine demand side resources, technologies and prospects for demand side management. The course will discuss technical, economic, social and environmental aspects of demand side management.", + "title": "Demand Side Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5043", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of energy management system in the building context. The concept of micro- and nano-grids in building context will be introduced. Renewable and distributed energy generation systems such as building integrated PV and rooftop solar-PV will be discussed with different scenarios of power flow e.g. building-to-building and building-to-grid integration will be introduced. Load side management to demand response strategies will be introduced. Furthermore, the course also includes power flow analysis and power quality analysis, system planning and operation, fault detection and various new and emerging technologies in modern buildings.", + "title": "Energy Management for Buildings", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5044", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Singapore\u2019s manufacturing industry sector is an important part of Singapore\u2019s economy contributing almost to about 20% of the Singapore\u2019s GDP and employs almost a fifth of the Singapore\u2019s workforce. It also accounts for almost 60% of the Singapore\u2019s projected 2020 Greenhouse gas emissions. The lack of alternative clean energy sources such as renewables to a large extent being close to the equator, however, there is one fuel to which all the countries including Singapore have access to, a fuel that has everything needed for a sustainable and secure energy sector and that is Energy Efficiency. Energy Efficiency (EE) has been identified as a core strategy to reduce emissions. Demand-side management (DM) of energy represents an important opportunity for Singapore to further reduce the gas emissions while reducing the total energy cost and improving industrial competitiveness.", + "title": "Industrial Energy Efficiency", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5045", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-08-09", + "end": "2022-09-20" + }, + "venue": "E5-02-32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Most commonly used renewable energy sources such as Solar PV and Wind will be introduced. Their potential for each region and how to calculate the yield will be demonstrated. The economics of the renewable source for a region will be calculated and discussed. It will give the reader tools to assess the renewable energy potential and to choose the best renewable energy mix for support. It will also characterize the nature of the power generated by such source which have variability and uncertainty. Methods to forecast the possible yield will be discussed.", + "title": "Renewable energy sources", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5046", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As the amount of renewable energy connected to the normal electrical grid increases, it creates major problems affecting stability and power quality of the grid. As renewable energy is non-dispatchable source and has high variability and uncertainty the issue of renewable energy integration has to be analysed and studied. This modules address the issue from both the owner and the grid operators point of view on how to study the impact of high renewable penetration and how best to address the challenges.", + "title": "Renewable Energy Integration and Grid Codes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5047", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module offers students timely and updated coverage\nof a wide range of topics relevant to common industrial\npractice and motion control, smart sensor and\ninstrumentation tapping on the latest and diverse range of\ndevelopments in the repertoire of the control group and\ncollaborating companies and institution, such as the\ndelivery of a measured collation of case studies of\nindustrial motion control and smart sensor and\ninstrumentation applied to real problems of a diverse\nnature and which are not easily and directly available from\nstandard literature. The nature of the module allows the\nflexibility for recent topics, problems and solutions to be\nshared with the students.", + "title": "Sensors and Instrumentation for Automation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5060", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers students timely and updated coverage\nof a wide range of topics relevant to common industrial\npractice and motion control, smart sensor and\ninstrumentation tapping on the latest and diverse range of\ndevelopments in the repertoire of the control group and\ncollaborating companies and institution, such as the\ndelivery of a measured collation of case studies of\nindustrial motion control and smart sensor and\ninstrumentation applied to real problems of a diverse\nnature and which are not easily and directly available from\nstandard literature. The nature of the module allows the\nflexibility for recent topics, problems and solutions to be\nshared with the students.", + "title": "Industrial Control and Programming", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5061", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers students timely and updated coverage of a wide range of topics relevant to automation and motion control engineering tapping on the latest and diverse range of developments in the repertoire of the control group, such as the delivery of a measured collation of automation and motion control system designs applied to real problems of a diverse nature and which are not easily and directly available from standard literature. \n\nThe nature of the module allows the flexibility for recent topics, problems to be delivered to students.", + "title": "Autonomous Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5062", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a module for engineering students of any disciplines. It serves as a modular course for students wishing to pick up skills in practical modelling approaches for dynamic systems. It covers the practical approaches to modelling and identification of dynamical systems. Case studies of mechatronic applications will be done. Hands-on sessions will also be conducted.", + "title": "Modelling of Mechatronic Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5063", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to offer a systematic description of the dynamics and control of robot manipulators. After the introduction of Lagrangian and Newtonian approach for the dynaimci modelling of robot manipulators, their properties of the robot dynamics are studied. The students will learn how to correctly establish the dynamic model of the robot manipulators and understand the dynamic characteristics. In the control part, the students will learn many commonly used control algorithms for the robot manipulators, such as computed-torque control, robust control and adaptive control methods. More importantly, some key technologies about the emerging robot human and enviornment interactions, e.g., force and impedance control algorithms will also be introduced to the students in the control part. In general, this module will provide the students with a relatively complete view of the dynamics and control of robot manipulators, and facilitates the implementations of the further industrial applications and research work.", + "title": "Dynamics and Control of Robot Manipulators", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5064", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Artificial intelligence (AI) is set to disrupt practically every industry imaginable, and industrial robotics is no different. The powerful combination of robotics and AI or machine learning is opening the door to entirely new automation possibilities.Currently, artificial intelligence and machine learning are being applied in limited ways and enhancing the capabilities of industrial robotic systems.\n\nThis module focuses on the areas of robotic processes that AI and machine learning are impacting to make current applications more efficient and profitable.", + "title": "Tenets of AI in Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5065", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This class introduces student to the state-of-the-art CMOS technologies in production. Various key process modules that have enabled the recent advancement of CMOS technology from 40 nm to 10 nm and related impact to design will be discussed. Analysis and approaches related to monitoring and management of process defects, reliability, and yield will be covered. Methods to identify potential large-scale manufacturing risks and problems to reduce the production cost will also be discussed.", + "title": "State-Of-The-Art Semiconductor Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EE5080", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Linear system theory is the core of modern control approaches, such as optimal, robust, adaptive and multi-variable control. This module develops a solid understanding of the fundamentals of linear systems analysis and design using the state space approach. Topics covered include state space representation of systems; solution of state equations; stability analysis using Lyapunov methods; controllability and observability; linear state feedback design; asymptotic observer and compensator design, decoupling and servo control. This module is a must for higher degree students in control engineering, robotics or servo engineering. It is also very useful for those who are interested in signal processing and computer engineering.", + "title": "Linear Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to introduce the basic concepts and design methods of computer/microprocessor based control schemes. Techniques for discrete-time control realization will also be discussed. After attending the course, the students will acquire the basic skills on designing simple controllers for real time systems, know how to analyze the system responses and evaluate the controller performance. The topics covered are discrete system analysis; pole-placement design, Kalman filter and model predictive control.", + "title": "Computer Control Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to introduce the basic concepts and design methods of adaptive control. The concepts underlying adaptive control schemes, such as Lyapunov-based direct adaptive control scheme, self-tuning regulator and model reference adaptive control, will be studied in detail. Least squares estimate and the issues related to parameter adaptation will also be introduced. To provide an understanding of an alternative to \"adaptation\", the concept and basic design of variable structure control will be discussed. Case studies of various engineering control problems will be used throughout the course to provide insights and useful design guideline.", + "title": "Adaptive Control Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of the course is for students to develop an in-depth understanding of the fundamentals of robotics at an advanced level. It is targeted towards graduate students interested in robotics research and development. The focus is on in-depth treatments and wider coverage of advanced topics on (a) kinematics, (b) trajectory planning, (c) dynamics, and (d) control system design. At the end of this module, the student should have a good understanding of all the related topics of advanced robotics, and be able to derive the kinematics and dynamics of a given robot, plan appropriate path, and design advanced control systems.", + "title": "Advanced Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers students timely and updated coverage of a wide range of topics relevant to automation and control engineering tapping on the latest and diverse range of developments in the repertoire of the control group, such as the delivery of a measured collation of automation and control system designs applied to real problems of a diverse nature and which are not easily and directly available from standard literature.The nature of the module allows the flexibility for recent topics, problems and solutions to be shared with the students.", + "title": "Special Topics in Automation and Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5110", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers students timely and updated coverage of a wide range of topics relevant to common industrial practice and control, smart sensor and instrumentation tapping on the latest and diverse range of developments in the repertoire of the control group and collaborating companies and institution, such as the delivery of a measured collation of case studies of industrial control and smart sensor and instrumentation applied to real problems of a diverse nature and which are not easily and directly available from standard literature. The nature of the module allows the flexibility for recent topics, problems and solutions to be shared with the students.", + "title": "Selected Topics in Industrial Control & Instrumentation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5111", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces different modes of human robot interactions, methods for detecting humans, understanding human behaviors and intentions, and methods for humanrobot coordination and collaboration. Human-robot interactions include physical and non-physical (e,g, social) interactions. Physical interactions include human assistance and wearable robotics. Non-physical interactions include natural language understanding, gestures and \u201cbody language\u201d, and multi-modal interaction fusing different interaction modalities. Human-robot coordination and collaboration include human-robot handovers, robotic assistants and co-workers. User interface design for mutual communications between robot and humans is covered, including social interaction. Several applications and scenarios will be included.", + "title": "Human Robot Interaction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to introduce the robotic senses that support natural interactions between humans and robots and enable robots to navigate in a human living environment. It examines the principles of robotic auditory system, spoken dialogue system, robotic vision system. It will study the strategy to integrate the robotic perceptual abilities to address real world problems, such as visual language grounding, and 3D semantic maps.", + "title": "Robot Perception", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces state-of-art autonomous navigation solutions for intelligent mobile robots, which covers localization, mapping, planning, and SLAM (simultaneous localization and mapping) algorithms. It first reviews mathematical foundations on probability and optimization. It then studies Bayes filters (Kalman filters, particle filters, etc.), with a focus on sensor fusions for navigation applications. Commonly used sensors such as GPS, IMU, wheel odometry, LiDAR are discussed. It further focuses on Euclidean distance transform maps, Monte-Carlo localization, LiDAR-based SLAM, optimization/searchbased motion planning (RRT, B-spline optimization, etc.), completing a navigation stack. Students will gain hands-on experiences using both simulation and real-world data.", + "title": "Autonomous Robot Navigation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers latest technologies and developments, from aesthetic design, developments in core enabling technologies to system integration, applications, and social implications of social robots. The aesthetic design, and development of social robotics fuse basic concepts of arts and social sciences. The fundamental aspects of social robotics from the points of system design, synthesis and computation including visual perception, speech recognition, cognitive models, behaviour generation, human-robot interaction, and intelligent control will be introduced. Applications in education, healthcare, and industry will be elaborated. Students will have hands on experience for design and development of real-life applications by working as groups.", + "title": "Social Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5115", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers various basic topics in wireless communications for voice, data, and multimedia. It begins with an overview of current wireless systems and\nstandards, followed by a characterization of the wireless channel, including path loss, shadowing, and the flat vs. frequency-selective properties of multipath fading. It then examines the fundamental capacity limits of wireless channels and the characteristics of the capacity-achieving transmission strategies. This part is followed by practical digital modulation techniques and their performance\nunder wireless channel impairments, including diversity techniques to compensate for flat-fading, multicarrier modulation to combat frequency-selective\nfading, and an introduction to multi-antenna communications. The course concludes with a discussion of various practical multiple access schemes in wireless cellular systems.", + "title": "Wireless Communications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to expose students to the principles of wireless and sensor networks, as well as to some recent advances in these areas. The first part of the module provides the concepts and operational details of cellular networks, wireless local area networks (WLAN), multi-hop and ad hoc wireless networks, and covers aspects such as medium access control, routing and transport protocols. The second part covers the fast emerging field of wireless sensor networks that enables visibility into physical processes in a convenient manner. Pertinent issues such as energy management and distributed information processing will be covered. The distinguishing feature about this module is the engineering emphasis on the coupled relationship between wireless and sensor network protocols and the underlying physical layer and energy considerations.", + "title": "Wireless and Sensor Networks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5132", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to give a balanced treatment on the use of statistical signal processing and estimation theory techniques for engineering applications in\ncommunications, filtering and array processing. While having theoretical rigor, the module will also emphasize the realizability and implementation of algorithms based on prediction, estimation, spectral analysis and optimum processing on existing digital processing systems. The module will include hands-on design sessions where some processing algorithms will be designed, implemented and evaluated.", + "title": "Statistical Signal Processing Techniques", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5133", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a comprehensive treatment of topics on optical communications and optical networking. The first part covers the topics on the physical layer of optical communications. It covers the basic constituents of optical communication systems including optical fibers, optical transmitters/receivers, wavelength multiplexers/demultiplexers, optical switches, optical amplifiers, and wavelength converters; and transmission system engineering such as dispersion management and Q-factor analysis. The second part covers the topics on optical networking. It discusses network switch architectures, design, algorithms, and protocols related to wavelength division multiplexing (WDM) circuit switching, optical burst switching, optical packet switching, and optical access networks.", + "title": "Optical Communications and Networks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5134", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "EE5135 is an introductory digital communications course, suitable for advanced under-graduates and graduate students who have not taken a senior-level digital communications course. It will introduce the essential concepts of bit-to-symbol mapping, linear modulation, complex baseband equivalent model, channel coding, equalization and OFDM. Project work will involve research into existing digital communication technologies in a small group.", + "title": "Digital Communications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5135", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course on stochastic processes. The emphasis of this course is on mathematical rigor of principles and concepts in stochastic processes with an eye towards modeling of real-world systems. Students are expected to do simple proofs in addition to rudimentary calculations. Topics include measure-theoretic probability, Poisson processes, renewal processes, Markov chains and decision theory.", + "title": "Stochastic Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5137", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module exposes students to a variety of techniques to formulate and solve optimization problems for applications in electrical and computer engineering. The topics include convex sets, convex functions, convex optimization problems (including both linear and nonlinear formulations), duality and KKT optimality conditions, numerical algorithms for both unconstrained and constrained optimization problems, and selected examples from applications in electrical and engineering.", + "title": "Optimization for Electrical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5138", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce you to the abstract theory of the quantification, storage, and communication of information. You will learn how to construct codes for compression and error correction. You will also study the fundamental limits of data compression and channel coding, culminating in the source-channel separation theorem. Along the way you will learn about many important tools required in the mathematical analysis of information processing problems. We will discuss various applications of information theory, for example to statistics and the theory of machine learning.", + "title": "Information Theory and its Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5139", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With emphasis on fundamentals, this module develops analysis methods that are used to understand the operation and design of solid-state microwave electronic circuits commonly used in microwave systems. Methods for simulating nonlinear microwave circuits and processing of circuit parameters will be discussed. Major topics include: Linear circuit parameter conversion. Analysis of nonlinear microwave circuits. Lossy match, lossy feedback, distributed and power amplifiers. Oscillator theory; diode and transistor oscillators. Frequency multiplication, division and synthesis. Microwave frequency conversion, mixer analysis, single-ended and balanced mixers, diode and transistor mixers, image rejection, mixer noise.", + "title": "Microwave Electronics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with fundamental concepts and methhods for design, measurement, and applications of antennas. Starting with basic antennas (wire, microstrip and aperture antennas), performance-enhanced antennas and their applications such as phased arrays, beamforming, MIMO, and NFC in 5G/RFID/mobile-phones/SatComm/driverless-car radar systems are addressed with practical engnnering considerations. Students will learn the latest methods how to apply fundamentals to the design of antennas to meet the requirements of wireless systems with high efficiency. This specialised module is recommended for graduate students specialising in microwave techniques and wireless systems. This module is supplementary for the general areas of communication systems.", + "title": "Antenna Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5308", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the fundamental principles and concepts of computer communication networks. The course covers four main layers of the\nnetwork protocol stack: link, network, transport and application. The fundamental design principles of each layer are presented. Issues related to the performance of each layer are explored in detail. The course uses case studies to expose students to real-world networking protocols and presents the design principles that motivated the development of these protocols. The course also includes an examination of the security aspects of each layer.", + "title": "Communication Networking Fundamentals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Combining domain knowledge with machine learning leads to a class of algorithms that can solve difficult scientific and engineering problems with only small amounts of training data. At the foundation of these algorithms lie modern computing techniques such as automatic differentiation and Monte-Carlo sampling. In this module, we study automatic differentiation and its applications, models such as physicsinformed neural networks and universal differential equations to incorporate domain knowledge into machine learning, and sampling-based probabilistic programming techniques. We also get hands-on experience in applying these techniques to real-world applications.", + "title": "Differentiable and Probabilistic Scientific Computing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the techniques required for cellular mobile communication system design and performance analysis. It provides students with an understanding of the fundamental principles and concepts encountered in cellular mobile communications. In particular, students will learn about mobile radio channel modelling, modulation techniques, cellular system concepts, equalisation, diversity and channel coding, speech coding, and multiple access techniques. Practical standards such as GSM, IS-95 and IMT2000 will be used as illustration examples. On completion of the module, students should be able to describe and analyse narrowband and wideband mobile radio propagation channels, understand the requirements and operation of mobile radio systems, and appreciate the design issues of TDMA and CDMA cellular systems.", + "title": "Cellular Mobile Communications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental topics required for the design and analysis of the RF stages in modern wireless systems, including receiver design and modulation methods. The design of key wireless system components, such as filters, amplifiers, mixers and oscillators, is also included. The module enables students to gain a deep understanding of fundamental concepts as well as practical techniques in designing, fabricating and testing of RF circuits and systems. Students will also learn, through hands-on practice, to use various test and measurement instruments, including a vector network analyser and a powerful circuit design software (HP Advanced Design System).", + "title": "Rf Circuit Design I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an under-standing of the fundamentals and design of satellite communication systems. It includes interference and propagation link analysis, earth station and satellite technology, antenna, RF/microwave transceiver and architecture, modulation and coding, multiple access techniques, as well as advanced technologies such as multibeam, inter satellite link, and regenerative satellite transponders. On completion of the module, students should be able to describe and analyse the RF and baseband subsystems, calculate satellite link budget, understand the requirements and operation of satellite communications systems, and appreciate the design issues and relative strength of various types of satellite systems.", + "title": "Satellite Communications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the theory and fundamental aspects of nanoscale electronics. The module is designed to equip students with the basic knowledge of the fundamentals and theoretical methods required for understanding quantum electronic behaviour in current and future nanoelectronic applications. The module will cover the basic aspects of quantum theory which are relevant for electronic transport and dynamics, such as quantum operators, time-dependent quantum theory, spin dynamics and carrier statistics. The latter part of the module will\ncover the basic topics of solid state theory relevant for nanoelectronics, such as bandstructure, electronic transport in solids, and phonons.", + "title": "Fundamentals of Nanoelectronics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5431", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to provide the crucial understanding of semiconductor processes and integration technologies that are extensively used to fabricate modern electronic devices. This module covers important aspects of microelectronic processes and integration. The students will develop in-depth understanding of various unit process and of integrating the unit processes to design a device that meets electrical performance specification. The topics covered include oxidation, diffusion, ion implantation Isolation, plasma etching process, thin film deposition, metal interconnects, lithography and pattern transfer technique, gate module technology, shallow junction technology, and CMOS Integration.", + "title": "Microelectronic Processes and Integration", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5434", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course presents the fundamentals of Microelectromechanical Systems (MEMS) Nanoelectromechanical Systems (NEMS), culminating in advanced concepts and applications. Major topics covered include electrostatic actuation and capacitive sensing, piezoelectric actuation and sensing, thermal actuation and sensing, optical MEMS devices and nanophotonics, CMOS MEMS devices, inertial sensors, RF MEMS devices, resonators and clocking, NEMS sensors, energy harvesters, and packaging technology.", + "title": "Micro/Nano Electromechanical Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5439", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on physics, materials and device\naspects of magnetic data storage, including both hard disk\ndrives and magnetic random access memory. The module\nis designed to equip students with the basic knowledge of\nmagnetism and magnetic materials required for\nunderstanding magnetic data storage devices and\nsystems. Topics to be covered include fundamentals of\nmagnetism and magnetic materials, magnetostatics,\nmagnetization dynamics, spintronics, magnetic random\naccess memory, magnetic write and read head, and\nread/write principles in both solid-state and disk based\nstorage.", + "title": "Magnetic Data Storage for Big Data", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5440", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As devices scale down, quantum effects become important when their size reaches the nanometer regime. Devices with nanometer features exhibit properties different from conventional bulk devices. The making of nano-devices, e.g., single electron transistor, nanoscale transistor, spintronic devices, etc., has been made possible by advanced nano-fabrication techniques. This module aims to provide an introductory coverage on the quantum and solid state physics and principles that form the basis of operation of nanoelectronics and emerging devices with an emphasis on charge and spin transport. Topics covered include basic concepts of quantum mechanics, principle of nanoeletronics, spin transport, advanced materals, and nano-devices.", + "title": "Introduction to Nanoelectronics and Emerging Devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5441", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-01-09", + "end": "2023-04-10" + }, + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the data intensive and data centric era, memories are essential electronic devices for data processing and storage. The first part of this module focuses on physics, materials, and device aspects of various memories that are in mainstream such as SRAM, DRAM, and Flash memory, as well as those under extensive research and development including ferroelectric memory, resistive memory, and magnetic random access memory. The second part will cover emerging applications using these memories, including memory-peripheral circuits, non-volatile CMOS and memory-centric microarchitectures for IoT, and beyond Moore microarchitectures.", + "title": "Memory Technologies and Their Emerging Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5442", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 79, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Maintaining high yield through reliable quality control is one of the key performance criteria of companies. In Automotive, IoT and industrial applications, chips are required to have high reliability over a long period of time while operating in harsh conditions. Also, FA capability is critical to identify defects for process improvements. This module aims to provide an introductory coverage on semiconductor yield, quality, reliability and FA. Topics covered include concept of yield engineering, quality management and system, reliability testing and prediction, and different failure mechanisms and FA techniques. Industry standards and real life case studies will be provided.", + "title": "Yield,Quality,Reliability & FA", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5443", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Complementary metal oxide semiconductor (CMOS) has been the main technology used in ULSI system. This module presents the full complement of fundamental CMOS device physics with its applications. It incorporates introductory concepts, MOS capacitor, long channel MOSFETs, short channel MOSFETs, MOS IC and technology, and MOS IC applications. This module is targeted at electrical engineering students who already have a basic knowledge of semiconductor device physics and technologies.", + "title": "Mos Devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5502", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth coverage of the analysis and design of analog integrated circuits. The topics taught in this module include single transistor amplifiers, current sources and mirrors, current and voltage references, operational amplifiers, feedback theory and stability, noise analysis, oscillators, S/H circuits and comparators. This module is targeted at those electrical engineering students who have interests in IC design.", + "title": "Analog Integrated Circuits Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5507", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-01-09", + "end": "2023-04-10" + }, + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides background knowledge of physics of electrical and optical properties of bulk and low dimensional semiconductor materials. The topics covered are as follows: Quantum mechanics: Schrodinger equation, particle in a box, tunneling effect, harmonic oscillator, time- independent perturbation theory. Solid state physics: crystal lattices, band theory, lattice vibration, the Fermi-Dirac distribution function and Fermi level, donor and acceptor states and carrier concentrations. Electrical properties of semiconductors, drift, diffusion, generation, recombination, trapping and tunneling. Optical properties of semiconductors, optical constants, optical absorption, radiative transition and luminescence, exciton effect, etc. Ternary and quaternary compound semiconductors, heterostructures, quantum wells and superlattices, quantum effect devices.", + "title": "Semiconductor Fundamentals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5508", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview and the modelling of the different yield loss and reliability mechanisms in integrated circuits. The associated analysis techniques for fault localization and failure characterization are also covered in the module. At the end of this module, the student will gain a basic understanding of the various integrated circuit (IC) yield loss and reliability mechanisms and the various techniques available for IC fault localization and failure analysis.\n\nMajor topics covered: Introduction to IC Failure Analysis; IC Yield and Reliability; Fault Localization and Physical/Chemical Characterization-Optical Beam, Electron Beam, Surface Analysis and Scanning Probe Techniques; Challenges to IC Failure Analysis.", + "title": "Ic Yield, Reliability & Failure Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5514", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the principles of optics and photonics that are important to engineering applications. Topics include optics fundamentals, interferometers, diffraction, imaging, optical system modeling, photonic structures, optical fibers, lasers, as well as the important applications of these technologies.", + "title": "Optical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5517", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module guides the students with the design aspects of digital integrated circuits. It covers concepts of basic digital CMOS building blocks, combinational and sequential logic circuits, dynamic logic circuits, interconnect, timing and power issue of the digital integrated circuits. Low-power design and design verification are also covered in this module. The concepts are implemented and enhanced through assignments and several projects that involve practical design and use of design tools. This module provides the students with a solid background on analysis and design of the custom digital integrated circuits.", + "title": "Vlsi Digital Circuit Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5518", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with\nwork attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EE5666", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the phenomena and mechanisms of breakdown of gases, liquids and solids as used in electrical insulating materials. Methods of generating high voltages, measurements and testing of electrical apparatus and systems are included. The principles of circuit interruption and switchgear types will also be discussed.", + "title": "High Voltage Testing and Switchgear", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module forms one of the three core modules for the students specializing in Power and Energy area. It provides the necessary fundamentals in power systems analysis. Current advancement in power systems is also discussed through case studies in a seminar style. Various topics to be covered are: Advanced power flow analysis; Power flow equation and solution techniques; Optimal power flow; Economic dispatch; Introduction to power system state estimation; Least square state estimation and Introduction to power system controls and stability analysis. This module acts as a pre-requisite for graduate students to pursue other advanced level courses in Power Systems.", + "title": "Advanced Power System Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-08-08", + "end": "2022-11-07" + }, + "venue": "E5-03-19", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module forms one of the foundation modules for all students who want to specialise in Electric Energy System Engineering. The aim of the module is to introduce the various components of Electric Drives. The role of electric drives in modern industrial automation will be emphasised. The importance of using Adjustable Speed Drives for energy conservation would also be highlighted. Various types of electric drives such as AC, DC, SRM and special drives such as PMSM drives will be introduced and their steady-state as well as transient performances will be discussed. This module has direct industrial relevance and would be useful not only to electrical but also to mechanical engineering students working in the areas of automation and mechatronics.", + "title": "Industrial Drives", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the student to the design of high frequency (switching frequency >200 kHz) high efficiency power electronic converters for AC-DC and DC-DC energy conversion using PWM and resonant energy conversion techniques and their significance in modern power electronic industries. This module will make the student aware of the fundamental considerations needed to design advanced high frequency power electronic converters in an industrial environment.", + "title": "High-Frequency Power Converters", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5704", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module forms one of the three core modules for the students specializing in Power and Energy area of research. The aim of the module is to introduce the importance of Power Electronics as an enabling technology and their role in efficient electrical energy conversion from one form to another. Power electronics is considered as an integral part of all electronic-equipment starting from\nconsumer electronic products to office automation equipment and leading to large transportation systems, utility applications and distributed renewable energy generation. In this module students will be introduced to the basic principles of operation of switched power converters and the concept of efficient control and regulation of electric energy flow will be addressed. The topics that will be\ncovered are: Power semiconductor switches and their characteristics; AC-to-DC converters and their applications; DC-to-DC converters: analysis and performance; DC-to-AC converters: analysis and performance. Specific power electronic applications to various large scale systems will also be discussed.", + "title": "Power Electronic Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5711", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a comprehensive overview of modern electrical grids. The topics covered will be useful in planning and operating a modern power system with increasing penetrations of demand side management (DSM) programs, renewable resources and distributed generation. This course will explain how today\u2019s power systems are evolving to interact with an emerging future with distributed energy resources for peak load management and energy efficiency improvement. Several case studies will be discussed to highlight best practices for design and implementation of these programs to work in conjunction with the changing grid.", + "title": "Modern Power Systems and Smart Grid", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5713", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 44, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to provide a comprehensive introduction of various topics in computer vision, including: image formation, object recognition, image features, camera calibration, epipolar geometry, depth from stereo and video, Markov random fields, motion analysis, and some low-level vision. The module focuses on both the principles of these vision topics and their associated mathematical and computational tools. By the end of the course, students are expected to understand and to be able to implement some computer vision algorithms from the low level to high level.", + "title": "Visual Computing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5731", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce the fundamental concepts, theories and practices in electromagnetic compatibility (EMC). The module covers topics from the basics of EMC to radiated and conducted emission and susceptibility, cross-talk, shielding and advanced topics of system level design for EMC. Different test and measurement techniques will also be covered. Computational modelling techniques for analysing and reducing EMC problems will be introduced.", + "title": "Electromagnetic Compatibility", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5801", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches basic theories and applications of electromagnetic waves. Topics include: Fundamentals include quasi-static and dynamic solutions to Maxwell's equations, plane-wave propagation and scattering, guiding structure and cavity, behavior at interface between media, Green's functions, and method of moment.", + "title": "Electromagnetic Wave Theory", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5831", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to multiprocessors systems, architecture issues and different models of computers, program and network properties, memory and processor technologies, RISC,CISC architectures, Intel processors \u2013 Case study, superscalar and vector processors, virtual memory technology, bus, cache and shared memory (consistency models), MPI versus SharedMemory Model way of problem solving, queueing models - an introduction, non-linear pipeline design and analysis, pipelining and superscalar techniques, scalable architectures for high performance computers-SIMD computers, introduction to GPU Architecture and programming, FPGA \u2013 introduction and basics, basic dataflow architectures, scalability analysis and approaches, analysis using various performance metrics, multiprocessor performance.", + "title": "Multiprocessor Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5902", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to real-time systems, RT and non-RT scheduling algorithms, Analysis and applicability of RT scheduling algorithms, Reliability, fault-tolerance, and availability analysis in RTS, Redundancy in RTS, Process Synchronization, deadlocks, mutual exclusion principles, realization of synchronization algorithms, RTS resource sharing protocols, Modeling and analysis of certain real-time application problems \u2013 (i) Client-Server service provisioning system, (ii) Content Distribution Networks \u2013 service provisioning system \u2013 RTS issues and modelling - Retrieval and multiple request handling.", + "title": "Real-Time Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5903", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module students will learn various neural network models and develop all the essential background needed to apply these models to solve practical pattern recognition and regression problems. The main topics that will be covered are single and multilayer perceptrons, support vector machines, radial basis function networks, Kohonen networks, principal component analysis, and recurrent networks. There is a compulsory computer project for this module. This module is intended for graduate students and engineers interested in learning about neural networks and using them to solve real world problems.", + "title": "Neural Networks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5904", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Pattern recognition deals with automated classification, identification, and/or characterizations of signals/data from various sources. The main objectives of this graduate module are to equip students with knowledge of common statistical pattern recognition (PR) algorithms and techniques. Course will contain project-based work involving use of PR algorithms. Upon completion of this module, students will be able to analyze a given pattern recognition problem, and determine which standard technique is applicable, or be able to modify existing algorithms to engineer new algorithms to solve the problem. Topics covered include: Decision theory, Parameter estimation, Density estimation, Non-parametric techniques, Supervised learning, Dimensionality reduction, Linear discriminant functions, Clustering, Unsupervised learning, Feature extraction and Applications.", + "title": "Pattern Recognition", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5907", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 205, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Deep learning refers to machine learning methods based on deep neural networks to learn data representation and perform learning tasks. This course provides an introduction to deep learning. Students taking this course will learn the basic theories, models, algorithms, and recent progress of deep learning, and obtain empirical experience. The course starts with machine learning basics and classical neural network models, followed by deep convolutional neural networks, recurrent neural networks, reinforcement learning and applications to computer vision and speech recognition. The students are expected to have good knowledge of calculus, linear algebra, probability and statistics as a prerequisite.", + "title": "Deep Learning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE5934", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EE5999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module caters for the needs of research students working in the field of Microwave & RF circuit and system analysis and design, and electromagnetics. The student will gain an understanding of the following topics: the foundation theory of dyadic Green's functions, followed by detailed formulation and computer implementation with real-world case studies of any two of the following computational methods - Moment and Boundary Element, Finite Element, Finite Difference, Transmission Line and Fast method for Large Systems.", + "title": "Selected Advanced Topics In EM Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to provide an in-depth coverage of adaptive control concepts and design methods. It is tailored for students who are pursuing research in the field of advanced control systems. Topics covered include Lyapunov-based direct adaptive control scheme, self-tuning regulator, model reference adaptive control, variable structure control and least squares estimation. Case studies of various engineering control problems will be used to provide insights and useful design guideline. In addition, students are expected to complete a self-study project that will expose them to the most recent advances in adaptive control theory.", + "title": "Adaptive Control Systems (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers students timely and updated coverage of a wide range of topics relevant to automation and control engineering tapping on the latest and diverse range of developments in the repertoire of the control group. It is only open to research students. The topics covered will be formulated to contain unsolved problems and issues. These will be of a sufficient size and nature to induce excitement in independent projects for students to explore. Students can choose the problems that are aligned with their thesis topics to complement their research.", + "title": "Special Topics in Automation and Control (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6110", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a module for those majoring in communications, particularly digital communications. The first aim is to provide a rigorous treatment of classical channel coding as well as finite fields, as many codes in this category are algebraically constructed and decoded. The second aim is to provide a detailed treatment of modern codes such as Turbo codes, low density parity check codes, polar codes and iterative decoding. This module will bring the student to the cutting edge of current research in coding theory and techniques.", + "title": "Classical & Modern Channel Coding", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6130", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers various basic and selected advanced topics in wireless communication. It begins with an overview of current wireless systems and standards, followed by a mathematical characterization of the wireless channel. It then examines the fundamental capacity limits of wireless channels and the\ncharacteristics of the capacity-achieving transmission strategies. This part is followed by practical digital modulation techniques and their performance under wireless channel impairments, including diversity techniques to compensate for flat-fading, multicarrier modulation to combat frequency-selective fading, and multiple antenna space-time communications. The course concludes with a discussion of various practical multiple access schemes in wireless cellular systems.", + "title": "Wireless Communications (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a comprehensive treatment of the concepts, architectures, algorithms, protocols, and research issues in major optical networking technologies that include wavelength division multiplexing (WDM), early generation optical networks such as synchronous optical networks (SONET), and optical access networks. It covers the topics on early generation optical networks such as network elements, architectures, functions, and survivability. The second part covers the topics on WDM networks that include technology, switch architectures, wavelength-selective and wavelength-convertible networks, routing and wavelength assignment, virtual topology, survivability and traffic grooming. It then covers the issues of scheduling and quality of service in optical burst switching (OBS) and architectural and technological issues in optical packet switching (OPS) networks. Finally, it covers topics on optical access networks discussing the architectures, operations, and protocols.", + "title": "Optical Networks (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6134", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "EE6135 is an intermediate-level digital communications course, that assumes previous exposure to laboratories and less mathematically rigorous explanations of digital communications concepts. Theoretical foundations of these concepts will be emphasized, with students expected to know the derivations of important results. Project work will be done individually, and will involve reporting on a research paper or topic selected jointly by the student and instructor.", + "title": "Digital Communications (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6135", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an in-depth understanding of modern optical communication systems. To this end, it covers major system impairments of optical communication systems and how optical communication systems have evolved to cope with them and increase the capacity in a cost-effective manner. This module includes state-of-the-art technologies such as optical modulation formats, fiber nonlinearities, and optical signal processing.", + "title": "Advanced Optical Communications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6136", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module exposes students to a variety of techniques to formulate and solve optimization problems for applications in electrical and computer engineering. The topics include convex sets, convex functions, convex optimization problems (including both linear and nonlinear formulations), duality and KKT optimality conditions, numerical algorithms for both unconstrained and constrained optimization problems, and selected examples from applications in electrical engineering.", + "title": "Optimization for Electrical Engineering (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6138", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce you to the abstract theory of the quantification, storage, and communication of information. You will learn how to construct codes for compression and error correction. You will also study the fundamental limits of data compression and channel coding, culminating in the source-channel separation theorem. Along the way you will learn about many important tools required in the mathematical analysis of information processing problems. We will discuss various applications of information theory, for example to statistics and the theory of machine learning.", + "title": "Information Theory and its Applications (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6139", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course gives an overview of data storage systems and trends in advanced data recording technology. The following areas will be covered: basic principles of recording and reproducing process in magnetic storage and optical storage; essential components of a data storage system; role of mechantronics and control in data storage systems; role of channel components in improving the reliability of readback data; basics of partial response channel and Viterbi detection; basics of error correction and modulation coding; types of interface.", + "title": "Control in Data Storage Systems (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers selected topics in biomedical circuits and systems, which address areas at the crossroads of circuits and systems and life science. It focuses on fundamental principles and circuits in bio-signal processing and low-p ower biomedical systems. Topics covered include ultra-low-power circuits for wireless wearable and implantable devices, and low-power bio-signal processing techniques. Case studies of selected real-world problems will be discussed to show how to apply the fundamental principles in biomedical devices. The students are expected to learn useful skills and build up interdisciplinary background for further research in biomedical circuits and system.", + "title": "Advanced Biomedical Circuits and Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to understand, analyze and research on the architectures, algorithms and applications in the reconfigurable computing. We will introduce the background and recent developments in the field of reconfigurable computing by discussing representative papers from leading journal and conference proceedings. We will introduce the various types of reconfigurable architectures and focus on the most popular fine-grained field programmable gate array (FPGA) architectures from the leading FPGA companies Xilinx and Altera. We will also introduce the electronic design automation algorithms and tools to enable applications to be mapped to FPGAs, and discuss creative applications of FPGAs in different domains.", + "title": "Reconfigurable Computing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an in-depth treatment of the fundamental principles and concepts of computer communication networks. The course divides the discussion in terms of fours layers: link, network, transport and application. For each layer, the course first presents the fundamental design principles and an\nin-depth analysis of factors that affect the overall system performance. Next, the course uses these design principles to describe the design of state-of-theart\nas well as real-world protocols for each layer. The course also includes an examination of the security aspects of each layer. Issues on the design and implementation of actual protocols will be addressed through a design project.", + "title": "Communication Networking Fundamentals (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on advanced solid-state physics and quantum transport in nano-scale devices. This module is designed for students to learn the latest developments in nanoelectronics and devices. Major topics include the advanced theory of electronic structures of novel materials, quantum transport theory, and their applications to novel nanoelectronic devices.", + "title": "Advanced Concepts in Nanoelectronics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6435", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an elective module for postgraduate research students on advanced characterization techniques applied to advanced and emerging research materials and devices. The emphasis of this course is on advanced measurement and characterization principles, instrumentation, data acquisition, models for data analysis, and data interpretation applied to characterization problems encountered in the research and development of advanced and emerging research materials and devices. The characterization methods covered are advanced application modes or techniques of the basic characterization methods discussed in the EE5432R module and new techniques which are not discussed in the aforementioned core module.", + "title": "Advanced Characterization of Materials and Devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6436", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Building on the semiconductor fundamentals and device physics knowledge, this module teaches the latest development and advancement in CMOS devices and process technologies, specifically relating to logic devices. Major topics to be covered in this module include (i) CMOS transistor historical scaling trends and physical limitations, (ii) module building blocks (materials and processes) including high permittivity or high-k gate dielectric, metal gate, ultra-shallow junction, metal contacts and advanced doping techniques, (iii) high mobility channel materials beyond silicon, (iv) alternative nanoscale transistor architectures, and (v) more-than-Moore technological trends.", + "title": "Advanced Semiconductor Devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6437", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this course is to introduce students to the basic concepts of magnetism, magnetic materials and devices and related applications in data storage from the electrical engineering perspective. As this module is\nintended to help students who are doing research in relevant areas to master both theoretical knowledge and practical techniques in areas of magnetism and magnetic materials, a significant portion of this module will be devoted to the coverage of various types of characterization techniques of magnetic materials. Apart from attending lectures, students will also have to do a presentation on selected topics relevant to contents covered in this module.", + "title": "Magnetic materials and devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6438", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 44, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course presents the fundamentals of Microelectromechanical Systems (MEMS) Nanoelectromechanical Systems (NEMS), culminating in advanced concepts and applications. Major topics covered include electrostatic actuation and capacitive sensing, piezoelectric actuation and sensing, thermal actuation and sensing, optical MEMS devices and nanophotonics, CMOS MEMS devices, inertial sensors, RF MEMS devices, resonators and clocking, NEMS sensors, energy harvesters, and packaging technology. Intended for research students, the module includes a project involving the design of MEMS/NEMS devices through detailed modelling and simulation.", + "title": "Micro/Nano Electromechanical Systems (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6439", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers advanced photonics concepts for applications in nanotechnology and optical imaging. The syllabus covers broadly the topics of photonic devices, plasmonics, metamaterials, metasurfaces, Fourier optics, statistical optics, image processing, and superresolution.", + "title": "Advanced Topics in Photonics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6440", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers systematical analysis and design of advanced mixed-signal integrated circuits in CMOS technology and updates students with the current state-ofthe-art designs. It also stresses the understanding of the mixed-signal circuit design from the system level perspectives.", + "title": "Advanced Integrated Circuit Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6506", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Basic concepts and structures of micro-grid, smart grid, and vehicular technologies will be taught in this module. Advanced power electronics systems and their control for these emerging technologies will be explored. Major topics to be covered are: power converters for smart grid, electric and fuel cell vehicles, battery management system, Intelligent multi-agent control and cyber security of smart grid, system level issues, and recent development in such emerging technologies.", + "title": "Selected Topics in Smart Grid Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6531", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the application of reliability theory in modelling techniques and evaluation methodologies to power systems. The course content offers essential\nmathematical as well as simulation tools to conduct reliability analysis of interconnected power systems and estimate various probabilistic measures. The levels of analysis include single area power system reliability, composite system reliability, and multi-area power system reliability. Advanced knowledge of power systems analysis is required.", + "title": "Power System Reliability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6532", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how principles from theories of evolution can be used to construct intelligent systems. Established evolutionary paradigms as well as, significant new developments, including evolutionary algorithms, evolutionary strategies, evolving neural networks, ant-colony optimisation, artificial immune systems, and swarm intelligence will be covered. Students will be taught how these approaches identify and exploit biological processes in nature, allowing a wide range of applications to be solved in industry and business. Key problem domains such as multi-objective scheduling, optimisation, search, and design will be examined. Students will gain hands-on experience in applying these techniques to real-life problems through project work.", + "title": "Evolutionary Computation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the modelling and control of electrical actuators, both rotary as well as linear types. DC Machines and AC Machines (both Induction as well as Permanent Magnet types and Switched Reluctance machines) will be discussed. This module will make the student aware of the fundamental considerations needed to model and control the electrical actuators in different reference frames that would conform to the general industrial standards.", + "title": "Modelling and Control of Electrical Actuators", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6703", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals extensively with the design of high frequency (switching frequency >200 kHz) high efficiency power electronic converters for AC-DC, DC-DC and DCAC using PWM and resonant energy conversion techniques. This module will make the student aware of the fundamental considerations needed to design power electronic converters in an industrial environment and conforming to different industrial standards especially in terms of EMI/Efficiency/Line harmonics (AC-DC).", + "title": "High-Frequency Power Converters (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6704", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to give graduate students a comprehensive understanding of topics at the confluence of computer vision, computer graphics, machine learning and image processing. This module will expose students to the most recent research and highlight the foundations and trends in these fields. We will discuss selected papers on most recent research problems, with topics covering lighting, geometry, image processing, medical image analysis, recognition and machine learning.", + "title": "Advanced Topics on Vision and Machine Learning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6733", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces ECE and SoC graduate students to the fundamentals of machine learning from a statistical perspective, bringing the student to a level\nat which he can conduct independent research in this interdisciplinary area. The course will cover Bayesian statistics and emphasizes the powerful formalism of\ngraphical models. We introduce exact and approximate inference and learning of graphical models, which serve as unifying themes for many models and algorithms in control, communications, speech analysis, signal processing, computer vision and biomedical image analysis, such as Kalman filtering, hidden Markov models, Viterbi algorithm and LDPC decoding.", + "title": "Algorithms for Statistical Inference", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6735", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the advanced theorems in electromagnetism and their applications in both microwave- and optics-related problems. Topics include: diffraction of electromagnetic waves; dyadic Green\u2019s functions in (i) Cartesian, (ii) cylindrical, and (iii) spherical configurations; Huygens' principle; kDB analysis for anisotropic and bi-anisotropic materials to design polarization converter; reflection and transmission of negative-index material; advanced scattering theory for radially anisotropic cylindrical and spherical particles; the application of advanced scattering theory in invisibility cloak design; transformation optics method and space deformation.", + "title": "Advanced Electromagnetic Theory and Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6831", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students with the theory, concepts, and applications of electromagnetic (EM) metamaterials and multi-antenna/array technology. The fundamentals of EM metamaterials are covered in the first part. In particular, the latest progress in the metamaterials-based antennas is described. Starting with fundamentals of conventional antenna arrays, the second part describes the latest developments and techniques in antenna arrays and multi-antenna systems. The concepts and their applications of phased arrays, beaforming array, smart antenna technology, MIMO antenna technique, etc. in 5G and SatCom are introduced. Their unique design challenges of the antennas and arrays are discussed.", + "title": "Selected Topics in EM Metamaterial and Multiple-Antenna", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6832", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers selected topics in advanced microwave and antenna engineering problems. Topics include: advanced filter designs; system in package; transistor small signal modelling and large signal modelling; RF wireless power and energy harvesting; antenna bandwidth enhancement and miniaturization techniques; antennas in package; wearable and implantable antennas; etc. Selected papers on most recent research progress will be discussed. Case studies will be examined.", + "title": "Selected Topics in Microwave and Antenna Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6833", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to understand three-dimensional shape/space processing in human or machines. The course will examine 3D vision from various perspectives, including its computational, perceptual, and physiological aspects. It will cover both theoretical analysis as well as practical implementation of solutions to problems encountered in shape recovery and navigation. Emphasis will be placed on fundamental mathematical issues in 3D vision, with the aim of training postgraduate research students for indepth vision research. Students should take up this module only if the course helps them in their R&D efforts.", + "title": "3d Vision", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6901", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Computational models of biological perception are used increasingly in multimedia, computer vision, robotics, computer-human interaction, and biological signal processing. Understanding the biological and psychophysical processes governing perception is the key to building well-founded models. In this module, we will discuss selected papers on current research in this area, with topics covering neuronal and psychophysical models of perception, the use of psychophysics to guide the solution of computer vision problems, and perceptually driven applications in digital media. 100% CA.\n\nMaximum class size 20.", + "title": "Advanced Models of Biological Perception", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6903", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Deep learning refers to machine learning methods based\non deep neural networks to learn data representation and\nperform learning tasks. This course covers advanced\ntopics on deep learning. Students taking this course will\nlearn theories, recent models and algorithms. The course\nstarts with machine learning basics and classical neural\nnetwork models, followed by optimization techniques for\ndeep convolutional neural networks, and advanced topics\nincluding recurrent neural networks, deep reinforcement\nlearning, deep generative models and their applications to\ncomputer vision and speech recognition. The students are\nexpected to have good knowledge on calculus, linear\nalgebra, probability, statistics as a prerequisite.", + "title": "Deep Learning (Advanced)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EE6934", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Module is for PhD students. Students are required to undertake two research\nattachments each with 2 MC on an S/U grading basis. By having two research attachments, a student will not be confined to just one research\narea. Students will have the flexibility to be attached to two different supervisors or labs and be exposed to different research areas or topics, before deciding on their research interests. A faculty member can supervise the same student for two research attachments. Research attachments can also be conducted during the holidays. All research attachments have to be completed in the first year. Students are required to write a report including literature survey and make oral presentation to the supervisor. Grading is on S/U by the supervisor. Explanation should be provided by the supervisor if an \u201cUnsatisfactory\u201d grade is awarded.", + "title": "Research Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EE6990", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Doctoral Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "EE6999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental concepts of statics and mechanics of materials and their applications to engineering problems. At the end of this course, students are expected to be able to draw a free body diagram and identify the unknown reaction forces/moments; solve statically determinate problems involving rigid bodies, pin-jointed frames and cables; solve statically indeterminate axial force member problems using stress-strain law and compatibility equations; determine the shear stress and angle of twist of torsional members; draw the bending moment and shear force diagrams for a loaded beam; and determine the stresses and deflections in beams.", + "title": "Statics And Mechanics Of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG1109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental concepts of Statics and Mechanics of Materials and their applications to engineering problems. At the end of this course, students are expected to be able to: draw a free body diagram and identify the unknown reaction forces/moments; solve statically determinate problems involving rigid bodies, pin-jointed frames and cables; solve statically indeterminate axial force member problems using a simple stress-strain relationship and compatibility equations; determine the shear stress and angle of twist of torsional members; draw bending moment and shear force diagrams for a transversely-loaded beam; determine the stresses and deflections in transversely-loaded beams.", + "title": "Statics and Mechanics of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG1109M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This design module introduces students to the complexities involved in engineering a system with flight control, power management, signal processing and communications capabilities. It gives students the first exposure on the issues that are typically faced by engineers when they design and build a system which can\nbe deployed into space. Issues such as flight dynamics, environmental disturbances, command and control will be explored.", + "title": "Exploratory Satellite Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG1310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamentals of engineering design and prototyping. Students will learn design principles and tools through lectures and engage in experiential learning through group design projects. A stage-based design process will be covered. Students will develop skills in Arduino-controlled electronics, CAD modelling, and rapid prototyping to demonstrate their ideas.", + "title": "Design and Make", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG1311", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Lecture", + "size": 900, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "18", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Lecture", + "size": 800, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E4-02-06", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is for students admitted into the Co-operative(Co-Op) education programme requiring a compulsory 10- week industry immersion during their first year of study. The module enables Co-Op students to learn about the latest developments in the industry of their Co-Op companies and be exposed to the organization\u2019s network with practicing engineers.", + "title": "Engineering Co-Op Immersion Programme I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EG1611", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recognizing that each professional leadership journey to comprises an individual\u2019s internalised learning and experiences, this module provides a platform for students to explore different means and take active steps towards honing their professional and leadership skills based on their needs and experiences.\n\nStudents will meet with mentors to discuss talks, lectures, workshops and other initiatives that can help them in their professional journey and be guided in reflecting on this journey for deeper impact. Despite the individual nature of each leadership journey, ethical values are recognized as indispensable for every engineering professional and will be part of this module.", + "title": "Pathways to Engineering Leadership", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "EG2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a design module which focuses on user needs, bringing together their perspectives along with those of various stakeholders, to deliver solutions in a collaborative manner. The key element in this module is the process that students go through to frame design problems, define a hypothesis for testing, and to build low fidelity prototypes for feedback and validation. Through an open-ended team project, students work collaboratively in a studio environment to create a shared understanding of the problem statement. Students go on to develop concept solutions which can be prototyped and tested.", + "title": "User-Centred Collaborative Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG2201A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-01", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-01", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will allow students to practice Design Thinking to create innovative solutions to real-life problems and to apply skills in data collection, creative problem solving, and presentation to clients/users. Students will work with clients/users in teams and be immersed in real-life situations to gain understanding of the problems. Students will then be guided using Design Thinking methodology to identify opportunities, to create solutions, and to present their innovative ideas to clients/users.", + "title": "Practising Design Thinking", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG2201B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module begins with an introduction to the engineering design process in the context of design thinking, followed by its application into the conceptual solutions that the students have formulated in the prerequisite module. It bridges the design thinking process taught in the prerequisite module into the engineering design process, equipping the students with understanding and knowledge of translating conceptual solutions from users\u2019 needs to realizable solutions through engineering design. Students will be taught in a studio and a workshop setting, and are\nexpected to actively practice what they have learnt and to present their work professionally.", + "title": "From Design Thinking to Engineering Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the viability of innovative product ideas, which is one of the three domains that make up the desirability-feasibility-viability innovation framework. Through a series of lecture classes, workshops, case studies, industry talks, and a major group project, students will learn a number of tools that help them to understand industry value chain and competitive strategies, develop value propositions for their product ideas, explore various business models, and craft effective go-to-market approaches. Students with promising product ideas can pursue them for further development and prototyping in a subsequent project module.", + "title": "Value Creation in Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG2301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the students to the engineering design process in complex multi-disciplinary projects that have been formulated within predefined topical\nengineering challenges. This module is centred on learning-by-doing and on students working together in groups in a multi-disciplinary environment to propose feasible engineering solutions for their problems.", + "title": "Engineering Design in Topical Engineering Challenges", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG2302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce freshmen who are interested in the Innovation & Design Programme to the basic principles of systems design that involve mechanical, electrical, and software elements. The module will cover the fundamentals of mechanical design, electrical hardware design, as well as middleware software frameworks to create an autonomous mobile robot with add-on sensors for targeting and a mechanically actuated projectile payload. Students will learn the essentials of individual sub-systems through hands-on exercises and homework assignments, and subsequently integrate these subsystems in a final project utilizing open-source software platforms to perform a number of missions.", + "title": "Fundamentals of Systems Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG2310", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-01", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an overview and basic knowledge of space systems. The topics covered include satellite classification, space environment, various subsystems that are the fundamental building blocks of a space system. In addition, typical satellite mission payloads and general ground and launch segments will also be covered.", + "title": "Introduction to Space Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG2311", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces basic radar theory and techniques. The objective is to provide a good understanding of radar principles, supported by weekly MATLAB sessions in which key concepts are worked out into computational examples. Groups of students also work together to develop the signal processing of an actual Frequency Modulated Continuous Wave (FMCW) radar. At the end of the module students will have a good understanding of radar principles as well as the ability to implement several functions in MATLAB.", + "title": "Radar Theory and Techniques", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG2312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to alert and sensitise students on the kinds of situations that may arise in his professional career and teaches students to improve his/her skills in appreciating and dealing with the moral challenges posed by such situations. Students will acquire skills in dealing with ethical issues, learn about the 'codes of ethics' set by professional bodies and intellectual property rights and protection.", + "title": "Engineering Professionalism", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EG2401A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "202", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "503", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "210", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "204", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "207", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "110", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "405", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "307", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "515", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "212", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "213", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "413", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "114", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "407", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "404", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "106", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "401", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "209", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "306", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "308", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "411", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "201", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "203", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "311", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "309", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "312", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "104", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "502", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "504", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "414", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "403", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "301", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "514", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "113", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "303", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "508", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "510", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "205", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "310", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "109", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "211", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "506", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "507", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "412", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "304", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "105", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "112", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "208", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "206", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "111", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "410", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "107", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "108", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "305", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "513", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "408", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "214", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "402", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "406", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "508", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "507", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "111", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "211", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "102", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "101", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "402", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "403", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "310", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "311", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "312", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "104", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "408", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "405", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "210", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "214", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "107", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "509", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "510", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "307", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "308", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "415", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "212", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "501", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "504", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "512", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "414", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "115", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "213", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "413", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "302", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "301", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "309", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "206", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "514", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "409", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "513", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "410", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "411", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "303", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "201", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "202", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "203", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "110", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "305", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "306", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "106", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "204", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "Unknown" + }, + { + "classNo": "105", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "506", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "112", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "502", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "407", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "404", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "515", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "108", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "Unknown" + }, + { + "classNo": "114", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "304", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "113", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to how cities are governed, planned, developed and managed to achieve the liveability outcomes of quality of life, sustainable environment and a competitive economy using the case study of Singapore and other cities, through a systems thinking lens. Students will understand the role that urban systems professionals, such as urban policymakers, planners, architects, engineers, real estate consultants and managers play in achieving liveable city outcomes in an integrated way, through combining their individual expertise in different disciplines.", + "title": "Liveable Cities", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG2501", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "FA3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E4-04-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E4-04-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 9, + 10, + 12 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Lecture", + "size": 900, + "covidZone": "Unknown" + }, + { + "classNo": "FM1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "M3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WA1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E1-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "WA3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "WA4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "FA4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E4-04-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FA1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FA2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E4-04-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FM3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "FM4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E4-04-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "FM5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E4-04-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E4-04-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FM2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E1-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "M2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WM2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E3-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WA2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E3-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "WA5", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E4-04-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "M1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WM3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "M4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E3-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WM1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E1-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WM4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "TA1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FM4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WA3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "UA3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WA5", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WA2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "TA4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "TM1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WM1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E3-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WA4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E3-06-15", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "UM2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FA1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "TM2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "UA1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FM5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E5-03-19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FA2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WM2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FA4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "TM5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FA5", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "UM3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "TA5", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Lecture", + "size": 1100, + "covidZone": "Unknown" + }, + { + "classNo": "UM1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E3-06-07", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WM4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E3-06-15", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "TA3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FA3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "TM4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WM3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FM2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E3-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WA1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E3-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "TM3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FM3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "WM5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "UA2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E4-04-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "FM1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E1-06-16", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "TA2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EA-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "InnoVenture is an experiential learning module exposing students to real engineering problems faced by companies. The course aims to emulate the competitive nature of industry and intensify learning. Students acquire business knowledge required to develop solutions through foundational workshops and hone innovation and influencing skills through direct interaction with industry while developing their business solution. They will be guided by mentors to refine their ideas and to strengthen teamwork and leadership skills.", + "title": "InnoVenture - Leadership & Innovation Challenge", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG2603", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "TIP : Business Incubation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "EG2603B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will be engaged on a hands-on basis, as they work in pairs under the guidance of a group of faculty members, to create a novel outcome of practical significance. Students identify a problem and propose the solution(s) of which will improve our quality of life. Topics learnt in this module include problem definition and analysis, method of irritation, idea-generation methods and solutions, creativity and innovation, critical evaluation, intellectual property protection, and commercialisation of ideas and products with real-life case studies. At the end of the programme, students produce a prototype or a demonstrable system and make a presentation to convince others of the value of the proposed idea, procedure or device. Teams may be formed by the course coordinators. The module is graded on CS/CU basis.", + "title": "Innovation Programme", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EG2604", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Monday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Monday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Undergraduate Research Opportunities Programme", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EG2605", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Work", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "EG2606A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Work", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EG2606B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time undergraduate students who have completed at\nleast 40MCs and plan to proceed on an approved internship of at least 10 weeks. This module\nrecognizes work experiences in fields that could lead to viable career pathways but the emphasis will\nbe on start-ups and entrepreneurship related internships. In general, this module is accessible to\nstudents for academic credit even if they had previously completed internship stints for academic\ncredit not exceeding 10MC, and if the new workscope is substantially differentiated from previously\ncompleted ones.", + "title": "Engineering Work Experience Internship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EG2610", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is for students admitted into the Co-operative (Co-Op) education programme requiring a compulsory 10-week industry immersion during their second year of study. The module integrates knowledge and theory learned in the classroom with practical application and skill development in a professional setting. Students will have to leverage on their learnings from the first immersion (EG1611) to participate in projects or tasks that help to develop or enhance their skills whilst contributing to their Co-Op companies.", + "title": "Engineering Co-Op Immersion Programme II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EG2620", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the first of a series of two 2-semesters long modules intended to allow students to pursue a project of their interest under the supervision of a faculty mentor. The idea is to allow students to follow their aspirations and work towards an impactful goal. The project may be carried out within or outside NUS and may last more than one semester. It may or may not be confined to engineering disciplines, but it should have a clear articulation of possible impact on society or community life. This module can only be read by students of the EScholars Programme.", + "title": "Aspirational Project I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "EG2701A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the second of a series of two 2-semesters long modules intended to allow students to pursue a project of their interest under the supervision of a faculty mentor. The idea is to allow students to follow their aspirations and work towards an impactful goal. The project may be carried out within or outside NUS and may last more than one semester. It may or may not be confined to engineering disciplines, but it should have a clear articulation of possible impact on society or community life. This module can only be read by students of the EScholars Programme.", + "title": "Aspirational Project II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "EG2701B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This two-semester project module focuses on conceptualisation, implementation and realisation of a product solution to solve an identified problem while providing experience in an integrated product design and development process where technology plays a central role. Through lecture classes, studio sessions and an open-ended project, students learn how to create a product idea to address a problem of interest, generate and evaluate concept designs, and build proof-of-concept prototypes for user testing. Students also learn how to work in a multidisciplinary team and with various stakeholders, manage the execution of their project, and document and present their work through appropriate mediums.", + "title": "Ideas to Proof-of-Concept", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "EG3301R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "G1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-02-01", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-01", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-02", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-04-02", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-02-01", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-01", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-02-01", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "G9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-02-01", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-01", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-02", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-02", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-04-02", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-01", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-04-03", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "G13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-02", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-04-02", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "G4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G8", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "G16", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "G13", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "G9", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "G10", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-04-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G6", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-02-01", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G5", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-04-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G7", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-01", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-01", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G3", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-02-01", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "G12", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G4", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2A-03-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": { + "start": "2023-05-13", + "end": "2023-06-17" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": { + "start": "2023-06-24", + "end": "2023-07-29" + }, + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Industrial Attachment Programme", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "EG3601", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Vacation Internship Programme", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "EG3602", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is for students who are admitted\ninto the B.Eng. degree requiring a compulsory 24-week\ninternship. The type of internship varies according to the\nprogrammes. Internships integrate knowledge and theory\nlearned in the classroom with practical application and skill\ndevelopment in a professional setting. It enables students\nto learn about the latest developments in the industries\nand to interact with engineers and other professionals as\nthey join projects or tasks that help to develop or enhance\ntheir skills whilst contributing to the organization. Students\ncan apply for the approved internships publicised by the\nfaculty or seek approval for self-sourced internships.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "EG3611", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is for B.Eng. degree with a compulsory 20-week internship. The type of internship varies according to the programmes. Internships integrate knowledge and theory learned in the classroom with practical application and skill development in a professional setting. It enables students to learn about the latest developments in the industries and to interact with engineers and other professionals as they join projects or tasks that help to develop or enhance their skills whilst contributing to the organization. Students can extend their internship module by another 4 weeks and earn additional 2 MC by registering EG3611b Industrial Attachment.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "10", + "moduleCode": "EG3611A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is for students who want to extend their internship period by another 4 weeks after completing EG3611a.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "EG3611B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "10", + "moduleCode": "EG3611P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is for students who are admitted into the B.Eng. degree requiring a compulsory 12-week internship. The type of internship varies according to the programmes. Internships integrate knowledge and theory learned in the classroom with practical application and skill development in a professional setting. It enables students to learn about the latest developments in the industries and to interact with engineers and other professionals as they join projects or tasks that help to develop or enhance their skills whilst contributing to the organization. Students can apply for approved internships publicised by the faculty or seek approval for self-sourced internships.", + "title": "Vacation Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "EG3612", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Energy storage is essential for the large scale storage of\nelectrical energy to cushion the energy supply-demand\nmismatch. This module introduces the design, operation\nand analysis of energy storage systems (EES) for the\nelectricity grid. It integrates the knowledge from different\nengineering disciplines (chemical, electrical, materials,\nmechanical and systems) with socioeconomic elements to\naddress the issues in the implementation of large scale\nengineering systems. The module begins with an\nintroduction of electricity grids, followed by the design of\nthe ESS hardware (batteries and battery systems, thermal\nmanagement and battery management systems), ESS\ndcata analytics, techno-economic considerations and\npolicy studies.", + "title": "Energy Storage Systems for Electric Grids", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will apply knowledge and skills acquired in the earlier years to develop innovative ways of solving problems in their DCP projects. These projects may be a continuation/extension of their projects from EG3301R to deliver integrated, improved and optimized solutions to their original design problems, or fresh projects that arise from new problems. \n\nAt the end of this module, students are expected to be able to:\n-Identify and formulate a problem/question of interest.\n-Propose a solution/study to address the problem/question through use of appropriate methodologies.\n-Implement the proposed solution/study.\n-Assess whether proposed solution/study effectively addresses the problem/question based on appropriate performance indicators.\n-Draw meaningful conclusions and make improvements to methodology or proposed solution/study based on proper analyses and interpretation of results/observations.\n-Present and defend their work in the appropriate written and verbal forms.\n-Perform their work in a timely, professional and independent manner.", + "title": "DCP Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "EG4301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an opportunity for aspiring entrepreneurial\nstudents to launch their product/solution. It brings in the\nprinciples of the Lean Launchpad and the Disciplined\nEntrepreneurship framework to accelerate students\u2019\nunderstanding of the entrepreneurial process and enables\nfurther development of their ideas/projects into viable and\nsustainable ventures. In the process, students will learn to\nidentify the customer and market, determine the business\nmodel, and develop a minimum viable product (MVP)\nusing design and engineering skills that they have\ngarnered throughout their undergraduate study. Students\nwill also learn the mechanics of venture creation, for\nexample company formation, fund raising and more.", + "title": "Ideas to Start-up", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "EG4301A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a core module in the MSc in Engineering Design & Innovation (EDI) programme. It considers the ever-increasing complexity of modern technical products and introduces the application of systems engineering methodologies and tools in designing and developing such products. Students will learn the fundamentals of system engineering and the methodologies and tools that are commonly leveraged when considering real life wicked problems.", + "title": "Engineering Systems Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an opportunity for graduate students to hone fundamental and practical skills in design thinking and product development. Students will learn the roles of design thinking in value creation and product design. They will learn fundamental skills in user research to arrive at designs that satisfy user requirements. They will be expected to prototype their minimum viable products and iterate their designs based on feedback from users. Students will be immersed in group design projects on emerging themes, for example digital health, immersive reality, future of transportation and agri-tech, to solidify the knowledge their learned in the module.", + "title": "Design Thinking and Product Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EG5302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a module in which students will work in multidisciplinary groups to work on a major design project. The problem statement for the project may be self-proposed or it may be provided by industry partners who are keen to work with students on complex problems which they are facing. In the design process, students will start with understanding stakeholders, developing a mission statement, ideating on the possible design solution and finally prototyping. Students will be expected to apply their understanding of design thinking and engineering systems design to deliver on the project.", + "title": "Major Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "EG5303", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with the background knowledge on how to conduct research, based on best practices. Issues on good international ethical practices, technical writing skills and skills in scientific presentations will also be taught to the students. The mode of teaching will be based on integrated classroom lecture combined with interactive small group discussion for the lab session. Students will be assessed through assignment in addition to taking an online quiz.", + "title": "Research Methodology & Ethics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "EG5911", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When starting on their research, almost all students turn to the Internet, their supervisors or peers. With overwhelming information to deal with, how does a graduate student begin to systematically and comprehensively build a foundation of knowledge for their research based on credible sources?\n\nThis module aims to provide Engineering research students with the essential skills to conduct secondary research required for producing a good quality literature review and building the necessary knowledge base in their research area.\n\nStudents will be introduced to information literacy skills such as information search strategies, skills in evaluating information to determine authoritativeness and credibility, etc.", + "title": "Information Literacy Skills for Research", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "EG5911R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is to examine ethical issues in human subject research and develop skills in ethical analysis in this area. The module will cover the history of research ethics in general, its main features as a field of ethical inquiry, and approaches to ethical review and deliberation. Students will become familiar with paradigmatic case studies in research ethics and contemporary ethical problems in research with human subjects. They will learn key ethical principles and criteria and use them to consider the ethical conduct of research.", + "title": "Essentials in the Ethics of Research with Human Subjects", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EHB5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the ways in which ethical values, analysis, and reflection can inform the development, promulgation, and use of novel biotechnologies, enabling students to critically engage with ethical nuances and tradeoffs that pervade the area. We will provide general tools for ethical analysis, then apply these tools to a topic of particular relevance to cutting-edge biotechnology: the use of Big Data and Artificial Intelligence in the development of novel biotechnologies.", + "title": "Ethics of Biotechnology and Innovation: Big Data/AI", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EHB5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the ways in which ethical values, analysis, and reflection can inform the development, promulgation, and use of novel biotechnologies, enabling students to critically engage with ethical nuances and tradeoffs that pervade the area. We will provide general tools for ethical analysis, then apply these tools to a topic of particular relevance to cutting-edge biotechnology: precision medicine and genomics.", + "title": "Ethics of Biotechnology and Innovation: Genomics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EHB5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the ways in which ethical values, analysis, and reflection can inform the development, promulgation, and use of novel biotechnologies, enabling students to critically engage with ethical nuances and tradeoffs that pervade the area. We will provide general tools for ethical analysis, then apply these tools to a topic of particular relevance to cutting-edge biotechnology: the rapid development of novel diagnostics, therapeutics and vaccines during global health emergencies.", + "title": "Ethics of Biotechnology and Innovation: Health Emergencies", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "EHB5104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This introductory overview of linguistics aims at equipping students with a solid foundation in the object, methods and goals of the science of spoken language, the prime tool of human communication. Through a principled analysis of patterns of sound, form and meaning at the levels of word, sentence and text, students will gain insight into what it means to say that language is a rule-governed system and an organic whole. The results of this exploration will be useful to those interested in the relationship between language and mind, society and culture.", + "title": "The Nature of Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 175, + "covidZone": "Unknown" + }, + { + "classNo": "W4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W7", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W8", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores language structure, in particular, patterns of sentence structure (syntax) and of meaning (semantics), from a cross-linguistic perspective. Concepts to be discussed include grammatical categories, semantic relations, grammatical relations, constituency, and the relationship between grammar and the lexicon. A key feature of the module is its emphasis on the evidence and argumentation that bears upon the representation of structure and principles of grammar that we postulate. The course provides the foundation for the study of advanced courses investigating linguistic structure.", + "title": "Structure of Sentences and Meanings", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL2101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to phonetics \u2013 which is concerned with speech sounds as physical objects \u2013 and phonology \u2013 which is concerned with the organization of speech sounds in a linguistic system. We will learn about the human speech apparatus in detail, the mechanisms that are involved in speech production, as well as the acoustic properties of speech sounds. Starting with examples from English, we will explore phonological patterns from a crosslinguistic perspective, and learn how to provide formal analyses for these patterns. The course teaches conceptual tools that will allow students to analyse the phonology of English and other languages.", + "title": "Sound Patterns in Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to introduce how language change can take place orthographically, phonologically, grammatically and lexically. These changes do not take place at random but can be usefully accounted for by considering the socio-cultural contexts of use. The major topics covered include the history of English in Britain, English in North America and the New Englishes including Singaporean English. This module is suitable for students intending to read English Language as a major, as well as other interested students.", + "title": "Historical Variation in English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL2111", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0116", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module considers how variation in language use relates to broader variation in the daily experiences of individuals and groups. Students examine how language constructs cultural abstractions such as social class, gender, and power relations and how these abstractions play out in language varieties and shape their defining characteristics. The module should appeal to students who wish to explore the interaction of language and society by drawing on linguistics, sociology, anthropology, and psychology, and to understand the practical implications of language variation for language policy and language education in multilingual societies such as Singapore.", + "title": "Social Variation in English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL2151", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0601", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on the knowledge of English morphology and syntax developed at levels 1000 and 2000, this module aims to give students a deeper understanding of the morphological and syntactic structure of English, in relation to crosslinguistic patterns. With an emphasis on evidence and argumentation, the module will help students understand the interconnectedness of the analyses of apparently unrelated phenomena, and develop a sense of the organic unity of language structure. This module will provide a crucial foundation for the further study of morphology and syntax, and their applications.", + "title": "Syntax", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we study the sound pattern of English, with an eye on developing a deeper understanding of the phonological phenomena in English in relation to crosslinguistic patterns. We investigate the segmental properties - phonemes and their distribution and alternation; as well as suprasegmental properties - how segments are organized into syllables, syllables into feet, and feet into words. As part of the phonetic bases for phonological patterns, we study the speech organs, the description and classification of speech sounds, and other aspects of articulatory phonetics relevant for phonological patterns.", + "title": "Phonetics and Phonology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the key concepts in semantics and pragmatics. In order to test the usefulness of these concepts, students will learn to apply them to the analysis of data. The major topics covered may include some or all of the following: sense; reference; mental representation; word meaning and lexical relations, event and participant types; conceptual structure; deixis; entailment and presupposition; the role of context in interpretation; conventional and conversational implicatures; direct and indirect speech acts; and politeness.", + "title": "Semantics and Pragmatics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the key notions in discourse structure. In order to test the usefulness of these notions, students will learn to apply them to the analysis of data. The major topics covered may include some or all of the following: the difference between written and spoken discourse; reference and co-reference in discourse; anaphora and discourse structure; discourse topic and the representation of discourse content; discourse markers; information structure; the role of context in interpretation; and discourse coherence.", + "title": "Discourse Structure", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the study of word structure. It presents an overview of the major theoretical debates in this field and compares the main approaches to morphological analysis. Starting with the core areas of inflection and derivation, we examine the distinction between words and phrases, as well as the interactions between morphology and syntax on the one hand, and phonology on the other. The synchronic study of word structure is covered, as are the phenomena of diachronic change, such as analogy and grammaticalisation. Students will be exposed to a broad range of morphological phenomena from different languages.", + "title": "Morphology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The ability to use language is a uniquely human one, so effortless that it is easy to forget the very complex psychological processes underlying its use. Psycholinguistics is the study of these processes. More specifically, it investigates the processes that take place in our minds when we use language as well as how these processes develop in children. Our knowledge about these processes in healthy individuals is also informed by studying language impairment, for example in patients who have sustained brain damage, or in children with atypical language development. In this module, we will be covering these three broad areas.", + "title": "Psycholinguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fascinating research on language in the brain, which has typically been examined via neuroimaging techniques and studies on brain\u2010damaged individuals. In this module, students will discover what these methods have revealed about how the representation of language in the brain changes as it develops, ages, learns more than one language or becomes damaged. This module takes into account no previous knowledge of Neurolinguistics, and will rely on a combination of mini lectures, student\u2010led discussions and seminar presentations to help students navigate through the maze of new terms, methods and analyses they will encounter.", + "title": "Introduction to the Neurocognition of Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the cognitive underpinnings and social consequences of bilingualism and multilingualism. Students will become familiar with multiple approaches to the study of bilingualism and investigate major questions such as how children acquire multiple languages, how those languages are stored in the brain, and how bilinguals use language in socially meaningful ways. Topics covered include bilingual acquisition, cognitive consequences of bilingualism, language mixing, and bilingual education.", + "title": "Bilingualism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It is generally assumed that language, culture, and our way of thinking are related. The relation, which is often called the Sapir\u2010Whorf Hypothesis or linguistic relativity, has been the subject of serious philosophical, anthropological and scientific inquiry. Taking advantage of the extensive bilingualism in Singapore, this module selects a few salient grammatical features and critically examines them within the broader cultural and/or cognitive contexts. Topics to be discussed include pluralisation, classifier, tense and aspect, kinship, polysemy, metaphor and bilingual acquisition. Issues related to translation will also be discussed.", + "title": "Language, Culture, and Mind", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the processes underlying language comprehension, language production, and language acquisition. The topics include memory and language, effects of physical and emotional experience on language processing, individual differences (age, social factors) in language processing, code-switching and bilingual advantage.", + "title": "Topics in the Psychology of Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the phenomenon of language contact. We will explore sociolinguistic conditions of language contact, and how these conditions lead to contact-induced linguistic change. The study of contact languages is a study of how new forms of language emerge from contact ecologies. The main focus of the module is on the linguistic properties of contact languages, such as Chinese Pidgin English and Singapore Colloquial English, and on the theoretical issues of language emergence.", + "title": "Language in Contact", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The study of language typology and universals is concerned with the evaluation of how the various linguistic subsystems in any language differ from those\nfound in most other languages, and whether linguistic diversity is a norm or otherwise. In this introduction to typology, students will acquire a fundamental overview of the grammatical make-up of languages, and an appreciation for an important approach in contemporary linguistics. Language typology contributes to and draws on core areas of linguistics such as phonetics, phonology, morphology, syntax, psycholinguistics, sociolinguistics, and language\nacquisition, among others.", + "title": "Language Typology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Language documentation is a rapidly growing subfield in linguistics. It is concerned with the creation of language records that can be used for multiple purposes, the preservation of such records, and the products that can be built from these records, such as dictionaries, corpora and grammars. This module is an introduction to the subfield. It explores the need for language documentation as a reaction to language endangerment, and presents the history, theory and methods of modern day language documentation.", + "title": "Language Documentation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0203", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The vast worldwide computer network collectively known as the Internet (and its graphical interface, the World Wide Web) provides a new environment and technologies of communication (e.g. Internet Relay Chat, bulletin board systems etc) that challenge current assumptions regarding the nature of speech, writing, community and society. Since English is the principal language of the Internet, this module aims to examine the ways in which the language is being (re)formulated on the Web, especially in multilingual settings. The module focuses on the study and management of electronic language evidence on the Web.", + "title": "Language and the Internet", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3216", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0203", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to the analysis of literary texts by using linguistic and discourse analytical tools. A functional grammar approach that has proven to be useful for stylistic analysis will be used. Through the application of this grammar, various aspects of style in literary works will be examined. Students will also be studying the relevant concepts for the study of the language of local and postcolonial literary works. This module is intended for students with some knowledge of linguistics and an interest in literature.", + "title": "Literary Stylistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to some of the basic ideas in cinema analysis that have a relationship with some of the concepts of linguistics and discourse\nanalysis. The students will be exposed to a critical assessment of some of the early associations of cinema with linguistics. They will then learn about the\napproach to cinema as discourse, and of its relationship to the analysis of linguistic discourse. It is hoped that eventually, students will not only attain a\nbetter understanding of cinematic discourse, but also, of the concept of discourse in general.", + "title": "Cinematic Discourse and Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the sound systems of human language. We will study the distribution and alternation of speech sounds. Topics include distinctive features, syllable structure, stress, and tone/intonation. Coursework will emphasise problem-solving skills and critical understanding.", + "title": "Phonology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The field of phonetics includes the study of how speech sounds are produced, how they may be acoustically characterized, and how they are processed by listeners. This module will explore these three major areas of research, as well as introduce key areas in which phonetics intersects with other disciplines, e.g. phonology, language acquisition, sociolinguistics, psycholinguistics, computational linguistics, and speech-language pathology. Students will become familiar with the major instruments, software tools and statistical methods used in modern phonetics research, and gain experience in carrying out independent data collection, transcription, and acoustic analysis.", + "title": "Phonetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the relationship between language and identity, focusing on how linguistic difference is not a reflection of one\u2019s inner essence but a means of constructing who we are in social context. Based on current research in sociolinguistics, it will discuss why ideological and discursive processes of identity construction are central to our social life. It will also introduce conceptual tools for analysing identity work in everyday discourse, using them to explore several theoretical and real-world issues in which the question of identity figures prominently.", + "title": "Language, Society and Identity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce to students the area of study concerned with the action and analysis relating to human intervention on language and language uses. The sessions will discuss the sociolinguistic situations within which language planning occurs. Topics such as 'language and nation-building', 'language diversity as problematic' and the whole question of 'linguistic rights' will be central issues for this module.", + "title": "Language Planning and Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to promote critical thinking through critical analysis of actual discourse/texts. There are two major components to this module: (1) the theoretical section where students will be introduced to the central ideas of critical discourse analysis; and (2) the practical section where students will be encouraged to analyse samples of actual discourse/text. Through developing individual awareness of the politics of language use, it is hoped that students will become even more competent readers and writers, equipped to cope with the discourses encountered in everyday interactions.", + "title": "Critical Discourse Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to encourage a critical understanding of the significant role the media play in shaping our beliefs, values, and identities in contemporary social life. Topics covered key social, cultural and political issues pertaining to texts and practices of specific types of media. These issues will be approached from an interdisciplinary perspective that brings together media, cultural, and discourse studies. Target students those with a keen interest in the media, and who are open to interdisciplinary study.", + "title": "Media, Discourse and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3254", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the ideological issues surrounding the role and impact of English in Southeast Asia. Key topics include: English as a native language in Southeast Asia; English as a gatekeeper for social mobility and economic development; English language education and the question of who has the authority to decide what constitutes 'good' or 'proper' English. Target students: Those who are willing to critically engage in a debate on the impact of English on Southeast Asian language policies and cultural identities.", + "title": "English in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3255", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Communicative practices are playing an increasingly important role in the workplace. At the micro\u2010level, communicative practices include talk (face\u2010to\u2010face\nencounters) and text (e\u2010mail, memos). At the macrolevel, they include institutional narratives that specify the organizational culture and identity, with implications for how management and staff are expected to fit into the organization. This module\nintroduces students to advanced concepts in pragmatics\nand sociolinguistics, and how these can help us better understand the social dynamics of work\u2010related settings. Possible topics (i) the construction of\nprofessional identities, (ii) intercultural communication, and (iii) the management of service encounters.", + "title": "Language and the Workplace", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about understanding language through the vehicle of humour. It is often the case that people assume the meanings of jokes, cartoons, and comedies based on their knowledge. This course will introduce students to understanding the various types of humour through sociolinguistics and cognitive science approaches. By looking at different examples, this course highlights the fact that \u2018getting\u2019 humour actually takes quite sophisticated yet tacit linguistic\nknowledge in speakers\u2019 grammatical and communicative routines.", + "title": "The Sociolinguistics of Humour: Jokes and Comedies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Language is not an abstract set of rules or decontextualized structure used to encode messages. It is a deeply interactional phenomenon, which finds its natural home in the way human beings, as social actors, engage with each other through the work of communication. This module introduces students to this interactional nature of language, offering the basic conceptual and analytic tools for studying language in a way that takes into account its grounding in human social interaction.", + "title": "Language as Interaction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3259", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some key topics in the field of applied linguistics (second language teaching and learning). Topics covered may include description of language use (discourse analysis), the core language\nskills (reading, writing, speaking, and listening), theoretical frameworks of task complexity and taskbased language teaching, and individual differences in\nlanguage learning (language learning strategies, language learning styles, and motivation) and how such differences influence language performance. Students will reflect on implications of selected theories and research findings for language learning and teaching.", + "title": "Foundations in Applied Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3551R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in English Language. The topic to be covered will depend on the interest and expertise of regular or visiting staff member in the department.", + "title": "Topics in English Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Grammaticalisation studies have been extensively developed recently in North America and Europe, in parallel with modern cognitive-functionalist methods. In this module, we apply grammaticalisation theory to historical and variation aspects of the English language. We will initially explore basic pragmatic and cognitive aspects associated with grammaticalisation, followed by general characteristics, processes, and effects of grammaticalisation. New developments and more controversial points will be discussed towards the end of the course. The module is especially useful for students working in language variation and historical change in English or other languages, and students researching in the field of sociolinguistics or language acquisition.", + "title": "Grammaticalisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module integrates the methods and results of phonetics, phonology, morphology, sociolinguistics and historical linguistics in order to explore the origins and development of the word elements of English \u2014 their sounds, meanings and functions. The overall goal is to employ our analysis of English vocabulary to gain a deeper understanding of the complex yet systematic\norganization of the language itself. Key topics include the history, sources and spelling of English words, allomorphy, word\u2010formation processes and the structure of complex words, homonymy, polysemy and semantic change, paradigmatic relations in the lexicon, usage and variation, morpheme\u2010specific restrictions, and child wordacquisition.", + "title": "The Lexicon of English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL3880D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module has two broad aims. The first is to familiarize students with the core theoretical ideas shared by current syntactic frameworks, and to provide a sense of what it takes to pursue theoretically informed research in syntax that involves a technical framework of representations and principles. The second aim is to develop in students the abilities and thinking habits required for theoretical research in syntax. The acquaintance with linguistic theory and the practice in the linguist's modes of thinking developed in the module will help students engage in meaningful research in syntax.", + "title": "Advanced Syntax", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to develop a concrete, compositional mapping between the syntactic structure of linguistic expressions and their interpreted meanings, based primarily on the study of English data. Emphasis will be placed on precise, formal descriptions of meanings as truth conditions and their computation. The contribution of the conversational context will also be discussed. Basic knowledge of English syntactic structure will be assumed.", + "title": "Semantics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Pragmatics is the study of language in relation to context. As such, it deals broadly with the question of how communication takes place. For example, we can ask how it is possible for someone to say 'The door is open' and mean it as a request ('Close the door'). There are clearly cultural factors involved, but there also appear to be more universal principles of communication. This advanced module provides students with the opportunity to critically examine fundamental pragmatic concepts, and their theoretical relevance in explaining communicative behavior.", + "title": "Pragmatics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module we will be exploring how children acquire their first language (we will also briefly consider second language acquisition) and how language develops in the early years. Students will be exposed to the various theories of child language acquisition, the ways in which child language is studied, and the developmental stages of language. In addition to these topics, we will also examine atypical language development as well as studies of non-human communication since these throw light on the typical course of language development.", + "title": "Language Acquisition & Language Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is focused on the methods of and considerations involved in writing a descriptive grammar for the purpose of language documentation. It is designed for students who are contemplating writing a descriptive grammar, or for those who want to know more about the process of grammar writing. The module surveys the types of documentation materials that exists on a range of languages, and how these can be built upon. It deals with how technology can be harnessed for writing grammars. It also deals with the relationship between linguistic theory and the preparation of grammars for language documentation.", + "title": "Grammar Writing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module develops practical skills in linguistic fieldwork. The centrepiece of the module is the investigation of an unfamiliar language through structured interviews with native speakers. Students will elicit, record, transcribe, and organize linguistic data. Together we will gain a basic understanding of aspects of the grammar of the language. Students will also develop original hypotheses regarding the language\u2019s structure, test these hypotheses, and share their findings through written reports. Ethical issues that arise in conducting linguistic fieldwork will also be discussed.", + "title": "Field Methods in Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With special reference to English in multilingual and multicultural settings, this module introduces students to the study of words from both lexicological (theory) and lexicographical (practice) perspectives. It aims to equip participants with a critical awareness of the notion of the word and its attendant sources of evidence, the organisation of the mental lexicon, and the publication of words in the form of printed, on-line and standalone electronic dictionaries.", + "title": "Lexicology and Lexicography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0203", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to some essential literary-critical and linguistic concepts in the study of narrative. One of its central themes will be the relationship between system and structure in narrative, and how this can be derived from a similar relationship in linguistics. Students will be analysing the narrative content of written, oral and cinematographic texts during the semester.", + "title": "Narrative Structures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module highlights one way in which the disciplines within the Department (theatre, literary studies and linguistics) can be brought together in the enterprise to come to terms with dramatic discourse. The module will focus on the analysis of dramatic discourse, so that evidenced interpretations of dramatic passages may be provided. Students will be introduced to a number of frameworks, especially those used to deal with discourse such as speech-act theory, the co-operative principle, face and politeness, cognitive and critical discourse approaches. Key topics in stylistics such as foregrounding and reader response will also receive coverage.", + "title": "Stylistics and Drama", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of key social theories that explore the nature of language and its social foundations. Through an examination of how language occupies a central position in contemporary social theory, it considers how such insight may be incorporated into the study of language in social context. In particular, it explores how different social theories may offer varying perspectives on the socially embedded nature of language, linguistic constitution of social relations, and language as power.", + "title": "Social Thought in Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on how the phenomenon of discourse might be analysed and will consider how a number of frameworks can be used in a complementary fashion to give a fuller description of discourse. These include the frameworks of register and genre; speech-act theory; co-operation; face and politeness; exchange structure and conversation analysis. This module is appropriate for students reading or intending to read English Language honours.", + "title": "Interactional Discourse", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module encourages you to think analytically about identity construction issues regarding gender and sexuality by focusing on language, and about the relation between language and social practice. The goals are inseparably intellectual and political: responsible scholarship and citizenship require the ability and eagerness to go beyond stereotype, common belief, and the popular press, to evaluate claims for oneself in a knowledgeable way. Through the gathering and analysis of data, you will be asked to look for questions that might be answered, problems that might be solved, and issues that might be explored.", + "title": "Language, Gender and Sexual Identities", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4253", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the interrelations between language, ideology and power within contemporary society. It examines key concepts and ideas investigated by a range of scholars working within a critical perspective. Topics covered include: the structuring influence of language on worldviews; the construal of particular realities through patterned linguistic choices; the inclusion/exclusion, privileging/marginalizing of different social groups through language policies and practices affecting the use (or disuse) of particular language varieties. Target students: those with an active interest in the social and political aspects of language use, willing to articulate their own positions amid lively and complex debate.", + "title": "Language, Ideology and Power", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the consequences of the spread of English as a world language. Key topics covered include: the rise of linguistic instrumentalism; the marginalization of other languages and their speakers/cultures; the question of how various Englishes should be ideologically positioned and the relationship between language and modernity. Target students: Those who are willing to critically engage in a debate on what it means to be a 'world language' as well those who are interested in gaining a deeper appreciation of the impact of English on the world and vice versa.", + "title": "English as a World Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4255", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to explore multilingualism and its ramifications, focusing on the social and cultural aspects. It also deals with matters of ideology and politics of multilingualism and multiculturalism. We will critically review current research in the field, and debate certain concrete issues. The major topics covered include languages in contact/conflict, language hierarchy, language attitude, language choice, language spread/decline, language shift/ maintenance, language and identity, language and culture, and language planning.", + "title": "Multilingualism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines recent language controversies from different angles. It will focus on four main themes: language change, discrimination on the basis\nof accent, gender miscommunication, and the language of advertisements. Responsible scholarship and citizenship require the ability and eagerness to go\nbeyond stereotype, common belief and the popular press to evaluate claims for oneself in a knowledgeable way. This course will provide facts, theory, and analytic tools with which to consider the four issues mentioned above.", + "title": "English in the Public Sphere: the Politics of Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Metapragmatics is the study of the reflexive character of language, or how language use that refers back to language use serves as a crucial foundation for the constitution of language. As an advanced introduction to the field of metapragmatics, this module offers students key tools for metapragmatic analysis and an understanding of the significance of language ideology for the investigation of linguistic phenomena. Through discussion of classical and current research on language ideology, it explores how metapragmatics shapes language structure and use and serves as the basis for the politics of language in everyday life.", + "title": "Metapragmatics and Language Ideology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Honours Thesis is usually done in the final semester of a student's pursuing an Honours degree. Students intending to read this module are expected to consult prospective supervisors the semester before they read this module and provide a research proposal. A wide range of topics is acceptable provided it highlights a language issue.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "EL4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4751", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will be taught by a member of staff or a visiting senior academic and the topic will be in an area of his or her specialisation.", + "title": "Topics in English Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to constraint-based lexicalist theories of syntax, which differ from mainstream generative syntax in three important ways: They are surface-oriented (no sequences of phrase structures that constitute the derivation of sentences), constraint-based (no operations that destructively modify any representations), and strongly lexicalist (lexical entries are the key elements that drive the construction of the syntactic and semantic structure of sentences). Students will come to understand the motivations for such theories and are invited to evaluate what they had previously learnt in other syntax modules vis-\u00e0-vis the contents of this module.", + "title": "Lexicalist Theories of Syntax", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Fundamental importance is assigned to speakers\u2019 introspective judgments of sentence acceptability in syntactic research. However, such judgments can be gravely compromised by instability of different kinds, which calls into question the empirical reliability of such data. In this module, students will learn objective and practical methods by which they may collect and analyse acceptability judgments. We will discuss experimental design, data visualisation, statistical analysis, and the application of experimental methods to theoretical questions. This will be a hands-on course, and students will be expected to lead discussions on primary research.", + "title": "Experimental Syntax", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4880D", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0203", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to help students acquire a new perspective on the English language in its totality -- not as the language of a few traditional English-speaking countries, but as a bona fide world language with several old and new varieties (\u2018World Englishes\u2019) which exhibit their own distinctive linguistic features and functions. It provides students with the necessary concepts and tools to analyse the linguistic features as well as social and cultural issues arising from the emergence of English as a world language.", + "title": "World Englishes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4880E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Many morphosyntactic phenomena, such as those concerning subject-verb agreement or wh-dependencies, are typically seen as reflecting abstract grammatical rules. However, linguists have often questioned the need for such rules, arguing that these phenomena can be more fruitfully understood as the product of sentence processing and cognitive constraints, such as the limits of working memory. This module introduces students to these perspectives, their underlying assumptions, and their successes and limitations. Through this module, students will also become more familiar with the logic of linguistics experiments and statistical analysis.", + "title": "Grammar and Language Processing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL4880F", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to ground graduate students in a solid conceptual, analytical, and empirical foundation for doing research in syntax and semantics. It examines a range of core empirical phenomena that have been important in the development of modern linguistic theory and that remain central to current linguistic frameworks (e.g. passive, infinitival constructions, relative clauses, wh\u2010constructions, binding, etc.). Core theoretical notions to be covered include: phrase structure, grammatical relations, subcategorization, and lexical entries.", + "title": "Grammatical Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to ground graduate students in a solid conceptual, analytical, and empirical foundation for doing research in syntax and semantics. It examines a range of core empirical phenomena that have been important in the development of modern linguistic theory and that remain central to current linguistic frameworks (e.g. passive, infinitival constructions, relative clauses, wh\u2010constructions, binding, etc.). Core theoretical notions to be covered include: phrase structure, grammatical relations, subcategorization, and lexical entries.", + "title": "Grammatical Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5101R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the foundational knowledge of the sound pattern of human language. Major topics include how speech sounds are made and transmitted, and how they pattern, drawing data primarily from English and other familiar languages. Students will learn the conceptual tools and technical skills in the analysis of speech data.", + "title": "Phonetics and Phonology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the foundational knowledge of the sound pattern of human language. Major topics include how speech sounds are made and transmitted, and how they pattern, drawing data primarily from English and other familiar languages. Students will learn the conceptual tools and technical skills in the analysis of speech data.", + "title": "Phonetics and Phonology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5102R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys major approaches and current issues relevant to the study of language in society. It aims to familiarize students with a range of theoretical and conceptual frameworks they may refer to in addressing sociolinguistic questions across a variety of sites and to provide general principles that they may consider when engaged in the study of language in social context. For this purpose, it will critically discuss classical and contemporary research to explore the historical background, prevailing assumptions, methodological perspectives, and analytic strengths of different approaches to language in society, and consider recent developments in the field.", + "title": "Language in Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys major approaches and current issues relevant to the study of language in society. It aims to familiarize students with a range of theoretical and conceptual frameworks they may refer to in addressing sociolinguistic questions across a variety of sites and to provide general principles that they may consider when engaged in the study of language in social context. For this purpose, it will critically discuss classical and contemporary research to explore the historical background, prevailing assumptions, methodological perspectives, and analytic strengths of different approaches to language in society, and consider recent developments in the field.", + "title": "Language in Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5103R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the systematic analysis of the grammar of modern standard English. We will examine common topics in the phonology, morphology and syntax of the English language. The effect of language contact on English will also be discussed. The module is descriptive in nature. Through examining the grammar of English, students will be exposed to important analytical concepts in corpus and theoretical linguistics.", + "title": "The Grammar of Modern English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the systematic analysis of the grammar of modern standard English. We will examine common topics in the phonology, morphology and syntax of the English language. The effect of language contact on English will also be discussed. The module is descriptive in nature. Through examining the grammar of English, students will be exposed to important analytical concepts in corpus and theoretical linguistics.", + "title": "The Grammar of Modern English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5202R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will familiarize students with the tools and methodologies of phonetic analysis and how these may be employed in the investigation of the relationship of language and society. The module will focus on acoustic analysis with additional units on articulatory and auditory phonetics, and cover both segmental features (vowels, consonants) and suprasegmental features (intonation, rhythm, voice quality). Students will collaborate on a group research project related to speech in Singapore.", + "title": "Sociophonetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will familiarize students with the tools and methodologies of phonetic analysis and how these may be employed in the investigation of the relationship of language and society. The module will focus on acoustic analysis with additional units on articulatory and auditory phonetics, and cover both segmental features (vowels, consonants) and suprasegmental features (intonation, rhythm, voice quality). Students will collaborate on a group research project related to speech in Singapore.", + "title": "Sociophonetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5203R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Typology and universals are concerned with how the pieces of languages are put together, what they contain, and how and why they interact and function as they do. Students acquire a broad overview of the grammatical make\u2010up of languages and an understanding of an important approach in contemporary linguistics. Typology contributes to and draws on core areas of linguistics that students have studied.", + "title": "Linguistic Typology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Typology and universals are concerned with how the pieces of languages are put together, what they contain, and how and why they interact and function as they do. Students acquire a broad overview of the grammatical make\u2010up of languages and an understanding of an important approach in contemporary linguistics. Typology contributes to and draws on core areas of linguistics that students have studied.", + "title": "Linguistic Typology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5204R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students the opportunity to explore a syntactic phenomenon in great detail. Students will become familiar with the descriptive and empirical problem, examine different theoretical analyses of the syntactic phenomenon under scrutiny within a variety of linguistic frameworks, identify the theoretical consequences of alternative analyses, and engage critically with current debates in the field. Possible topics include, but are not limited to, argument realisation, binding, control, long distance dependencies, periphrastic expressions, etc.", + "title": "Topics in Syntax", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students the opportunity to explore a syntactic phenomenon in great detail. Students will become familiar with the descriptive and empirical problem, examine different theoretical analyses of the syntactic phenomenon under scrutiny within a variety of linguistic frameworks, identify the theoretical consequences of alternative analyses, and engage critically with current debates in the field. Possible topics include, but are not limited to, argument realisation, binding, control, long distance dependencies, periphrastic expressions, etc.", + "title": "Topics in Syntax", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5205R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores topics in psycholinguistics such as spoken and visual word recognition, language comprehension, language production, language acquisition, and bilingual language processing. Students will also be exposed to research methods in psycholinguistics and neurolinguistics, including eye-tracking and brain potentials (EEG; Electroencephalography, or ERP; Event-Related Potentials).", + "title": "Advanced Psycholinguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores topics in psycholinguistics such as spoken and visual word recognition, language comprehension, language production, language acquisition, and bilingual language processing. Students will also be exposed to research methods in psycholinguistics and neurolinguistics, including eye-tracking and brain potentials (EEG; Electroencephalography, or ERP; Event-Related Potentials).", + "title": "Advanced Psycholinguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5206R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on languages evolving in multilingual settings out of radical contact situations. Commonly referred to as \u201cPidgins\u201d, \u201cCreoles\u201d and \u201cmixed languages\u201d, these languages are spoken mainly in the Caribbean and Asia-Pacific regions. We concentrate on English-lexified contact varieties and investigate the interaction of typological features and sociolinguistic factors determining language change in contact situations. We also discuss the most salient issues within the field of Language Contact such as: \n(i) Creoles as a synchronically viable structural class; \n(ii) restructuring patterns, creolisation and universal patterns of language change; \n(iii) pidgnisation;\n(iv) ideology and classification.", + "title": "Contact Languages", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on languages evolving in multilingual settings out of radical contact situations. Commonly referred to as \u201cPidgins\u201d, \u201cCreoles\u201d and \u201cmixed languages\u201d, these languages are spoken mainly in the Caribbean and Asia-Pacific regions. We concentrate on English-lexified contact varieties and investigate the interaction of typological features and sociolinguistic factors determining language change in contact situations. We also discuss the most salient issues within the field of Language Contact such as: \n(i) Creoles as a synchronically viable structural class; \n(ii) restructuring patterns, creolisation and universal patterns of language change; \n(iii) pidgnisation;\n(iv) ideology and classification.", + "title": "Contact Languages", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5211R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at graduate students who wish to explore the development of the English language over the past 1,500 years or so, and to see that some features of present-day English can be explained in the light of its history. Students should ideally have some background in grammatical description. Issues that will receive attention include the transformation of a synthetic Old English to a more analytic Modern English; language contact as a force for language change; the standardisation of English; and the spread of English and the New Englishes.", + "title": "History of English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at graduate students who wish to explore the development of the English language over the past 1,500 years or so, and to see that some features of present-day English can be explained in the light of its history. Students should ideally have some background in grammatical description. Issues that will receive attention include the transformation of a synthetic Old English to a more analytic Modern English; language contact as a force for language change; the standardisation of English; and the spread of English and the New Englishes.", + "title": "History of English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5212R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes an empirical approach to linguistic investigation: it bases claims largely on computer-aided analyses of electronic datasets that are either manually built with linguistic purposes in mind or those that are readily found on the Web. With special reference to English, relevant topics will be introduced to suit particular needs; the corpus-linguistic methodology blends well with various linguistic levels, including grammar, lexis and discourse. This module does not assume any expert computing knowledge; while no computer programming will be introduced, participants will receive hands-on training in the use of standard corpus-linguistic programs.", + "title": "Corpus Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes an empirical approach to linguistic investigation: it bases claims largely on computer-aided analyses of electronic datasets that are either manually built with linguistic purposes in mind or those that are readily found on the Web. With special reference to English, relevant topics will be introduced to suit particular needs; the corpus-linguistic methodology blends well with various linguistic levels, including grammar, lexis and discourse. This module does not assume any expert computing knowledge; while no computer programming will be introduced, participants will receive hands-on training in the use of standard corpus-linguistic programs.", + "title": "Corpus Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5216R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0203", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This interface module deals with some of the ways that linguistics and discourse analysis can be used for the analysis of literature. Among the topics covered are the grammatical features in literary texts, the sounds of poetry, and discourse situations in fictional narrative. This module will be useful for higher-degree students who want to use literature in their study, including those who have to use the language of literature for a more comprehensive examination of a particular area of linguistic research. Higher-degree literature students with a good linguistics background may also consider doing this module.", + "title": "The Linguistic Analysis of Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This interface module deals with some of the ways that linguistics and discourse analysis can be used for the analysis of literature. Among the topics covered are the grammatical features in literary texts, the sounds of poetry, and discourse situations in fictional narrative. This module will be useful for higher-degree students who want to use literature in their study, including those who have to use the language of literature for a more comprehensive examination of a particular area of linguistic research. Higher-degree literature students with a good linguistics background may also consider doing this module.", + "title": "The Linguistic Analysis of Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5221R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore approaches to analyzing both written and spoken discourses. Students will learn the analytical tools used to describe features of both modes of discourses. They will be encouraged to explore current research in discourse analysis. There may be a specific focus on particular kinds of discourse (classroom, computer-mediated, media, legal, political, etc.), depending on the expertise and interest of the lecturer. Students will be encouraged to collect and analyse their own data for the assignment.", + "title": "Approaches to Discourse", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore approaches to analyzing both written and spoken discourses. Students will learn the analytical tools used to describe features of both modes of discourses. They will be encouraged to explore current research in discourse analysis. There may be a specific focus on particular kinds of discourse (classroom, computer-mediated, media, legal, political, etc.), depending on the expertise and interest of the lecturer. Students will be encouraged to collect and analyse their own data for the assignment.", + "title": "Approaches to Discourse", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5251R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The study of variation and change in language employs quantitative statistical methods to account for phenomena in real-world language data. This module familiarises students with the major questions and methodologies of variationist \nresearch in sociolinguistics and corpus linguistics. Students will learn about the stylistic, social, and linguistic factors that influence how language is produced and perceived, and explore how data drawn from speech, texts, social media, and \nexperimental methods are used to investigate variation. This module will prepare students to pursue independent research incorporating quantitative methods.", + "title": "Language Variation and Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The study of variation and change in language employs quantitative statistical methods to account for phenomena in real-world language data. This module familiarises students with the major questions and methodologies of variationist research in sociolinguistics and corpus linguistics. Students will learn about the stylistic, social, and linguistic factors that influence how language is produced and perceived, and explore how data drawn from speech, texts, social media, and experimental methods are used to investigate variation. This module will prepare students to pursue independent research incorporating quantitative methods.", + "title": "Language Variation and Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5252R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to cultivate an understanding both of the relationship between discourse and ideology and of the textual construction of knowledge. Students will be exposed to a critical deconstruction of different kinds of socio-political discourses (including discourses about gender and race, etc.) with specific attention to ideological positionings, and the role ideology plays in the knowledge construction process. Through this module, students will acquire critical skills in reading texts and come to appreciate the different kinds of textual and ideological strategies used in the formation of knowledge.", + "title": "Textual Construction of Knowledge", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to cultivate an understanding both of the relationship between discourse and ideology and of the textual construction of knowledge. Students will be exposed to a critical deconstruction of different kinds of socio-political discourses (including discourses about gender and race, etc.) with specific attention to ideological positionings, and the role ideology plays in the knowledge construction process. Through this module, students will acquire critical skills in reading texts and come to appreciate the different kinds of textual and ideological strategies used in the formation of knowledge.", + "title": "Textual Construction of Knowledge", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5253R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the relationships between language, gender and sexuality. Specifically, it explores how gender and sexuality are constructed, performed, constrained and resisted in and through language. The study is undertaken using a critical lens to understand relations of power, investment and ideology for individuals and social groups in particular communities of practice. In the module, students will explore issues of language, gender and sexuality bearing in mind cultural differences, and examine and evaluate research across a range of fields: language and gender, queer linguistics, sociolinguistics, feminist discourse analysis and feminist media and cultural studies.", + "title": "Language, Gender and Sexuality", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the relationships between language, gender and sexuality. Specifically, it explores how gender and sexuality are constructed, performed, constrained and resisted in and through language. The study is undertaken using a critical lens to understand relations of power, investment and ideology for individuals and social groups in particular communities of practice. In the module, students will explore issues of language, gender and sexuality bearing in mind cultural differences, and examine and evaluate research across a range of fields: language and gender, queer linguistics, sociolinguistics, feminist discourse analysis and feminist media and cultural studies.", + "title": "Language, Gender and Sexuality", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5254R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores current research in second language writing and encompasses the investigation of both processes and products of writing. The module will examine theories in writing (including L1 theories) and the role theories and models plays in second language writing research. The topics addressed will include the cognitive processes in writing, the distribution of processes on writing performance, individual differences in writing (for examples, self-efficacy beliefs, motivation, and strategies), the methodology and tools researchers use to investigate the processes in writing, and the assessment of written texts.", + "title": "Second Language Writing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5255", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores current research in second language writing and encompasses the investigation of both processes and products of writing. The module will examine theories in writing (including L1 theories) and the role theories and models plays in second language writing research. The topics addressed will include the cognitive processes in writing, the distribution of processes on writing performance, individual differences in writing (for examples, self-efficacy beliefs, motivation, and strategies), the methodology and tools researchers use to investigate the processes in writing, and the assessment of written texts.", + "title": "Second Language Writing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5255R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to a range of issues, approaches and working procedures in applied linguistics, partly to familiarize students with relevant research, and more especially to engage students actively in typical processes of enquiry. Applied linguistics has evolved into a dynamically diversified, multi-disciplinary field of academic and professional activity. It is characterized by theoretically and empirically informed initiatives to identify and represent clearly, investigate appropriately, and address pragmatically and critically those issues and problems in human communicative affairs that prominently involve language, language learning or language use.", + "title": "Explorations in Applied Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to a range of issues, approaches and working procedures in applied linguistics, partly to familiarize students with relevant research, and more especially to engage students actively in typical processes of enquiry. Applied linguistics has evolved into a dynamically diversified, multi-disciplinary field of academic and professional activity. It is characterized by theoretically and empirically informed initiatives to identify and represent clearly, investigate appropriately, and address pragmatically and critically those issues and problems in human communicative affairs that prominently involve language, language learning or language use.", + "title": "Explorations in Applied Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EL5270R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in English Language in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar offers graduate students opportunities for sustained critical engagement with current debates in English language and linguistics. Students are expected to identify key issues (whether it involves the architecture of competing theories of grammar or analyses of specific grammatical phenomena) and to situate these issues within wider debates about the nature of language. The overall aim is for students to propose lines of inquiry that might contribute meaningfully to these debates. The seminar is especially useful to students seeking a more integrated understanding of the different approaches to the study of English language and linguistics.", + "title": "Topics in English Language and Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Language Study in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. Head's and/or Graduate Coordinator's approval is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/05. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EL6770", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced seminar provides graduate students with sustained and critical engagement with recent debates in grammatical theory. Students are expected to identify for themselves key issues in grammatical theory (e.g the architecture of a theory of grammar, the analysis of specific grammatical phenomena, the epiphenomenality of constructions), situate these issues in relation to wider debates about nature of grammar, and propose lines of inquiry that might contribute to the debates. The seminar is especially useful for students who are considering pursuing research in grammatical anaylsis/theory.", + "title": "Topics in Grammatical Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL6880", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Language and Cognition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL6881", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced seminar is especially useful for students who are considering pursuing research in the social aspects of language, including the politics of language and linguistic anthropology. Students are expected to identify for themselves key issues pertaining to the relationship between language and society. Among the possible topics discussed are: critical comparisons between autonomous and socially-oriented views of language; differences between variationist sociolinguistics and more critically-informed approaches; the relationship between linguistic structure, language ideology and power.", + "title": "Topics in Language and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL6882", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The modules focuses on the sociolinguistic aspects of English in multilingual societies as found in Southeast Asia, Europe and America. Issues related to the study of English in these societies will be raised. Chief among these are the spread, impact, distribution, characteristics, and overall dominance of English in the world. Questions to be discussed include the similarities and differences between American, European and Southeast Asian multilingual societies; the opportunities and limitations in multilingual societies using the language, given the globalisation of English; and whether English will function as a lingua franca for the world.", + "title": "English in Multilingual Societies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL6883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced seminar provides graduate students with opportunities to undertake and report applied linguistic research in areas of negotiated choice, to develop a situated understanding of applied linguistics as a theoretically informed professional field of enquiry, and to generate spoken and written\noutcomes that reach, or closely approximate to, internationally publishable standards. Topics may range from critical re-theorising of applied linguistics itself to suitably informed\ninvestigations relating to language in action and communicative practices, in such domains as speech therapy, classroom language learning, teaching and assessment, translation, business, legal services, news reporting and broadcasting,\nand other social and workplace settings.", + "title": "Topics in Applied Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EL6884", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundational module familiarizes graduate students with the major theoretical principles and research paradigms that define the various subfields of linguistics. The module surveys the history of linguistics as a discipline, and introduces major thinkers, key linguistic concepts, significant debates, and basic research methods. Topics covered include formal linguistics, historical linguistics, sociolinguistics, discourse analysis, contact linguistics, psycholinguistics, computational linguistics, and applied linguistics. Students will complete the module with a solid understanding of the range of topics addressed and approaches used in the study of language.", + "title": "Approaches to Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the systematic analysis of the grammar of modern standard English. We will examine common topics in the phonology, morphology and syntax of the English language. The effect of language contact on English will also be discussed. The module is descriptive in nature. Through examining the grammar of English, students will be exposed to important analytical concepts in corpus and theoretical linguistics.", + "title": "The Grammar of Modern English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will familiarize students with the tools and methodologies of phonetic analysis and how these may be employed in the investigation of the relationship of language and society. The module will focus on acoustic analysis with additional units on articulatory and auditory phonetics, and cover both segmental features (vowels, consonants) and suprasegmental features (intonation, rhythm, voice quality). Students will collaborate on a group research project related to speech in Singapore.", + "title": "Sociophonetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Typology and universals are concerned with how the pieces of languages are put together, what they contain, and how and why they interact and function as they do. Students acquire a broad overview of the grammatical make\u2010up of languages and an understanding of an important approach in contemporary linguistics. Typology contributes to and draws on core areas of linguistics that students have studied.", + "title": "Linguistic Typology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students the opportunity to explore a syntactic phenomenon in great detail. Students will become familiar with the descriptive and empirical problem, examine different theoretical analyses of the syntactic phenomenon under scrutiny within a variety of linguistic frameworks, identify the theoretical consequences of alternative analyses, and engage critically with current debates in the field. Possible topics include, but are not limited to, argument realisation, binding, control, long distance dependencies, periphrastic expressions, etc.", + "title": "Topics in Syntax", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores topics in psycholinguistics such as spoken and visual word recognition, language comprehension, language production, language acquisition, and bilingual language processing. Students will also be exposed to research methods in psycholinguistics and neurolinguistics, including eye-tracking and brain potentials (EEG; Electroencephalography, or ERP; Event-Related Potentials).", + "title": "Advanced Psycholinguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on languages evolving in multilingual settings out of radical contact situations. Commonly referred to as \u201cPidgins\u201d, \u201cCreoles\u201d and \u201cmixed languages\u201d, these languages are spoken mainly in the Caribbean and Asia-Pacific regions. We concentrate on English-lexified contact varieties and investigate the interaction of typological features and sociolinguistic factors determining language change in contact situations. We also discuss the most salient issues within the field of Language Contact such as: \n(i) Creoles as a synchronically viable structural class; \n(ii) restructuring patterns, creolisation and universal patterns of language change; \n(iii) pidgnisation;\n(iv) ideology and classification.", + "title": "Contact Languages", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at graduate students who wish to explore the development of the English language over the past 1,500 years or so, and to see that some features of present-day English can be explained in the light of its history. Students should ideally have some background in grammatical description. Issues that will receive attention include the transformation of a synthetic Old English to a more analytic Modern English; language contact as a force for language change; the standardisation of English; and the spread of English and the New Englishes.", + "title": "History of English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes an empirical approach to linguistic investigation: it bases claims largely on computer-aided analyses of electronic datasets that are either manually built with linguistic purposes in mind or those that are readily found on the Web. With special reference to English, relevant topics will be introduced to suit particular needs; the corpus-linguistic methodology blends well with various linguistic levels, including grammar, lexis and discourse. This module does not assume any expert computing knowledge; while no computer programming will be introduced, participants will receive hands-on training in the use of standard corpus-linguistic programs.", + "title": "Corpus Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5216", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0203", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This interface module deals with some of the ways that linguistics and discourse analysis can be used for the analysis of literature. Among the topics covered are the grammatical features in literary texts, the sounds of poetry, and discourse situations in fictional narrative. This module will be useful for higher-degree students who want to use literature in their study, including those who have to use the language of literature for a more comprehensive examination of a particular area of linguistic research. Higher-degree literature students with a good linguistics background may also consider doing this module.", + "title": "The Linguistic Analysis of Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore approaches to analyzing both written and spoken discourses. Students will learn the analytical tools used to describe features of both modes of discourses. They will be encouraged to explore current research in discourse analysis. There may be a specific focus on particular kinds of discourse (classroom, computer-mediated, media, legal, political, etc.), depending on the expertise and interest of the lecturer. Students will be encouraged to collect and analyse their own data for the assignment.", + "title": "Approaches to Discourse", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The study of variation and change in language employs quantitative statistical methods to account for phenomena in real-world language data. This module familiarises students with the major questions and methodologies of variationist \nresearch in sociolinguistics and corpus linguistics. Students will learn about the stylistic, social, and linguistic factors that influence how language is produced and perceived, and explore how data drawn from speech, texts, social media, and \nexperimental methods are used to investigate variation. This module will prepare students to pursue independent research incorporating quantitative methods.", + "title": "Language Variation and Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to cultivate an understanding both of the relationship between discourse and ideology and of the textual construction of knowledge. Students will be exposed to a critical deconstruction of different kinds of socio-political discourses (including discourses about gender and race, etc.) with specific attention to ideological positionings, and the role ideology plays in the knowledge construction process. Through this module, students will acquire critical skills in reading texts and come to appreciate the different kinds of textual and ideological strategies used in the formation of knowledge.", + "title": "Textual Construction of Knowledge", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the relationships between language, gender and sexuality. Specifically, it explores how gender and sexuality are constructed, performed, constrained and resisted in and through language. The study is undertaken using a critical lens to understand relations of power, investment and ideology for individuals and social groups in particular communities of practice. In the module, students will explore issues of language, gender and sexuality bearing in mind cultural differences, and examine and evaluate research across a range of fields: language and gender, queer linguistics, sociolinguistics, feminist discourse analysis and feminist media and cultural studies.", + "title": "Language, Gender and Sexuality", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores current research in second language writing and encompasses the investigation of both processes and products of writing. The module will examine theories in writing (including L1 theories) and the role theories and models plays in second language writing research. The topics addressed will include the cognitive processes in writing, the distribution of processes on writing performance, individual differences in writing (for examples, self-efficacy beliefs, motivation, and strategies), the methodology and tools researchers use to investigate the processes in writing, and the assessment of written texts.", + "title": "Second Language Writing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5255", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to a range of issues, approaches and working procedures in applied linguistics, partly to familiarize students with relevant research, and more especially to engage students actively in typical processes of enquiry. Applied linguistics has evolved into a dynamically diversified, multi-disciplinary field of academic and professional activity. It is characterized by theoretically and empirically informed initiatives to identify and represent clearly, investigate appropriately, and address pragmatically and critically those issues and problems in human communicative affairs that prominently involve language, language learning or language use.", + "title": "Explorations in Applied Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ELC5270", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 41, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "English for Academic Purposes (Music) 1", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "EM1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G01", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR2", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G02", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR2", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G02", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR2", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR2", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "English for Academic Purposes (Music) 2", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "EM1202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR2", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR2", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G02", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR2", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G02", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR2", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR2", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR2", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Human beings are 'tale-telling animals'. We all tell stories, and we all listen to them, read them and watch them. This module looks at the ways in which people tell stories, the kinds of stories they tell, and the meanings those stories generate. It focuses, in particular, upon the telling, and gives special attention to questions concerned with that. Texts include a novel, a play, films, short stories, poems and oral tales.", + "title": "An Introduction to Literary Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Friday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Greek and Roman classics and the Bible are recognized as having exerted profound influence on the development of Western literature and culture. Familiarity with the classical and Judeo-Christian traditions helps tremendously in enabling appreciation of Western literature and culture. This module introduces students to selected works from these two traditions such as Homer\u2019s Odyssey, Sophocles\u2019 Oedipus the King, and the Book of Genesis and the Gospel of John from the Bible. Through close readings, students become acquainted with the worldview, ideas and motifs in these key works. Some attention will be given to developing writing skills through essay assignments.", + "title": "Backgrounds to Western Literature and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN2201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Critical reading is the essential skill of literary studies. It involves close attention to individual words and phrases, to figures of speech, to the structures of sentences and texts, to literary form and genre, and to historical context. It gives attention to the implicit connotations of language, as well as to its explicit denotations. This module sets out to inculcate in students the skills of critical reading and help them pay attention to and evaluate textual detail. It will be organised as a series of seminars in which students develop and practice skills by reading short texts and\nextracts.", + "title": "Critical Reading", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN2202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module begins with two fundamental questions: How do films work? And, more importantly, how do you write about it? This module trains students to critically engage with and analyze popular film texts. By the end of the module, the student must (i) understand how mise-en-scene, editing, lighting, cinematography, and sound function to create meaning; and (ii) be able to write clearly and knowledgeably about how larger cultural, aesthetic, social, and philosophical contexts shape cinematic production and reception.", + "title": "Introduction to Film Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN2203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Monday", + "lessonType": "Lecture", + "size": 81, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Monday", + "lessonType": "Lecture", + "size": 81, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the literature and culture of late medieval England, with particular attention to Chaucer, the Gawain Poet, Kempe, Langland and Malory. Major topics include: the emergence of 'modern' individualism; the imagining of history and the nation; the construction of gender; and the relation of religious and secular cultures. The module is intended for advanced undergraduate English majors.", + "title": "Late Medieval Literature and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN2205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How has the role of art in the quest for a just society been framed and re-framed in response to radical transformations in 1) ideas about what it means for a society to be \u201cjust\u201d and 2) ideas about what art essentially is? More importantly, how are these two histories of transformation themselves linked? Texts include novels, plays, poems, short stories, and films by authors including Mary Shelley, Charles Dickens, Henrik Ibsen, Bertolt Brecht, Steven Spielberg, Zadie Smith, and Claudia Rankine.", + "title": "Art and Social Justice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN2206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introduction to some of the key concepts and theoretical perspectives in gender, sexuality, and feminist studies. We will examine literature and theory as major sources of feminist knowledge production. The course focuses on developing analytical skills for examining the politics of gender and feminism as expressed in the formal, structural, and thematic elements of both critical and creative texts. With an emphasis on cultivating strong writing practices, it also aims to foster effective strategies for academic research and writing that demonstrate an informed awareness of the wider contextual debates and methodologies in feminist and literary studies.", + "title": "Gender and Sexuality in Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN2207", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As if writing itself were not hard enough, literature modules include highly challenging texts. Putting the problem of writing to the fore, this course develops the student\u2019s ability to write persuasive and elegant essays about ambiguity, subjectivity, figurative language, and so forth. While writing essays of various length, students will learn to develop their analyses and to use various kinds of evidence (including secondary criticism and literary theory) with greater precision.", + "title": "Writing About Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN2275", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As stories are told at a dinner-party, Socrates claims, the \u201conly thing I know is the art of love\u201d. How are the arts of knowledge, er\u00f4s, and story-telling related? From Plato to Freud, love inspires creative thought while putting at risk rational argumentation, conscious will, and the orderly relation of body, self, and society. Dispersed into another\u2019s life-story or incorporated into the body as loss or pain, erotic yearning requires a style of reflection; in turn, reflection is not only disturbed but aroused by feeling. Students will read for the convergence, differences and traffic between literary, philosophical and critical texts.", + "title": "Love's Word: Reading across Literature and Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN2277", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module scrutinizes contemporary British literature with all the issues and problems attending these three terms. What counts as \u201ccontemporary\u201d and what defines it? What is considered to be \u201cBritish\u201d, and how might national literature be understood in terms of its transnational and cosmopolitan exchanges? What do we consider \u201cliterature\u201d or \u201cliterary fiction\u201d today, and what characterizes contemporary style and genre? Through a range of twenty-first century novels and themes, students will have a forum for discussing the most pressing questions occupying contemporary British culture and its political contexts.", + "title": "Twenty-First Century British Fiction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Epic, romance, drama, novel, film, and TV each symbolizes and defines a specific era in Britain, an era that is that form\u2019s own \u201cgolden age.\u201d What is at stake (politically, artistically, and epistemically) in describing, for instance, the 19th century as the \u201cage of the novel\u201d rather than as the \u201cage of drama\u201d? As we examine this epochizing of artforms, we\u2019ll explore transformations in story and pleasure from the Medieval period to the present, and we\u2019ll consider the changing roles of genre and medium in the internet and DH era. Texts include Beowulf, Doctor Faustus, Pride and Prejudice, Great Expectations.", + "title": "From the \u201cAge of Epic\u201d to the \u201cAge of TV\u201d", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3220", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an introductory survey of the period referred to as \u201cthe English Renaissance\u201d (in traditional usage) and as \u201cearly modern England\u201d (in more recent usage). It considers the distinctive features of this period by looking at the different genres and literary forms in currency at the time tragedy, comedy, love lyric, devotional lyric, epic, etc. These genres and forms are then read in relation to their significance for Renaissance/early modern England\u2019s original readership and audience. This is a period of intense conflict, and that conflict is far from over, being still reassessed and played out between differing critical positions.", + "title": "The English Renaissance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the emergence of the British novel as it develops from the early fiction of the late seventeenth century to the Regency novels of Jane Austen. We will read this famously amorphous genre through a variety historical and theoretical lenses, ranging from the rise of empiricism to the reconfiguration of gender roles to the eighteenth-century appetite for news and facts. Finally, we will examine the novel\u2019s experiments with form and its characteristic features in order to understand how these narratives helped to consolidate new notions of the \u201cmodern\u201d individual.", + "title": "The Eighteenth Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will cover selected poetic and prose writings from the Victorian period, an age that witnessed the nineteenth century's most historically important developments. Students will be directed to study literary and other cultural works with the historical context in mind.", + "title": "Nineteenth Century Literature & Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Drawing from all three genres of fiction, drama and poetry, this module presents a survey of anglophone literature in the 20th-century. We explore the writing of this century through two of its most important literary paradigms, namely the literary modernism of the early decades and the postmodern era following WWII. Students will encounter a century characterised by extensive aesthetic innovation, active political engagement and the acute registering of social change. Subjects covered include modernism, postmodernism and issues of art, language and representation. Writers we study may include T. S. Eliot, James Joyce, Harold Pinter, Jeanette Winterson and Virginia Woolf.", + "title": "The Twentieth Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students examine the production of Shakespeare as a cultural phenomenon in three ways: editorial practice; the motives and values at stake in the criticism of Shakespeare; and the reproduction of Shakespeare in contemporary cinematic and electronic media. The course will use different editions of the same text, specific examples of critical texts, film productions and internet web material. The course will focus on the question of evidence in relation to the establishment of the text; textual apparatuses; text vs. performance; constructing meanings; popular circulation and consumption. The module is targeted at students interested in Shakespeare and cultural production.", + "title": "Shakespeare", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will look at 'Romanticism' as it manifests in English and European literature. The set of texts and supplementary readings are intended to provide the student with an introduction to the socio-historical background to the Romantic period and to some of the tropes and ideas that may be said to form the nucleus of the term 'Romanticism'; for example, feeling, liberty, the inner life, the overreacher, revolution, the relationship to the past, the relationship between the city and the country, etc. To complement the texts being taught, the contributions of the other arts (painting, music), will also be discussed.", + "title": "Romanticism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS5-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS5-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS5-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From 1750 to 1800, the number of novels written by women rose, even as women were increasingly confined to the domestic sphere. After the French Revolution, in the 1790s, conservative and reformist women novelists, agreeing that the patriarchal family was England's most important institution, argued that domestic conduct could have serious political implications. But they disagreed sharply about the nature of those implications. In this module, we will read a variety of novels against this historical backdrop, considering the fictional strategies women used to tell stories that were often at odds with the dominant values of their culture.", + "title": "Women Novelists: 1750-1800", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Shakespeare occupies an iconic position in English literature and acquaintance with his plays is expected of the informed reader. This module offers an introduction to a representative range of Shakespeare's works. It approaches them through genre and the informing background of English Renaissance history, culture, and politics. By the end of the module, students will have a good understanding of the major themes of Shakespeare\u2019s plays and the milieu within which he wrote and performed.", + "title": "Shakespeare in His Time and Ours", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines selected texts of 19th century American writing through Reconstruction; it examines typical aspects of American character/imagination, and it trains students to read literary texts closely and to express their understanding of texts both in class discussion and in writing. The module is aimed at undergraduate English majors, but cross-faculty students who enjoy literature are welcome.", + "title": "American Literature I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course concerns 20th century American writing from Reconstruction through present; it examines typical aspects of American character/imagination. The course trains students in the close reading of a variety of literary texts (naturalist, modernist, postmodernist) and a variety of literary forms (poetry, fiction, drama). The course is aimed at undergraduate English literature majors, but cross-faculty students who enjoy literature are welcome.", + "title": "American Literature II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of Asian American literature, with texts chosen from the main genres and across the period of the last half-century or so. It outlines the specific thematic concerns of this literature, but also the assumptions underlying the term \"Asian American literature\" itself. The relationships between society, culture, and text will be foregrounded in our consideration of these concerns. The module is designed for Literature students interested in a visibly emerging area of literary and ideological production within the larger controlling rubric we refer to as \"American literature.\"", + "title": "Asian American Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since its articulation at the turn of the twentieth century, psychoanalysis has claimed a privileged relation to literature. Many of its foundational concepts sprang from Freud's life-long engagement with literature. The 'application' of psychoanalytic concepts to the interpretation of literary works will therefore be an important part of our approach. In applying theory to texts, we will identify and explore the plural and contradictory desires that make up literary discourse in particular, and the production of meaning, generally, just as our selections of literary works will help to exemplify key concepts in the psychoanalytic tradition.", + "title": "Literature and Psychoanalysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introductory survey of the history of the motion picture from its invention up to the present. We will look at the way that the medium has developed as an art and a business. In addition, we will examine a number of different film movements around the world as well as key filmmakers and genres. Lectures and readings will consider film's relationship to society as well as to other cultural forms. This course aims to provide students with a critical perspective on the complex forces that have shaped the motion picture's evolutionary phases.", + "title": "History of Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines the appeal of s/f as a serious fictional engagement with our consensual sense of reality. It addresses fantasy, speculative fiction, and science fiction as forms of narrative engaged in \u201cworld-building\u201d and \u201cword-shaping,\u201d studying such fictional constructs as forms of sociological and anthropological knowledge. It also examines the relation between the \u201cstrange\u201d and the \u201creal\u201d in terms of the shared and the antithetical elements that relate s/f to realism.", + "title": "S/F: Science Fiction and Fantasy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Much of the most memorable literature is concerned with gender-related issues, including religion and gender, social perceptions of gender, the definition and construction of gender roles and, crucially, gender and the formation, nature and expression of identity. This module explores some of the different ways in which literature written by both men and women writers not only explores the dilemmas that come with relationship, but also problematizes notions of gender. It focuses on the variety of ways in which gender-related issues determine not only the motivation and course of personal interaction, but also narrative structure and concern.", + "title": "Gender and Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to introduce students to central concepts in feminism, and apply these to the analysis of literary texts, to arrive at an understanding of gender dichotomies that influence the writing and reading of texts. A range of feminist texts, from Virginia Woolf, Simone De Beauvoir, Kate Millett etc, to contemporary feminist critics, will be explored. These theoretical concepts will be used to analyse texts from different genres including short stories, plays, novels, visual texts etc. Students will be expected to engage with feminism as both an ideology and a literary tool of analysis.", + "title": "Feminism: Text & Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus specifically on the relation between contemporary poetry and painting. It will provide students an opportunity to develop a systematic understanding of the relation between poetic language and the visual medium of painting. The general component will provide a methodology for the analysis of the relation between the two arts, and the practical component will entail a detailed study of representative poems directly inspired by specific paintings. Examples of poetry will be confined to the contemporary period and the English language. The module will provide opportunity for students to undertake a small research project which will explore the relation between poetry and painting in non-Anglophone cultures, using translated texts.", + "title": "Literature and the other Arts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module considers the theoretical postulates underwriting such different \"movements\" as modernism, structuralism, post-structuralism, reader-response criticism, feminism, psychoanalytic criticism, Marxism, and new historicism. Focusing on position papers representing some of the defining features of these various critical currents, discussion centers on three primary items: author, text, and reader. Key topics: How are texts read? What is the nature of authorial authority? How are meanings constructed and created? What is the role of the reader in the reading process? Students will read elusive but influential literary and social theorists such as Derrida, Lacan, Foucault, and others. Target students: English Literature majors.", + "title": "Introduction to Critical Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Genre consideration is important to film studies. It enables us to assess the ways in which a director works with or deviates from conventional audience expectations, to consider how a particular film is distinctive from other films whose generic features it reiterates, etc. This module focuses on the \u201chorror genre\u201d to introduce students to the significance of genre analysis in film studies. Invoking this specific genre, students analyze (a) the relationship between film and popular culture; (b) academic debates around the production, meaning, experience, and consumption of \u201ctexts\u201d; and (c) film\u2019s commentary on issues of identity, ideology, gender, and sexuality.", + "title": "Reading the Horror Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an introduction to the study of art, film and media culture. It explores the changing role of visual media across the centuries, from pre\u2010modern societies through to today\u2019s digital, networked cultures. How have technological and economic changes generated new visual media? How have these media in turn shaped social and economic life? A range of case studies will be drawn from art history, film, popular culture and online media. What are the differences between art, film and other visual culture, and are these differences still relevant in the \u2018convergent\u2019 world of digital media culture?", + "title": "Introduction to Visual Culture: Art, Film and Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the interrelations between philosophy and literature in English (or in translation) from Plato to seventeenth-century natural philosophy to the modernist context. We will read a variety of philosophical and literary works, paying special attention to how philosophical ideas are articulated and interrogated in narrative. Even more specifically, we will analyse how philosophical ideals behave in literary contexts and how these ideals filter into the lives of ordinary people (including critics, authors, and literary characters). We will also spend some time investigating how \u2018literature\u2019 and \u2018philosophy\u2019 evolved as separate yet related disciplines.", + "title": "Literature and Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module traces the development of how we have come to our contemporary \u201caffective turn.\u201d We will begin with where the question of affects supposedly begun: Spinoza. We will then read how Deleuze underscored its importance, and how that has been carried through politically by Brian Massumi today. At the same time, we will be equally invested in Eve Sedgwick\u2019s development of affect for feminist and queer theory in Berlant, Cvetkovich, Love, Edelman, Stewart, Nelson, and others. Finally, we will explore how affect theory affects literary studies with a reading of Ottessa Moshfegh\u2019s My Year of Rest and Relaxation.", + "title": "The Genealogy of Affect Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is \u201cthe contemporary\u201d? How has contemporary literature since the turn of the twenty-first century engaged with some of the most pressing social, political, and cultural concerns of the current moment? This module takes the experience and representation of time as its central analytic for examining these questions. Through a range of novels written since the turn of the twenty-first century, the module aims to introduce students to the emergent social, political, and cultural concerns currently occupying the contemporary imagination.", + "title": "Strange Times: Issues in Contemporary Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary module explores experimental intersections between visual art and literature, in non-Western contexts. Lectures and readings will draw on the history and theory of both fields. Starting from the contested frame of a \u2018global modernism\u2019, the module addresses tensions between cultural nationalism and internationalism, modernity and tradition, realism and abstraction, through the progressive and cosmopolitan visions of artists and writers. What is at stake for Asian intellectuals at the boundaries between art forms? A range of case studies will encompass both literary treatments of images, and visual treatments of the written word in e.g., concretism, conceptualism, translation and adaptation.", + "title": "Worldly Words: Written Image and Visual Text", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3254", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores a selection of generally short, popular, and major European literary works which work with the legacy of Romanticism, Realism, and Modernism in the new context of post-World War Two Europe and the rise of the European Union; several texts are by Nobel Prize winners, and all are acknowledged as \u201ccontemporary classics.\u201d Various genres are represented, and the module takes a relatively wide sweep across Europe. In addition, filmed versions of the texts are considered where appropriate and available. The module therefore will explore texts both in their own right and as representative examples of major tendencies and developments of an essentially European tradition.", + "title": "European Literature I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to interactions between postcolonial literatures and \u201cpostmodern\u201d writing strategies. It proceeds through a series of case-studies attentive to how specific texts represent complex interactions in the global literature of the later half of the twentieth century between the influence of and reactions to colonialism in the field of political history and modernism in the field of literature and the arts. In addition to a close reading of representative texts, the module will also provide an opportunity for an assessment of the\n\nsignificance of \u201cpostcolonial\u201d and \u201cpostmodern\u201d to contemporary societies and cultures.", + "title": "Postcolonial/Postmodern Writing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3262", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using selected Singapore texts from a variety of different genres, this module aims to enable students to explore the historical roots and contemporary relevance of literary production in Singapore. Beginning with colonial writing, the module moves through considerations of national and postcolonial literatures to contemporary concerns. Given Singapore's history, the notion of a \"Singapore\" text will be used creatively in order to reflect upon the growth of Singaporean identity and culture, and literary texts from other countries in the region may be used for comparative purposes.", + "title": "Singapore Literature in Context", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3263", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an intensive introduction to key topics in post\u2010colonial theory through an overview of representative literary and theoretical texts. The syllabus demonstrates the vexed significance of the \u201cpost\u201d in post\u2010colonial cultural traditions. In tracing how decolonization remains bound up with older, colonial forms of knowledge/power, we approach post\u2010coloniality as an aftermath. Through a range of writerly forms and cultural media, we identify the post\u2010colonial in the question of \u201ctradition\u201d and its centrality to \u201cnon\u2010Western\u201d modernity; in inscriptions of race/ethnicity/sexuality into Third World humanism; as the mourning for a vanishing past; as aesthetic resistance to homogenizing processes of modernization.", + "title": "In Other Wor(l)ds: Post \u2010colonial Theory & Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the face of increasing secularism in many aspects of society, Christianity and the Bible continue to exert a significant influence on cultural production in many parts of the world. This module examines the influence of Christianity on literature and popular culture, paying particular attention to the way in which key Christian tropes (redemption, atoning sacrifice, eschatology) interact with broader social values such as materialism, liberal individualism, and social Darwinism).", + "title": "Christianity and Contemporary Literature/Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3266", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module, intended for advanced undergraduate students, is meant to provide a survey introduction to Modern European drama from the late 19th C. to the present. The plays chosen reflect dramaturgical and theatrical reflections on the modern, on class and gender relations (and breakdowns) and form part of a tradition of innovation in which later drama is formed, partially at least, in response to earlier.", + "title": "Modern Drama", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Tragedy is one of the oldest and most powerful forms of writing in the Western cultural tradition. This module will offer students the opportunity for a historical, analytic and comparative perspective on tragedy as a literary genre through a chronological approach to key texts from the Classical through the Renaissance and Neo-classical periods to the twentieth century.", + "title": "Tragedy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces student to the contextual study of texts from Singapore, Malaysia and the Philippines and other parts of Southeast Asia. Topics discussed include the possibilities and problematics of a regional literary canon, and the manner in which literary texts from the region negotiate with the societies in which they are written and read. We will study these texts representations of and responses to processes such as colonialism, cosmopolitanism, nationalism, diaspora and uneven global modernities, as well as the manner in which they deal with cultural identity, gender, and sexuality within the context of social imaginaries in the region.", + "title": "Southeast Asian Literatures in English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module offers an introduction to the study of literature in an age where the increasing importance of film, television, and the internet has led to far-reaching changes in humanities disciplines and a broadening of the field of literary studies. Students will study critical texts in literary and media theory, which will give them the means to develop informed and critical readings in literature, media, and culture. The module in this way also provides an introduction to contemporary critical theory. Each week, students will study chapters introducing them to a given critical discourse (e.g., Psychoanalysis) and its application.", + "title": "Literature, Media and Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3276", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3551R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in English Literature. The topic to be covered will depend on the interest and expertise of regular or visiting staff member in the department.", + "title": "Topics in English Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an overview of the history of non-Western films. It explores how these films have responded to the social, economic, political, and cultural transformations in non-Western worlds such as Asia, Latin America, and Africa from the postcolonial era up to the present. Students will have opportunities to understand key non-Western film movements and filmmakers, as well as concepts, issues, and approaches relevant to non-Western cinemas. This module will give students a clear sense of the historical significance of non-Western films overlooked by the Anglo-Eurocentric film historiography. All the films will be screened in original languages with English subtitles.", + "title": "History of Non-Western Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With particular focus on the works of Julian Barnes, JM Coetzee, William Boyd, and Don DeLillo, this module explores how these contemporary novelists get around the problem of the \u201cdeath of the author,\u201d surpassing even reader-response theory, and transforming narratives into a question of what we will call \u201creader responsibility.\u201d Through analyses of DeLillo\u2019s Cosmopolis, Barnes\u2019s Sense of an Ending, Coetzee\u2019s Childhood of Jesus, and Boyd\u2019s Any Human Heart, this module examines how these novelists effectively make readers complicit with narrative developments.", + "title": "Reader-Responsibility", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is interested in the recent turn to writing about illnesses \u2013 both physical and mental \u2013 in contemporary literature. It will examine how different styles or modes of narration have been deployed to contend or cope with illnesses. It will also look into how these narratives reflect the problematics of identity, subjectivity, ontology, existence, and community that illness brings with it. Writers read may include Woolf, Lorde, Sontag, Sedgwick, Cvetkovich, and Boyer.", + "title": "Sick Lit: Illness in Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN3880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module uses major dramatic texts to examine the topic of performance in Elizabethan/Jacobean literature and culture, both of which are marked by a pervasive theatricalization of authority, social categories, and personal identity. Significantly, the culture was also shaped by a theology that identified performance with evil. The module aims to provide students with an understanding of the culture of the period as well as a survey of its drama. The module is designed for advanced undergraduate English majors, preferably those who have taken at least one other module in English literature before 1700.", + "title": "Topics in the Seventeenth Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the broader significance and implications of new tendencies that arose in the eighteenth century, and the ways in which they herald the concerns of the modern world. Part one explores the tension between religion, science, and philosophy in the prose and poetry of the early eighteenth century, and the impact that new ways of conceiving the world had on social, cultural, intellectual and religious thinking. Part two explores the tension between tradition and individual expression in the poetry and painting of the second half of the century, and the variety of ways in which they reveal a", + "title": "Topics in the Eighteenth Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an in\u2010depth examination of a specific topic related to nineteenth\u2010century British literature and culture.\u00a0Students will practise critical reading and writing skills by studying nineteenth\u2010century texts in their historical context. This module may focus on one of the following topics: imperialism; labour and industrialisation; gender, sexuality, and desire; race and geopolitics; art and aesthetics; media and print culture; science and religion; or related terms and issues.", + "title": "Topics in the Nineteenth Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides students with knowledge of modernist texts, which they will analyse for their aesthetic, political and ideological strategies. Students will examine modernism as both a reaction to and a constituent part of modernity and will produce informed critical arguments about the historical, economic and technological developments that constitute modernity. Lectures will examine relationships that existed between literature and other cultural forms, like painting, architecture, music, and contemporary intellectual movements such as existential philosophy and psychoanalytic theory. The module is targeted at students interested in modern literature, art and thought, with at least 28 MCs in literature.", + "title": "Topics in the Twentieth Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will read seven lively novels by major nineteenth\u2010century women writers and discuss how women writers contributed to the development of the classic realist novel and the gothic novel. Thematic foci include contemporary views of gender, especially the ideologies of \u201cseparate spheres\u201d and \u201cthe angel in the house\u201d; colonialism and industrialization; social class; and religious agitation and religious doubt. The class will also read and evaluate a few important critical articles concerning the women\u2019s tradition in the English novel.", + "title": "English Women Novelists 1800\u20101900", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module, which is aimed at upper level English Literature majors and cross-faculty students who have some experience with literary analysis, will focus on American literary orientalism in order to continue to examine questions of race, gender, ethnicity and literary form in the (mainly postwar) American imaginary.", + "title": "Topics in American Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4232", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on select topics within American culture as a means of exploring aspects of American history, national identity and social formation. Documents drawn from a variety of media and across discourses will be examined.", + "title": "Topics in American Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the poetics of information in post-industrial society. The novels of Thomas Pynchon will be read as a critical meta-narrative of the informational turn in Western societies since the 1960s. Besides its obvious technological and economic effects, how has the new informational paradigm affected our psychology, everyday life and work; our understandings of place and community, of history and culture? The seminars will explore key themes of Pynchon\u2019s oeuvre \u2013 such as alienation, entropy and paranoia \u2013 drawing on a wide range of critical theory, cultural history, and critiques of globalisation and technology.", + "title": "Pynchon and the Poetics of Information", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the s/f sub-genre of utopias and dystopias in fictional literature. It will address the following questions What is the appeal of imaginative utopias and dystopias? What is the relation of these fictions to the world of contemporary reality? To alternative ways of conceiving life, experience, or reality? To traditional history? To alternative futures? To projections of, and apprehensions about human society? How does the imaginative construction of dystopias, in particular, address the constantly changing relation of science and technology to human life as we know it, to the human individual, to human society, and to the many institutions and notions, from gender and sexuality to race, family, nation, religion and species through which the relation of the individual to the group is mediated in time and place? Dystopian and Utopian fiction will be studied as imaginative constructions of extrapolations from current technology and science, or as possible worlds with alternative selves, life-forms, ecosystems, or histories.", + "title": "Utopias and Dystopias", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module trains students in the reading and analysis of influential texts in critical theory, as the basis for examining the production and historical grounds of textual meaning. This survey course provides a comprehensive understanding of major critical theories of the twentieth century post-structuralism and discourse-analysis, psychoanalysis, twentieth-century Marxism, and post-colonial studies. Close readings of Foucault, Lacan and Adorno in particular, will equip students to engage in wide-ranging and sometimes complex debates about critical approaches to the study of cultural meaning, its production and interpretation. The module targets students with interests in critical questions.", + "title": "Modern Critical Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4242", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cultural Studies seeks out provocative juxtapositions and surprising connections between apparently disparate phenomena, such as entertainment and global economics, personal and private domains, identity formation and desire, military strategy/technology and aesthetics. It conducts a critical inquiry into the formation of daily existence through the examination of discursive practices, ideologies, technology and/or mass media. The module provides a means for exploring in depth the work of one or more Cultural Studies theorists while contextualizing these inquiries in more specific intellectual domains and exploring, critically, the possibilities provided by these critical interventions.", + "title": "Topics in Cultural Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of film theories as they have been developed from the early days of cinema up to the present. The module aims to enable students to understand key theoretical concepts and approaches, as well as to give students a clear sense of how certain theoretical perspectives are compared to others. Students will also be able to consider how film theories have been elaborated in dialogue with critical theory paradigms such as phenomenology, existentialism, psychoanalysis, semiotics, feminism, postcolonialism, poststructuralism, and postmodernism.", + "title": "Film Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended to function as a survey of detective fiction as a genre with a transhistorical framework, spanning work from the 1860s to the\npresent. Topics covered will include: the historical conditions influencing the rise of detective fiction as a genre; the epistemological and sociological issues which inform our readings and our own desire as readers to uncover the mysterious; how the detective figure relates to the literary critic and the philosopher; the division between public/private spheres; the formal and thematic shifts in the genre and its pre-modern, modern and postmodern manifestations.", + "title": "Disclosure, Discovery and Detec/xtive Fiction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks a critical understanding of the term \u201cautotheory\u201d (The Argonauts, 2015). It asks: What does the \u201cauto\u201d in the term imply? Does it signal a\nregression to the Self/Subject as already critiqued by theory in the 1980s? Or is it a reflection of a narcissism made possible today by social media apparatuses? Or\nelse, does it pave the way for a new \u201ccare for the self\u201d (Foucault)? And how does it influence our readings of contemporary autofiction, and vice versa? Writers\nread in this module include Maggie Nelson, Paul Preciado, Yiyun Li, Rachel Cusk, and Ottessa Moshfegh.", + "title": "Autotheory and Contemporary Autofiction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the work of one of most celebrated Anglo-Irish writers of the eighteenth century: Jonathan Swift. By tracking Swift\u2019s dazzling literary output from 1690 to 1740, we will bring into better focus both the eighteenth century as a historical period and the ideas of historicity and modernity themselves. We will investigate a variety of literary modes, from satire to pamphlet polemics to the early novel, while we will also learn about the development of our own discipline by tracing Swift criticism from its inception to the present day and by entertaining a variety of critical perspectives.", + "title": "Jonathan Swift", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the \"nouveau roman,\" a term applied to a sub-genre of twentieth-century fiction, which consciously and self-consciously interrogates, problematizes and plays with traditional conventions and premises of the novel. These include characterization, plot, chronology, narrative authority, author-reader reciprocity and language as agent of meaning and communication.", + "title": "Metafictions and the Novel", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will read Indian Anglophone literary texts in the context of global capitalism and transnational movements and flows. It examines the construction of imaginary homelands, the cultural politics of that homeland and its (re)negotiation in the larger world, the politics of gender, sexuality and the body, and religious and other cultural identities. The trope of \"(dis)possessions\" provides theoretical leverage into and focus on material influences, the trope of the hauntings of cultural memory, the perceived \"contaminations\" of culture, disciplines of the body, and related themes.", + "title": "Writing Global India: (Dis)Possessions of Capitalism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4262", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module, whose specific content may change from time to time within the following guidelines, presents an interdisciplinary approach, but one grounded in the literary, to a topic in European literature, especially but not exclusively from the Romantic, Modernist or Contemporary periods. Always comparative (across two nations at least), it considers aspects of a period, a movement, a thematic issue or a combination of all these. Texts are chosen not only for their intrinsic merits but for their complementarity to the English Literature curriculum in general, and, as a module crosslisted with European Studies, to that programme also.", + "title": "Topics in European Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4263", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will look at the work of modern poets (Modernism and after) focussing mainly on their poetry, but, where relevant, on their critical essays and work in other genres (e.g. drama) which adds to an understanding of their poetic work. The major topics covered will include the modern condition, the relation to history and myth, modern poetics, the urban and natural worlds and war. Other topics may be considered, depending on the selection of poets in any particular academic year.", + "title": "Modern Poetry", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4264", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The new millennium has witnessed a return to realism in literature, criticism, and popular culture. Our taste for realism extends from the television reality-show, dramas like The Wire, to novels that seek to describe the impact of world markets on lived reality by mapping this system onto the traditional realist narrative. These developments suggest that canonical modernisms of the early twentieth-century prescribed, and so constrained, critical approaches to literatures of the postcolony. Focusing on the resurgent value of postcolonial realism for our current globalist conjuncture, the module entertains theoretical exchanges between World Literature, Postcolonial Studies, and the Frankfurt School\u2019s Marxism.", + "title": "Approaches to World Literature: Critical Realism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4265", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce a selection of texts across genres from South Asia along with a complementary set of Critical Readings that students will need to apply to the reading of primary texts. The texts will be approached as reflecting conflicts of neo/colonialisms and the complications of modernities, as grappling with issues of gendered and racialized identities; as explorations of issues relating to the underside of globalisation. Students should gain a fairly in-depth knowledge of leading literary works from South Asia. They will also need to produce a final term paper that will potentially be expandable to an Honours thesis.", + "title": "South Asian Literatures in English", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4266", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Literary Studies has prided itself on constantly being in flux in the postmodern era as a sign that it responds to ideological and social changes. The most pressing contemporary issue that affects all of humanity is the global environmental crisis. In keeping with its revisionist energies, one important field of literary study that has opened up over the past two decades is ecocriticism, which explores the connections between literature and the environment. Ecocriticism critiques anthropocentrism and offers a radical revaluation of human relationship with the non-human \u2018other\u2019.", + "title": "Literature and Ecology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces some key texts of the major theorists (Casanova, Damrosch, Moretti, Apter, etc.) of World Literature today. This is to enable students to better approach World Literature in the 21st century. In that respect, we will also touch on some methodologies that are rather unique to World Literature research. We will then bring these theoretical and methodological aspects, along with other thematic issues pertinent to World Literature (particularly the question of citizenship), to bear in our readings of writers including Mohsin Hamid, Ocean Vuong, and Han Kang.", + "title": "World Literature: Theories, Methods, Texts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As part of the preparation for writing research papers or Honours Theses, this module aims to help students understand the interpretative strategies, modes of argumentation, criteria for evaluating claims, analyses and theories, as well as expectations and conventions governing research in diverse areas of literary studies. The major topics will include research areas and questions; research claims; interpretative methods; evidence and argumentation; critical evaluation of academic argument; and rhetorical conventions and strategies.", + "title": "Research Workshop", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Honours Thesis is usually done in the final semester of a student's pursuing an Honours degree.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "EN4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in English Literature. The topic to be covered will depend on the interest and expertise of regular or visiting staff member in the department.", + "title": "Topics in English Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the twinned ideas of usurpation and transgression in English Renaissance literature, analyzing the attempt to cross boundaries that define the norm in the polity and in moral, religious, and sexual spheres. We will look at how hierarchies established by religion, government, and custom seek to maintain and to justify the status quo. We will ask how literary texts register\nawareness of, and enter into dialogue with, these hierarchies. Different genres such as the play, the love lyric, the devotional lyric, and the epic will be invoked for our analysis of the cultural preoccupation with usurpation and transgression.", + "title": "Usurpation and Authority, 1558-1674", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Short stories are often read but are critically neglected, seen as apprentice work by literary historians for the larger achievement of the novel. This module considers\nthe short story as a uniquely mobile modern genre, circulated globally through magazine and newspaper publication and translation. Students will explore the formal and contextual elements of stories from a variety of historical moments and geographical locations, and the manner in which they engage with the political and social transformations that constitute global modernity.", + "title": "The Short Story as a Global Form", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN4880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An ideological approach to literature is one that reads not only the primary literature--it also reads the way we read literature. An incisive statement about the necessity of such critical self-consciousness is Fredric Jameson's \"Metacommentary,\" and this essay will guide our reflections on the study of the interrelations between primary literature, criticism and reviews, and tertiary critical engagements with the issues that arise when readers become increasingly self-conscious about the values in play during any act of reading. This matter can be approached from a number of angles, and on its first run the course will concern American literary orientalism in the postwar period.", + "title": "Ideological Approaches to Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An ideological approach to literature is one that reads not only the primary literature--it also reads the way we read literature. An incisive statement about the necessity of such critical self-consciousness is Fredric Jameson's \"Metacommentary,\" and this essay will guide our reflections on the study of the interrelations between primary literature, criticism and reviews, and tertiary critical engagements with the issues that arise when readers become increasingly self-conscious about the values in play during any act of reading. This matter can be approached from a number of angles, and on its first run the course will concern American literary orientalism in the postwar period.", + "title": "Ideological Approaches to Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5232R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "EN5235 is a focused examination of the various senses of \"political literature\". One may say \"all literature is ideological\", but this course raises doubts that \"everything is political\" in a significant way. This course examines the differences between \"ideology\" and \"politics\" in relation to literature. The course considers works that challenge conventional distinctions such as that between \"propaganda\" and \"literature\". Students will test definitions of \"the political\" on a variety of texts.", + "title": "Politics and Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "EN5235 is a focused examination of the various senses of \"political literature\". One may say \"all literature is ideological\", but this course raises doubts that \"everything is political\" in a significant way. This course examines the differences between \"ideology\" and \"politics\" in relation to literature. The course considers works that challenge conventional distinctions such as that between \"propaganda\" and \"literature\". Students will test definitions of \"the political\" on a variety of texts.", + "title": "Politics and Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5235R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module invites students to think across cultures about the literature of Asian peoples in the English-speaking world. Examining literature produced by and about Asians living in Britain, Australia, North America, Africa, and the Caribbean, it probes the similarities and differences in the experience of migration as understood by different Asian groups, as well as by members of the same ethnicity inhabiting different regions. The course traces changes in mainstream attitudes towards Asian immigrants from racist demonizations to model minorities and their effect on literary production. Texts will be complemented by readings in Asian and Asian American Studies and postcolonial theory.", + "title": "The Literature of the Asian Diaspora", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module invites students to think across cultures about the literature of Asian peoples in the English-speaking world. Examining literature produced by and about Asians living in Britain, Australia, North America, Africa, and the Caribbean, it probes the similarities and differences in the experience of migration as understood by different Asian groups, as well as by members of the same ethnicity inhabiting different regions. The course traces changes in mainstream attitudes towards Asian immigrants from racist demonizations to model minorities and their effect on literary production. Texts will be complemented by readings in Asian and Asian American Studies and postcolonial theory.", + "title": "The Literature of the Asian Diaspora", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5236R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores 20th\u2010century British and American literary production, with a focus on the first half of the century. It will examine the writings of key modernist authors of the early decades (such as T. S. Eliot, James Joyce and Virginia Woolf) even as it will also survey other literary and artistic activities in this period. The latter may include the avant\u2010garde movements (such as Dadaism and Surrealism), the Harlem Renaissance, and cinema. Besides the above writers, others to be studied may include Andre Breton, Samuel Beckett, F. Scott Fitzgerald, Gertrude Stein and Wallace Stevens.", + "title": "Twentieth Century Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores 20th\u2010century British and American literary production, with a focus on the first half of the century. It will examine the writings of key modernist authors of the early decades (such as T. S. Eliot, James Joyce and Virginia Woolf) even as it will also survey other literary and artistic activities in this period. The latter may include the avant\u2010garde movements (such as Dadaism and Surrealism), the Harlem Renaissance, and cinema. Besides the above writers, others to be studied may include Andre Breton, Samuel Beckett, F. Scott Fitzgerald, Gertrude Stein and Wallace Stevens.", + "title": "Twentieth Century Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5238R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From early modern England up into the eighteenth century, English literature registers distinctively a deep fascination with worlds both old and new: Egypt, Africa, China, and India are some examples. In reading critically how different authors in this historical timeline represent old and new worlds in their literary production, this module seeks to analyze the formation of cultural perceptions relating to such topics as (a) the emergence of a colonial and imperial consciousness; (b) the apprehension of cultural difference; (c) the crystallization of national identity. It offers opportunity for considering the engagements of literature with certain momentous social, historical, and political realities, such as the slave trade and the activities of the British East India Company.", + "title": "Literature and New Worlds: 1590-1750", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From early modern England up into the eighteenth century, English literature registers distinctively a deep fascination with worlds both old and new: Egypt, Africa, China, and India are some examples. In reading critically how different authors in this historical timeline represent old and new worlds in their literary production, this module seeks to analyze the formation of cultural perceptions relating to such topics as (a) the emergence of a colonial and imperial consciousness; (b) the apprehension of cultural difference; (c) the crystallization of national identity. It offers opportunity for considering the engagements of literature with certain momentous social, historical, and political realities, such as the slave trade and the activities of the British East India Company", + "title": "Literature and New Worlds: 1590-1750", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5241R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module are to invite students to reflect on and analyse texts by great women novelists. Topics covered include the choice of genre, the relation between narrative structures and psychological experience and their political implications, the nature of the dilemmas at the heart of each text, and the problems of defining and responding to what is specific to women\u2019s writing.", + "title": "Women Novelists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module are to invite students to reflect on and analyse texts by great women novelists. Topics covered include the choice of genre, the relation between narrative structures and psychological experience and their political implications, the nature of the dilemmas at the heart of each text, and the problems of defining and responding to what is specific to women\u2019s writing.", + "title": "Women Novelists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5242R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module examines the role of criticism in the crucial period that had seen it evolve into a social institution: the long eighteenth century. It goes beyond tracing the early history of a critic-function to explore its relation to the emerging public sphere of civil society in which the so-called 'reading revolution' had taken place. Selected writings on two key literary figures, Shakespeare and Milton, are examined for the underlying discursive framework granting a critic powers to examine taste and virtue, forge a literary canon, and locate state-culture connections.", + "title": "The Birth of the Critic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines the role of criticism in the crucial period that had seen it evolve into a social institution: the long eighteenth century. It goes beyond tracing the early history of a critic-function to explore its relation to the emerging public sphere of civil society in which the so-called \u2018reading revolution\u2019 had taken place. Selected writings on two key literary figures, Shakespeare and Milton, are examined for the underlying discursive framework granting a critic powers to examine taste and virtue, forge a literary canon, and locate state-culture connections.", + "title": "The Birth of the Critic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5243R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module approaches Shakespeare's plays by considering not only genre and theme, but also their relationship to the development of literary history, including critical theory. The Shakespearean corpus has led to a multitude of critical possibilities, such that the text has lent support for materialism or deconstruction, for patriarchy or feminism, for the secure clich\u00e9s of the so-called Elizabethan world picture or for their subversion and dissolution. Given the open-endedness of these critical possibilities, what does engaging with Shakespeare reveal about the relationship between text and context, between literary production and particular historical conditions, and the very making of meaning itself?", + "title": "Shakespeare and Literary Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module approaches Shakespeare's plays by considering not only genre and theme, but also their relationship to the development of literary history, including critical theory. The Shakespearean corpus has led to a multitude of critical possibilities, such that the text has lent support for materialism or deconstruction, for patriarchy or feminism, for the secure clich\u00e9s of the so-called Elizabethan world picture or for their subversion and dissolution. Given the open-endedness of these critical possibilities, what does engaging with Shakespeare reveal about the relationship between text and context, between literary production and particular historical conditions, and the very making of meaning itself?", + "title": "Shakespeare and Literary Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5244R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will train students to read nineteenth and\ntwentieth-century British Literature texts, focusing on\ngothic novels and their treatment of authority, place and\nidentity. Existing scholarship focuses on the fragmentary\nand proto-postmodern qualities of gothic narrative and the\nissue of sites, especially cities and manor houses. This\nmodule builds on such scholarship, connecting these\nperspectives to related themes of property, commodity\nculture, authority/policing, transnational flows, the body as\na nexus of many of these flows, and the implications of\nthese for identity in a modern age. The module will also\nmake connections between these concerns and the larger\nissues of fissures and dislocations in identity and society in\na transnational age.", + "title": "Gothic Properties", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will train students to read nineteenth and twentieth-century British Literature texts, focusing on gothic novels and their treatment of authority, place and identity. Existing scholarship focuses on the fragmentary and proto-postmodern qualities of gothic narrative and the issue of sites, especially cities and manor houses. This module builds on such scholarship, connecting these perspectives to related themes of property, commodity culture, authority/ policing, transnational flows, the body as a nexus of many of these flows, and the implications of these for identity in a modern age. The module will also make connections between these concerns and the larger issues of fissures and dislocations in identity and society in a transnational age.", + "title": "Gothic Properties", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5245R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will examine Victorian literature with \nan emphasis on its historical, political, and cultural context. Topics addressed may include significant literary genres and movements (e.g. The Industrial Novel, Aestheticism and Decadence), major authors (e.g. George Eliot, Oscar Wilde), or broader thematic explorations of the diverse literary productions of nineteenth-century Britain (e.g. Gender and Sexuality in the Nineteenth Century, Imperialism and Victorian Writing). This module will also familiarize students with contemporary critical approaches to the study of Victorian literature and culture.", + "title": "Victorian Literature: History, Politics, Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will examine Victorian literature with an emphasis on its historical, political, and cultural context. Topics addressed may include significant literary genres and movements (e.g. The Industrial Novel, Aestheticism and Decadence), major authors (e.g. George Eliot, Oscar Wilde), or broader thematic explorations of the diverse literary productions of nineteenth-century Britain (e.g. Gender and Sexuality in the Nineteenth Century, Imperialism and Victorian Writing). This module will also familiarise students with contemporary critical approaches to the study of Victorian literature and culture.", + "title": "Victorian Literature: History, Politics, Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5247R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From Shakespeare\u2019s Shylock to Kafka\u2019s Gregor Samsa, Lu Xun\u2019s Ah-Q and Sinha\u2019s Animal, it could be said that \u201crejects\u201d abound in literature. This module is an inquiry into the affective forces of such literary rejects, such as their ability to generate empathy within both readers and other textual characters, or to elicit from the latter a sense of \u201cpoetic\u201d justice beyond existing juridicial norms, as well as how they complicate the literary \u201cI\u201d or subject. Texts read in the module will include Shakespeare\u2019s Merchant of Venice, Kafka\u2019s \u201cMetamorphosis,\u201d Lu Xun\u2019s \u201cThe Real Story of Ah-Q,\u201d and Indra Sinha\u2019s Animal People.", + "title": "Literary Rejects", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From Shakespeare\u2019s Shylock to Kafka\u2019s Gregor Samsa, Lu Xun\u2019s Ah-Q and Sinha\u2019s Animal, it could be said that \u201crejects\u201d abound in literature. This module is an inquiry into the affective forces of such literary rejects, such as their ability to generate empathy within both readers and other textual characters, or to elicit from the latter a sense of \u201cpoetic\u201d justice beyond existing juridicial norms, as well as how they complicate the literary \u201cI\u201d or subject. Texts read in the module will include Shakespeare\u2019s Merchant of Venice, Kafka\u2019s \u201cMetamorphosis,\u201d Lu Xun\u2019s \u201cThe Real Story of Ah-Q,\u201d and Indra Sinha\u2019s Animal People.", + "title": "Literary Rejects", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5248R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module, specifically designed for MA by Coursework students, prepares them for a Masters in Literary Studies through a two-pronged approach: First, to obtain a general overview of the discipline in order to approach the field with a better understanding of its academic demands. Through gradual but consistent exposure to articles on various critical approaches and research methods, students will gain an understanding of broad theoretical perspectives. Next, through extensive practice: working through several short writing assignments, revising and \nresubmitting these through the course of the semester, students' comprehension about disciplinary practices and about field-specific academic writing, will increase substantially.", + "title": "Literary Studies: Overview and Writing Practices", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module, specifically designed for MA by Coursework students, prepares them for a Masters in Literary Studies through a two-pronged approach: First, to obtain a general overview of the discipline in order to approach the field with a better understanding of its academic demands. Through gradual but consistent exposure to articles on various critical approaches and research methods, students will gain an understanding of broad theoretical perspectives. Next, through extensive practice: working through several short writing assignments, revising and \nresubmitting these through the course of the semester, students' comprehension about disciplinary practices and about field-specific academic writing, will increase substantially.", + "title": "Literary Studies: Overview and Writing Practices", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5249R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course involves a critical interrogation of key theoretical approaches addressing the study of film spectatorship and the ways in which subjectivity is constructed. This module adopts a specialised emphasis on that tradition of film theory associated with a psychoanalytical-textual-apparatus model and offers graduate students an opportunity to engage in in-depth explorations of the key problems and issues associated with this branch of film theory. In examining the highly complex interaction between spectator and text, students will also gain a greater understanding of the ways in which issues such as gender, identity, and ideology intersect with the cinematic/visual text.", + "title": "Movies, Spectatorship and Subjectivity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Movies, Spectatorship and Subjectivity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5252R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module addresses issues of historical trauma and cultural memory; through a focus on how such memory is manifested in aesthetic (primarily literary) representation. The module assumes a dual approach to the study of selected texts, requiring attention to the topic of violence and memory on the one hand; and the ethics and politics of representation on the other. Literary texts will illuminate problems of narrative agency, responsibility and testimony in the aftermath of a violent past. The conceptual framework of discussions derive from Maurice Blanchot and his influence on post-structuralism, and from contemporary uses of psychoanalysis by literary theorists.", + "title": "Writing in the Aftermath", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module addresses issues of historical trauma and cultural memory; through a focus on how such memory is manifested in aesthetic (primarily literary) representation. The module assumes a dual approach to the study of selected texts, requiring attention to the topic of violence and memory on the one hand; and the ethics and politics of representation on the other. Literary texts will illuminate problems of narrative agency, responsibility and testimony in the aftermath of a violent past. The conceptual framework of discussions derive from Maurice Blanchot and his influence on post-structuralism, and from contemporary uses of psychoanalysis by literary theorists.", + "title": "Writing in the Aftermath", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5253R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Motivated by the prevalent political, institutional, and economic failings that seem to plague our present century, best captured perhaps by the millennial-speak \u201cepic fail,\u201d this course proposes to critically think about failure as a concept. We will explore what is specific to contemporary failure, as compared to twentieth century failure. We will also seek to elucidate failure in all its dimensions, which would require us to articulate without prejudice all the affective states that accompany it. Readings will include literary texts by Beckett, Blanchot, Coetzee, Barnes, Carson, and DeLillo, alongside theoretical ones (French thought, contemporary feminist theory, and affect theory).", + "title": "Rethinking Failure in the 21st Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Motivated by the prevalent political, institutional, and economic failings that seem to plague our present century, best captured perhaps by the millennial-speak \u201cepic fail,\u201d this course proposes to critically think about failure as a concept. We will explore what is specific to contemporary failure, as compared to twentieth century failure. We will also seek to elucidate failure in all its dimensions, which would require us to articulate without prejudice all the affective states that accompany it. Readings will include literary texts by Beckett, Blanchot, Coetzee, Barnes, Carson, and DeLillo, alongside theoretical ones (French thought, contemporary feminist theory, and affect theory).", + "title": "Rethinking Failure in the 21st Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5254R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in English Literature in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. The Head\u2019s and/or Graduate Coordinator\u2019s approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.\n\nRemark: (1) Word limit: 5,000 \u2013 6,000 words. (2) Workload: Minimum 10 hours per week. The precise breakdown of contact hours, assignment and preparation is to be worked out between the lecturer and the student, subject to Departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in literary studies. The topic to be covered will depend on the interest and expertise of regular or visiting staff member in the department.", + "title": "Topics in Literary Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the shifting perceptions of the natural world found in a variety of English literary works. Through the study of key literary texts, the\nevolution of ideas about nature will be traced from the 17th century\u2019s age of scientific discovery to the 21st century\u2019s idea of environmental crisis. A key\nelement of the model will be the use of ecocritical ideas and concepts as a way to approach and understand connections between literature and the environment.", + "title": "Literature and the Environment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the shifting perceptions of the natural world found in a variety of English literary works. Through the study of key literary texts, the evolution of ideas about nature will be traced from the 17th century's age of scientific discovery to the 21st century's idea of environmental crisis. A key element of the model will be the use of ecocritical ideas and concepts as a way to approach and understand connections between literature and the environment.", + "title": "Literature and the Environment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5880AR", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn about the range of inquiry within the domain of Cultural Studies, gain an understanding of its history, promise, and drawbacks, and undertake a sustained interaction with a specific dimension of the field in an applied manner. Students will get an overview of Cultural Studies, major theorists, major antecedents, applications, limits, debates and potential areas of application, and develop a specific engagement with some aspect of the larger domain.", + "title": "Topics in Cultural Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Cultural Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5882R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary course will acquaint students with a range of theoretical approaches to moving images, and equip them to write critically about Southeast Asian screen cultures. The module encourages thinking beyond conventions of cinema studies (national cinema, narrative, genre, etc) \u2013 as screen culture spreads far beyond industrial/national cinemas, so should theory and criticism. Readings\nare drawn from the fields of art and media theory, visual anthropology, and critical and cultural theory, while screenings privilege non-industrial modes like independent film, media art and online video. Emphasis is on the diversification of moving image practices with the uptake of digital media technology.", + "title": "Screen Culture in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN5883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary course will acquaint students with a range of theoretical approaches to moving images, and equip them to write critically about Southeast Asian screen cultures. The module encourages thinking beyond conventions of cinema studies (national cinema, narrative, genre, etc) \u2013 as screen culture spreads far beyond industrial/national cinemas, so should theory and criticism. Readings are drawn from the fields of art and media theory, visual anthropology, and critical and cultural theory, while screenings privilege non-industrial modes like independent film, media art and online video. Emphasis is on the diversification of moving image practices with the uptake of digital media technology.", + "title": "Screen Culture in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EN5883R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced graduate class in critical reading. In it students develop three main areas of competence: 1) knowledge of different critical traditions; 2) awareness of the various problems of reading and interpretation; and 3) close reading of texts informed by the knowledge of (1) and the awareness of (2). In keeping with the advanced nature of the module, much of the responsibility for the direction of the work falls upon the students. Students will explore the texts of a few key thinkers and learn to understand some of the basic principles of critical theory. They will learn to apply specific reading strategies to selected texts and to raise questions about the reading process and its contexts. The emphasis throughout is on the development of students' critical awareness of positions, strategies and possibilities of interpretation. The module is a core course for research students.", + "title": "Advanced Critical Reading", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN6102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in English Literature in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and Ph.D. students admitted from AY2004/ 05. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \u201cSatisfactory/ Unsatisfactory\u201d on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "EN6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module trains students in select key texts in the new literatures and their social contexts. It locates those literatures in the cultural histories of nationalism, postcolonialism, modernization, intertextuality and related topics. The module is intended for graduate students.", + "title": "Topics in the New Literatures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN6880", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Literary History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN6881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is to be taught by an eminent visiting scholar in Cultural Studies in Asia, appointed as a visiting teaching fellow for one semester. The content of module will therefore vary according to the specialized interests of the visiting teaching fellow. A candidate in the programme will only be permitted to elect one selected topic module during the course work component of their studies.", + "title": "Advanced Topics in Cultural Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EN6882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module, specifically designed for MA by Coursework students, prepares them for a Masters in Literary Studies through a two-pronged approach: First, to obtain a general overview of the discipline in order to approach the field with a better understanding of its academic demands. Through gradual but consistent exposure to articles on various critical approaches and research methods, students will gain an understanding of broad theoretical perspectives. Next, through extensive practice: working through several short writing assignments, revising and resubmitting these through the course of the semester, students' comprehension about disciplinary practices and about field-specific academic writing, will increase substantially.", + "title": "Literary Studies: Overview and Writing Practices", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5149", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces issues, challenges and questions raised by advanced study in literature and culture. Students approach the study of texts by developing a working understanding of appropriate questions and methods. The module covers the nature of scholarship in literary studies and explores the importance of literary history when approaching a given author or text. It introduces the connections between formal study and historical approaches and the relations between textual and cultural experience. Students pursue their choice of approach from a broad base of critical theory. The module also addresses the role of literature within the intersectional and environmental humanities.", + "title": "Survey of the Discipline Methods and Approaches", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5150", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to the emerging field of Global Anglophone Literature, which analyses texts associated with postcolonial and decolonised regions, including Asia, Australia, Canada, Ireland, Jamaica, Kenya, Trinidad, Nigeria, South Africa, as well as Great Britain and North America. The module introduces some foundational material on the history and cultures of Empire, and introduces texts from the greater Anglophone world, asking how these fictional works illuminate the forces that shape the globalized yet unequal world we currently inhabit. Critical contexts include those of race, aboriginality, gender, political economy, migration, cosmopolitanism, technology, and war.", + "title": "Global Anglophone Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5151", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is a focused examination of the various senses of \"political literature\". One may say \"all literature is ideological\", but this course raises doubts that \"everything is political\" in a significant way. This course examines the differences between \"ideology\" and \"politics\" in relation to literature. The course considers works that challenge conventional distinctions such as that between \"propaganda\" and \"literature\". Students will test definitions of \"the political\" on a variety of texts.", + "title": "Politics and Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5235", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 39, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores 20th\u2010century British and American literary production, with a focus on the first half of the century. It will examine the writings of key modernist authors of the early decades (such as T. S. Eliot, James Joyce and Virginia Woolf) even as it will also survey other literary and artistic activities in this period. The latter may include the avant\u2010garde movements (such as Dadaism and Surrealism), the Harlem Renaissance, and cinema. Besides the above writers, others to be studied may include Andre Breton, Samuel Beckett, F. Scott Fitzgerald, Gertrude Stein and Wallace Stevens.", + "title": "Twentieth Century Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5238", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From early modern England up into the eighteenth century, English literature registers distinctively a deep fascination with worlds both old and new Egypt, Africa, China, and India are some examples. In reading critically how different authors in this historical timeline represent old and new worlds in their literary production, this module seeks to analyze the formation of cultural perceptions relating to such topics as (a) the emergence of a colonial and imperial consciousness; (b) the apprehension of cultural difference; (c) the crystallization of national identity. It offers opportunity for considering the engagements of literature with certain momentous social, historical, and political realities, such as the slave trade and the activities", + "title": "Literature and New Worlds: 1590-1750", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module are to invite students to reflect on and analyse texts by great women novelists. Topics covered include the choice of genre, the relation between narrative structures and psychological experience and their political implications, the nature of the dilemmas at the heart of each text, and the problems of defining and responding to what is specific to women\u2019s writing.", + "title": "Women Novelists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5242", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 41, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module approaches Shakespeare's plays by considering not only genre and theme, but also their relationship to the development of literary history, including critical theory. The Shakespearean corpus has led to a multitude of critical possibilities, such that the text has lent support for materialism or deconstruction, for patriarchy or feminism, for the secure clich\u00e9s of the so-called Elizabethan world picture or for their subversion and dissolution. Given the open-endedness of these critical possibilities, what does engaging with Shakespeare reveal about the relationship between text and context, between literary production and particular historical conditions, and the very making of meaning itself?", + "title": "Shakespeare and Literary Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5244", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 41, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will examine Victorian literature with \nan emphasis on its historical, political, and cultural context. Topics addressed may include significant literary genres and movements (e.g. The Industrial Novel, Aestheticism and Decadence), major authors (e.g. George Eliot, Oscar Wilde), or broader thematic explorations of the diverse literary productions of nineteenth-century Britain (e.g. Gender and Sexuality in the Nineteenth Century, Imperialism and Victorian Writing). This module will also familiarize students with contemporary critical approaches to the study of Victorian literature and culture.", + "title": "Victorian Literature: History, Politics, Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5247", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From Shakespeare\u2019s Shylock to Kafka\u2019s Gregor Samsa, Lu Xun\u2019s Ah-Q and Sinha\u2019s Animal, it could be said that \u201crejects\u201d abound in literature. This module is an inquiry into the affective forces of such literary rejects, such as their ability to generate empathy within both readers and other textual characters, or to elicit from the latter a sense of \u201cpoetic\u201d justice beyond existing juridicial norms, as well as how they complicate the literary \u201cI\u201d or subject. Texts read in the module will include Shakespeare\u2019s Merchant of Venice, Kafka\u2019s \u201cMetamorphosis,\u201d Lu Xun\u2019s \u201cThe Real Story of Ah-Q,\u201d and Indra Sinha\u2019s Animal People.", + "title": "Literary Rejects", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module addresses issues of historical trauma and cultural memory; through a focus on how such memory is manifested in aesthetic (primarily literary) representation. The module assumes a dual approach to the study of selected texts, requiring attention to the topic of violence and memory on the one hand; and the ethics and politics of representation on the other. Literary texts will illuminate problems of narrative agency, responsibility and testimony in the aftermath of a violent past. The conceptual framework of discussions derive from Maurice Blanchot and his influence on post-structuralism, and from contemporary uses of psychoanalysis by literary theorists.", + "title": "Writing in the Aftermath", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 41, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in English Literature in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. The Head\u2019s and/or Graduate Coordinator\u2019s approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.\n\nRemark: (1) Word limit: 5,000 \u2013 6,000 words. (2) Workload: Minimum 10 hours per week. The precise breakdown of contact hours, assignment and preparation is to be worked out between the lecturer and the student, subject to Departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the shifting perceptions of the natural world found in a variety of English literary works. Through the study of key literary texts, the\nevolution of ideas about nature will be traced from the 17th century\u2019s age of scientific discovery to the 21st century\u2019s idea of environmental crisis. A key\nelement of the model will be the use of ecocritical ideas and concepts as a way to approach and understand connections between literature and the environment.", + "title": "Literature and the Environment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary course will acquaint students with a range of theoretical approaches to moving images, and equip them to write critically about Southeast Asian screen cultures. The module encourages thinking beyond conventions of cinema studies (national cinema, narrative, genre, etc) \u2013 as screen culture spreads far beyond industrial/national cinemas, so should theory and criticism. Readings are drawn from the fields of art and media theory, visual anthropology, and critical and cultural theory, while screenings privilege non-industrial modes like independent film, media art and online video. Emphasis is on the diversification of moving image practices with the uptake of digital media technology.", + "title": "Screen Culture in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENC5883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using a multi-disciplinary and inter-disciplinary perspective, this module provides a historical and epistemological overview of environmental studies. Environmental studies underscore the long tradition in both eastern and western thought and philosophies of human-nature relationships. This module highlights the importance of demography, society, culture, and religion as important variables in understanding the complex equations of environmental processes, changes, adaptations and impacts. The module hopes to bring together current environmental and climate change issues as well as challenges; interrogate the options available in various ways nature conservation, technological fixes, shifting consumption patterns, alternative energies, environmental education, changing public civic behavior.", + "title": "Environmental Studies: An Interdisciplinary Overview", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 10, + 12 + ], + "venue": "S1A-0217", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As a continuation of ENV1101, this module examines the role of human activities such as technological changes, increasing urbanization, market forces and economics, as well as ongoing geopolitical forces in environmental and climate change. Using current global environmental and climate change challenges, this module discusses various ways communities and societies have utilized indigenous knowledge (folk science), scientific evaluations, technological innovations, societal regulations and laws, environmental monitoring (benchmarking, quality controls), and policy prescriptions (based on scientific and societal evaluations) in environmental management at various scales. The module hopes to engage students in thinking about adaptive and mitigation options, both locally and globally in relation to reduced environmental sustainability.", + "title": "Global Environmental Change", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will first introduce students to Environmental Law, particularly conservation and pollution laws, and how these are passed and implemented at the international, regional (ASEAN) and national (Singapore) levels. It will emphasise that laws alone will not help in ensuring the quality of a country\u2019s environment and the health of its citizens. Laws must be enforced, and the rule of law respected. Good governance is therefore a necessary component of sound environmental management. This module will next examine what constitutes good environmental governance. It will explore environmental and economic policies and how best to resolve the tensions between conservation and development. It will study the setting up of effective administrative institutions, land use planning, the provision of environmental infrastructure (modern sanitation, water treatment plants, transport systems, etc). It will then critically examine the workings of the main administrative agencies that are responsible for environmental management in Singapore. It will also look into the work of local and international non-governmental organisations (NGOs) as well as multi-national corporations and corporate social responsibility in Singapore. Comparisons will be made with the administrative and legal systems in other jurisdictions. This module will be taught by staff members from the Law Faculty as well as the Lee Kuan Yew School of Public Policy.", + "title": "Environmental Law", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV2102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Public Health is defined as \"the science and art of preventing disease, prolonging life and promoting health through the organized efforts and informed choices of society, organizations, public and private, communities and individuals.\" Environmental health addresses all the physical, chemical, and biological factors external to a person, and all the related factors impacting behaviours. It encompasses the assessment and control of those environmental factors that can potentially affect health. It is targeted towards preventing disease and creating health-supportive environments. This module provides an introduction to public health and environmental health, and the management of contemporary environmental health issues.", + "title": "The Environment and Public Health", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV2103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0901AB", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Undergraduate Research Opportunity in Environmental Studies (UROPES) aims to provide BES students with a unique opportunity to work with faculty members on an environmental-related research project that is cross-disciplinary in nature. The programme requires students to pursue an environment-related research project under the supervision of at least one faculty member. Through regular meetings with and feedback from their supervisor/s, it encourages students to engage actively in research, discussion, intellectual communication, and other creative academic activities. The experience gained upon the completion of the project will also assist students in preparing for their careers or postgraduate studies.", + "title": "Basic UROP in Environmental Studies I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV2288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Undergraduate Research Opportunity in Environmental Studies (UROPES) aims to provide BES students with a unique opportunity to work with faculty members on an environmental-related research project that is cross-disciplinary in nature. The programme requires students to pursue an environment-related research project under the supervision of at least one faculty member. Through regular meetings with and feedback from their supervisor/s, it encourages students to engage actively in research, discussion, intellectual communication, and other creative academic activities. The experience gained upon the completion of the project will also assist students in preparing for their careers or postgraduate studies. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROP in Environmental Studies I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV2288R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Undergraduate Research Opportunity in Environmental Studies (UROPES) aims to provide BES students with a unique opportunity to work with faculty members on an environmental-related research project that is cross-disciplinary in nature. The programme requires students to pursue an environment-related research project under the supervision of at least one faculty member. Through regular meetings with and feedback from their supervisor/s, it encourages students to engage actively in research, discussion, intellectual communication, and other creative academic activities. The experience gained upon the completion of the project will also assist students in preparing for their careers or postgraduate studies.", + "title": "Basic UROP in Environmental Studies II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV2289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Undergraduate Research Opportunity in Environmental Studies (UROPES) aims to provide BES students with a unique opportunity to work with faculty members on an environmental-related research project that is cross-disciplinary in nature. The programme requires students to pursue an environment-related research project under the supervision of at least one faculty member. Through regular meetings with and feedback from their supervisor/s, it encourages students to engage actively in research, discussion, intellectual communication, and other creative academic activities. The experience gained upon the completion of the project will also assist students in preparing for their careers or postgraduate studies. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROP in Environmental Studies II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV2289R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental studies integrate a wide range of disciplines and this is reflected in the approaches applied for collecting the data required for answering questions and hypotheses. This module will introduce key methods and techniques used in human and physical geography, and in field and experimental ecology. Students will gain hands on experience in the design, execution and analysis of surveys and experiments. The research methods and techniques taught in this module will be specially selected for, and applied to, environmental questions and context. An awareness of what types of research are realistic given time and resource constraints will be developed.", + "title": "Methods and Techniques for Environmental Studies", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV2301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for undergraduate students pursuing the Bachelor of Environmental Studies degree with the aim of helping them to develop critical thinking, reading, writing and speaking skills relevant for communication with academia and with the public. The curriculum deals with three main interrelated areas:\n\n\u2022\tCommunication with the public - raising public awareness of environmental issues through science-based advocacy\n\u2022\tCommunication with academia - developing skills in academic writing\n\u2022\tArgumentation within environmental studies - examining environmental issues using the Precautionary Principle.\n\nThis module is taught over 1 semester via a blended approach with a three-hour sectional session per week.", + "title": "Communications for Environmental Studies", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV2302", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Using selective Asian case studies through on-site field studies exposure, experimentation and documentation, this module addresses several key themes a) understanding the nature of environmental problems (both physical and human induced environmental changes) in specific locations, sites and ecosystems; ii) the human impacts leading to specific environmental problems (pollution, water scarcity, deforestation, dwindling biodiversity); and iii) understanding indigenous adaptive mechanisms and other mitigation options in ensuring environmental sustainability. Students will participate in field studies of key sites, ecosystems and places where such challenges have taken place within the Asian region.", + "title": "Environmental Challenges in Asia", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with firsthand experience in tropical ecology, geography, and the environmental issues surrounding conservation and sustainability. Students will work in small groups to design and execute a research project, using methods and techniques they have learnt previously and more advanced skills introduced in this module. The module provides a real-world opportunity for students to apply learnt concepts and theories, as well as specific environmental knowledge. Students will develop a broad range of skills and knowledge through experiential learning. The fieldtrip component of the module will last approximately two weeks, conducted within a country in Asia.", + "title": "Field Course in Environmental Studies", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV3102", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Impact Assessment (EIA) is a critical step in any development/infrastructure project that is usually required before work commences. It is a tool used to evaluate the likely environmental effects of the proposed project, taking into account bio-geophysical and socioeconomic impacts. It culminates in a report that has to communicate finding to a broad audience and provide recommendations or solutions to mitigate predicted negative effects on the environment and humans. An EIA represents a preventative, evidence-based, activemanagement approach to environmental protection.", + "title": "Socio-Ecological Assessment of Environmental Impacts", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV3104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "ENV3202 is designed for students in Environmental Studies with the aim of helping them gain working experience in the environmental industry during their undergraduate study and prepare them for employment. Students perform a structured and supervised internship in a company/organization for 10-12 weeks during Special Terms. Through regular meetings and feedback with internship supervisors and BES academic advisors, students will assimilate and translate knowledge acquired from the curriculum to performing tasks and assignments in the working environment, giving them an extra edge when transiting to the workforce. ENV3202 will be taken by BES students from Cohort AY2017/18 and before.", + "title": "Environmental Studies Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ENV3202A is designed for students in Environmental Studies with the aim of helping them gain working experience in the environmental industry during their undergraduate study and prepare them for employment. Students perform a structured and supervised internship in a company/organization for 10-12 weeks during Special Terms. Through regular meetings and feedback with internship supervisors and BES academic advisors, students will assimilate and translate knowledge acquired from the curriculum to performing tasks and assignments in the working environment, giving them an extra edge when transiting to the work force.", + "title": "Environmental Studies Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ENV3202A", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Undergraduate Research Opportunity in Environmental Studies (UROPES) aims to provide BES students with a unique opportunity to work with faculty members on an environmental-related research project that is cross-disciplinary in nature. The programme requires students to pursue an environment-related research project under the supervision of at least one faculty member. Through regular meetings with and feedback from their supervisor/s, it encourages students to engage actively in research, discussion, intellectual communication, and other creative academic activities. The experience gained upon the completion of the project will also assist students in preparing for their careers or postgraduate studies.", + "title": "Advanced UROP in Environmental Studies I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV3288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Undergraduate Research Opportunity in Environmental Studies (UROPES) aims to provide BES students with a unique opportunity to work with faculty members on an environmental-related research project that is cross-disciplinary in nature. The programme requires students to pursue an environment-related research project under the supervision of at least one faculty member. Through regular meetings with and feedback from their supervisor/s, it encourages students to engage actively in research, discussion, intellectual communication, and other creative academic activities. The experience gained upon the completion of the project will also assist students in preparing for their careers or postgraduate studies. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROP in Environmental Studies I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV3288R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Undergraduate Research Opportunity in Environmental Studies (UROPES) aims to provide BES students with a unique opportunity to work with faculty members on an environmental-related research project that is cross-disciplinary in nature. The programme requires students to pursue an environment-related research project under the supervision of at least one faculty member. Through regular meetings with and feedback from their supervisor/s, it encourages students to engage actively in research, discussion, intellectual communication, and other creative academic activities. The experience gained upon the completion of the project will also assist students in preparing for their careers or postgraduate studies.", + "title": "Advanced UROP in Environmental Studies II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV3289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Undergraduate Research Opportunity in Environmental Studies (UROPES) aims to provide BES students with a unique opportunity to work with faculty members on an environmental-related research project that is cross-disciplinary in nature. The programme requires students to pursue an environment-related research project under the supervision of at least one faculty member. Through regular meetings with and feedback from their supervisor/s, it encourages students to engage actively in research, discussion, intellectual communication, and other creative academic activities. The experience gained upon the completion of the project will also assist students in preparing for their careers or postgraduate studies. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROP in Environmental Studies II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV3289R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "ENV4101, the last in a series of integrated BES modules, focuses on Singapore and evaluates how it has managed its environmental challenges. In other words, it examines environmental principles, concepts, policies and strategies learned in the preceding modules, but under a local lens. To facilitate this, the format of ENV4101 involves weekly seminars and/or round-table discussions with the key players in these challenges, in other words people ranging from individual activists, to representatives of the NGO, corporate and government sector", + "title": "Environmental Management in Singapore", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ENV4101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required course for students whose Qualifying English Test results show that they would benefit from basic English language skills support. Students in the course must pass it before they are allowed to read the next required English course, English for Academic Purposes (ES1102/ES1103). The purpose of ES1000 is to improve the students' English language skills in reading, writing and grammar. These skills are taught, reviewed and reinforced through online, inclass and appropriate out-of-class activities. Assignments include reflections, written assignments and progress tests. This module is taught over 1 semester with a two-hour online lecture/discussion/quiz and a two-hour sectional teaching per week.", + "title": "Foundation Academic English", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "ES1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "ES1103 serves as a bridging course for students who have taken the university\u2019s Qualifying English Test and are deemed to require additional language support for the academic context. It aims to equip students with the knowledge of the academic genre and the ability to apply such knowledge in academic communication. The module adopts a reading-into-writing approach using themed readings as springboard texts for students\u2019 writing and provides opportunities for analysing and internalising ways of organising academic texts. Students will acquire essential academic skills required to cope with the rigour of academic writing at a tertiary level.", + "title": "English for Academic Purposes", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ES1103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "C09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "C08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "E01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "B01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "D01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "B04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "E06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "D04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "E09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "S10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR7", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B03", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR7", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR7", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "C04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR7", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B03", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "S08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "A03", + "startTime": "1000", + "endTime": "1300", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "E1-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A03", + "startTime": "1000", + "endTime": "1300", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-16" + }, + "venue": "E1-06-15", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A04", + "startTime": "1300", + "endTime": "1600", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "E1-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A04", + "startTime": "1300", + "endTime": "1600", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-16" + }, + "venue": "E1-06-15", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A02", + "startTime": "1300", + "endTime": "1600", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "E1-06-15", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A05", + "startTime": "1000", + "endTime": "1300", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "A02", + "startTime": "1300", + "endTime": "1600", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "E1-06-15", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A01", + "startTime": "1000", + "endTime": "1300", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "E1-06-15", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A01", + "startTime": "1000", + "endTime": "1300", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "E1-06-15", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The challenges of a global engineer increasingly call upon engineers to think critically and communicate effectively to undertake developmental leadership. This course aims to develop and practise students\u2019 critical thinking and writing skills through analysing case studies in engineering leadership, constructing complex engineering-related problems and solutions, presenting arguments effectively and reflecting on personal leadership development. Relevance to engineering practice is emphasized with references to grounded theories of engineering leadership and the seven missing basics of engineering education.", + "title": "Critical Thinking And Writing", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ES1531", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the business communication skills they need to be recognized as leaders among stakeholders \u2013 colleagues, superiors, and customers/clients. Working within a dynamic and connected 21st century simulated workplace, students as \u201cexecutives\u201d will learn critical skill-sets in influential leadership communication in formal and informal business settings pitching; teamwork, meeting and negotiation; relationship, goodwill and trust-building; and thinking on their feet. The module will emphasise core principles of audience-centred, objective-driven, and context-sensitive communication; intentional, reflective and mindful communication; oral communication fundamentals of verbal, vocal, visual and aural skills; and the 7 C\u2019s of effective business communication.", + "title": "Business Communication for Leaders (BBA)", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ES2002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G27", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G26", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G24", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G25", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G30", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G28", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G29", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G21", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G23", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G22", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0117", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G26", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G23", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G24", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G21", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G22", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G25", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0115", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0116", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The ES2007D Professional Communication course is a customized core module for Real Estate students in the School of Design and Environment. This course has been designed to help students develop their writing and oral skills to prepare them effectively for their prospective career in an increasingly global and competitive environment. Students learn to generate and organize ideas for clear, convincing and effective oral and written messages, present these ideas with linguistic and graphic competence and deliver messages appropriate to their audience, context and purpose. Topics include the fundamentals of interpersonal and intercultural communication, em ail/letter writing skills, report/proposal writing skills, meeting/negotiation skills, and oral presentation skills. Evaluation of competency is based on continual assessment.", + "title": "Professional Communication", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ES2007D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "R06", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0226", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "R05", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0226", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "R07", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR2A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "R08", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR2A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "R01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "R03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "R02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR2A", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "R04", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0226", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "R09", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0228", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The challenges of a global engineer increasingly call upon engineers to think critically and communicate effectively to undertake developmental leadership. This course aims to develop and practise students\u2019 critical thinking and writing skills through analysing case studies in engineering leadership, constructing complex engineering-related problems and solutions, presenting arguments effectively and reflecting on personal leadership development. Relevance to engineering practice is emphasized with references to grounded theories of engineering leadership and the seven missing basics of engineering education.", + "title": "Critical Thinking And Writing", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ES2531", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with competencies requiring students to analyze, critique, and communicate engineering ideas in a systematic and thoughtful manner. Students will be introduced to a reasoning in engineering framework (Paul et al., 2019), as well as key principles of effective communication in the field of engineering, such as being purpose- and context-conscious and audience-centric (Irish & Weiss, 2013). These will be applied to analyze engineering ideas in both written and oral communication. Students will also engage in a group engineering conceptual design project aimed at promoting critical analysis and communication within groups.", + "title": "Critique and Communication of Thinking and Design", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ES2631", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G29", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G30", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G36", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G27", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR7", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G26", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G25", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G35", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G31", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G32", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G22", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G21", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G34", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G28", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR7", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G33", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G22", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G48", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G49", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G31", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G32", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G33", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G42", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G43", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G44", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G46", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G47", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G36", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G38", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G40", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G34", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G35", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G45", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G29", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G26", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G27", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G24", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G25", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G21", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G30", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G41", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G37", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G39", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G23", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In a context of prolific production and convenient access to content and innovation in the Information Age, how should one critically process and clearly communicate ideas to various audiences? In this module, students will learn to question and articulate their analysis of assumptions and assertions on issues facing the Information Age through processes such as identifying bias and substantiating arguments. The Ennis\u2019 (1986, 2001) taxonomy of critical thinking dispositions will be employed to develop students\u2019 analytical thinking skills and their ability to articulate cogent responses to arguments or to defend their own positions in both written and oral form.", + "title": "Communicating in the Information Age", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ES2660", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G21", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G21", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0209", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to help international graduates from non-English speaking countries improve their basic academic English writing skills. This module provides training to enable students to use effective writing strategies to construct well-organized short academic essays with clear essay outlines. In order to facilitate independent learning and critical thinking, this module gives students opportunities to critique and edit their own essays as well as their peers' essays.", + "title": "Graduate English Course (Basic Level)", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "ES5000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G08", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G07", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G08", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G07", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "ES5001A aims to raise the proficiency level of the students' English in terms of their writing and oral presentation skills, so that they have confidence in using English for academic purposes. Students will be involved in writing short paragraphs, a short research report, and a summary analysis. Also, they will be taught principles of good writing and effective use of the dictionary. To prepare them for speaking at seminars and conferences, they will be trained to give oral presentations. This module is primarily for foreign graduate students of NUS who graduated from non-English medium universities who are not exempted based on their Diagnostic English Test results.", + "title": "Graduate English Course (Intermediate Level)", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "ES5001A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G08", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "P01", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "P02", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "P01", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "P02", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0603-04", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G27", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G27", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G24", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G25", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G22", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G23", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G24", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G26", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G22", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G26", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G25", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G23", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced level module is designed for international students who are pursuing a PhD in NUS by research. All international PhD students who are not exempted from the Graduate English Course (based on their results for the Diagnostic English Test) are required to take ES5002. All PhD students from non-English medium universities in the School of Medicine are required to take ES5002.\n\nThis module is taught over 1 semester with 2 two-hour sectional teachings per week.\n\nThe focus of ES5002 is primarily on the structural and linguistic features of different sections of a PhD thesis.", + "title": "Graduate English Course (Advanced Level)", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "ES5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Technical Communication for Engineers is a communication module for second year ECE graduate students which focuses on writing research papers and\ndelivering oral presentations for academic and nonacademic audiences.", + "title": "Technical Communication for Engineers", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "ES5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G05", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help graduate business students develop the necessary professional skills in written and oral academic communication. Specifically, the course focuses on improving the quality of students\u2019 academic writing and their ability to present their research orally at professional gatherings. Developing these professional skills is accomplished through these assignments: writing an abstract; introduction and motivation/hypotheses for the study; preparing and delivering a conference presentation. The course also develops students\u2019 peer-review skills and the ability to improve their written and oral performance through working on tutor and peer feedback. Student self-reflection and student-tutor one-on-one discussions are also emphasised.", + "title": "Academic Communication for Business", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "ES5610", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This introductory module aims to familiarize students with a broad range of environmental engineering topics. Topics to be covered include historical \nperspective on environmental engineering; interactions of humans and the environment; environmental regulations; ecology and the environment; fundamental chemical kinetics; chemistry of solutions; overview of\nbiology/microbiology organisms and processes; application of physical, chemical and biological parameters to environmental quality; engineering decision analyses.", + "title": "Environmental Engineering Fundamentals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE1001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The impact of civil infrastructures on the environment is considerable and engineers have a significant role to play in developing technical solutions which must be cost-effective, economically feasible and environmentally sustainable. Sustainable development must consider all the repercussions from infrastructure development in a systematic and holistic way, including assessment of the resulting pollution problems through environmental monitoring and its necessary companion: safety control and management.", + "title": "Principles & Practice in Infrastructure and Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "ESE1102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to familiarize students with basic principles in environmental chemistry and to provide a foundation for chemical concepts required in later years for Environmental Engineering. Topics covered include Thermodynamics and reaction kinetics, Equilibrium relations; Chemistry of Solutions; Acids and bases; Solution Chemistry; Organic Chemistry; Electrochemistry and redox reactions; Basic Biochemistry; Nuclear reactions. Concepts will be emphasized with respect to environmental sustainability, drawing on applications and examples in \nenvironmental science and engineering, ecosystems and environmental impact assessment.", + "title": "Chemistry for an Environmentally Sustainable Future", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE2000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Anthropocene is a proposed new geological era based on the scientific evidence\nthat human impacts on natural environmental processes now rival geological forces in influencing the trajectory of the planetary system. This module provides an insight into contaminant transport and\nnew complex physical interactions between human activities and natural processes. Major topics\ninclude energy fundamentals and need for new energy resources, depletion and contamination of\nnatural resources (including minerals, groundwater, air), transport processes in the multimedia\nenvironment (advection, diffusion, dispersion, interphase mass transfer, reaction kinetics), as well as\nintroduction to man-made climate change and its ecological and societal implications.", + "title": "Environmental Challenges in the Anthropocene", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE2001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E8-03-22", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E8-03-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to excite first year engineering students about Environmental Engineering and the science and engineering principles that underlie Environmental Engineering applications. The module equips students with knowledge, critical thinking, computer-aid analysis, and practical experiences that are fundamental to Environmental Engineering. Basic environmental chemistry, microbiology, and hydraulics will be examined through a project-based learning. Thus, students will learn basic principles of chemical and biological processes and will be exposed to the concept of hydraulics. The lab-style teaching provides opportunities for hands-on experiences in 3D model design, digitalization, big-data analysis, and system analysis for environmental pollution control.", + "title": "Environmental Engineering Principles and Practice", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E8-03-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E8-03-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Singapore is committed to become the World\u2019s greenest city but how can economic development and environmental sustainability combine to create a truly liveable place? Engineers have a significant role to play in developing technical solutions that must be practical and economically feasible. In this module, students practice environmental engineering outside the classroom by teaming up as consultancy firms to undertake real-life projects: for example, monitoring water quality in the Singapore Botanic Gardens or mapping air pollution by drone sensing.", + "title": "Principles & Practice in Environmental Monitoring", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE2102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "B01", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E8-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B02", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E8-03-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the fundamental aspects of water science and technology in water and wastewater treatment. Applied chemistry, microbiology and biology in fresh water, marine water, drinking water and wastewater will be covered. This module will enable students to understand the global cycle, possible contamination and threats to water in nature. Students also learn how to integrate engineering systems to purify natural water for human uses, and recycle water back to global water cycle through the practice of environmental science and technologies.", + "title": "Water Science & Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE2401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics covered in this module include water and wastewater sources, characteristics of water and wastewater (physical, chemical, and biological parameters), principles of physical, chemical, and biological processes for water and wastewater treatment, and water reclamation. Applications of fundamental principles for process analysis and design will be discussed with a focus on commonalities in applications across industry. Laboratory experiments relevant to water quality assessment and engineering are also included in the module.", + "title": "Water Quality Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores appropriate technologies to combat environmental issues in lesser industrialized countries, with a focus on sustainable technologies for water and sanitation. It also incorporates technical, socio-cultural, public health, and economic factors into the planning and design of water and sanitation systems. The fieldwork is carried out to implement appropriate technologies being discussed and developed in a classroom. Students will develop sustainable technologies for solving real life problem to adopt appropriate solutions independently as well as teamwork. The student will understand appropriate technologies at the household and small community level, and develop/design sustainable solutions for specific international problems.", + "title": "Integrated Project for Environmental Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE3011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the advanced concept of solid and hazardous waste management and the cleanup processes used around the world. It covers collection, quantification, characterization, processing, treatment, disposal and resource recovery, along with the circular economy in relation to solid and hazardous waste. It will supply students with in-depth knowledge on the principles of design, construction, operation and maintenance of various treatment and disposal facilities along with engineering, institutional, legal and financial infrastructures.", + "title": "Resource Management and Circular Economy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE3101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with fundamental knowledge of dynamic atmospheric air quality in a changing world. The topics cover the effects of emission sources and pollutants, air quality assessment, atmospheric reactions of air pollutants, principles and implications of vertical mixing and transport of airborne pollutants, and air pollution control strategies and devices. The module aims to enable students to understand dynamic atmospheric processes and to identify air pollution issues associated with varied energy sources and economic development. Students will also learn to assess air quality, quantify air pollutant levels, devise control strategies and recommend engineering solutions to enhance air quality.", + "title": "Air Quality in Changing Environments", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides students with a strong foundation in environmental microbiology and its application to natural and engineered systems. The course addresses basic microbiological concepts and state-of-the-art environmental biotechnology. Microbial characteristics and function in terrestrial, aquatic environment and air are introduced to better understand biological processes. Microbial biogeochemical cycling of elements is examined with respect to nitrogen, carbon and sulphur. Aspects of molecular microbiology in environmental engineering are introduced with regard to applied biotechnologies. Also, urban microbiology and global emerging issues are introduced with respect to domestic and indoor microbiology, microbial contribution to climate changes, and current environmental issues.", + "title": "Microbiology in Natural and Built Environments", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE3301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-03-14", + "day": "Monday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EW2-03-14", + "day": "Monday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the unit operations and processes application for domestic water supply and wastewater treatment. Integration of physical, chemical and biological processes is the basis of current water and wastewater design practice. This module will enable students to understand the main treatment processes and engineering concerns of water and wastewater treatment systems. Students learn to identify the appropriate treatment system to address water and wastewater treatment needs and design basic processes of water and wastewater treatment systems.", + "title": "Sustainable Urban Water Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE3401", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E8-03-22", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E8-03-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the biological aspects of wastewater biotechnology. These include process metabolism, biology and functions in activated sludge, anaerobic digestion, nutrients removal and biofilms processes. This course will enable students to expand their background of environmental technology in the biological aspects of wastewater treatment processes, and to integrate the biological aspects of wastewater treatment into the physical and chemical aspects previously learned. The students will also learn how to identify solutions for operational problems associated with wastewater treatment processes through the microscopic observations.", + "title": "Wastewater Biotechnology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the information regarding application of advanced unit operations and processes for enhancing the quality of treated effluent and rendering the product water suitable for reuse applications. The module will enable students to understand the fundamental principles of advanced wastewater treatment. Students are taught to identify and design the appropriate advanced treatment system to enhance the quality of the treated effluent and exploit the option of reuse application.", + "title": "Water & Wastewater Engineering 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the student to the application of the basic concepts in pipe and open channel flows that were covered earlier to the design of the pumping system and associated facilities in a water or sewage treatment plant. Topics covered include selection of pumps for optimal efficiency,hydraulic design of the pump sump and the sewage/treated water delivery system and surge mitigation. Students will be involved in a project on the design of such a system.", + "title": "Treatment Plant Hydraulics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to provide senior undergraduate students with basic knowledge of membrane technology and its applications in environmental fields. This module introduces the basic concepts and knowledge of membrane processes. Students will learn membrane classification, module types, and process configuration, and separation mechanisms. Topics cover the applications membrane processes in the treatment of surface water, groundwater, seawater, and wastewater. The fundamental principles for design and operation of membrane processes will also be addressed.", + "title": "Membrane Tech In Env Applns", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Sustainability is the key to economic growth in the twenty-first century. With increasing global demand for energy, growing energy insecurity, and adverse impact of fossil fuel consumption on climate change, it is necessary to focus efforts toward bioenergy production from renewable, low-cost and locally available feedstock such as biomass and biowastes. This course introduces the various theories and technologies for production of bioenergy from various feedstocks. Topics include anaerobic technology for production of methane, bioethanol, methanol, hydrogen and biodiesel from biowastes and biomass, and microbial fuel cell for direct electricity production. Other processes such as pyrolysis of biomass shall also be introduced. Students will gain a comprehensive knowledge on the various options and challenges facing the production of bioenergy.", + "title": "Bioenergy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics covered in this module include urban water supply and demand, urban water management, identification of urban water quality systems, management strategies, environmental economics, technological and social considerations, capacity planning and management, modeling of water quality enhancement systems, impacts of design and operating protocols, and retrofitting and\nupgrading considerations. Application of fundamental principles for planning, analysis and design of various types of urban water quality enhancement systems will be addressed.", + "title": "Urban Water Engineering & Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "All energy sources have some impact on our environment. Fossil fuels do substantially more harm than renewable energy sources by most measures. It is essential for environmental professionals to improve their awareness of energy, understand and minimise its impact on the environment. It is also important for them to understand the science and technology behind energy generation, distribution and use, based on which effective environmental control programs can be built to mitigate climate change. Overall, this module provides an insight into the relationship between integration of renewable energy systems and \u201cdecarbonisation\u201d, and a broad vision for a sustainable energy future.", + "title": "Energy Systems and Climate Change Mitigation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4406", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the theory and practical application of environmental chemistry and biology for the purpose of identifying contamination sources and\nforecasting environmental fate and exposure in organisms. The module provides an overview of the emerging field of environmental forensics, which is gaining prominence within government agencies, industry and environmental consulting firms. An interdisciplinary approach is used, introducing the students to fundamental concepts and methodologies from a variety of scientific sub-disciplines including analytical chemistry, molecular biology, ecology, \nsimulation modelling and ecological risk assessment, as well as an awareness of legal and regulatory frameworks related to environmental protection and \ntoxic substance management. The students will learn essential skills to understand technical and legal aspects of complex environmental contamination \nproblems.", + "title": "Environmental Forensics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4407", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Impact Assessment (EIA) is the process of identifying, predicting, evaluating and mitigating the biophysical, social, and other relevant effects of development proposals prior to major decisions being taken and commitments made. The objective of EIA is to ensure that decision-makers consider environmental impacts before deciding whether to proceed with new projects. Participants are introduced to the concept of EIA, its historical evolution and the terminologies that are used worldwide. Lectures will cover the organizational\naspects of EIA, the EIA framework and the procedural methods to conduct an EIA, with special emphasis on water and water related issues.Participants will carry out a mini EIA study using the various approaches covered in the module.", + "title": "Environmental Impact Assessment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4408", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Adsorption is one of the most fundamental processes in many environmental, chemical and biological processes. It can be used for purification of water and\ngases. This module begins with an overview of historical and natural/industrialized cases. Various theories on adsorption will be presented in detail. Mathematical modeling tools will be taught. A series of case studies will be presented. Students after learning this module will be able to design various adsorption treatment systems and understand adsorption processes in natural/engineered systems.", + "title": "Environmental Applications of Adsorption", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4409", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The students are assigned a design project involving various environmental considerations. The module provides the opportunity for students to work as a team on an environmental project integrating knowledge they have gained from modules they have taken in earlier years. The module will also enhance their interpersonal, communication and leadership skills through group projects, report writing and oral presentations.", + "title": "Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4501", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L01", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Design Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Each student is assigned a research project in environmental science and engineering. This module provides the opportunity for students to outsource for relevant information, design the experiments, analyze critically the data obtained and sharpen their communication skills through report writings and oral presentations.", + "title": "B.Eng. Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ESE4502", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The project offers the opportunity for the student to develop research capabilities. It promotes creative thinking and allows independent work on a prescribed research project. Students undertake the project over two semesters. Each student is expected to spend not less than 9 hours per week on the project chosen from a wide range of topics in environmental engineering field. Assessment is based on the student\u2019s working attitude, project execution and achievement, an interim report and presentation, dissertation and final oral presentation. This module is only available to non-graduating students, by invitation from the Department.", + "title": "Final Year Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ESE4502N", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This project moduleis carried out by individual students and offers the opportunity for the student to develop research capabilities. It actively promotes creative thinking and allows independent work on a prescribed research project. Level 4 students undertake the project over two semesters. Each student is expected to spend not less than 9 hours per week on the project chosen from a wide range of environmental engineering-related disciplines. \nTopics include elements of research and experiments, analyse, and development. Assessment is based on the student\u2019s working attitude, project execution and achievement, an interim report and presentation, dissertation and final oral presentation.", + "title": "B. Eng. Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ESE4502R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Unrestricted Elective 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE4612", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is to allow M.Sc. students from non-environmental engineering background to gain basic knowledge in environmental science and engineering. Acquisition of this basic knowledge will prepare them for advanced courses in environmental science and engineering. This module provides a systematic introduction to water and air quality and their engineering control, quantitative overview of the properties of environmental contaminants, and the transport and transformation processes that govern their concentrations in air and water. Topics include environmental chemical equilibriums and kinetics, and elementary transport phenomena, introduction to water quality engineering, air quality engineering, and solid waste treatment and management.", + "title": "Environmental Engineering Principles", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is to allow M.Sc. students from non-environmental engineering background to gain basic knowledge in environmental science and engineering. Acquisition of this basic knowledge will prepare them for advanced courses in environmental science and engineering. This module provides a systematic introduction to water and air quality and their engineering control, quantitative overview of the properties of environmental contaminants, and the transport and transformation processes that govern their concentrations in air and water. Topics include environmental chemical equilibriums and kinetics, and elementary transport phenomena, introduction to water quality engineering, air quality engineering, and solid waste treatment and management.", + "title": "Environmental Engineering Principles", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5001AB", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental principles that can be used in the analysis and modelling of basic environmental engineering processes and systems. Specifically, it will examine the material conservation law and its applications, including material balance, mass transfer, reaction kinetics (rate and mechanism) and reaction engineering (reactor performance), etc. Through the discussion, students can better understand why physical processes are expected to function or behave in certain ways and how process performance may be implemented.", + "title": "Environmental Physical Process Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a strong foundation in environmental chemical principles for environmental engineering and science, with primary focus on natural and engineered processes and systems. The topics include chemical background, properties of soils, chemical equilibrium and thermodynamics, acid/base reaction, CO2 system, coordination chemistry, metal-ligand interaction, precipitation, adsorption, ion exchange, colloid, and organic geochemistry. MINEQL, a chemical equilibrium software, will be taught in this module. Upon the completion, students will be better equipped with knowledge in environmental chemistry to quantitatively understand and solve various environmental problems.", + "title": "Environmental Chemical Processes Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves independent project work over two semesters, on a topic in Environmental Engineering approved by the Programme Management Committee. The work may relate to a comprehensive literature survey, and critical evaluation and analysis, design feasibility study, case study, minor research project or a combination.", + "title": "Research Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ESE5004", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers several topics in air pollution control including the nature and sources of air pollutants in the indoor and outdoor environments, air pollution models, regulations, technical methods and measures to remove/suppress the emissions of air pollutants. The physical, chemical, and physico-chemical characteristics of pollutants in the atmosphere are described. The principal industrial sources of atmospheric pollution and the technological conditions for the formation of solid and gaseous substances in emissions are defined. Technical principles, basic processes, and equipment employed to limit and eliminate particulates, volatile organic compounds, sulfur oxides, and nitrogen oxides are discussed in detail.", + "title": "Air Pollution Control Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with sufficient\nknowledge to understand common air pollution problems\ndue to various anthropogenic activities as well as the\nenvironmental fate of air pollutants in the atmosphere, and\nto evaluate potential hazards of air pollutants to the society\nand the environment. Students will also develop capability to\nanalyse of air quality monitoring data for the development\nand application of effective air quality control strategies and\ngovernment policies in the environment of interest.", + "title": "Technologies for Air Quality Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ESE5202A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers several topics in air pollution control including the nature and sources of air pollutants in the indoor and outdoor environments, air pollution models, regulations, technical methods and measures to remove/suppress the emissions of air pollutants. The physical, chemical, and physico-chemical characteristics of pollutants in the atmosphere are described. The principal industrial sources of atmospheric pollution and the technological conditions for the formation of solid and gaseous substances in emissions are defined. Technical principles, basic processes, and equipment employed to limit and eliminate particulates, volatile organic compounds, sulfur oxides, and nitrogen oxides are discussed in detail.", + "title": "Air Pollution Control Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5202AB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In pursuit of the broad goal of avoiding the adverse effects of\nair pollution in a cost-effective manner, air quality engineers\nare involved in a wide range of activities, including (1)\ncreating technical knowledge, (2) designing and applying air\npollution control technologies, and (3) developing air\npollution control strategies. The course will equip students\nwith practical knowledge on the design and applications of\nair pollution control systems to reduce emissions of\nparticulate matter, volatile organic compounds, oxides of\nnitrogen, and sulfur dioxide from static mobile sources. In\naddition, students will gain exposure to air pollution models.", + "title": "Air Quality Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ESE5202B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Aerosol science deals with the behaviour of very fine particles in fluid media which finds many areas such as biosolid management, air pollution control, ultra-cleaning manufacturing technology, and advanced materials. In this module, the basic principles of aerosol science and the corresponding industrial applications will be covered. Topics include physics of aerosols, size distributions, mechanics and transport of particles, aerosol dynamics, nanoparticle synthesis, comubstion aerosols, and pharmaceutical aerosols.", + "title": "Aerosol Science and Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the advanced concepts of toxic and hazardous waste management issues. Major issues are quantification and characterisation, toxicity, impact on human health, state-of-the-art reduction technologies and ultimate disposal. This course will expose students to the risks faced by urban environmental ecosystems and human beings exposed to toxic and hazardous wastes generated through various human activities and the selection of treatment and disposal facilities, their design, construction, operation and maintenance principles.", + "title": "Toxic and Hazardous Waste Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the advanced concepts of toxic and\nhazardous chemical management issues. Major issues are\nquantification and characterization, toxicity, impact on\nhuman health, state-of-the-art biotechnologies to treat the\nhazardous chemicals. This course will expose students to\nthe risks faced by water/soil and human beings exposed to\ntoxic and hazardous chemicals generated through various\nhuman activities and the selection of bioremediation\nstrategies, their design, operation, monitoring, and case\nstudies.", + "title": "Bioremediation of Hazardous Chemicals in Soil & Water", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ESE5204A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the advanced concepts of toxic and hazardous waste management issues. Major issues are quantification and characterisation, toxicity, impact on human health, state-of-the-art reduction technologies and ultimate disposal. This course will expose students to the risks faced by urban environmental ecosystems and human beings exposed to toxic and hazardous wastes generated through various human activities and the selection of treatment and disposal facilities, their design, construction, operation and maintenance principles.", + "title": "Toxic and Hazardous Waste Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5204AB", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the advanced concepts of toxic and\nhazardous chemical management issues. Major topics are\nquantification and characterization, toxicity, impact on\nhuman health, disposal and management practices. Part B\nfocuses on state-of-the-art physico-chemical technologies to\ntreat, stabilize and safely dispose of hazardous chemicals.\nThis course will expose students to the environmental risks\nfaced by caused by toxic and hazardous chemicals\ngenerated through human activities and the selection of\nstate-of-art degradation and separation techniques and\ndisposal strategies, including case studies in industrial\nwastewater and e-wastes.", + "title": "Physico-Chemical Treatment for Hazardous Chemicals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ESE5204B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the advanced concept of sludge and solid waste management. It covers collection, quantification, characterisation, processing, treatment, disposal and resource recovery in relation to sludge and solid waste. It will equip students with in-depth knowledge on principles of various treatment and disposal facilities along with engineering, institutional, legal and financial infrastructures.", + "title": "Sludge and Solid Waste Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a strong foundation in biological principles for environmental engineering, with primary focus on natural biological processes. After an overview of biological principles and classification, the module emphasizes on microbial nutrition and growth, inhibition and control of growth, growth energetics, metabolic pathways, biochemistry of key enzymes, wastewater microbiology, microbial genetics. Through the discussion, students can better understand why biological processes are expected to function in biologically related processes and how their performance may be implemented.", + "title": "Environmental Microbiology and Biotechnology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental principles of environmental modeling, i.e. mass balance, reaction kinetics and transfer mechanisms. Mathematical models are used to deal with water quality problems in natural and man-made systems. These include eutrophication, dissolved oxygen imbalance, the fate and transport of contaminants, and treatment system capacity planning. The module will enable students to appreciate the problems associated with water quality and provide them with the basic skills to predict impacts associated with the pollution of the environment. In this way, students can assess the feasibility of projects which are potential sources of contaminants to the environment.", + "title": "Water Quality Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theories and processes commonly used in industrial wastewater control. Topics covered in this course include characteristics of industrial wastewater, control theories and methods, and treatment of specific industrial wastewaters. The module will enable students to understand the particular problems associated with industrial wastewater control. The students will also gain the knowledge that is required for the design of treatment processes to effectively solve environmental problems relating to industrial wastewater discharge.", + "title": "Industrial Wastewater Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the advanced physical and chemical\ntreatment technologies that can be used for various\nindustrial wastewater treatment. Major issues will include the\nremoval of particles, heavy metal ions, emerging\ncontaminants, organic and oil species, etc. for water quality\nassurance, enhancement or water reclamation/wastewater\nreuse. The topics will cover neutralization, coagulation,\nsedimentation or flotation, granular filtration and membrane\nseparation, adsorption and advanced oxidation. This course\nwill expose students to the challenges and solutions for\nvarious industrial wastewater pollution controls.", + "title": "Physico-Chemical Treatment for Industrial Wastewater", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ESE5402A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces biological technologies that can be\nused for the treatment of different industrial wastewater\ntreatment. Characterization of industrial wastewater and\ndifferent biological processes such as upflow anaerobic\nsludge blanket processes, activated sludge process,\nmembrane bioreactor etc. shall be covered for the removal\nof organics and nutrients in specific industrial wastewater,\nproducing treated effluents for discharge or water\nreclamation/wastewater reuse. The students will gain\nknowledge on the characterization of industrial wastewater,\nconsiderations required for the selection of appropriate\nbiological processes and the design of specific biological\nprocesses for industrial wastewater treatment.", + "title": "Biotechnologies for Industrial Wastewater Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ESE5402B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students the insight of water reclamation and reuse from technology, quality and regulation perspectives, which include planning, health effect, reclamation systems and relevant practice. Through lecture and project, the course covers overview of water reclamation and reuse, contaminants in reuse systems, treatment technologies for water reclamation, wastewater reuse practices, and health risks assessment. This course will enable students to understand the contaminants in reuse systems and treatment technologies for water reclamation. Health risks assessment in wastewater reuse practices is also highlighted. Students learn how to apply the water reclamation system to reclaim water for different purpose with the health effect and regulation aspects properly addressed.", + "title": "Water Reclamation Engineering, Practice & Mgt", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the treatment technologies that could\nbe used for water reclamation and reuse applications.\nTopics covered include the removal of particles, dissolved\nconsituents, emerging contaminants, trace consituents,\nmicrobial contaminants etc. in relation to water reclamation\nand reuse. It will equip students with basic knowledge to\nidentify possible technologies for water reclamation and\nreuse.", + "title": "Technologies for Water Reclamation and Reuse", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ESE5403A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will equip students with basic knowledge\nneeded to appreciate the challenges and formulate solutions\nfor planning and implementing water reclamation and reuse\nfor various applications. Topics covered include reused\nwater quality and regulations, planning, health effects, and\nreclamation systems. Health risk assessment in water reuse\npractices will also be highlighted. Various water reuse\napplications will be introduced.", + "title": "Applications in Water Reclamation and Reuse", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ESE5403B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the theories as well as practises of biological wastewater treatment processes. Students will learn to understand the fundamental principles of biological treatment systems. The applications of biological treatment systems will also be addressed. This course will facilitate students to acquire in-depth knowledge of biological treatment systems in wastewater treatment.", + "title": "Biological Treatment Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5404", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental principles of water treatment processes. Students will be able to understand water treatment in relation to chemcial equilibrium and kinetics, unit processes and their integration. The applications of these fundamental principles for formulating design and operation for water treatment systems will also be addressed. This course will facilitate students to acquire in-depth knowledge of water treatment systems.", + "title": "Water Treatment Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Membrane technology is an emerging field in water and wastewater engineering. This module offers students the fundamental principles and practical applications of membrane processes as an advanced measure for water and wastewater treatment. The topics covered in this module are membrane transport, concentration polarisation, and membrane fouling in relation to water and wastewater engineering. The module\nwill also deal with fouling characterisation of feed water, membrane fouling modelling and methods for fouling prevention and mitigation. Applications of MF, UF, and\nRO membranes in various water and wastewater.", + "title": "Membrane Treatment Process Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5406", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Membrane technology has been widely adopted for water reclamation and seawater desalination. It shall continue to be a key technology for resolving the problem of water scarcity in the near future. This module shall focus on the design and operational consideration of membrane processes for water reclamation and seawater\ndesalination, Topics covered in this module include water quality standards relevant to reclaimed and desalinated water, filtrate quality consideration, membrane filtration\nsystem, design and operation of MF/UF filtration system, membrane bioreactor, nanofiltration and reverse osmosis system, examples of commercial plants and economics of membrane system.", + "title": "Membrane Technology for Water Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5407", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to examine the fundamental principles governing toxic contaminant exposure and risk to humans and ecosystems. The course will cover necessary aspects of probability and statistics, physical and chemical behaviour of key priority pollutants, mass transfer and exposure pathways of the contaminants, human and environmental toxicology, and methodologies for risk assessment. The\ncourse will also involve several case studies of remediation technology applications with a focus on understanding how human and environmental risk is managed in a real\nlife situation.", + "title": "Environmental Risk Assessment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5601", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers historical perspective of environmental management and the basics of environmental management systems (EMS), including an introduction to environmental management, EMS models and key elements, environmental review, environmental policy, identifying and evaluating environmental aspects and impacts, legal requirements, objectives, targets and management programmes, implementation of EMS requirements, monitoring and measurement, EMS audits, management review and continual improvement. Practical sessions will be included covering identifying and evaluating environmental aspects and impacts.", + "title": "Environmental Management Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5602", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers historical perspective of environmental management and the basics of environmental management systems (EMS), including an introduction to environmental management, EMS models and key elements, environmental review, environmental policy, identifying and evaluating environmental aspects and impacts, legal requirements, objectives, targets and management programmes, implementation of EMS requirements, monitoring and measurement, EMS audits, management review and continual improvement. Practical sessions will be included covering identifying and evaluating environmental aspects and impacts.", + "title": "Environmental Management Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5602AB", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the recent applications of environmentally friendly catalysis for pollutant detoxification, such as indoor air pollutant degradation, water pollutant degradation and self cleaning surfaces. The course also covers examples of catalytical reactions in industry that are environmentally sustainable and produce the least amount of toxic by-products or processes that use advanced, novel processes to reduce unwanted products. The course will briefly review catalysis principles, then follows up by discussing the industrial limitations of using catalysts, slurry systems vs. catalyst immobilisation, catalyst deactivation and their minimisation, mass transfer limitations, water vs. solvent based catalysts, etc.", + "title": "Green Catalysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5607", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Heavy Metals in the Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5608", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with work attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ESE5666", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to real-world environmental ecosystems, biogeochemical cycle, pathways and interactions between them. The complications that arise in understanding due to the interactions within the\necosystems and the biogeochemical cycle will be examined. Students will be introduced to methods and tools to handle and analyze data sets that would arise\nfrom such problems. At the end students should be able to analyse and quantify or qualify the complicated relationships that can arise from understanding large scale\nenvironmental ecosystems or more restricted ecosystems such as buildings and their biomes. Students will be expected to have basic statistical background.", + "title": "Meta-data for environmental ecosystems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover advanced topics of current interests in environmental engineering that will not be taught on a regular basis. The requirement and syllabus will be specified when the module is offered. The course will be conducted by NUS staff and/or visitor from the industry.", + "title": "Topics in Environmental Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course module covers the legal requirements, professional and scientific practices in chemical hazards management. It includes (1) the workplace safety and health, environmental protection. Fire safety, and public security legislations in Singapore as well as the Globally Harmonization System, (2) the hazardous chemical properties of toxicity, flammability, explosiveness, environmental biodegradability and bioaccumulation, (3) the chemical exposure standards, (4) the control of chemical risk through the hierarchy of control principles, (5) the mitigation of their impact through incident management with proper mitigating systems, emergency response planning. (6) procedure of response during terror attack.", + "title": "Topics in Environmental Engineering: Chem. & Lab Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5880A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course module covers the legal requirements, professional and scientific practices in chemical hazards management. It includes (1) the workplace safety and health, environmental protection. Fire safety, and public security legislations in Singapore as well as the Globally Harmonization System, (2) the hazardous chemical properties of toxicity, flammability, explosiveness, environmental biodegradability and bioaccumulation, (3) the chemical exposure standards, (4) the control of chemical risk through the hierarchy of control principles, (5) the mitigation of their impact through incident management with proper mitigating systems, emergency response planning. (6) procedure of response during terror attack.", + "title": "Chem. & Lab Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5880AB", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the challenges of protecting urban and ecosystem environments in the face of climate change. The vulnerabilities of these systems are discussed in the context of changing weather patterns and extreme weather. The interactions and links between fragile ecosystems and urban cities will be examined through analysis of coastal cities and sea level rise, water security, food security, urban heat-island effect and spread of infectious diseases. The module will enable students to appreciate the issues associated with climate change and how they impact urban-ecosystem environments in terms of biodiversity, water and air quality and public health.", + "title": "Topics in Env. Eng. - Climate Change & Urban Ecosystem", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the planning and evaluation of environmental protection systems,which are typically capital intensive and require high operational and maintenance costs. The impact associatedwith uncertainty of environmental inputs and variability in operating conditions (which will inevitably occur) on environmental protection systems, approaches to manage such uncertainty/variability, engineering tools for planning environmental protection systems and evaluating the effectiveness of these systems along with capacity management will be discussed. This module will enable students to acquire skills useful for planning, analysing, designing and managing capital intensive environmental protection systems.", + "title": "Topics in Env. Eng. - Environ Sys Planning & Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5880C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Environmental technologies play an important role in driving green growth and solving environmental problems. This module will provide the participants with foundational knowledge about various environmental technologies including physical, chemical and biological processes applications in the fields of air, water and waste management and their applications for proper resource management and pollution control. Using the relevant scientific and engineering principles, it will discuss how those technologies can help individuals, institutions and industries in strengthening environmental and public health protection measures, and green infrastructure systems in environmentally sustainable economies. Case histories and real-life examples will be used to illustrate the practical applications of the technologies discussed.", + "title": "Environmental Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE5901", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces fundamentals of environmental\nengineering including physical, chemical, biological and\necological principles, which provides a bridge for students to\nmove from science to environmental engineering\napplications in air, water and soil systems.", + "title": "Introduction to Environmental Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ESE5901A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces transport and transformation models\nfor contaminant and environmental technologies including\nphysical, chemical, and biological processes. It elucidates\nclassic and emerging environmental technologies in the\nplanning, design and operation activities for water,\nwastewater and soil treatment processes applied to local\nand global environmental problems.", + "title": "Technologies in Environmental Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ESE5901B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ESE5999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines fundamental principles that govern transformation and\nfate of organic contaminants in natural and engineered systems. Thermodynamic principles and molecular properties are used throughout the module to develop\npredictive relationships for the solubility of organic contaminants, partitioning between\nenvironmental phases, sorption to solid surfaces, and transformation processes.", + "title": "Environmental Fate of Organic Contaminant", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE6001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental principles that can be used in the analysis and modelling of basic environmental engineering processes and systems. Specifically, it will examine the material conservation law and its applications, including material balance, mass transfer, reaction kinetics (rate and mechanism) and reaction engineering (reactor performance), etc. Through the discussion, students can better understand why physical processes are expected to function or behave in certain ways and how process performance may be implemented.", + "title": "Advanced Environmental Physical Process Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE6002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a strong foundation in environmental chemical principles for environmental engineering and science, with primary focus on natural and engineered processes and systems. The topics include chemical background, properties of soils, chemical equilibrium and thermodynamics, acid/base reaction, CO2 system, coordination chemistry, metal-ligand interaction, precipitation, adsorption, ion exchange, colloid, and organic geochemistry. MINEQL, a chemical equilibrium software, will be taught in this module. Additional advanced theories in water chemistry will be taught. Upon the completion, students will be better equipped with knowledge in environmental chemistry to quantitatively understand from more fundamental standpoints and solve various environmental problems.", + "title": "Advanced Environmental Chemical Process Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE6003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Friday", + "lessonType": "Lecture", + "size": 8, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a strong foundation in biological principles for\nenvironmental engineering, with primary focus on natural biological processes. After an overview of biological principles and classification, the module emphasizes on microbial nutrition and growth, inhibition and control of growth, growth energetics, metabolic pathways, biochemistry of key enzymes, wastewater microbiology, microbial genetics. Through the discussion, students can better understand why biological processes are expected to function in biologically related processes and how their performance may be implemented.", + "title": "Advanced Environmental Microbiology and Biotechnology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESE6301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Doctoral Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "ESE6999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental electronic principles of sensor systems for a variety of different disciplines. Particular emphasis will be given to circuits that are used in research and development, such as sensor amplifiers, filters, and data-acquisition. The module has both analogue and digital circuit principles, and involves project activities that involve hands-on construction of sensors, their circuits and translating their signals into digital data on to a computer.", + "title": "Sensor System Electronics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP1104B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn engineering fundamentals like forces & equilibrium, dynamics and understand how materials and structures work and fail. They will also learn the importance of safety in conducting engineering activities, units and dimensions, significant numbers, how to make good guesses to solve engineering problems, vector mechanics and create engineering drawings. The students apply these concepts through building a wooden tower, taking full control of its design, modelling and construction. They will test their towers on a shake-table, and the team with the best design, based on a pre-determined set of metrics, will be given due recognition.", + "title": "Engineering Principles In-Action", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP1111", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-02-01", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of the module is to develop a fundamental understanding of how to formulate the governing equations of continua with the aid of basic conservation laws of physics that govern the behaviour of a continuum. An allied objective is to apply the governing equations to simplified as well as industrially-relevant problems in solid mechanics and fluid mechanics. Overall, this course provides a foundation for the role of continuum mechanics in engineering and science.", + "title": "Principles of Continua", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP2106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces numerical methods and statistics. Students will learn the fundamentals of numerical methods and statistics and how to apply these to solve a range of engineering and science problems. \n\nThey will mainly write and debug their own codes in MATLAB\u00ae and are exposed to complex engineering problems and solving through COMSOL\u00ae Multiphysics \u2013 a finite-element-based simulation environment. \n\nThe numerical methods include, e.g., solving for roots of equations, integrating numerically and finding solutions to ordinary and partial differential equations. The statistical methods include basic concepts of probability and statistics and how they are used in the acquisition and processing of data.", + "title": "Numerical Methods and Statistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP2107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "There are two design projects in this module. First project covers control theory and its applications, open loop systems, closed loop systems, feedback control systems, Laplace transforms, PID controllers and the Root Locus Method. Students apply these lessons to a path follower robot kit. \nSecond project allows students to apply their understanding of Scanning Tunneling Microscopy to design and assemble a setup to maintain stable quantum tunneling. This involves Computer Assisted Design (CAD), digital fabrication of mechanical parts, integration and testing of a closed loop control analog circuit, and data logging and analysis via a PC-based Digital Acquisition (DAQ) system.", + "title": "Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP2110", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0302", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0302", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental electronic principles of sensor systems for a variety of different disciplines. Particular emphasis will be given to circuits that are used in research and development, such as sensor amplifiers, filters, and data-acquisition. The module has both analogue and digital circuit principles, and involves project activities that involve hands-on construction of sensors, their circuits and translating their signals into digital data on to a computer.", + "title": "Sensor System Electronics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP2111", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0605-06", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 39, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 39, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-02-01", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-02-01", + "day": "Friday", + "lessonType": "Laboratory", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-02-01", + "day": "Friday", + "lessonType": "Laboratory", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aims of this module are to provide a comprehensive coverage of a range of nanofabrication and characterization techniques. The fabrication part will facus on top-down techniques which will complement the bottom-up techniques covered by CM3251 Nanochemistry. \n\n\n\nTopics to be covered include:\n\nNanofabrication: thin flim deposition, etching, photolithography, EUV, electron beam, x-ray and ion beam lithography, focused ion beam and direct laser writing, scanning probe based techniques, fabrication and alignment of nanostructures, manufacturing of nanodevices and nanosystems. \n\nNanocharacterization: basic principle of imaging, wave diffraction, interaction of energy beams with materials, optical and electron microscopy, scanning probe microscopy, x-ray microanalysis, electron transport measurement, magnetic measurement and optical spectroscopy.", + "title": "From Making Nano to Probing Nano", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP3102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn to create robots that are able to perform appropriate actions after receiving observations from the environment in the face of uncertainty. They will learn recursive state estimation, Kalman filtering, particle filtering and understand robot motion and measurement uncertainties. As robotics and vision serve similar goals, students will also learn computer vision techniques with machine learning to perform vision tasks. They will learn feature extraction in images, dimensionality reduction, principal component analysis, Non-parametric learning methods, Neural Networks and Support Vector Machine. The students will apply their learnt knowledge on a robotic task that involves both localization and vision.", + "title": "Machine Learning in Robotics and Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E4-04-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 13 + ], + "venue": "E4-02-01", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will work in teams of 4 or 5 to solve real-world problems, from idea to innovative prototype solutions, in semester 1. Each student will be supervised by several faculty members, one host supervisor who instructs the student on certain specialised techniques, while other supervisors help in the application of these techniques to the specific design projects being carried out. Design project examples are the solar-powered golf buggy and a nanodevice. The project may be structured in such a way that it can be continued in the module ESP3903 Major Design Project II which will be run in semester 2.", + "title": "Major Design Project I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP3902", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-02-01", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 21, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 21, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will work in teams of 4 or 5 to solve real-world problems, from idea to innovative prototype solutions, in semester 2. Each student will be supervised by several faculty members, one host supervisor who instructs the student on certain specialised techniques, while other supervisors help in the application of these techniques to the specific design projects being carried out. Design projects typically involved simulation and are related to optics. The project may be structured in such a way that it continues on from the module ESP3902 Major Design Project I which will be run in semester 1.", + "title": "Major Design Project 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP3903", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-02-01", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Energy conscious design and efficient operation of energy consuming systems used in industries and commercial buildings remain as a challenge for energy engineers.\n\nThe module starts with a review of the fundamentals of heat and mass transfer and then introduces central chiller, compressed air, boiler and combined heat and power systems as the major energy consuming systems used in industries and commercial buildings. Topics covered include working principle of above systems, measurement and analysis of energy performance, energy savings opportunities, design of energy efficient systems and operational considerations, control strategies, technical and economic feasibility of energy projects.", + "title": "Optimization of Energy Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP4401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists mainly of a research-based project carried out under the supervision of one or more faculty members. The module is normally taken over two consecutive semesters and the students are expected to put in about 15 hours per week for their projects. In addition to the specific problem studied, students are exposed to literature survey and research methodologies. These projects are usually open-ended in nature, giving the students flexibility to judiciously select viable alternatives, and challenge students to acquire skills for independent and lifelong learning. The projects range in variety from design and development projects (software and hardware), computer modelling and simulation, to designing experiments and equipment. Guidelines for project proposals stipulate the requirement for elements of innovation, novelty or research.", + "title": "Research Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ESP4901", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists mainly of a research-based project carried out under the supervision of one or more faculty members. The module is normally taken over two consecutive semesters and the students are expected to put in about 15 hours per week for their projects. In addition to the specific problem studied, students are exposed to literature survey and research methodologies. These projects are usually open-ended in nature, giving the students flexibility to judiciously select viable alternatives, and challenge students to acquire skills for independent and lifelong learning. The projects range in variety from design and development projects (software and hardware), computer modelling and simulation, to designing experiments and equipment. Guidelines for project proposals stipulate the requirement for elements of innovation, novelty or research.", + "title": "Research Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ESP4901A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide fundamental theory of transport phenomena and train the student in mathematical modelling. The former comprises the derivation and understanding of the macroscopic and microscopic conservation laws for mass, momentum, and energy, together with the relevant constitutive relations and boundary conditions; the latter focuses on simplified back-of-the-envelope calculations such as scaling and dimensional analysis to complement and aid in the interpretation of results. These concepts are applied to a wide array of simplified as well as industrially relevant problems with focus on energy systems, where mathematical models are constructed, solved numerically or analytically and\nfinally presented.", + "title": "Transport Phenomena in Energy Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP5402", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module starts with highlighting the importance of\nnanomaterials in the context of energetics, electrical\ntransport and thermal behaviour. Later it will deal with\ndifferent energy systems using nanostructured materials\nfocusing on the energy conversion as well as energy\nstorage. Course closes with various engineering aspects,\nsafety issues and related challenges to be faced in the\ndevelopment of miniaturised energy devices using\nnanostructured materials.", + "title": "Nanomaterials for Energy Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ESP5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module documents the learning experience from the internship in writing. Taken together with TR3201 Entrepreneurship Practicum, the student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Innovation & Enterprise Internship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "ETP3201I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module documents the learning experience from the internship in writing. Taken together with TR3201 Entrepreneurship Practicum, the student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Innovation & Enterprise Internship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "ETP3201L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module documents the learning experience from the internship in writing. Taken together with TR3201 Entrepreneurship Practicum, the student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Innovation & Enterprise Internship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "ETP3201S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Innovation & Enterprise Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ETP3202E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Innovation & Enterprise Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ETP3202I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Innovation & Enterprise Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ETP3202L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Innovation & Enterprise Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ETP3202P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Innovation & Enterprise Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ETP3202S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module measures the student\u2019s effort in pursuing his/her entrepreneurial aspirations and in further developing his/her potential beyond their internship given the NOC opportunity. Taken together with TR3202 Start-up Internship Programme, the student will be assessed on his/her internship by regular reviews and presentations to companies and consulting professor. He/she will also need to prepare a business pitch at the end of the internship.", + "title": "Innovation & Enterprise Internship Practicum", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "ETP3203L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Module aims to evaluate students\u2019 co-curricular learning while on the NUS Overseas Colleges (NOC) programme through a business pitch, participating in entrepreneurship related activities and a business idea log.", + "title": "Innovation & Enterprise Internship Practicum", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ETP3204S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is for students on the 3-month NOC programme. Students will intern in start-ups or innovative enterprises in one of NOC\u2019s global entrepreneurial hotspots. Through the internships, students are immersed in the intense venture creation environments unique to each location. They will work side-by-side with entrepreneurs to gain real life experience on the workings inside a start-up. These internships can be technical, general and/or inter-disciplinary in nature, and need not be related to the students\u2019 major or discipline.", + "title": "Innovation & Enterprise Internship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "ETP3205", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the knowledge and tools required to start their own successful scalable business. Students learn through developing a business idea and business plan and presenting it to a panel of judges at the end of the course. Major topics covered include: idea generation and evaluation, value proposition, market analysis, sustainable competitive advantage, marketing strategy, creative problem-solving, innovation, teams, legal issues, financing, valuation and forecasting, managing growth, going global, negotiation and presentation. The course is targeted at all students who are interested in learning how to start a scalable business.", + "title": "New Venture Creation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP3211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the opportunity for students to pursue an in-depth study of an entrepreneurship topic/issue under the close supervision and guidance of an instructor.", + "title": "Independent Study Module in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ETP3221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for indepth study in the area of entrepreneurship, and for studying specialized topics and new developments in the area. Topics covered will vary from semester to semester and may include entrepreneurial finance, technology and intellectual property management, electronic business management, product design and management, digital marketing.", + "title": "Topics in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP3222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module proposes to bring students at NUS in Singapore and multiple NOC locations overseas to work as a global project team to help leaders of a new venture make decision related to global expansion. \n\nWith the evolution of Internet, many high-tech startups expand sales and distribution internationally soon after founding. They enter target markets around the world before they are imitated by \u201ccopycat\u201d entrepreneurs in\nother countries. Many new ventures outsource business functions like manufacturing, engineering, customer support, and R&D to other countries to reduce labor costs or get access to scarce talent. This module uses field work\nto prepare students to help new ventures go global.", + "title": "Globalization of New Ventures", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP3223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Participants will be exposed to best-of-class lessons from entrepreneurs and thought leaders in Sweden, Singapore, and Silicon Valley. Students from NUS, KTH, and Silicon Valley will compare and contrast the lessons of entrepreneurial leaders in all three regions. Participants will develop a personal philosophy and code of conduct for themselves as the next generation of entrepreneurial leaders. They will develop their skills as global entrepreneurs, preparing them to more effectively collaborate with entrepreneurs and members of the Circles of Influence in other high tech regions around the world. Members of all three learning groups will develop their professional global networks.", + "title": "Global Entrepreneurial Leadership", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP3224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to discuss the structure, environment and risk management of entrepreneurial investments in business start-ups. There will be a comprehensive introduction of entrepreneurial investments, from combined investment options to focused investments, and other different processes based on real-life and theoretical basis. This course focuses on both the theoretical and practical aspects of entrepreneurship investment. Case study analysis and comparison of local and international environment of venture capital investment would be the primary focus. This eventually leads up to a discussion of the construction of an entrepreneurship investment system which is appropriate and relevant to a particular country.", + "title": "Entrepreneurial Finance", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP3241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to equip an engineer with the marketing skills needed to launch and lead a high-growth, high-tech venture. Covers marketing challenges facing entrepreneurs who expand internationally early in the life of the company. Combines learning by the case method, working in teams, and a field based entrepreneurial project. Bases 50% of grade on team performance, to cultivate entrepreneurial leadership and teamwork skills.", + "title": "Global Entrepreneurial Marketing", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP3251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A two week long immersion module that introduces students to the core concepts of entrepreneurship. Through action learning, cross-cultural team learning and hackathon pitching, this module aims to inculcate an entrepreneurial mindset and provide the foundational understanding of the entrepreneurial start-up process contextualized in the startup ecosystems of Singapore and Southeast Asia.", + "title": "Summer Programme in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ETP3321", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A two week long immersion module that introduces students to the core concepts of entrepreneurship. Through action learning, cross-cultural team learning and hackathon pitching, this module aims to inculcate an entrepreneurial mindset and provide the foundational understanding of the entrepreneurial start-up process contextualized in the startup ecosystems of Singapore and Southeast Asia.", + "title": "Summer Programme in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ETP3321A", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity to gain knowledge in the broader range of topics of entrepreneurship. Topics covered will vary from semester to semester and may include innovation, negotiation, social entrepreneurship, law, operations, leadership, strategy, technology.", + "title": "Market Validation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity to gain knowledge in the broader range of topics of entrepreneurship. Topics covered will vary from semester to semester and may include innovation, negotiation, social entrepreneurship, law, operations, leadership, strategy, technology.", + "title": "Seminars in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Semester long internship in a Singapore based startup.The student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.\nRemoval of overseas study mission from curriculum.", + "title": "Innovation & Enterprise Internship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "ETP5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a hands-on practical introduction to the Lean StartUp methodology. Students will learn and apply the lean launch methodology for customer discovery/market validation to empirically test and validate their business idea.", + "title": "GRIP Venture Creation Practicum", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ETP5311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A two week long immersion module that introduces students to the core concepts of entrepreneurship. Through action learning, cross-cultural team learning and hackathon pitching, this module aims to inculcate an entrepreneurial mindset and provide the foundational understanding of the entrepreneurial start-up process contextualized in the startup ecosystems of Singapore and Southeast Asia.", + "title": "Summer Programme in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP5321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is teach technology entrepreneurs on how to utilize intellectual property (IP) assets and integrate these into their businesses. \nTopics covered: i) different IP types (patents/copyright/trademark/knowhow) and how each type can protect a core business ii) best practices for developing/licensing/enforcing IP rights iii) discussion of how venture capitalists view IP ii) basics of patentability in different technology segments iii) technology landscape iv) avoid infringement of already-granted competing patents. \nThis module will leverage on case studies, assignments, group discussions and presentations by industry experts in various technology segments (medical /sustainability /energy /materials /AI /food tech).", + "title": "Intellectual Property Basics for Entrepreneurs", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP5331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce the world of early-stage investments and venture capital to the participants. It will also allow participants to develop a better understanding of the fund-raising process for a startup and appreciate an entrepreneur\u2019s challenges from an early-stage financing point-of-view.\nParticipants will learn the basic venture-funding skillset from experienced operators and investors. They will also learn about what early stage investors and venture capitalists look out for during the fundraising process, as well as gaining insights about the world of innovation.\nThis module is designed for aspirational entrepreneurs and working professionals seeking to chase their entrepreneurial dreams.", + "title": "New Venture Finance", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ETP5341", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "3-month long internship in a Singapore based startup. The student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Innovation & Enterprise Internship", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "ETP5401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a hands-on practical introduction to the Lean StartUp methodology. Students will learn and apply the lean launch methodology for customer discovery/market validation to empirically test and validate their business idea.", + "title": "GRIP Startup Practicum", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "ETP5411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an overview of the major events, actors, and developments that have shaped the course and character of Europe since the French Revolution. From the rise of nationalism, industrialization, and imperialism that paved the way for World War I to the failure of peace, the horrors of World War II, the cold war division of Europe and the ongoing process of integration and European Union enlargement, this module sketches out the making and remaking of Europe during the nineteenth and twentieth centuries. This module is designed for all students at NUS interested in acquiring an understanding of modern Europe. EU1101E is offered by the Department of History.", + "title": "Making of Modern Europe", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores basic political ideas from the ancient Greeks and Romans from the emergence of the polis to the collapse of the empire, including the ideas of justice, law, democracy, and politics itself, through the study of original works by Thucydides, Plato, Aristotle, St. Augustine, and others. It also considers how these ideas shaped medieval and early modern political thought.", + "title": "Ancient Western Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores major political ideas and concepts from the modern Western tradition. Key political constructs such as power, authority, justice, liberty and democracy are examined in intellectual and historical context. Reading Thomas Hobbes\u2019s Leviathan and John Locke\u2019s Second Treatise on Government, among other influential writings, students will be exposed to the broader themes and ideas that have shaped political life in the West since 1600.", + "title": "Modern Western Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU2204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module - which is offered to all students with an interest in Modern European History - will explore the significant features and impact of nationalism, imperialism and adventurism as they relate to Europe in the dramatic seventy-year period from the upheavals of the 1848 revolutions to the end of the First World War. During this period Europe became the center of a new and deadly game of power politics in which any semblance of defeat was reason enough to prepare the ground for revenge. Eventually, war took its toll on every major participant from 1914-18.", + "title": "Upheaval in Europe: 1848-1918", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU2213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to some of the main figures and movements of Continental European Philosophy. The purpose is to provide a broad synoptic view of the Continental tradition with special attention paid to historical development. Topics to be discussed include phenomenology, existentialism, structuralism, hermeneutics, Critical Theory, and post\u2010structuralism/post\u2010modernism. Thinkers to be discussed include Husserl, Heidegger, Sartre, Levi\u2010Strauss, Derrida, Gadamer, Habermas, Lyotard and Levinas. The main objective is to familiarize the student with the key concepts, ideas and arguments in the Continental tradition.", + "title": "Introduction to Continental Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU2214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 3, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This introductory course gives students a basic understanding of the ideas, institutions, and actors that influence the political life of modern Europe. We explore the domestic politics of several European states including France, and the U.K., as well as relations among European states before and after World War II, with special attention to European integration. While most of our attention will be devoted to western Europe, we will discuss political transitions in eastern Europe and the process of EU expansion. The module is intended for students in European Studies, Political Science, and others with an interest in Europe.", + "title": "European Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU2217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the major works of Machiavelli, Hobbes, Locke, Adam Smith, Rousseau, and Nietzsche. These thinkers help us to understand the sources of current and competing beliefs about social and political life. So, while we seem to cherish ideas such as freedom, progress, and creativity, we are also troubled by the impact of these ideas on our beliefs in the importance of culture, tradition, and community. This module would be helpful to students interested in the political implications of globalization and the new economy.", + "title": "Western Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU2218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will gain a basic understanding of empires in history. Individual empires will be studied to demonstrate patterns regarding the origins, development and collapse of empires. Topics will include the expansion of empires, colonization, military conquest, administration, and ideologies of empire. The humane side of imperialism will also be explored the module will get students to try to understand the experience of subject peoples while also regarding empires as sites of cultural interaction. Finally, students will be introduced to some of the interpretative paradigms which have shaped the scholarly exploration of empires.", + "title": "Empires, Colonies and Imperialism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU2221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will trace an intellectual dialogue between two central traditions in 20th Century European philosophy the Frankfurt School of Critical Theory and post-Heideggerian Hermeneutics. The module will provide an introduction to the main thinkers of both traditions Theodor Adorno, Max Horkheimer, Herbert Marcuse for the Frankfurt School and Martin Heidegger, Hans Georg Gadamer and Paul Riceour for the Hermeneuticists. We will also examine different conceptualisations of reason and how both schools were shaped by their attempts to grapple with, and respond to, the implications of understanding reason as a practice conditioned by particular histories and forms of life.", + "title": "Critical Theory and Hermeneutics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU2222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to widen knowledge and appreciation of the film craft by considering innovative, popular and world\u2010renowned work from a major producing region. Can we talk of a European \u201cregional\u201d cinema, or are we faced with various national traditions? As a film module, it analyses how the visual medium makes meaning and relates the study of film to issues in the theory of representation. The films cover a period from the 1940s to the new millennium, and geographically from Russia to France and the UK.", + "title": "Europe since 1945 in Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU2224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Europe was plagued by wars, revolution and totalitarian dictatorship between 1919 and 1945. It witnessed the rise of Bolshevism and of various Fascist regimes, revealed the economic and political weakness of the Western democracies and the failure of the League of Nations. This module will focus on the rise of four dictators of this period Mussolini, Franco, and Hitler. All students are welcome, but those coming with a background in Political Science and even Sociology may find this course builds on existing knowledge and concepts.", + "title": "Europe of the Dictators", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU3212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 3, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines the key modalities in the evolution of European Economic and Social Institutions from the collapse of the Holy Roman Empire all the way through the rise of Capitalism and the Industrial Revolution. The development of novel property rights, new technologies, altered social relations, demographic change, and transformed political structures, are the principal areas to be studied. A special feature to this evaluation is to contextualise the European achievement in the context of related world history, in particular, its close linkage to non-European societies via the modus of Colonialism.", + "title": "European Economic History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU3215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores a selection of generally short, popular, and major European literary works which work with the legacy of Romanticism, Realism, and Modernism in the new context of post-World War Two Europe and the rise of the European Union; several texts are by Nobel Prize winners, and all are acknowledged as \u201ccontemporary classics.\u201d Various genres are represented, and the module takes a relatively wide sweep across Europe. In addition, filmed versions of the texts are considered where appropriate and available. The module therefore will explore texts both in their own right and as representative examples of major tendencies and developments of an essentially European tradition.", + "title": "European Literature I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU3217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a critical examination of central problems in classical social theory, with emphasis on the multifaceted analysis of the larger social processes in the making of modern society. The module will concentrate on the original contributions of major theorists such as Marx, Weber, and Durkheim and explore how their works continue to influence current Sociology. This course is mounted for all students throughout NUS with an interest in classical social theories.", + "title": "Social Thought & Social Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU3224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Monday", + "lessonType": "Lecture", + "size": 4, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Friday", + "lessonType": "Lecture", + "size": 4, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Using Existentialism as a springboard, the module discusses recent movements in Continental Philosophy. Objectives: (1) Introduce major movements in Continental Philosophy, (2) Promote understanding of the characteristics of Continental Philosophy, (3) Encourage further study in Continental Philosophy. Topics include existentialism, structuralism and post-structuralism. Target students include all those wanting to major in philosophy and those wanting to have some knowledge of European philosophy.", + "title": "Continental European Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU3227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will trace the historical development of the major Western and Central European Powers from the late 1930s up to the fall of the Berlin Wall in November 1989 and the reunification of Germany in October 1990. Apart from the international challenges posed by the Second World War and the subsequent Cold War, the European states were also beset by numerous acute domestic crises that required remedial treatment by their governments. Some received it and prospered, others did not and languished.", + "title": "Cold War in Europe, 1945-1991", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU3230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module relates the study of modern European imperialism to some topics outside of Europe. It examines a dimension of modern imperialism. Themes will include the economic basis of imperialism, the interaction of cultures (within imperial networks), the migrations of peoples, missionary movements, the management of religion and motives and means of imperial control. Normally one geographical area of imperial experience will be explored in depth.", + "title": "Modern Imperialism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU3231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the European Studies Programme, have relevance to the major, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the programme.", + "title": "Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EU3550", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is open to all Honours students and no previous background in either early modern or European history is required. The objective of this document-based, seminar-style course is to sharpen student's thinking skills and sense of conceptual evolution. Key concepts, such as \"sovereignty\" and the \"just war\" that remain pertinent until today will stand at the forefront of our investigations.", + "title": "Early Modern Europe and its World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EU4205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore and introduce different themes in Modern European History such as political changes, political leadership, diplomacy and interstate relations.", + "title": "Special Paper in Modern European History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EU4214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\"Comparative Business Cultures\" will approach the subject area from both the microeconomic level (organization theory and organizational sociology) and from a macro perspective the societal settings, the legal and normative environment, and the macroeconomic and structural context within the North American, and the different European and Asian business cultures. At each step their compatibility with the concepts of globalization will be reviewed. The tutorial will deepen this study in analyzing pertinent corporate histories and biographies of important business leaders active in the different business cultures under review. The objective is to raise students' awareness of intercultural differences in business and organizational behaviour and communication at both practical and analytical level. This should be useful for future careers in globally operating corporations or international organizations. As the course is interdisciplinary in nature (covering economics, sociology, psychology and business administration), interested students from other faculties are encouraged to attend. Basic economic literacy, practical experience in business organizations and some overseas travel are a plus.", + "title": "Comparative Business Cultures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EU4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module, whose specific content may change from time to time within the following guidelines, presents an interdisciplinary approach, but one grounded in the literary, to a topic in European literature, especially but not exclusively from the Romantic, Modernist or Contemporary periods. Always comparative (across two nations at least), it considers aspects of a period, a movement, a thematic issue or a combination of all these. Texts are chosen not only for their intrinsic merits but for their complementarity to the English Literature curriculum in general, and, as a module crosslisted with European Studies, to that programme also.", + "title": "Topics in European Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EU4220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines at least one recent movement in Continental European Philosophy. Recently, the module has been concerned with Philosophical Hermeneutics. Objectives (1) Promote understanding of the main arguments in one or more of the recent movements in Continental Philosophy, (2) Familiarize students with the main debates, (3) Encourage further work in Continental Philosophy. Topics covered include hermeneutics, Critical Theory and post-structuralism.", + "title": "Recent Continental European Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EU4223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is open to all Honours students and no previous background in either early modern or European history is required. The objective of this document-based, seminar-style course is to sharpen student's thinking skills and sense of conceptual evolution. Key concepts, such as \"sovereignty\" and the \"just war\" that remain pertinent until today will stand at the forefront of our investigations.", + "title": "Early Modern Europe and its World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EU4224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth, in seminar format, problems in a selected area or aspect of modern imperialism. It will examine in closer focus a particular empire (British, Dutch, French, Portuguese, Spanish, and American) with particular reference to Asia and to Asian interaction with Europe and America. Common themes will include subaltern history, economic development, challenges to imperial control, and explanations and arguments about imperial decline.", + "title": "Imperialism and Empires", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EU4226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0101", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 0, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The European Union is often viewed as an economic superpower but a military pygmy. This module aims to provide students with tools to evaluate whether the EU, as a non-state actor, can have a coherent and effective foreign policy. It considers theories and debates concerning the institutionalisation of the EU's Common Foreign and Security Policy (CFSP), and includes case studies of EU objectives and actions on selected issues (international trade, ethics, human security), in selected regions (Eastern Europe, the Middle East, Asia and Africa), and in relations with international organizations such as the UN.", + "title": "European Foreign Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EU4228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students enrolled in the module can select an EU-based topic and the supervisor based in any discipline across FASS. Regardless of the department of the supervisor, the HT will follow the requirements, format, limits and deadlines set by the History Department. The Honours Thesis is a research and writing exercise usually done in the final semester of a student pursuing an Honours degree.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "EU4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "EU4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange ULR Breadth", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EX1881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange UEM (CEE)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EX3890", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Technical Elective (CEE)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EX4003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Technical Elective (CEE)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EX4004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Unrestricted Elective Outside Major", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EX4874", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Unrestricted Elective Outside Major", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EX4875", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This course focuses on the application of physical and chemical principles and the design of engineered systems for the improvement and management of air, water, and land resources. Topics to be covered include causes and effects of environmental pollution, environmental regulatory standards, water and wastewater treatment, sludge and solid waste treatment, and air pollution control technologies. In addition to end-of-pipe treatment technologies, pollution prevention strategies and waste minimization techniques will be discussed. Case studies will be presented to illustrate how to reduce the generation of waste and to recover wastes once generated. Targeted Students - For students on the M.Sc. (Environmental Management) program. Research students and students from other graduate programmes in NUS may apply subject to suitability of candidate and availability of places.", + "title": "Environmental Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "EX5104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module develops and applies the core strategies that underlie successful academic writing. These include writing with clarity and precision, analysing how authors argue, organizing and expressing ideas to guide readers through a line of reasoning, citing and documenting sources, revising the content, wording, and organization of a paper, as well as surface features such as spelling and punctuation. Students gain an appreciation of the basics of academic writing through three units, which correspond to the three stages of writing \u2013 introduction, body, and conclusion.", + "title": "Writing Academically: Arts and Social Sciences", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FAS1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives FASS students the opportunity to pursue an internship as part of their undergraduate study. Interested students will need to secure a position and perform an internship in a company or organization, for 12-16 weeks part time in a regular semester. They will submit journal entries and other written reports, and meet with an Academic Advisor and Workplace Supervisor for consultation, where appropriate. Through the process, students will be exposed to corporate culture, sharpen soft skills, practice what they have learned in the classroom, and gain useful work experience.", + "title": "FASS Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "FAS2551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives FASS students the opportunity to pursue an internship as part of their undergraduate study. Interested students will need to secure a position and perform an internship in a company or organization, for 12-16 weeks part time in a regular semester. They will submit journal entries and other written reports, and meet with an Academic Advisor and Workplace Supervisor for consultation, where appropriate. Through the process, students will be exposed to corporate culture, sharpen soft skills, practice what they have learned in the classroom, and gain useful work experience.", + "title": "FASS Internship II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "FAS2551A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives FASS students the opportunity to pursue an internship as part of their undergraduate study. Interested students will need to secure a position and perform an internship in a company or organization for 12-16 weeks. They will submit journal entries and other written reports, and meet with an Academic Advisor and Workplace Supervisor. Through the process, students will be exposed to corporate culture, sharpen soft skills, practice what they have learned in the classroom, and gain useful work experience.", + "title": "FASS Extended Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "FAS2552", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives FASS students the opportunity to pursue an internship as part of their undergraduate study. Interested students will need to secure a position and perform an internship in a company or organization for 12-16 weeks. They will submit journal entries and other written reports, and meet with an Academic Advisor and Workplace Supervisor for consultation, where appropriate. Through the process, students will be exposed to corporate culture, sharpen soft skills, practice what they have learned in the classroom, and gain useful work experience.", + "title": "FASS Extended Internship II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "FAS2552A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time FASS undergraduate students who have completed at least 2 regular semesters and plan to proceed on an approved full-time internship of at least 8 weeks in duration in the vacation period. This module recognizes work experiences in fields that could lead to viable career pathways.", + "title": "FASS Work Experience Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "FAS2553", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time FASS undergraduate students who have completed at least 2 regular semesters and plan to proceed on an approved full-time internship of at least 8 weeks in duration in the vacation period. This module recognizes work experiences in fields that could lead to viable career pathways.", + "title": "FASS Work Experience Internship II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "FAS2553A", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce FASS students to the latest industry trends and emerging growth sectors so as to help them gain deeper knowledge and familiarise with evolving work environments. Business leaders and executives will share the industry challenges, innovations and best practices. The seminars will also expose FASS students to a wider repertoire of jobs/companies/industries including alternative options beyond the usual and traditional employers to enhance students\u2019 employability. Lectures comprise a CEO leadership dialogue, a panel discussion on organisational effectiveness, Roundtable and workshop on global mobility. Students get to meet with industry mentors at company visits and networking sessions.", + "title": "FASS Industry Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "FAS3550", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module complements the FASS Mentorship Programme, where we connect undergraduates with experienced FASS alumni, who will provide insight and guidance on career and professional development. Students will work on two reports to help them reflect upon their learning journey and career possibilities in a chosen industry sector. Through the process, students will gain a realistic overview of the workplace, sharpen soft skills, apply gained knowledge and expand their network, all fundamental to a job search.", + "title": "FASS Capstone Career Preparation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "FAS3551", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module taught in French is specially designed for FDDP students so as to prepare them to attain a basic knowledge on vocabularies of Set Theory, Algebraic Structures, Finite Groups, Polynomials, Vectors spaces, Linear Transformations, Matrices, Inner product spaces, Canonical forms and basic mathematical analysis.", + "title": "Special Mathematics Class 1, 2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "FDP2011", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Saturday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Saturday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module taught in French is specially designed for FDDP students so as to prepare them to attain a basic knowledge on abstract mathematical analysis and algebra, as well as a maturity in the basic skill of abstract mathematical reasoning. Topics covered direct products, direct sums, quotients, finite groups, topology, compactness, connectivity, completion, norm linear spaces.", + "title": "Special Mathematics Class 3", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "FDP2012", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Saturday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics covered include vectorial calculus, electrostatics, magnetostatics and electromagnetism.", + "title": "Special Physics Class 1, 2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "FDP2021", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Saturday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Saturday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics covered include quasi-permanent regime, mechanics, thermodynamics and optics.", + "title": "Special Physics Class 3", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "FDP2022", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Saturday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a core module for students of MSc in Financial Engineering. The topics include: Basic theories of futures, options, and swaps pricing. Fundamental concepts of no arbitrage equilibrium and also risk premia. Hedging techniques and the Greeks. Fixed Income securities analytics. Yield curve analyses. Extensions to asset-backed securities and asset securitization issues. Structured notes and embedded options. Corporate debts and convertibles.", + "title": "Derivatives And Fixed Income", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "RMI-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a core module for students of MSc in Financial Engineering. The topics include: Basic theories of futures, options, and swaps pricing. Fundamental concepts of no arbitrage equilibrium and also risk premia. Hedging techniques and the Greeks. Fixed Income securities analytics. Yield curve analyses. Extensions to asset-backed securities and asset securitization issues. Structured notes and embedded options. Corporate debts and convertibles.", + "title": "Derivatives And Fixed Income", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5101D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a core module for students of MSc in Financial Engineering. The topics include: Covered warrants, equity warrants and options, subscription rights, stock index futures and options, and other equity derivatives. Issues of pricing and hedging. Institutional constraints. Portfolio management and other investment strategies. Path-dependent options such as Asian options, barrier options, lookback options, and forward-start options. Spread options, rainbow options, quantos, exchange options, basket options, as-you-like options, power options, digital options, and others. Pricing techniques and risk management purposes.", + "title": "Equity Products and Exotics", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 13 + ], + "venue": "RMI-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "RMI-SR1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 11 + ], + "venue": "RMI-SR1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:30:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a core module for students of MSc in Financial Engineering. The topics include: Financial Markets and Instruments. Management of foreign exchange, money market, and derivatives desks. Asset-Liability management. Regulatory issues. Corporate Valuation, restructuring, leveraged buyouts, mergers and acquisitions. Issues of deal structures and management of cashflow.", + "title": "Corporate Financing and Risk", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5105", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "RMI-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a core module for students of MSc in Financial Engineering. The topics include: Market risk. Value-at-Risk measures and problems. Parametric historical, and simulations VAR. Alternative securities risk and derivatives risk measurements. Delta-normal VARs and applications to different products. Credit risks and measurements. Liquidity, operational risk, legal risk, settlement risk, model risk, tax risk and others, Stress testing, Accounting and legal compliance. Some existing models and Risk Management best practices.", + "title": "Risk Analyses And Management", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5107", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T06:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a core module for students of MSc in Financial Engineering. The topics include: Market risk. Value-at-Risk measures and problems. Parametric historical, and simulations VAR. Alternative securities risk and derivatives risk measurements. Delta-normal VARs and applications to different products. Credit risks and measurements. Liquidity, operational risk, legal risk, settlement risk, model risk, tax risk and others, Stress testing, Accounting and legal compliance. Some existing models and Risk Management best practices.", + "title": "Risk Analyses And Management", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5107D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a core module for students of MSc in Financial Engineering. The topics include: Portfolio Optimisation Theory. Capital Asset Pricing Models. Arbitrage Pricing Theories. Factor Models. Market Neutral Strategies. Abnormalities and Market Mispricing. Asset Allocation and Dynamic Portfolio Optimization. Portfolio Insurance Problems and Global Funds Management.", + "title": "Portfolio Theory And Investments", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a core module for students of MSc in Financial Engineering. The topics include: Students are encouraged to work on a project related to an actual problem at work involving financial engineering solutions. Otherwise students could work on a new product or process idea, or a detailed case study. The report of about 60 double-spaced A4 pages including appendixes should be carefully written and submitted.", + "title": "Financial Engineering Project", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5110", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the fundamental concepts of stochastic calculus as well as quantitative methods that are relevant to financial engineering. The topics include\nWiener processes, stochastic integrals, stochastic differential equations, Ito\u2019s lemma, the martingale principle and risk neutral pricing. It will also cover important topics in linear algebra and optimization.", + "title": "Stochastic Calculus and Quantitative Methods", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5112", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-24" + }, + "venue": "RMI-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the fundamental concepts of stochastic calculus as well as quantitative methods that are relevant to financial engineering. The topics include\nWiener processes, stochastic integrals, stochastic differential equations, Ito\u2019s lemma, the martingale principle and risk neutral pricing. It will also cover important topics in linear algebra and optimization.", + "title": "Stochastic Calculus and Quantitative Methods", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5112D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover both computer programming and numerical methods. On the programming side, this module will cover Excel based VBA and R language. The emphasis will be given to programming to solve financial engineering problems. On the numerical methods side, this module will cover finite difference, discretization and Monte Carlo simulation methods.", + "title": "Programming and Advanced Numerical Methods", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5116", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "RMI-SR1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 13, + 13 + ], + "venue": "RMI-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-06T06:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-06-23", + "end": "2023-07-28" + }, + "venue": "RMI-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover both computer programming and numerical methods. On the programming side, this module will cover Excel based VBA and R language. The emphasis will be given to programming to solve financial engineering problems. On the numerical methods side, this module will cover finite difference, discretization and Monte Carlo simulation methods.", + "title": "Programming and Advanced Numerical Methods", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5116D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover both term structure models as well as the valuations of interest rate derivatives. The topics covered include Vasicek , Ho-Lee, Cox-Ingersoll-Ross (CIR), Heath-Jarrow-Morton (HJM) and LIBOR market models. On the numerical side it will cover Black-Derman-Toy (BDT) and Hull-White models as well as some simulation methods.", + "title": "Term Structure and Interest Rate Derivatives", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5208", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "RMI-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1 + ], + "venue": "RMI-SR1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an elective module for students of MSc in Financial Engineering. The topics include: The statistical modelling and forecasting of financial time series, with application to share prices, exchange rates and interest rates. Market microstructure. Specification, estimation and testing of asset pricing models including the capital asset pricing model and extensions. Modelling of volatility. Practical application of volatility forecasting. Estimating continuous time models.", + "title": "Financial Econometrics", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-25" + }, + "venue": "RMI-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an elective module for students of MSc in Financial Engineering. The topics include: The statistical modelling and forecasting of financial time series, with application to share prices, exchange rates and interest rates. Market microstructure. Specification, estimation and testing of asset pricing models including the capital asset pricing model and extensions. Modelling of volatility. Practical application of volatility forecasting. Estimating continuous time models.", + "title": "Financial Econometrics", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5209D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide guidance for students in choosing their topic for the compulsory module FE5110. A specific research area will be explored to introduce relevant research topics. The research area may change from year to year, and examples are credit rating methodologies or volatility modelling.\n\nIn addition, this module will benefit students looking to take on research related or analytical roles in the financial industry. Statistical methods required for the research area will be covered, as well as the proper presentation of results, both in written and oral form.", + "title": "Research Methods in Finance", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "I3-04-0332", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an elective module for students of MSc in Financial Engineering. The topics include: Topics relating to financial engineering.", + "title": "Seminar In Financial Engineering", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5211", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-27" + }, + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Seminar in Financial Product Innovations", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Financial Technology Innovations Seminar", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5216", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The topics would cover various alternative investments and risk management.", + "title": "Seminar in Risk Management and Alternative Investment", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course consists of two parts \u2013 (i) statistical credit rating models and (ii) credit derivatives. The first part would cover various statistical credit rating models\nincluding Altman\u2019s Z-score, logistic regression, artificial neural network and intensity models. The second part will cover various models used to price credit derivative as well as tools used to manage credit risk. The topics covered would include real and risk neutral probability of default, RiskMetricsTM, CreditRisk+, default correlation, Copula, Basket default swap, CDOs etc.", + "title": "Credit Risk", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with the opportunity to work on real-world problems in quantitative credit analysis. The module will be project based within either a research or industry environment. Students will gain a detailed knowledge of the project subject matter, along with an overall understanding of quantitative credit analysis.\n\nThe projects will be group-based with up to three students in a group. Most of the groups will be based in RMI\u2019s Credit Research Initiative, and students can also source for an external company to host their projects.", + "title": "Credit Analytics Practicum", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "FE5219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to familiarize the students with the reality of trading within the financial markets environment. Beyond the pure trading principles, it covers the many aspects of trading decisions, in terms of risk control and limits, market and economic data and information, overall portfolio management, practical market standards and conventions, specificities of derivatives trading, trading styles and techniques to manage specific market situations. \n\nThis module should prepare students to better grasp trading and financial markets and allow them to become effective in a work environment in a record short time.", + "title": "Trading Principles & Fundamentals", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FE5221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "RMI-SR1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the advanced topics related to derivative pricing, including stochastic differential equations, martingale representation theorem and risk-neutral pricing, the change of numeraire argument and pricing of pathdependent options (e.g. barrier, lookback, and Asian options), optimal stopping and American options, jump diffusion processes and stochastic volatility for option pricing.", + "title": "Advanced Derivatives Pricing", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "RMI-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The fundamentals of financial market technologies and functionality in the Front-, Middle- and Back-offices, the interdependencies of their systems, typical user interfaces, through to typical system architecture will be taught.\n\nPrincipals of algorithmic trading will also be covered, and students will be challenged to design solutions for real-market trading strategies.\n\nThis module will encompass the Learning Outcomes from the other modules in the MFE program, giving the student practical knowledge, skills and industry best practice in electronic markets.\n\nLively learning activities and interactive discussions based on current market scenarios will bring students through a realistic and relevant learning journey.", + "title": "Introduction to Electronic Financial Market", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FE5223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The global financial crisis triggered a set of\nstructural changes that continue to play out in\nmarket microstructure and market architecture.\nPractitioners, on both the buy-side and sell-side,\nare in the midst of responding to new regulations\naround bank capital, operational risk, supervision\nand other non-market factors. The backdrop is\ncomplicated further by apparent disinflation, greater\npotential for event risk, macro-prudential\ninterventions and in places, negative interest rates.\nThe risk management context is also coloured by\ninnovation in \u2018fintech\u2019 and cyber-risk.", + "title": "Current Topics In Applied Risk Management", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FE5224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Targeted at graduate students with a strong interest in financial engineering topics, the course introduces the state-of-the-art machine learning approaches, from DNN to topic modeling, and the key concepts in Fintech, from cryptocurrencies to sentiment analysis. Besides lectures, AI academic researchers and industry professionals are invited to come to share their latest research, their understandings and outlooks of the main technologies behind machine learning and their applications in financial services.", + "title": "Machine Learning and FinTech", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a fast-paced introductory course to the\nC++ programming language. It is intended for\nthose with little programming background,\nthough prior programming experience will make\nit easier.\nThe course covers C++ basic constructs (loops,\nvariables, operators, and functions), built-in\nlibraries, data structures, templates and object\noriented programming techniques. It develops\nlogical thinking aimed at designing algorithms\nto solve specific problems. Concepts are\nillustrated by examples drawn from the financial\nengineering domain. The course will ultimately\nprovide with an overview of the components of\na modern risk management system.", + "title": "C++ in Financial Engineering", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FE5226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "RMI-SR1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2 + ], + "venue": "RMI-SR1", + "day": "Saturday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 13 + ], + "venue": "RMI-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Targeting at graduate students with a strong interest in commodities topics, the course introduces the fundamental principles of the energy (oil, coal and gas) and hard (ferrous and base metals) commodity markets. Supply and demand dynamics for each market will be discussed, as well as the pricing structure and mechanism for each market.\n\nWe will also discuss typical financial dervitives (forward, future, swap, options and more exotic products) used by commodity market players for trading and hedging risks. Their features, applications and pricing methods will be discussed in details.", + "title": "Commodities: Fundamentals and Modelling", + "faculty": "Risk Management Institute", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FE5227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "RMI-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course helps students to understand the key concepts and tools in Finance. It provides a broad overview of the financial environment under which a firm operates. It equips the students with the conceptual and analytical skills necessary to make sound financial decisions for a firm. Topics to be covered include introduction to finance, financial statement analysis, long-term financial planning, time value of money, risk and return analysis, capital budgeting methods and applications, common stock valuation, bond valuation, short term management and financing.", + "title": "Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN2704", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Thursday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Friday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Friday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Thursday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G11", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course helps students to understand the key concepts and tools in Finance. It provides a broad overview of the financial environment under which a firm operates. It equips the students with the conceptual and analytical skills necessary to make sound financial decisions for a firm. Topics to be covered include introduction to finance, financial statement analysis, long-term financial planning, time value of money, risk and return analysis, capital budgeting methods and applications, common stock valuation, bond valuation, short term management and financing.", + "title": "Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN2704X", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G16", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G17", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G20", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G19", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0202", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G18", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G11", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G13", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an in-depth understanding of the key financial issues faced by modern-day financial managers of corporations. It will equip students with conceptual and analytical skills necessary to make sound financial decisions. Topics to be covered include risk and return, capital budgeting, capital structure, dividend policy and mergers and acquisitions. Cases will be used to illustrate the concepts taught.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an in-depth understanding of the key financial issues faced by modern-day financial managers of corporations. It will equip students with conceptual and analytical skills necessary to make sound financial decisions. Topics to be covered include risk and return, capital budgeting, capital structure, dividend policy and mergers and acquisitions. Cases will be used to illustrate the concepts taught.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3101A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an in-depth understanding of the key financial issues faced by modern-day financial managers of corporations. It will equip students with conceptual and analytical skills necessary to make sound financial decisions. Topics to be covered include risk and return, capital budgeting, capital structure, dividend policy and mergers and acquisitions. Cases will be used to illustrate the concepts taught.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3101B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an in-depth understanding of the key financial issues faced by modern-day financial managers of corporations. It will equip students with conceptual and analytical skills necessary to make sound financial decisions. Topics to be covered include risk and return, capital budgeting, capital structure, dividend policy and mergers and acquisitions. Cases will be used to illustrate the concepts taught.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3101C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in investments. It provides a comprehensive coverage of basic concepts, theories, applications and decision-making rules in financial investment. Topics to be covered include fundamental security analysis on stocks, bonds, options and futures as well as modern portfolio management. On completion, candidates should be conversant in investment management in preparation for careers in financial analysis and financial planning, investment banking, and corporate finance. Candidates should also be equipped to write the Chartered Financial Analysts (CFA) Level 1 examinations in quantitative analysis, equity securities analysis and portfolio management.", + "title": "Investment Analysis and Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in investments. It provides a comprehensive coverage of basic concepts, theories, applications and decision-making rules in financial investment. Topics to be covered include fundamental security analysis on stocks, bonds, options and futures as well as modern portfolio management. On completion, candidates should be conversant in investment management in preparation for careers in financial analysis and financial planning, investment banking, and corporate finance. Candidates should also be equipped to write the Chartered Financial Analysts (CFA) Level 1 examinations in quantitative analysis, equity securities analysis and portfolio management.", + "title": "Investment Analysis and Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3102A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in investments. It provides a comprehensive coverage of basic concepts, theories, applications and decision-making rules in financial investment. Topics to be covered include fundamental security analysis on stocks, bonds, options and futures as well as modern portfolio management. On completion, candidates should be conversant in investment management in preparation for careers in financial analysis and financial planning, investment banking, and corporate finance. Candidates should also be equipped to write the Chartered Financial Analysts (CFA) Level 1 examinations in quantitative analysis, equity securities analysis and portfolio management.", + "title": "Investment Analysis and Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3102B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in investments. It provides a comprehensive coverage of basic concepts, theories, applications and decision-making rules in financial investment. Topics to be covered include fundamental security analysis on stocks, bonds, options and futures as well as modern portfolio management. On completion, candidates should be conversant in investment management in preparation for careers in financial analysis and financial planning, investment banking, and corporate finance. Candidates should also be equipped to write the Chartered Financial Analysts (CFA) Level 1 examinations in quantitative analysis, equity securities analysis and portfolio management.", + "title": "Investment Analysis and Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3102C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in investments. It provides a comprehensive coverage of basic concepts, theories, applications and decision-making rules in financial investment. Topics to be covered include fundamental security analysis on stocks, bonds, options and futures as well as modern portfolio management. On completion, candidates should be conversant in investment management in preparation for careers in financial analysis and financial planning, investment banking, and corporate finance. Candidates should also be equipped to write the Chartered Financial Analysts (CFA) Level 1 examinations in quantitative analysis, equity securities analysis and portfolio management.", + "title": "Investment Analysis and Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3102D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide an understanding of the role of financial markets in the economy. Topics to be covered include the importance of the structure (architecture) of the financial system, the functions of markets and institutions, and their implications for resource mobilisation, resource allocation, allocative efficiency, and risk management. In addition, we consider the structure of financial markets for different instruments, the range of instruments traded therein, and the mechanisms facilitating trade in financial assets, and an assessment of the structure and efficiency of these markets in Singapore vis-\u00e0-vis similar markets in other industrialised economies. To assess issues of efficiency and market structure, the course will include frequent references to markets in other economies, including the US, Australia, the UK, Hong Kong as well as other emerging market economics.", + "title": "Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide an understanding of the role of financial markets in the economy. Topics to be covered include the importance of the structure (architecture) of the financial system, the functions of markets and institutions, and their implications for resource mobilization, resource allocation, allocative efficiency, and risk management. In addition, we consider: the structure of financial markets for different instruments, the range of instruments traded therein, and the mechanisms facilitating trade in financial assets, and an assessment of the structure and efficiency of these markets in Singapore vis-? -vis similar markets in other industrialized economies. To assess issues of efficiency and market structure, the course will include frequent references to markets in other economies, including the US, Australia, the UK, Hong Kong as well as other emerging market economics.", + "title": "Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3103A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide an understanding of the role of financial markets in the economy. Topics to be covered include the importance of the structure (architecture) of the financial system, the functions of markets and institutions, and their implications for resource mobilization, resource allocation, allocative efficiency, and risk management. In addition, we consider: the structure of financial markets for different instruments, the range of instruments traded therein, and the mechanisms facilitating trade in financial assets, and an assessment of the structure and efficiency of these markets in Singapore vis-? -vis similar markets in other industrialized economies. To assess issues of efficiency and market structure, the course will include frequent references to markets in other economies, including the US, Australia, the UK, Hong Kong as well as other emerging market economics.", + "title": "Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3103B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide an understanding of the role of financial markets in the economy. Topics to be covered include the importance of the structure (architecture) of the financial system, the functions of markets and institutions, and their implications for resource mobilization, resource allocation, allocative efficiency, and risk management. In addition, we consider: the structure of financial markets for different instruments, the range of instruments traded therein, and the mechanisms facilitating trade in financial assets, and an assessment of the structure and efficiency of these markets in Singapore vis-? -vis similar markets in other industrialized economies. To assess issues of efficiency and market structure, the course will include frequent references to markets in other economies, including the US, Australia, the UK, Hong Kong as well as other emerging market economics.", + "title": "Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3103C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course deals with the process of financial reporting and the analysis of financial statements, and addresses the question of whether the accounting process yields numbers that accurately reflect the economics of the transaction, and if not, what can analyst/user do to overcome this limitation. It aims to create an understanding of the environment in which financial reporting choices are made, what the options are and how to use these data in making decisions. Course materials are built around the accounting and reporting issues faced by real companies today, to give students a real business context for understanding the many forces that can affect a company's accounting choices.", + "title": "Financial Statement Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is concerned with how financial managers function in an international environment. This requires that we understand: (1) the institutional arrangements of different international financial markets, (2) the accompanying financial instruments and innovations, and (3) the salient factors affecting the financial operations of multinationals.Topics to be covered include the foreign exchange market, Eurobond/Eurocurrency markets, as well as the Asian bond markets, the effects of exchange rate movements on both domestic and international operations and methods of hedging these exposures, operational (trade financing techniques) and strategic (foreign direct investment decisions and political risk management) financial management issues, and the latest financial innovations in the international financial market.", + "title": "International Financial Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3115", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to basic financial derivatives with an emphasis on forward, futures, and option contracts. Topics to be covered include the structure of forward, futures and options markets, the pricing of futures and options contracts, and the applications of futures and options in hedging and speculation. The approach will cover both the theoretical and applied issues in financial derivatives. Key concepts and theories will be illustrated by examples of derivatives usages in practice and the implementation of hedging strategies.", + "title": "Options and Futures", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3116", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course builds on basic financial theory and the principles courses in economics. It addresses topics that are important for managing financial institutions in a rapidly changing national and global environment. Upon successful completion of the course, student should be able to understand the role of financial institutions in the economy; explain why banks are unique, and therefore merit special attention; to understand the analytical foundations underlying financial institutions management, and be able to use them to analyse important financial issues, including financial crisis; be familiar with risk management techniques to deal with the various risks banks and other financial institutions face.", + "title": "Bank Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3117", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers one of the core functions of finance, namely, risk management. The objective is to introduce the fundamental concepts, principles and practices of financial risk management. The focus of the module is on the identification, measurement, monitoring and control of financial risk. It also addresses the basic financial and statistical techniques that enhance risk management decision-making.The course starts by looking at risk management concepts and the risk management process. It then examines the approaches used to identify, measure and reduce risks. Topics to be covered include risk measurement - Value-at-Risk (VAR) methods, measuring and managing market risk and credit risk, risk management applications, managing other risks such as liquidity and operational risks, regulatory and capital issues, risk-adjusted performance, and implementing a risk management programme.", + "title": "Financial Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3118", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Business entities and individuals are exposed to substantial risk associated with losses to property, income, and wealth because of damage to assets, legal liability, disability, retirement, and death. Costs associated with legal liability and employee benefit programmes, particularly Central Provident Fund (CPF) and health care, have become matters of deep concern to company management. Individuals seeking coverage of their professional and personal risks have similar concerns. This course analyses the nature and impact of these risks and discusses appropriate risk management techniques. The emphasis is on the analysis and management of these problems for business entities, but these are substantial implications for the problems faced by individual and society. Topics to be covered include risk identification and measurement; risk control and transfer; risk financing with commercial insurance; self-insurance; captive insurance programmes; insurance markets and regulation; employee benefits and CPF; life and health insurance; personal financial planning; international risk management and insurance for multi-national corporations.", + "title": "Risk and Insurance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3119", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in an essential area of finance, and for examining specialised topics and new developments in the area. Topics covered will vary from semester to semester and may include new financial products and services, initial public offerings, mergers and acquisitions, venture and risk capital, and corporate governance.", + "title": "Topics in Finance (TIF)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Transaction banking is about moving money between entities and the four main areas of this business are cash management, trade finance, securities services and capital\nmarkets. This course will allow you to put yourself in the shoes of both transaction bankers and the corporate treasurers (and CFOs) to better understand the concepts and products of transaction banking. This course will provide you with an opportunity to apply the knowledge you have gained in the first half of the course to \u201cinnovatively\u201d solve real life transaction banking issues/cases.", + "title": "TIF: Transaction Banking", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3120B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course on China\u2019s Capital Markets that will examine China\u2019s listed equity, private equity, bond and derivative markets from a development perspective and its convergence towards international standards. The course will use a combination of cases, professional and academic articles to provide an understanding of the concepts, issues and investors involved in China\u2019s capital markets. An underlying theme of this course is how China\u2019s capital markets have developed and improved, despite the grievances and misgivings widely espoused by the investment community.", + "title": "TIF: China's Capital Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3120C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "- To provide students with a practical understanding of how the global foreign exchange market functions.\n- To provide students with an understanding of the use of FX in hedging, trading and investment.\n- To provide a framework for risk management and opportunities for corporate users, investors, traders and investment managers.", + "title": "TIF: Foreign Exchange Trading", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3120D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to do the following:\n- To provide students with an overview of the commodity markets as an asset class\n- To introduce key concepts for commodity trading and investing businesses\n- To provide a framework for assessing risks and opportunities for investors in physical commodity assets.", + "title": "TIF: Phy. Comdty Mkt & Assets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3120E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topic in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3120X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topic in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3120Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topic in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3120Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based\nresearch and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3129", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of the theories and methodologies of financial modelling. It trains students to apply finance theories to solve various problems in financial management, investments, portfolio management, and risk management. This objective is achieved by teaching students how to design and implement financial models in the computer,\nwith Excel as the main tool. It covers four classes of models: Corporate Finance models, Portfolio Models, Option-Pricing Models and Bond Models. It also covers\nsimulation, some numerical methods, and VBA programming as well.", + "title": "Financial Modelling", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3130", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers major topics in fixed income securities. The emphasis will be on valuation. Topics covered include the study of bonds, bond derivatives, interest rate derivatives, interest rate swaps, mortgage, asset backed securities, and credit risk. The focus is principally on interest rate risk and valuation of these instruments.", + "title": "Fixed Income Securities", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to highlight the skills necessary from a theoretical and practical standpoint necessary for investing using a \u201cvalue\u201d and \u201cfundamental\u201d approach. The course aims to apply traditional value investment theory with the practical challenges of investing in Asian equity markets.", + "title": "Value Investing In Asia", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3132", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the role of philanthropy and impact investing in addressing social problems. Using cases and readings, it will provide an overview of philanthropy, impact investing and the non-profit sector and the relationship of\nthese elements to government action. The course will examine actionable measurement of success in private acton for public good. \u201cActionable\u201d means that the measurement is used by managers, investors, and other stakeholders in making decisions. Students will participate in group projects to examine the practice and challenges of philanthropy and impact investing in Asia.", + "title": "Measuring Success in Philanthropy and Impact Investing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3133", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An overview of personal finance topics and issues, including: financial planning, credit management, insurance and investment planning, retirement planning (including CPF schemes), legacy planning and consumer protection.", + "title": "Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3134", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An overview of personal finance topics and issues, including: financial planning, credit management, insurance and investment planning, retirement planning (including CPF schemes), legacy planning and consumer protection.", + "title": "Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3134A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An overview of personal finance topics and issues, including: financial planning, credit management, insurance and investment planning, retirement planning (including CPF schemes), legacy planning and consumer protection.", + "title": "Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3134B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce students to the consumer banking wealth management industry. Technical knowledge of some of the financial instruments clients typically invest in and the financial planning and sales process will be covered. Softskills in developing clients trust and loyalty will also be taught.", + "title": "Consumer Banking Wealth Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3135", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FIN3139", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an in-depth understanding of the key financial issues faced by modern-day financial managers of corporations. It will equip students with conceptual and analytical skills necessary to make sound financial decisions. Topics to be covered include risk and return, capital budgeting, capital structure, dividend policy and mergers and acquisitions. Cases will be used to illustrate the concepts taught.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an in-depth understanding of the key financial issues faced by modern-day financial managers of corporations. It will equip students with conceptual and analytical skills necessary to make sound financial decisions. Topics to be covered include risk and return, capital budgeting, capital structure, dividend policy and mergers and acquisitions. Cases will be used to illustrate the concepts taught.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3701A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an in-depth understanding of the key financial issues faced by modern-day financial managers of corporations. It will equip students with conceptual and analytical skills necessary to make sound financial decisions. Topics to be covered include risk and return, capital budgeting, capital structure, dividend policy and mergers and acquisitions. Cases will be used to illustrate the concepts taught.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3701B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an in-depth understanding of the key financial issues faced by modern-day financial managers of corporations. It will equip students with conceptual and analytical skills necessary to make sound financial decisions. Topics to be covered include risk and return, capital budgeting, capital structure, dividend policy and mergers and acquisitions. Cases will be used to illustrate the concepts taught.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3701C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an in-depth understanding of the key financial issues faced by modern-day financial managers of corporations. It will equip students with conceptual and analytical skills necessary to make sound financial decisions. Topics to be covered include risk and return, capital budgeting, capital structure, dividend policy and mergers and acquisitions. Cases will be used to illustrate the concepts taught.", + "title": "Corporate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3701D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in investments. It provides a comprehensive coverage of basic concepts, theories, applications and decision-making rules in financial investment. Topics to be covered include fundamental security analysis on stocks, bonds, options and futures as well as modern portfolio management. On completion, candidates should be conversant in investment management in preparation for careers in financial analysis and financial planning, investment banking, and corporate finance. Candidates should also be equipped to write the Chartered Financial Analysts (CFA) Level 1 examinations in quantitative analysis, equity securities analysis and portfolio management.", + "title": "Investment Analysis and Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in investments. It provides a comprehensive coverage of basic concepts, theories, applications and decision-making rules in financial investment. Topics to be covered include fundamental security analysis on stocks, bonds, options and futures as well as modern portfolio management. On completion, candidates should be conversant in investment management in preparation for careers in financial analysis and financial planning, investment banking, and corporate finance. Candidates should also be equipped to write the Chartered Financial Analysts (CFA) Level 1 examinations in quantitative analysis, equity securities analysis and portfolio management.", + "title": "Investment Analysis and Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3702A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in investments. It provides a comprehensive coverage of basic concepts, theories, applications and decision-making rules in financial investment. Topics to be covered include fundamental security analysis on stocks, bonds, options and futures as well as modern portfolio management. On completion, candidates should be conversant in investment management in preparation for careers in financial analysis and financial planning, investment banking, and corporate finance. Candidates should also be equipped to write the Chartered Financial Analysts (CFA) Level 1 examinations in quantitative analysis, equity securities analysis and portfolio management.", + "title": "Investment Analysis and Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3702B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in investments. It provides a comprehensive coverage of basic concepts, theories, applications and decision-making rules in financial investment. Topics to be covered include fundamental security analysis on stocks, bonds, options and futures as well as modern portfolio management. On completion, candidates should be conversant in investment management in preparation for careers in financial analysis and financial planning, investment banking, and corporate finance. Candidates should also be equipped to write the Chartered Financial Analysts (CFA) Level 1 examinations in quantitative analysis, equity securities analysis and portfolio management.", + "title": "Investment Analysis and Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3702C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "C2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course in investments. It provides a comprehensive coverage of basic concepts, theories, applications and decision-making rules in financial investment. Topics to be covered include fundamental security analysis on stocks, bonds, options and futures as well as modern portfolio management. On completion, candidates should be conversant in investment management in preparation for careers in financial analysis and financial planning, investment banking, and corporate finance. Candidates should also be equipped to write the Chartered Financial Analysts (CFA) Level 1 examinations in quantitative analysis, equity securities analysis and portfolio management.", + "title": "Investment Analysis and Portfolio Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3702D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide an understanding of the role of financial markets in the economy. Topics to be covered include the importance of the structure (architecture) of the financial system, the functions of markets and institutions, and their implications for resource mobilisation, resource allocation, allocative efficiency, and risk management. In addition, we consider the structure of financial markets for different instruments, the range of instruments traded therein, and the mechanisms facilitating trade in financial assets, and an assessment of the structure and efficiency of these markets in Singapore vis-\u00e0-vis similar markets in other industrialised economies. To assess issues of efficiency and market structure, the course will include frequent references to markets in other economies, including the US, Australia, the UK, Hong Kong as well as other emerging market economics.", + "title": "Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3703", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide an understanding of the role of financial markets in the economy. Topics to be covered include the importance of the structure (architecture) of the financial system, the functions of markets and institutions, and their implications for resource mobilisation, resource allocation, allocative efficiency, and risk management. In addition, we consider the structure of financial markets for different instruments, the range of instruments traded therein, and the mechanisms facilitating trade in financial assets, and an assessment of the structure and efficiency of these markets in Singapore vis-\u00e0-vis similar markets in other industrialised economies. To assess issues of efficiency and market structure, the course will include frequent references to markets in other economies, including the US, Australia, the UK, Hong Kong as well as other emerging market economics.", + "title": "Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3703A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide an understanding of the role of financial markets in the economy. Topics to be covered include the importance of the structure (architecture) of the financial system, the functions of markets and institutions, and their implications for resource mobilisation, resource allocation, allocative efficiency, and risk management. In addition, we consider the structure of financial markets for different instruments, the range of instruments traded therein, and the mechanisms facilitating trade in financial assets, and an assessment of the structure and efficiency of these markets in Singapore vis-\u00e0-vis similar markets in other industrialised economies. To assess issues of efficiency and market structure, the course will include frequent references to markets in other economies, including the US, Australia, the UK, Hong Kong as well as other emerging market economics.", + "title": "Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3703B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "B3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide an understanding of the role of financial markets in the economy. Topics to be covered include the importance of the structure (architecture) of the financial system, the functions of markets and institutions, and their implications for resource mobilisation, resource allocation, allocative efficiency, and risk management. In addition, we consider the structure of financial markets for different instruments, the range of instruments traded therein, and the mechanisms facilitating trade in financial assets, and an assessment of the structure and efficiency of these markets in Singapore vis-\u00e0-vis similar markets in other industrialised economies. To assess issues of efficiency and market structure, the course will include frequent references to markets in other economies, including the US, Australia, the UK, Hong Kong as well as other emerging market economics.", + "title": "Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3703C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide an understanding of the role of financial markets in the economy. Topics to be covered include the importance of the structure (architecture) of the financial system, the functions of markets and institutions, and their implications for resource mobilisation, resource allocation, allocative efficiency, and risk management. In addition, we consider the structure of financial markets for different instruments, the range of instruments traded therein, and the mechanisms facilitating trade in financial assets, and an assessment of the structure and efficiency of these markets in Singapore vis-\u00e0-vis similar markets in other industrialised economies. To assess issues of efficiency and market structure, the course will include frequent references to markets in other economies, including the US, Australia, the UK, Hong Kong as well as other emerging market economics.", + "title": "Financial Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3703D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is concerned with how financial managers function in an international environment. This requires that we understand: (1) the institutional arrangements of different international financial markets, (2) the accompanying financial instruments and innovations, and (3) the salient factors affecting the financial operations of multinationals.Topics to be covered include the foreign exchange market, Eurobond/Eurocurrency markets, as well as the Asian bond markets, the effects of exchange rate movements on both domestic and international operations and methods of hedging these exposures, operational (trade financing techniques) and strategic (foreign direct investment decisions and political risk management) financial management issues, and the latest financial innovations in the international financial market.", + "title": "International Financial Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3711", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to basic financial derivatives with an emphasis on forward, futures, and option contracts. Topics to be covered include the structure of forward, futures and options markets, the pricing of futures and options contracts, and the applications of futures and options in hedging and speculation. The approach will cover both the theoretical and applied issues in financial derivatives. Key concepts and theories will be illustrated by examples of derivatives usages in practice and the implementation of hedging strategies.", + "title": "Options and Futures", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3712", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course builds on basic financial theory and the principles courses in economics. It addresses topics that are important for managing financial institutions in a rapidly changing national and global environment. Upon successful completion of the course, student should be able to understand the role of financial institutions in the economy; explain why banks are unique, and therefore merit special attention; to understand the analytical foundations underlying financial institutions management, and be able to use them to analyse important financial issues, including financial crisis; be familiar with risk management techniques to deal with the various risks banks and other financial institutions face.", + "title": "Bank Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3713", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers one of the core functions of finance, namely, risk management. The objective is to introduce the fundamental concepts, principles and practices of financial risk management. The focus of the module is on the identification, measurement, monitoring and control of financial risk. It also addresses the basic financial and statistical techniques that enhance risk management decision-making.The course starts by looking at risk management concepts and the risk management process. It then examines the approaches used to identify, measure and reduce risks. Topics to be covered include risk measurement - Value-at-Risk (VAR) methods, measuring and managing market risk and credit risk, risk management applications, managing other risks such as liquidity and operational risks, regulatory and capital issues, risk-adjusted performance, and implementing a risk management programme.", + "title": "Financial Risk Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3714", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Business entities and individuals are exposed to substantial risk associated with losses to property, income, and wealth because of damage to assets, legal liability, disability, retirement, and death. Costs associated with legal liability and employee benefit programmes, particularly Central Provident Fund (CPF) and health care, have become matters of deep concern to company management. Individuals seeking coverage of their professional and personal risks have similar concerns. This course analyses the nature and impact of these risks and discusses appropriate risk management techniques. The emphasis is on the analysis and management of these problems for business entities, but these are substantial implications for the problems faced by individual and society. Topics to be covered include risk identification and measurement; risk control and transfer; risk financing with commercial insurance; self-insurance; captive insurance programmes; insurance markets and regulation; employee benefits and CPF; life and health insurance; personal financial planning; international risk management and insurance for multi-national corporations.", + "title": "Risk and Insurance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3715", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of the theories and methodologies of financial modelling. It trains students to apply finance theories to solve various problems in financial management, investments, portfolio management, and risk management. This objective is achieved by teaching students how to design and implement financial models in the computer, with Excel as the main tool. It covers four classes of models: Corporate Finance models, Portfolio Models, Option-Pricing Models and Bond Models. It also covers simulation, some numerical methods, and VBA programming as well.", + "title": "Financial Modelling", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3716", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers major topics in fixed income securities. The emphasis will be on valuation. Topics covered include the study of bonds, bond derivatives, interest rate derivatives, interest rate swaps, mortgage, asset backed securities, and credit risk. The focus is principally on interest rate risk and valuation of these instruments.", + "title": "Fixed Income Securities", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3717", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to highlight the skills necessary from a theoretical and practical standpoint necessary for investing using a ?value? and ?fundamental? approach. The course aims to apply traditional value investment theory with the practical challenges of investing in Asian equity markets.", + "title": "Value Investing in Asia", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3718", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An overview of personal finance topics and issues, including: financial planning, credit management, insurance and investment planning, retirement planning (including CPF schemes), legacy planning and consumer protection.", + "title": "Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3719", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An overview of personal finance topics and issues, including: financial planning, credit management, insurance and investment planning, retirement planning (including CPF schemes), legacy planning and consumer protection.", + "title": "Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3719A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An overview of personal finance topics and issues, including: financial planning, credit management, insurance and investment planning, retirement planning (including CPF schemes), legacy planning and consumer protection.", + "title": "Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3719B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip the participants with the skills to analyse and forecast company and business performance based on financial statements. The analytical and review framework will cover both quantitative methods and ratios as well as\nqualitative analysis of the other information included in the financial statements. The participants will also learn the different business models that apply to the various industries and how such models can affect the performance of companies and businesses within a dynamic and competitive business environment.", + "title": "Financial Statement Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3720", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce students to the consumer banking wealth management industry. Technical knowledge of some of the financial instruments clients typically invest in and the financial planning and sales process will be covered. Softskills in developing clients trust and loyalty will also be taught.", + "title": "Consumer Banking Wealth Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3721", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Finance (2 MC)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FIN3752", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in an essential area of finance, and for examining specialised topics and new developments in the area. Topics covered will vary from semester to semester and may include new financial products and services, initial public offerings, mergers and acquisitions, venture and risk capital, and corporate governance.", + "title": "Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Transaction banking is about moving money between entities and the four main areas of this business are cash management, trade finance, securities services and capital markets. This course will allow you to put yourself in the shoes of both transaction bankers and the corporate treasurers (and CFOs) to better understand the concepts and products of transaction banking. This course will provide you with an opportunity to apply the knowledge you have gained in the first half of the course to ?innovatively? solve real life transaction banking issues/cases.", + "title": "TIF: Transaction Banking", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3761A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course on China?s Capital Markets that will examine China?s listed equity, private equity, bond and derivative markets from a development perspective and its convergence towards international standards. The course will use a combination of cases, professional and academic articles to provide an understanding of the concepts, issues and investors involved in China?s capital markets. An underlying theme of this course is how China?s capital markets have developed and improved, despite the grievances and misgivings widely espoused by the investment community.", + "title": "TIF: China\u2019s Capital Markets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3761B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To provide students with a practical understanding of how the global foreign exchange market functions. - To provide students with an understanding of the use of FX in hedging, trading and investment. - To provide a framework for risk management and opportunities for corporate users, investors, traders and investment managers.", + "title": "TIF: Foreign Exchange Trading", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3761C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to do the following: - To provide students with an overview of the commodity markets as an asset class - To introduce key concepts for commodity trading and investing businesses - To provide a framework for assessing risks and opportunities for investors in physical commodity assets.", + "title": "TIF: Physical Commodity Markets and Assets", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3761D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in an essential area of finance, and for examining specialised topics and new developments in the area. Topics covered will vary from semester to semester and may include new financial products and services, initial public offerings, mergers and acquisitions, venture and risk capital, and corporate governance.", + "title": "Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3761X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in an essential area of finance, and for examining specialised topics and new developments in the area. Topics covered will vary from semester to semester and may include new financial products and services, initial public offerings, mergers and acquisitions, venture and risk capital, and corporate governance.", + "title": "Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3761Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in an essential area of finance, and for examining specialised topics and new developments in the area. Topics covered will vary from semester to semester and may include new financial products and services, initial public offerings, mergers and acquisitions, venture and risk capital, and corporate governance.", + "title": "Topics in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN3761Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Seminars in Finance", + "title": "Seminars in Finance (SIF)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers major private equity investment types including venture capital, growth capital, buyouts, sovereign wealth funds and venture philanthropy.\nThe course adopts a case analytic approach and includes discussion on private equity cycles, from fund raising, structuring to deal screening, valuation, investment\nnegotiations, fund management and performance reporting. An underlying theme of this part of the course is to evaluate to what extent private equity markets can\ncreate wealth and promote economic growth.", + "title": "SIF: Private Equity", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4112G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course to the world of investment banking. It is designed to help students understand the industry in which investment banks operates, the business activities they typically undertake, and the financial instruments they create and use. Special attention will be paid to discuss how investment banks contributed to the recent financial crisis through their integration with various\nfinancial markets and institutions, and how they have, in return, been affected by the crisis. This aims at helping students to gain a boarder perspective of the financial industry and understand the interdependence between its various parts.", + "title": "SIF: Investment Banking", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4112H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced Seminar in Finance module will serve as a comprehensive real world examination of the quantitative techniques available and how these might be applied to portfolio management in the investment management industry. Major topics covered include exploring various quantitative tools and models for Estimating Expected Returns, Modelling Risks, Style Analysis & Bench-marking,\nand Strategic & Tactical Asset Allocation. Lectures will involve frequent interaction with practitioners from the industry hands-on lab projects and real-life examples.\nSuitable for students interested in a career as an investment analyst or as a portfolio manager in the financial services sector.", + "title": "SIF: Applied Portfolio Management Techniques", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4112K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to provide students the\nopportunity to develop deep skills and understanding of the\ntheory and practice that underlie corporate governance\n(CG) systems and its interaction with corporate financial\ndecisions. This course will focus on various issues in CG\nwith specific reference to the Asian context such as CG\nstructures in Asia and around the world, the effects of CG\non various corporate financial policies, and CG\nmechanisms to solve agency conflicts. This knowledge is\nparticularly essential for doing business intelligently not\nonly in Asia and other emerging economies but also\ndeveloped countries.", + "title": "SIF: Family Business & Wealth Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4112L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a practical workshop where the emphasis is on application of corporate finance fundamentals. The focus is on \u201clearning by doing\u201d. The course will use numerous proprietary and contemporary case studies based on lectures experiences and situations to distill out current market practices. It will prepare students for a career in investment management, investment banking and corporate finance. The module aims to do the following \n- To provide students with different security valuation approaches and their relative merits \n- To introduce students to security valuation for different kinds of businesses and for differing stakeholder objectives. \n- To provide a framework for assessing risks and interpreting the market.", + "title": "SIF: Applied Investment Valuation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4112M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Seminars in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4112Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Seminars in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4112Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to survey the financial methods used in mergers and acquisitions, buyouts and corporate restructuring. Related legal, strategic, organizational and management issues will also be considered.", + "title": "Valuation and Mergers & Acquisitions", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4116", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the role of philanthropy and impact investing in addressing social problems. Using cases and readings, it will provide an overview of philanthropy, impact investing and the non-profit sector and the relationship of\nthese elements to government action. The course will examine actionable measurement of success in private acton for public good. \u201cActionable\u201d means that the measurement is used by managers, investors, and other stakeholders in making decisions. Students will participate in group projects to examine the practice and challenges of philanthropy and impact investing in Asia.", + "title": "Measuring Success in Philanthropy and Impact Investing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4117", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to highlight & provide the rigour and skills needed for stock selection using a fundamental research approach. Moreover it provides the understanding needed to know how these qualitative skills are applied to portfolio management in the investment management industry.\nIn addition to the above, this course also introduces students to the top down approach of portfolio management and how portfolios with multiple countries can be constructed.", + "title": "Equity Research Seminar", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4118", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for\nadmission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4119", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is not only relevant for would-be entrepreneurs, but also for those considering a career in the venture capital industry. This module differs from a typical corporate finance module in that it highlights the special and unique considerations when planning the financial needs of new or young ventures. Many conventional means of funding (such as bank borrowings, issuance of bonds or public equities) for established or public listed companies are generally not available to small and young companies due to their lack of business track record. This module will highlight the various means of fund raising for new or young ventures, with special emphasis on the analyses and requirements of the professional venture capital funds, which have made significant contributions in nurturing many promising young companies into multi-billion dollar listed corporations in the past decades.", + "title": "Entrepreneurial Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An overview of major technological trends reshaping the financial industry, including but not limited to payment systems, asset management, financial intermediation, etc.", + "title": "FinTech Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4123", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Technologies are transforming and disrupting the financial services industry. This module introduces financial data analytics by integrating finance domain knowledge and programming skills together. The module aims to give students an understanding on how technological advances can assist and improve various functions in the financial services industry, and equip students with the technical tools and programming skills that can assist with decision making in the financial services industry. It will also benefit students aspiring to enter the growing FinTech-related sectors.", + "title": "FinTech and Financial Data Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4124", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced finance module that aims to provide integrated perspectives on the topic of sustainability in the domain field of finance. Specifically, the course will cover the value implications of sustainability practices adopted by firms and those demanded by investors and financial institutions. Regulators, non-profit organizations (NGOs) and other intermediaries are also part of the ecosystem. Various financial valuation and investment tools and methodologies are modified and adapted for use.", + "title": "Sustainability and Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4125", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course offers a framework and analysis for the current technology landscape across financial and insurance sectors as well as emerging technologies such as AI, Blockchain, Cloud & Cyber Security, Data Analytics, Environmental Friendly Technology and Quantum Computing (ABCDEQ). The students will be able to develop critical views of emergent technologies, upgrade their technology literacy and use new approaches to evaluate inclusive FinTech projects in a trustless world.", + "title": "AI, Blockchain and Quantum Computing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4126", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will be structured around the theme of \nhousehold financial decision making. Specificially, \nHousehold Finance studies (1) how households make \nfinancial decisions relating to the functions of consumption, \npayment, risk management, borrowing and investing; (2) \nhow institutions provide goods and services to satisfy these \nfinancial functions of households; and (3) how interventions \nby firms, governments and other parties affect the provision \nof financial services. This functional definition shows that \nhousehold finance is clearly a substantial component of the \nfinancial sector. Its scope spans multi disciplines, \nembracing not just finance and economics but also \nindustrial organization, law, psychology, and sociology.", + "title": "Advanced Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4127", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for\nadmission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FIN4129", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced Seminar in Finance module will serve as a comprehensive real world examination of the quantitative, fundamental, behavioral, and model-based approaches utilized for performing security valuation in the financial industry. Major topics covered include Discounted Cash Flow Valuation, Relative Valuation, Multifactor Models, Liquidity, and Value Enhancement Strategies. Lectures will involve frequent interaction with practitioners from the industry, hands-on lab projects, and real-life examples. Students are also expected to research, write, and publish equity investment reports (preferably on companies with limited research analyst coverage) and/or portfolio investment strategies. These individual equity reports and a presentation in the form of a team-based stock pitch will subsequently be presented by the students to a panel of senior members from the Singapore investment management industry so as to showcase & ascertain students? equity research and stock-picking skills. There may also be an opportunity to put our skills to the test and manage real money (i.e., a live student-managed fund) during the course of the semester. This course is suitable for students interested in a career as a financial analyst (both on the buy-side and sell-side), or as a portfolio manager.", + "title": "Advanced Portfolio Management: Securities Analysis & Valuation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4713", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to survey the financial methods used in mergers and acquisitions, buyouts and corporate restructuring. Related legal, strategic, organizational and management issues will also be considered.", + "title": "Valuation and Mergers & Acquisition", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4714", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the role of philanthropy and impact investing in addressing social problems. Using cases and readings, it will provide an overview of philanthropy, impact investing and the non-profit sector and the relationship of these elements to government action. The course will examine actionable measurement of success in private acton for public good. ?Actionable? means that the measurement is used by managers, investors, and other stakeholders in making decisions. Students will participate in group projects to examine the practice and challenges of philanthropy and impact investing in Asia.", + "title": "Measuring Success in Philanthropy and Impact Investing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4715", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to highlight & provide the rigour and skills needed for stock selection using a fundamental research approach. Moreover it provides the understanding needed to know how these qualitative skills are applied to portfolio management in the investment management industry. In addition to the above, this course also introduces students to the top down approach of portfolio management and how portfolios with multiple countries can be constructed.", + "title": "Equity Research Seminar", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4716", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-CMRI", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is not only relevant for would-be entrepreneurs, but also for those considering a career in the venture capital industry. This module differs from a typical corporate finance module in that it highlights the special and unique considerations when planning the financial needs of new or young ventures. Many conventional means of funding (such as bank borrowings, issuance of bonds or public equities) for established or public listed companies are generally not available to small and young companies due to their lack of business track record. This module will highlight the various means of fund raising for new or young ventures, with special emphasis on the analyses and requirements of the professional venture capital funds, which have made significant contributions in nurturing many promising young companies into multi-billion dollar listed corporations in the past decades.", + "title": "Entrepreneurial Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4717", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An overview of major technological trends reshaping the financial industry, including but not limited to payment systems, asset management, financial intermediation, etc.", + "title": "FinTech Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4718", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Technologies are transforming and disrupting the financial services industry. This module introduces financial data analytics by integrating finance domain knowledge and programming skills together. The module aims to give students an understanding on how technological advances can assist and improve various functions in the financial services industry, and equip students with the technical tools and programming skills that can assist with decision making in the financial services industry. It will also benefit students aspiring to enter the growing FinTech-related sectors.", + "title": "FinTech and Financial Data Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4719", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced finance module that aims to provide integrated perspectives on the topic of sustainability in the domain field of finance. Specifically, the course will cover the value implications of sustainability practices adopted by firms and those demanded by investors and financial institutions. Regulators, non-profit organizations (NGOs) and other intermediaries are also part of the ecosystem. Various financial valuation and investment tools and methodologies are modified and adapted for use.", + "title": "Sustainability and Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4720", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course offers a framework and analysis for the current technology landscape across financial and insurance sectors as well as emerging technologies such as AI, Blockchain, Cloud & Cyber Security, Data Analytics, Environmental Friendly Technology and Quantum Computing (ABCDEQ). The students will be able to develop critical views of emergent technologies, upgrade their technology literacy and use new approaches to evaluate inclusive FinTech projects in a trustless world.", + "title": "AI, Blockchain and Quantum Computing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4721", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will be structured around the theme of \nhousehold financial decision making. Specificially, \nHousehold Finance studies (1) how households make \nfinancial decisions relating to the functions of consumption, \npayment, risk management, borrowing and investing; (2) \nhow institutions provide goods and services to satisfy these \nfinancial functions of households; and (3) how interventions \nby firms, governments and other parties affect the provision \nof financial services. This functional definition shows that \nhousehold finance is clearly a substantial component of the \nfinancial sector. Its scope spans multi disciplines, \nembracing not just finance and economics but also \nindustrial organization, law, psychology, and sociology.", + "title": "Advanced Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4722", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Finance (2 MC)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FIN4752", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in an essential area of finance, and for examining specialised topics and new developments in the area. Topics covered will vary from semester to semester and may include new financial products and services, initial public offerings, mergers and acquisitions, venture and risk capital, and corporate governance at the advanced level.", + "title": "Seminars in Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers major private equity investment types including venture capital, growth capital, buyouts, sovereign wealth funds and venture philanthropy. The course adopts a case analytic approach and includes discussion on private equity cycles, from fund raising, structuring to deal screening, valuation, investment negotiations, fund management and performance reporting. An underlying theme of this part of the course is to evaluate to what extent private equity markets can create wealth and promote economic growth.", + "title": "SIF: Private Equity", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4761A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course to the world of investment banking. It is designed to help students understand the industry in which investment banks operates, the business activities they typically undertake, and the financial instruments they create and use. Special attention will be paid to discuss how investment banks contributed to the recent financial crisis through their integration with various financial markets and institutions, and how they have, in return, been affected by the crisis. This aims at helping students to gain a boarder perspective of the financial industry and understand the interdependence between its various parts.", + "title": "SIF: Investment Banking", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4761B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced Seminar in Finance module will serve as a comprehensive real world examination of the quantitative techniques available and how these might be applied to portfolio management in the investment management industry. Major topics covered include exploring various quantitative tools and models for Estimating Expected Returns, Modelling Risks, Style Analysis & Bench-marking, and Strategic & Tactical Asset Allocation. Lectures will involve frequent interaction with practitioners from the industry hands-on lab projects and real-life examples. Suitable for students interested in a career as an investment analyst or as a portfolio manager in the financial services sector.", + "title": "SIF: Applied Portfolio Management Techniques", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4761C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to provide students the opportunity to develop deep skills and understanding of the theory and practice that underlie corporate governance (CG) systems and its interaction with corporate financial decisions. This course will focus on various issues in CG with specific reference to the Asian context such as CG structures in Asia and around the world, the effects of CG on various corporate financial policies, and CG mechanisms to solve agency conflicts. This knowledge is particularly essential for doing business intelligently not only in Asia and other emerging economies but also developed countries.", + "title": "SIF: Family Business & Wealth Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN4761D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a foundation (theory) course of corporate finance. The course reviews basic concepts of game theory, information economics, and contract theory used in the corporate finance and financial intermediation theory. The topics cover financial structure, financing investment, tax system, dividend policy, M&A, bankruptcy and reorganization, and banking and financial intermediation.", + "title": "Banking and Household Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN6002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course deals with the fundamental ideas and issues tackled in empirical research in asset pricing and market microstructure, the methodologies employed to evaluate asset pricing and microstructure models, and classical and recent empirical findings in these areas. The topics include a selection of (i) asset pricing models, (ii) market efficicency, (iii) market anomalies, (iv) return predictability, (v) behavioral finance, (vi) market microstructure, (vii) trading mecahnisms, (viii) volatility models, and (ix) international finance.", + "title": "Empirical Asset Pricing and Microstructure", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN6004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) in an area of specialization are for students with the requisite background to work closely with an instructor on a welldefined project in the respective specialization areas. Students will conduct independent critical reading and research work on organizational behavior under the guidance of the instructor. Evaluation is based on 100% Continuous Assessment.", + "title": "Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FIN6005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The freshman seminar will engage students in critical\nthinking of Chinatowns in history and myth. What are\nthe stereotypes and perceptions of Chinatown among\npeople in the West and the East? What are the facts\nand what are the misconceptions? How have\nChinatowns evolved over time? What is the fate of\nChinatowns in this changing world? Students will\ninvestigate the representation of the Chinese and the\nChinatowns through historical accounts, novels,\npoetry, photographs, cartoons, films, and personal\nmemory, etc. The seminar will focus on the\nChinatowns in North America and Southeast Asia, and\ncomparative analysis will be encouraged whenever\npossible.", + "title": "FS: Chinatowns: History and Myth", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1201B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The freshman seminar will introduce students to current economic thoughts and their application to economic development and policy in an open economy. The course will cover specific issues in trade policy, FDI activities, foreign labour and the role of international organizations such as the IMF and World Bank. It will also discuss the importance and differences in economic systems (institutions) on economic development, with particular emphasis on Asia and South\u2010East Asian countries.", + "title": "FS: Contemporary Issues in Trade Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1201D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Human beings figure war through words, drama and pictures. This module looks at some of those representations from different periods and different cultures. There is a very strong emphasis on student participation, with students being expected to ask for themselves how battle, warriors, enemies and victims are represented, and what attitudes towards war and its possible justification lie behind them. The field is vast, and the selection of texts necessarily limited and distorted by the lecturers' knowledge. Because of this, students must supplement these texts with others of their own.", + "title": "FS : Representing War", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1201F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This freshman seminar will provide students with an opportunity to examine Australian Society and Culture through a study of literature, films, political structures, foreign policy, social movements, and popular music. Students will investigate what it means to be Australian and just what Australian culture might be.", + "title": "FS: Australian Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1201H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This freshman seminar expands the students' perspective on generations by engaging them in a critical understanding of the multidisciplinary field of intergenerational studies. What happen when generations drift apart? what happen when generations unite? How are generations construced in consumption, care, policies, familial and extra-familial relations across cultures? The seminar engages the students through ethnographic texts, films, policy case studies, field trips and their own reflections on intergenerational exchanges.", + "title": "FS: Generations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1201J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar examines Islamic civilisation in the Malay World with focus on the cultural and literary manifestations of Islam. The main topics covered are: (i) The traditional art forms of literature, music and art that developed in the Malay World; (ii) Contemporary art forms such as ceramics, batik, and modern calligraphy, modern literature, and the varieties of contemporary Malay music. When possible, live music performances, visits to museums, and guest lecturers by scholars and performers from Singapore and abroad will also be included in the curriculum.", + "title": "FS : The Civilization of Islam in the Malay World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1201K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the concept of \u2018meaningfulness\u2019 and \u2018spirituality\u2019, beliefs, values and ethics among individuals and groups from the perspective of different life stages and life styles. The question revolves around whether the meanings people hold about life in general lead to particular leanings in making decisions in life. The seminars do\nnot attempt to define \u2018right\u2019 or \u2018wrong\u2019 worldviews but aim to generate debate from multiple perspectives according to the expertise and interests of the seminar leader who may be from the student group itself. The seminars include weekly discussions, writing papers, and making individual presentations.", + "title": "FS: Meanings and Leanings: Is There a Reason Why?", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1201P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This freshman seminar will engage students in critical understanding of romantic love. The notion of romantic love, expressed through courtship and marriage, is ubiquitous in popular culture. In our everyday lives, we embrace being in love as a pre-condition for couple-hood and marriage. But what is love? The seminars will investigate love as a social construct, and examine the various social and cultural factors that influence how we appreciate and understand romantic love in contemporary societies.", + "title": "FS: Love Actually? The Social Construction of Romantic Love", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1201Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Risk taking lies at the heart of business and the economy. Biology, psychology, and economics are converging today into a unified discipline which can deliver a revolutionary approach to understanding how people take risk, to realize greater returns or for recreation. We shall begin with discussing economic models of risk taking incorporating psychological considerations and how they are tested in choice experiments. Beyond economic outcomes and psychological factors, evidence points to the role of biology, through genes, hormones, and neurochemicals, in modulating risk taking observed in the laboratory and in the field with important ramifications for the real world.", + "title": "Taking Risks: Economics, Psychology, and Biology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1202D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Society has always needed its heroes \u2013 perhaps all the more since 9/11 \u2013 and yet the kinds of heroes it has needed have complex nuances, and have also changed over time. This module allows students to explore and discuss the social need for and construction of heroism from a variety of disciplinary perspectives, including the socio\u2010political, historical, cultural and literary.", + "title": "FS: Heroism and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1202F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will explore the complex relationships between a consumerist world and the natural environment. Contemporary environmental issues, example climate change, industrial pollution, land degradation, deforestation and bio\u2010food safety have\nshown that capitalism is both a socio\u2010economic as well as a socio\u2010ecological system. The latter being constituted through the uneven transformation and production of \u201cnature\u201d in different places. Students will appreciate how economics, politics, history and ecology have transformed our natural environment. Students will read about three readings a week. Classes will be structured such that students will\ngrow in their ability to read, understand and critique these resources progressively.", + "title": "FS: Producing Nature, Consuming Nature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1202G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We will explore the fascinating fields of Cognitive Neuroscience and Neuroeconomics. By exploring recent research, we will examine how our brains make\ndecisions \u2013 examining the neurobiology of gambling, wine evaluation, dieting, and even how hormones and genes can alter how you respond to others (altruism and morality).\n\nWe will start off with an initial orientation on the brain and research techniques, and then take a discussion level approach to exploring these intriguing experiments. The focus will be the use of primary literature to facilitate critical thinking skills. Students will write weekly reaction papers and lead presentation on one paper.", + "title": "FS: Neuroeconomics: Brain on Money", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1202N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This freshman seminar offers a sociological and historic look at the theme park, a type of leisure increasingly ubiquitous in the contemporary environment. Through the examination of various theme parks, and studies that critically assess their meanings and roles in contemporary society, students will be challenged to think critically about aspects of leisure and popular culture that shape our world views. They will also be challenged to think about questions such as \u201cWhat is culture?\u201d; \u201cWhat is authentic culture?\u201d; and \u201cHow does culture change and adapt across the globe in this age of mobility?\u201d.", + "title": "FS: Contemplating Theme Parks", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1203Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This Freshman Seminar will give students the opportunity to analyse how controversies stemming from the Second World War have been understood, judged, and depicted. Course readings and discussions will focus on four events and their historical representation: the U.S. decision to deploy the atomic bomb in Hiroshima and Nagasaki, the Holocaust, the military strategy of bombing German civilian targets, and the Japanese occupation of Singapore. In this module, students will also develop essay writing and presentation skills.", + "title": "FS: War Memories: From Anne Frank to Changi Prison", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1204H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar introduces first\u2010year students to one of the most significant historical events in the global history of the past century: decolonization. The\nseminar\u2019s topics include: empire and colonialism, resistance and collaboration, the Cold War, nationalism, issues following decolonization, and the legacy of colonialism. Through reading and discussing primary and secondary texts, this seminar aims to expose students to new arenas of research, and provide them an opportunity to learn skills for active and independent research at the university level.", + "title": "FS: Decolonization in the 20th Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1205H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this Freshman Seminar is to introduce students to the use of travel narratives as sources for historians. Students will be engage with different forms of travel and their productions to explore such themes as exploration, gender, race and culture. Working individually and in groups, students will have an opportunity to hone their research, writing and oral presentation skills.", + "title": "FS: Travel and the Historian", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1206H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How did the lives of human beings become objects of governance? Introduced by Michel Foucault in the 1970s, the concept of biopolitics has been one of the most critical tools in investigating the control and regulation of different levels of human life\u2014from individual bodies to populations. Through examining the production and use of medical and scientific knowledge of human life in imperial, colonial, and national histories, this module explores historical processes in which human lives gradually came to be included in various practices of political power. Discussion topics include: race, gender/sexuality, public health and hygiene, population control, and eugenics.", + "title": "FS: Biopolitics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FMA1207H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Crime is one feature of human behaviour that fascinates our community. How crimes impact our society and how crimes are investigated and solved in the Singapore context is the focus of the module. The module is designed to enable students to appreciate why and how crimes are committed, to understand how crimes are solved in Singapore using investigative, and the latest scientific and forensic techniques, and to learn the role of the major stakeholders in the Criminal Justice System. Experts from law, pharmacy, statistics, the Health Sciences Authority and the Singapore Police Force will cover topics related to forensic science.", + "title": "Forensic Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Monday", + "lessonType": "Lecture", + "size": 410, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces concepts in crime scene processing, criminal law, evidence and court procedures. It teaches processing of crime scenes and evidence gathering. Topics such as crime scene protocols, recognition, collection and preservation of evidence are covered. Skills such as presenting forensic evidence in court and fundamental court craft are taught.", + "title": "Evidence in Forensic Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC3101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-14", + "end": "2023-07-28" + }, + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-13", + "end": "2023-07-27" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-12", + "end": "2023-07-26" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-11", + "end": "2023-07-25" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-24" + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Probability and statistics provide powerful tools for quantifying the weight of forensic evidence. These quantities often come along with associated assumptions and need to be interpreted and articulated in a manner that is easily understood. Students will learn the necessary probability and statistical techniques in quantifying forensic evidence and error evaluation metrics. The fallacies and errors in interpreting results of selected forensic topics such as paternity testing and representative drug sampling will be covered. Additionally, students will learn the art of articulating these quantitative findings to non-scientists through real case studies involving DNA evidence, illegal drugs, forensic toxicology and criminalistics.", + "title": "Articulating Probability and Statistics in Court", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ever wondered how DNA Evidence makes its way from the crime scene to the courtroom? This module is delivered in an interactive seminar-style format, where students will experience first-hand challenges and practical usage relating to Forensic DNA Evidence. Students will undergo practicals to learn the entire chain of forensic DNA techniques, from collection, characterisation, and storage to processing DNA Evidence. Students will also play the role of expert witnesses for the prosecution or defence based on evidence gathered at mock trials. Students will appreciate the importance of DNA as part of a toolkit used for individualisation in forensic investigations.", + "title": "Forensic Human Identification", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC4202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 2 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ever wondered how much of the coffee you consumed is subsequently metabolised? Find out using forensic toxicology! This multi-disciplinary module aims to support medical and legal investigation into the cause of death, poisoning and adverse responses to substances. Drawing from the foundational principles in toxicokinetics, students will be able to (1) study the physicochemical properties of substances and their effect(s) on the host and (2) consider the toxicological outcomes of exposure due to the unique handling of substances by organ systems. The lectures will conclude with real-life applications led by practitioners.", + "title": "Forensic Toxicology and Poisons", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC4203", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-24" + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-14", + "end": "2023-07-28" + }, + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-12", + "end": "2023-07-26" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-11", + "end": "2023-07-25" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-13", + "end": "2023-07-27" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The central dogma of Forensic Science is \u201cevery contact leaves a trace\u201d, popularly known as the Locard\u2019s principle. However, in reality, juxtaposed against this central dogma is that evidence of absence is not necessary absence of evidence. To scintillate the bridge between science and law, which is exactly what forensic science is, this interactive module will be taught in three parts, 1) proof beyond a reasonable doubt; 2) not all evidence are proof; and 3) evidence of absence is not absence of evidence.", + "title": "Criminalistics: Evidence and Proof", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FSC4204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Forgery is a perennial problem and exists everywhere \u2013 in fake jewellery, counterfeit medications, fake death to scam insurance, fake signatures. The question this module seeks is how we use forensic science to expose forgery for justice to be meted out. Students will learn fundamental scientific concepts and will apply them in case studies, such as establishing anachronism in cheques and wills; determining whether the person is dead or alive when an insurance payout for his death was made and if the gold bars which were stolen were indeed gold.", + "title": "Criminalistics: Authenticity, Fraud and Counterfeit", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC4205", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-13", + "end": "2023-07-27" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-14", + "end": "2023-07-28" + }, + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-24" + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-11", + "end": "2023-07-25" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-12", + "end": "2023-07-26" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Criminal law does not exist in a vacuum. Forensic evidence can support the elements of a charge, such as drink-driving, rape and drugs consumption. Forensic evidence can also serve as objective evidence to decide who is telling the truth in a he say-she say situation. Forensic scientists can play a significant role by presenting evidence in a trial, and effective trial lawyers should be equipped with the skills and knowledge to manage, present, and challenge forensic evidence. This interdisciplinary module serves to equip students with effective communication and analytical skills to present and handle forensic evidence in courts.", + "title": "Advanced Criminal Litigation \u2013 Forensics on Trial", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "FSC4206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to forensic entomology, the study of insects for medicolegal issues, which has been dated back to China in the 13th century. Studying these forensically important insects is useful in estimating post-mortem intervals. Legal implications will be explored using various case studies. A 5-day field course is incorporated and will be conducted by the forensic entomologist expert in Medical Faculty, Universiti Teknologi MARA, Kuala Lumpur. Students will also visit the Entomology Unit and the Forensic Laboratory in KL. Students will observe the progression of decomposition and be exposed to the different families of forensically important flies.", + "title": "Forensic Entomology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC4207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2023-02-23", + "end": "2023-02-23" + }, + "venue": "S2-0414", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2023-02-21", + "end": "2023-02-21" + }, + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2023-02-24", + "end": "2023-02-24" + }, + "venue": "LT20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers forensic identification, criminalistics, DNA profiling, narcotics and toxicology. Topics on forensic identification and criminalistics includes crime scene investigation, nature of physical evidence, characteristics of evidence, an in-depth study of glass and fibre as sources of evidence in criminalistics investigations. For DNA profiling, this module would focus on screening methods for biological materials, the various instrumentation platforms and the application of forensic DNA in Singapore crime cases. In narcotics, the topics covered include forensic drug analysis and legislation, clandestine drug manufacturing, drug metabolism and analysis of urine for drug abuse. For toxicology, an in-depth study of toxicological analysis will be covered.", + "title": "Advanced Forensic Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC4208", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a Masters-level course which provides an in-depth survey of the major fields in Forensic Sciences, Ciminalistics, Crime Scene Procedures and Documentation and co-relate them to the local context. This course will also look at how forensic evidence is identified, collected, documented and utilised in our Courts. The teaching objective is to provide students with an understanding of forensic science and criminalistics and to prepare them for advanced modules in\nthese fields.", + "title": "Survey of Forensic Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 36, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a compulsory project-based module for students taking the M.Sc. in Forensic Science programme. Students will conduct research on topics related to forensic science, under the supervision of a faculty member and/or co-supervisors\nwith our industry partners. Through this independent project, students will gain hands-on practical knowledge in solving forensic science related problems using scientific techniques. The project is concluded with a written report and oral\npresentation.", + "title": "Research Project in Forensic Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "FSC5199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the courtroom, the presentation of key evidence is important to securing a conviction or acquittal. Anyone can take a photograph, but not everyone possess the ability to take photographs of examinable quality and admissible in legal\nproceedings. This module covers the management of forensic evidence in Crime Scene Investigation (CSI) and will be delivered by domain experts from the Criminal Investigation Department of the Singapore Police Force. Aspiring\ninvestigation officers or forensic scientists will be able to conduct forensic documentation and photography, as well as to learn the internationally established scientific methodology applied in the forensic process of analysis, comparison and\nevaluation of matching friction ridge pattern evidence.", + "title": "Advanced CSI Techniques", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC5201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": { + "start": "2022-08-12", + "end": "2022-11-11" + }, + "venue": "S1A-04LAB4", + "day": "Friday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 36, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module brings in cross-disciplinary practical expertise from the Unconventional Threats Division of the Ministry of Home Affairs (MHA), which acts as our first line of defence against terrorism to detect threats from chemical, biological, radiological, nuclear and explosive materials (CBRNE threat materials). Effective anti-terrorism measures utilising new methodologies customised and optimised for forensic use in order to provide fast and accurate detection and identification of CBRNE threat materials will be shared. Students will get the\nrare opportunity to experience first-hand the applications learnt at MHA\u2019s operational forensic laboratories at checkpoints. Relevant underlying scientific principles will be augmented by internal faculty members. Students will also be exposed to a holistic view of the laws and international conventions involving\nCBRNE threat materials.", + "title": "Forensic Defense Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB4", + "day": "Friday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As processes and transactions become increasingly more streamlined using technology, digital forensics rises to be of paramount significance in the context of digital incident investigation. It is an essential methodology and skillset for an\neffective and efficient analysis of voluminous varieties of digital sources to identify key evidence for investigation and court cases. This module examines the role of digital evidence in the forensic process and demonstrates the skillsets applied to\nconduct digital forensic investigations.", + "title": "Digital Forensic Investigation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC5203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": { + "start": "2022-08-09", + "end": "2022-11-08" + }, + "venue": "S2-04LAB5", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Forensic Psychiatry and Psychology are gaining importance in Medicolegal cases where evidence by psychiatry and psychology experts contribute to important legal judgements with a direct bearing on sentences that are imposed on accused\npersons. This is complicated by the imprecise nature of Psychiatry and Psychology, compared to other branches of Science. This module aims to educate on the skill sets and limitations of Forensic Psychiatric and Psychological practice\nand how they contribute to legal jurisprudence.", + "title": "Forensic Psychiatry and Psychology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC5204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In recent years, Singapore courts have increasingly relied on forensic evidence, which is considered objective and corroborative of other evidence as compared to the testimony of eyewitnesses and confessions of accused persons, which have at times proved to be unreliable. Forensic evidence also plays a very important role in the assessment of sufficiency of evidence in major cases in Singapore. This module serves the capstone role in which students utilise knowledge and skills gained in preceding forensic science modules to conduct in-depth analysis of\nmajor cases in Singapore such as murders and rape, and appreciate how forensic science had decisively shaped the outcome of these cases.", + "title": "Forensic Science in Major Cases", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FSC5205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be given opportunities to work with real companies. The scope of the Field Service Project is part of the initial negotiations between the students and the company. It is an interactive process as the students have to make a preliminary survey of the company before finalising the job scope. The project is divided into stages\u2013 planning, research and assessment, and recommendations.", + "title": "Field Service Project", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "FSP4003", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of the field of Food Science and Technology by first introducing non-technical discussion of food related issues and concerns currently and in the foreseeable future. Following this, the different types of commercial food products in the marketplace from raw fresh foods to processed foods will be discussed with the introduction of some relevant technical terms. The role of a food scientist or technologist becomes apparent to ensure the quality, safety and variety of foods to cater for different needs of the society. It wraps up with the primary subdisciplines of Food Science and Technology.", + "title": "Science and Technology of Foods", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST1101B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the chemistry of major food components such as water, lipid, carbohydrate, and protein including enzymes in food processing & systems. The basic functions of these components will also be introduced. Some chemical reactions involving these molecules with relation to food processing and storage are discussed. In addition, methods of enzymatic and chemical modification to change the chemical and physical properties of the food components are also presented. Practical sessions will cover analytical methods for determination of some food components and enzyme activity, kinetics, and inhibitions in the context of foods.", + "title": "Chemistry of Food Components", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "FST2102A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the chemistry of major food components such as water, lipid, carbohydrate, and protein including food enzymes. The basic functions of these components will also be introduced. Some chemical reactions involving these molecules with relation to food processing and storage are discussed. In addition, methods of chemical modification to change the chemical and physical properties of the food components are also presented. Basic laboratory techniques used in food chemistry laboratory will also be introduced.", + "title": "Chemistry of Food Components", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2102B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to factors that result in the loss of quality characteristics of plant and animal produce, and discusses how such losses can be minimized by proper and effective handling of the fresh produce, from farm to market. This module also covers the various aspects of post-harvest processes and the products derived from fresh produce. The roles of irradiation and packaging in extending the shelf-life of animal and plant produce are also discussed.", + "title": "Post Harvest Food Processing", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers fundamental analytical chemistry principle and emphasizes learning experience in lab sessions. The lecture topics will cover sample preparation techniques, liquid and solid phase extraction techniques, gravimetry, colorimetry, gas and liquid chromatography. Students will learn hands-on skills in regard to sample preparation and extraction and apply analytical techniques to quantification of food components. These techniques include gravimetry, gas and liquid chromatography systems (GC and HPLC), UV-VIS spectrophotometers, and atomic absorption/emission spectrometry.", + "title": "Food Analysis and Lab", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the major sources of food contaminants, the ways of preventing contamination and the likely consequences as regards health of consumers if contaminated food is consumed. Emphasis is placed on both biological and chemical contaminants and how these affect the consumer. An introduction to epidemiology is included and some methods of determining the levels of contamination are discussed and utilised. The main aim of the module is to explain the importance of safe and quality food and how this may be achieved.", + "title": "Food Safety Assurance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental engineering principles of food processing systems, including process classification, mass and energy balances, fluid mechanics and transport, steady-state and unsteady-state heat transfer, steam generation and utilisation. It further covers the applications of the engineering principles to several common processes found in the handling, processing, storage, packaging and distribution of food products, e.g. heat exchange, and refrigeration. Industrial examples related to the principles will be provided throughout the module.", + "title": "Fundamentals of Food Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2109", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the nature and activities of microorganisms found in foods and how they are affected by various food processing and preservation methods, the role of various microorganisms in relation to their significance in the products; i.e., indicator organisms, pathogens, spoilage organisms, and beneficial organisms. Study of starter cultures, their physiology and genetics in the preparation and application to different food products and ingredients, study of chemical, biochemical and microbial bio-transformations in selected indigenous foods and food ingredients.", + "title": "Food Microbiology and Fermentation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the student to the science of nutrition. The format consists of a series of lectures, assigned readings and assignments that cover the fundamental concepts related to basic nutrition. By the end of this course, the student will possess the knowledge to interpret dietary labels, make informed food selections for a healthy, well-balanced diet and understand the relevant human physiological processes that transform food after the first bite. Students will be required to demonstrate a specific understanding of nutrition in health and human physiology, vitamins and minerals, protein, carbohydrates, dietary fats and energy metabolism.", + "title": "Introduction to Human Nutrition", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is part of an intensive six\u2010week summer program conducted with the University of Costa Rica (UCR). The first three weeks will be spent on campus in San Jose, with lectures and tutorials on a variety of food commodities including plant\nfood commodities and animal husbandry. Field trips will be conducted in the following two weeks to visit production farms and processing industries of plant and animal food commodities. During the sixth week, intensive food processing trials of several food commodities at the UCR pilot plant will be conducted. Students will be exposed to a large number of commodities that are essential raw materials for food products.\nAssessments include field trip reports and final examination on the last day of the summer program.", + "title": "Food Commodities in Costa Rica", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "FST2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is part of the intensive 5-week OdySEA Programme which runs during the special semester. It aims to provide students a practical and in-depth knowledge in food commodities in a typical tropical country. The first two weeks will be spent at NUS with lectures and tutorials, taught by academic staff from both NUS and Bogor Agricultural University (Institut Pertanian Bogor \u2013 IPB). The topics will be on a variety of food commodities including plant food commodities and animal husbandry. A 9-day field trip will then be conducted mainly in the area of Bogor, which stretches to Jakarta and Semarang, visiting production farms and processing industries of plant food commodities. Students will be exposed to a large number of commodities that are essential raw materials for food products. Upon returning to NUS, lectures will continue. Students will also work on group projects and assessments will be conducted.", + "title": "Food Commodities in Indonesia", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a five-week joint summer program offered by the National University of Singapore (NUS) and the Hokkaido University (HU) of Japan. The module focuses on comparative study of sustainable seafood supply chains from fishery/aquaculture to the marketplace in Singapore and in Japan. General topics covered include current state of capture fisheries and aquacultures, main challenges related to seafood sustainability, seafood supply chain and its management, seafood traceability, quality assurance, safety, and regulation, seafood processing technology and valorisation of seafood by-products, impact of globalisation on seafood safety and supply chain and seafood security.", + "title": "Seafood Supply Chains in Japan and Singapore", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2204", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "2000", + "weeks": { + "start": "2023-06-29", + "end": "2023-06-29" + }, + "venue": "S14-0619", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to give level 2 students an introduction to research. The student will undertake a laboratory based investigation on a topic proposed by the supervisor. Students work independently but under the close supervision of the supervisor.", + "title": "Basic UROPS in Food Science & Technology I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to give level 2 students an introduction to research. The student will undertake a laboratory based investigation on a topic proposed by the supervisor. Students work independently but under the close supervision of the supervisor. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Food Science & Technology I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2288R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an extension of FST2288 and a more detailed and prolonged study stretching over two semesters.", + "title": "Basic UROPS in Food Science & Technology II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an extension of FST2288 and a more detailed and prolonged study stretching over two semesters. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Food Science & Technology II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST2289R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 1ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "FST2310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "FST2312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "FST2313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the nature and activities of microorganisms found in foods and how they are affected by various food processing and preservation methods, the role of various microorganisms in relation to their significance in the products; i.e., indicator organisms, pathogens, spoilage organisms, and beneficial organisms. Study of starter cultures, their physiology and genetics in the preparation and application to different food products and ingredients, study of chemical, biochemical and microbial bio-transformations in selected indigenous foods and food ingredients.", + "title": "Food Microbiology & Fermentation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Monday", + "lessonType": "Laboratory", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Tutorial", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the major sources of food contaminants, the ways of preventing contamination and the likely consequences as regards health of consumers if contaminated food is consumed. Emphasis is placed on both microbial and chemical contaminants and how these affect the consumer. An introduction to epidemiology is included and some methods of determining the levels of contamination are discussed and utilised. The main aim of the module is to explain the importance od safe and quality food and how this may be achieved.", + "title": "Food Safety Assurance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers a number of the most popular food processing operations, ranging from the conventional thermal processing to the modern membrane separation. Topics include thermal processing, microwave processing, evaporation, freezing, mixing, psychrometrics, mass transfer, membrane separation, and dehydration.", + "title": "Advanced Food Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Friday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers sensory basis of food perception and preference, discrimination testing and determination of threshold values, basis of psycophysics in sensory evaluation, measurement of preference & liking, basis of training a panel, sensory evaluation in quality control, experimental design and statistical analysis of sensory data, shelf life evaluation of food, food quality management. Students will also be able to gain experience in developing a new food product through a problem-based learning project, which will last throughout the semester.", + "title": "Food Sensory, Innovation and Packaging", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "FST3104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module intends to provide students with the opportunity to experience the stages of new product development through a problem-based learning project in collaboration with a food company. Lectures in this modules will cover three main topics 1. Introduction and essential steps in new food product development. 2. Mechanism of food spoilage and shelf life analysis of foods. 3. Principles and practices of food packaging.", + "title": "Food Product Development and Packaging", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers sensory science of food perception and preference, discrimination testing and sensory thresholds, basis of psycophysics in sensory evaluation, measurement of preference and liking, basis of training a sensory panel, sensory evaluation techniques used in quality control, experimental design and statistical analysis of sensory data; this module also covers the chemical basis of food flavour perception, study of biosynthetic pathways of selected flavour compounds, aroma characteristics and flavour quality of different food products important in the region, changes in flavour composition of foods/beverages in relation to processing.", + "title": "Sensory and Flavour Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Monday", + "lessonType": "Laboratory", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Friday", + "lessonType": "Tutorial", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This essential requirement for the FST major involves the student working in an industrial/governmental or similar institutions for a minimum period of 16 weeks. The aim is to introduce the student to the world of work and to improve their interpersonal skills.", + "title": "Professional Placement", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "FST3181", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows the student to undertake an in-depth study of a food related topic agreed between the student and the supervisor. The work is carried out under the terms of a learning contract. Normally, a written and oral report on the work is required but other modes of assessment may be agreed and defined in the learning contract.", + "title": "Independent Study (Food Science & Tech)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3201", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the role of nutrition and application of dietary therapy in the prevention of chronic disease. Basic concepts on how our genes and genome interact with our diet in health and diseases will also be introduced. The format consists of a series of lectures, assigned readings and case studies involving aspects of problem based learning which relates the impact of food components to disease prevention. The specific focus of this course relates food components to prevent or slow the progression of chronic disease such as colon cancer, heart disease, hypertension, diabetes, obesity and the metabolic syndrome.", + "title": "Nutrition and Disease Prevention", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this course is to provide students with a comprehensive understanding of the role of essential vitamins, minerals and trace elements in the human body. Health risks associated with nutrient under-supply as well as over-supply will be discussed in light of underlying molecular mechanisms. This includes in-depth discussions of food source, nutrient absorption for physiological function, effect of dietary and physiological factors on nutrient bioavailability and homeostatic mechanisms. Discussions will be supplemented by critical assessment of clinical measures and available methodologies for assessment of nutritional status and, through this, recommendations for dietary intake.", + "title": "Vitamins & Minerals in Health & Diseases", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to develop their research skills by working on a supervised project which will be laboratory based. It is a similar module to FST2288 but the topic will require a deeper understanding of food sciences. Students will work independently under close supervision of the supervisor.", + "title": "Advanced UROPS in Food Science & Technology I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to develop their research skills by working on a supervised project which will be laboratory based. It is a similar module to FST2288 but the topic will require a deeper understanding of food sciences. Students will work independently under close supervision of the supervisor. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Food Science & Technology I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3288R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an extension of FST3288 and involves a more detailed and prolonged study stretching over two semesters.", + "title": "Advanced UROPS in Food Science & Technology II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an extension of FST3288 and involves a more detailed and prolonged study stretching over two semesters. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Food Science & Technology II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST3289R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "FST3310", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. Module is open to FoS undergraduate students from Cohorts AY2020/2021 and before, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "FST3311", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the chemical basis of food flavour perception and mechanism of olfaction. Study of selective biogenetic pathways of attractive flavour compounds. Aroma characteristics and flavour quality of different food products important in the region. Changes in flavour composition of foods/beverages in relation to the maturity and microbial activity or the processing.", + "title": "Flavour Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST4101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth study of the modern food processing methods, newly developed food packaging systems, and the advanced control of food processes. Topics include high pressure processing, pulsed electric fields processing, irradiation, active packaging technologies, instrumentation technology, and process control techniques.", + "title": "Advanced Food Processing Technology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST4102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 65, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introductory module to the science of colloids and interface with specific reference to the application in food systems. By the end of the module, students are expected to understand what is a colloid, the fundamentals of colloidal stability such as the forces leading to the instability of colloids, as well as how colloids can be stabilised. Some examples of the application of colloid science in some food colloid systems such as emulsion, gel, foam etc. will be discussed.", + "title": "Food Colloids and Components Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST4103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Monday", + "lessonType": "Laboratory", + "size": 65, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The practical work for this module is undertaken in Semester 1 and early part of semester 2 of the Honours year and the work written up and submitted in Semester 2. The project is an indepth study of an agreed topic and will normally require a substantial amount of laboratory work to generate primary data.", + "title": "Honours Project in Food Science & Tech", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "FST4199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will vary from year to year but will be an in-depth study of a selected FST topic. It is hoped that a visiting professor will be available each year to offer this module in his/her specialist area.", + "title": "Current Topics ( Food Science & Tech )", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST4201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to examine in depth the nutrients and/or bioactive compounds of food and how these are important in health and aging-related disease conditions. Underlying mechanism of their action will be informed and emerging science in the current literature will also be discussed.", + "title": "Nutritional Biochemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST4202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To provide a mainly student-centred learning module including a degree of practical laboratory work that gives students the opportunity to authenticate, compare and contrast similar food products from a technical (chemical and microbiological aspects) and legal point of view. Products from different countries will be compared and contrasted as regards their composition and organoleptic qualities. The syllabus will be concerned with the detailed analysis of food as regards its chemical composition, microbiological loading and its organoleptic qualities. These will be considered in the light of any appropriate legislative requirements.", + "title": "Food Forensics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST4203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For Bachelor of Science (Honours) students to participate full-time in a six-month-long project in an applied context that culminates in a project presentation and report.", + "title": "Applied Project in FST", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "FST4299", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students learn research ethics, practice, scientific communication skills on writing scientific document such as manuscripts, research proposals, and abstracts for scientific conference and preparation of posters and presentation slides. In addition, student will polish oral communication skills on delivering oral presentations and participating in discussion on scientific literatures with peers. Finally, students learn literature research methods from librarians at NUS Science Library.", + "title": "Advanced Food Science and Nutrition Seminar", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5198", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a compulsory module for students taking the pathway towards MSc in Food Science and Nutrition programme. Students will work on research and development projects in relation to food science and nutrition under the supervision of faculty members, sometimes in partnership with industry collaborators. Students gain hands-on laboratory and/or practical skills of R & D as well as scientific writing skills. There will be a written report and an oral examination.", + "title": "MSc research project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "FST5199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a research project module for students taking the pathway towards MSc in Food Science and Nutrition Programme. Students will work on research and development projects in relation to food science and nutrition under the supervision of faculty members, sometimes in partnership with industry collaborators. Students gain hands-on laboratory and/or practical skills of R & D as well as scientific writing skills. There will be a written report and an oral examination.", + "title": "MSc Research Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "FST5199A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students learn hands-on skills and knowledge in a diverse range of experimental methods to be applied in research laboratories for safety, chemistry, processing technology, and nutrition of foods. The topics include the following mini projects a) Research methods for controlling food borne pathogens, b) Experimental approach to investigating bioactive constituents in foods, c) Methods for biotransformation of food by-products into food flavourings; d) Methods to develop functional breads and enhance their physical and sensory attributes; e) Fish gelatin extraction and application f) Molecular biology and cell culture techniques related to molecular nutrition and food research", + "title": "Integrated Food Research Lab", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "FST5199B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Upon successful completion of the module, the student shall be able to 1) understand and describe the major principles and types of rheology; and 2) how these can be applied to give the required structure, texture and viscosity in a processed biomaterials. Major topics covered include viscosity of Newtonian and non-Newtonian fluids, viscoelastic properties of weak and strong gels, transient responses of a wide range of food and pharmaceutical products, and theoretical/empirical modelling of mechanical properties.", + "title": "Rheology and Textural Properties of Biomaterials", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides in-depth coverage of food fermentation. Particular emphasis is given to the microbiology and chemistry of fermentation, physiology and metabolism of lactic acid bacteria, yeasts and moulds, using selected food fermentations as examples. Major topics include microbiology and starter cultures of selected fermented foods, chemistry and flavour of selected fermented foods, alcoholic and non-alcoholic fermentations by yeasts, lactic acid bacterial fermentations and fungal fermentations, health implications of selected fermented foods.", + "title": "Advanced Food Fermentation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides coverage of modern food fermentation relative to traditional fermented foods. Particular emphasis is placed on the microbiology and biochemistry of spontaneous and induced fermentation, physiology and metabolism of lactic acid bacteria, bacillus and other food bacteria, probiotics, yeasts and moulds, using selected fermented foods as case studies. Major topics include beneficial microorganisms and starter cultures of selected fermented foods, chemistry and flavour of selected fermented foods, nutritional enhancemement and food safety improvement, alcoholic and non-alcoholic fermentations by yeasts, lactic acid bacterial fermentations and fungal fermentations.", + "title": "Modern Food Fermentation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5202A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a specialized case study of food poisoning outbreaks caused by food-borne pathogens, Topics covered includes methods used in tracing the origins of the outbreak, the investigation of etiological agents, and preventive measures. Advanced concepts in food microbiology related to prevention of food-borne disease will also be covered.", + "title": "Advanced Food Microbiology and Safety", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of food microbiology and food safety related topics following an easy-to-understand flow of WHO ARE THEY (foodborne pathogens, opportunistic pathogens, and microbial indicators); HOW TO FIND THEM (microbial analysis); WHERE ARE THEY (source tracking of foodborne pathogens); WHAT DO THEY DO (challenge study to determine the fate of foodborne pathogens and predictive microbiology); HOW TO CONTROL THEM (mitigation and prevention). Fundamental knowledge will be systematically reviewed and advanced concepts will be introduced by interactive activities over research and real-life oriented questions.", + "title": "Advanced Food Microbiological Analysis and Food Safety", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5203A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the isolation, structural elucidation, and chemical and biological activity of the bioactive constituents used in functional foods and nutraceuticals. The effective R and D method leading to evidence-based functional food will be critically evaluated and discussed with specific topics related to foods for health maintenance / improvement by reducing the risk factors of chronic diseases such as type II diabetes, cardiovascular diseases, cancer, neurodegeneration, and ageing process. The safety, global regulatory issues, health claims, and marketing challenges of these products will be discussed.", + "title": "Evidence Based Functional Foods", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students the current food processing and engineering knowledge, including organic food processing, reaction kinetics and shelf-life prediction, alternative ingredient development, application of nanotechnology in food processing, sustainable aquatic\nfood processing, minimal processing of fruit and vegetables, nonthermal processing technologies, innovative thermal processing technologies, life cycle analysis of processed foods, emerging trends in food processing, experimental design and data analysis for food\nprocesses, food process control and automation.", + "title": "Frontier of Food Processing and Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students the current food processing and engineering knowledge, including organic food processing, reaction kinetics and shelf-life prediction, alternative ingredient development, application of nanotechnology in food processing, sustainable aquatic food processing, minimal processing of fruit and vegetables, emerging nonthermal processing technologies, innovative thermal processing technologies, life cycle analysis of processed foods, trends in food processing, food process control and automation, Industry 4.0 in food manufacturing.", + "title": "Smart & Sustainable Food Processing and Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5205A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses the adverse effects and action mechanisms of food-associated compounds on human health. It also covers the basic chemical and biological principles of toxicology, including modes of actions of toxic compounds, factors that affect the toxicological potential of toxic compounds, route of exposure, and dose-response effects. It will focus on the food-associated compounds, including synthetic chemicals (for example, food additives and contaminants), naturally occurring food compounds (for example, plant or animal toxins), and compounds that are produced during food production and storage (for example, aflatoxins and other carcinogens).", + "title": "Advanced Food Toxicology and Chemical Safety", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to equip learners with knowledge of alternative proteins, which is developing advanced replacements for traditional meat products. Learners will gain an understanding of the core scientific principles and three main technologies in the field\u2013 cultivated meat, plant-based meat and fermentation-enabled meat. As part of the module, learners will develop a research proposal to address a real-world challenge facing the industry. It is designed for learners with fundamental knowledge in biochemistry, and are interested in this emerging, fast growing industry that aims to mitigate issues of climate change, food safety, health and welfare challenges currently facing humanity.", + "title": "Introduction to Advanced Meat Alternatives", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate level module will be an in-depth study of a selected advanced Food Science and Technology topic. The topics may vary from year to year depending on the interests and availability of staff.", + "title": "Advanced Current Topics in Food Science I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5225", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate level module will be an in-depth study of a selected advanced topic in Food Science and Technology. The topic may vary from year to year depending on the interests and availability of staff offering the module.", + "title": "Advanced Current Topics in Food Science II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate level module will be an in-depth study of a selected advanced topic in Food Science and Technology. The topic may vary from year to year depending on the interests and availability of staff offering the module.", + "title": "Advanced Current Topics in Food Science III", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate level module will be an in-depth study of a selected advanced topic in Food Science and Technology. The topic may vary from year to year depending on the interests and availability of staff offering the module.", + "title": "Advanced Current Topics in Food Science IV", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5228", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the isolation, structural elucidation, and chemical and biological activity of the bioactive constituents used in functional foods and nutraceuticals. The effective R and D method leading to evidence-based functional food will be critically evaluated and discussed with specific topics related to foods for health maintenance / improvement by reducing the risk factors of chronic diseases such as type II diabetes, cardiovascular diseases, cancer, neurodegeneration, and ageing process. The safety, global regulatory issues, health claims, and marketing challenges of these products will be discussed.", + "title": "Evidence Based Functional Foods", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces oxidative stress and chronic inflammation as causative factors of chronic diseases in the context of how food constituents may act as dietary antioxidants and anti-inflammatory agents in mitigating the negative effects of oxidative stress and inflammation on development of chronic diseases such as type II diabetes, cardiovascular diseases, cancer, and ageing. It discusses the chemical and biological mechanisms of the phytochemicals underpin their purported health promotion effects. It analyses the scopes and limitations of various research methods applied for establishment of scientific evidence as well as the global regulatory policies for health claims of functional foods.", + "title": "Scientific Principles of Nutraceuticals", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5301A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Food Science and Technology has been instrumental in the advancement and production of safe and nutritious food and food products. While food is essential for life, the influence of food composition on health includes not only macro- and micro-nutrients but also other components such as flavonoids, sweeteners and additives. The nutritional requirement at different life stages will also be discussed. This module is targeted at students who do not have a background in nutrition but currently work, or plan to work, in the food industry.", + "title": "Food, Nutrition and Health", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5302", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Good health maintenance and effective prevention of chronic diseases through nutrition are complex and multifactorial. Using chronic diseases and their comorbidities as primary examples, this module will inform students on the scientific basis which underlie new dietary strategies to manage health and diseases. The interplay between an individual\u2019s genetic makeup, microbiome and nuero-physiological state with the diet will be investigated and their impact on our general health and susceptibility to diseases at the population and individual level will be discussed. Other emerging topics in advanced nutritional research eg. chrono-nutrition, dietary restriction and design of personalized foods and diets will also be covered.", + "title": "Modern Human Nutrition", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module informs students in the scientific basis which underlies new dietary strategies to manage health and diseases. The interplay between an individual\u2019s disease status, microbiome and nuero-physiological state with the diet is investigated and their impact on our general health and susceptibility to diseases at the population and individual level is discussed. Other emerging topics in advanced nutritional research, chrono-nutrition, dietary restriction and design of personalized foods and diet, is also covered.", + "title": "Science in Clinical Nutrition", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FST5303A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide a technological\noverview of the eco-system of FinTech innovations for \nconsumers. Particularly, this module will cover important \nbusiness models and innovations in payment solutions, \ncrowd-funding platforms, investment and robo-advisors, \nand other important FinTech innovations that affect the \npersonal finance of individual consumers.", + "title": "Fintech Innovations for Consumers", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FT5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide a technological\noverview of the business functions of modern banking, \ninsurance, and investment sectors. Students will learn how \nFinTech is transforming the business operations in these \nfinancial firms. Particularly, this module covers smart credit \nanalytics, RegTech, InsurTech, AI and banking, and other new \ntopics of FinTech at large financial institutions. This module \nalso serves the purpose to teach students about the basics of \nbanking and insurance.", + "title": "Digital Transformation at Financial Institutions", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FT5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Blockchain technologies could be the most disruptive \nFinTech technologies. This module covers the important \ntopics of blockchain innovations. Students will learn the \narchitecture of blockchain, the history and evolution of \nblockchain applications, and the case studies of state-of-art blockchain applications in the industry.", + "title": "Blockchain Innovations", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FT5003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "COM1-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of the essential \nconcepts of blockchain protocol. Students will learn \nprogramming skills for developing blockchain \napplications. Students will learn the knowledge needed to \ncreate nodes on a personal blockchain, create accounts, \nunlock accounts, mine, transact, and check balances. \nStudents will also learn the decentralized peer-to-peer \nnetwork.", + "title": "Programming for Blockchain Applications", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FT5004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers foundation knowledge in machine \nlearning and data mining for solving practical analytics \nproblems or building AI applications at FinTech firms. \nSome topics covered including supervised learning \nmodels, time series forecasting methods, basics of \nsentiment analysis and text mining, and reinforcement \nlearning.", + "title": "Machine Learning for Finance", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "FT5005", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Capstone project module spans over two semesters and is organised into two components. The first semester will comprise of a series of seminar-lectures that would help prepare students for conducting a literature review, working on pilot projects, and facilitating industry attachment for a summer internship. Starting in the first semester, students are required to work on a FinTech project. The project could be academic research, translational research, or software development.", + "title": "FinTech Capstone Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "FT5007", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students with a more in-depth discussion of technological advances in blockchain applications. Students will learn contemporary programming knowledge for blockchain applications, such as smart contract applications. Students will also learn how to design and write use cases of novel blockchain applications and blockchain technologies that are developed and deployed in start-ups or financial institutions.", + "title": "Contemporary Topics in Blockchain Applications", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FT5008", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students with an overview of recent advances in financial data analytics. In addition, the lecturer may provide an in-depth discussion of selected important topics in financial data analytics that is the focus of industry-oriented research at financial institutions or start-ups. From this module, students will learn advanced data mining algorithms, financial statistical models, fintech programming knowledge, and business cases or academic papers on modern financial applications.", + "title": "Contemporary Topics in Financial Data Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "FT5009", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "All new students have to complete two (2) laboratory rotations (LR) with two AIDF-approved supervisors within the first 4 months of their candidature. Each rotation will last 2 months and will count 2MC with S/U grading. Special approval must be sought before rotation with a supervisor who is not AIDF-approved; i.e. students can also claim 2 MCs for a rotation with a supervisor who is not AIDF-approved, provided special approval is granted for this rotation. Only an AIDF-approved supervisor can be nominated as Main Supervisor.\nStudents have to submit a lab rotation report to the supervisor at the end of each rotation.\nThe report should fulfil the following:\ni.1000 words (min) including a background of the research project, objective(s) of the project, methodology, preliminary results and discussion, and future research plan.\nii.8 pages (max) including tables, figures, references, etc.", + "title": "FinTech Research Immersion", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "FT5101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces contemporary issues shaping our world and the geographical perspectives needed to understand them. Starting with \u2018how geographers view the world\u2019, the module offers a lens to analyse issues like climate change, urban flooding, human\u2010environment relations, challenges of migration, cultural diffusion, economic integration and so forth. Each lecture will touch on contemporary scenarios and geographical analyses of issues. Students will also be exposed to field work techniques and strategies of project management in group discussions and project assignments. The goal is to develop students with strong \u2018geographical imaginations\u2019 better able to understand the world and all its complexities.", + "title": "Geographical Journeys: Exploring World Environments", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "DO2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "DO1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "DO4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "DO3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "DO5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "DO3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "DO1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "DO2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce undergraduate students to various methods and practices widely used in geographical research. It covers such topics as designing research questions, writing proposals, collecting and analyzing data, and presenting research results. Students will be exposed to a range of research practices in the discipline such as fieldwork and in-depth case studies.", + "title": "Methods and Practices in Geography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE2101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0313", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0313", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0313", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This compulsory module provides an introduction to political and economic geography, and serves as a gateway to more specialised level 3000 and 4000 modules in these fields. It advances two key arguments, namely that politics and the economy are (1) tightly intertwined and (2) innately geographical phenomenon. It explores how politics, the economy and the environment are constituted through different sets of actors and their interrelationships. It mobilises core geographical concepts, notably place, space, scale and territory, along with notions of power and resistance, to offer a distinctive perspective on processes of uneven development in the contemporary world.", + "title": "Politics, Economies And Space", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE2102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to Earth Systems Science, providing students with an understanding of the key interactions between the different spheres of planet Earth: the lithosphere, atmosphere, hydrosphere, biosphere and the anthroposphere. In particular, students will develop an understanding of the holistic view and thinking about interconnections and interrelationships in the earth\u2019s systems and subsystems. This module will highlight key concepts shaping Earth Systems Science, such as sustainability, planetary boundaries and safe operating spaces.", + "title": "Our Planet: An Earth System Science Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE2103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "DO7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "DO4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "DO6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "DO3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "DO1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "DO2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines relationships between economy and space through a focus on 'development'. Through interrogating theories, strategies and trajectories of 'development', students will develop an understanding of the past and contemporary global political economy and its geographies. The course will emphasise the geopolitical and cultural backdrops to 'development' and attendant economic geographies amidst debates about 'globalisation', international trade and investment.", + "title": "Economy & Space", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the important concepts and the practical use of Geographic Information System (GIS) in problem solving in both the social and physical sciences. Topics to be covered include vector and raster data formats and their analytical functions. This module is designed as learning through practicing,\nso practical laboratory excises utilising GIS software such as ArcGIS will be major classroom activities. This module is mounted for students throughout NUS with interests in GIS applications in sciences, social sciences, engineering and business analysis.", + "title": "Introduction to GIS", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE2215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0313", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0313", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0313", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0313", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Tourism is the largest industry in the world today, and its impacts on the physical environment and human societies are worthy of scrutiny. The module provides a multi-disciplinary approach to the study of tourism and leisure, exploring in detail their economic, social, cultural and geographic implications on physical and human landscapes. Concepts, models and theories drawn from the social sciences as well as geography, and case studies from the Asia-Pacific will be explored. The module is designed for level-2000 and level-3000 Geography students, but cross-faculty students are welcomed as well.", + "title": "Leisure, Recreation and Tourism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE2218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the major thematic concerns that have\ntraditionally shaped political geography as a sub\u2010discipline. It also allows students to engage with emerging issues that are likely to become focal points in shaping future debates among political geographers. The aim of the module is to explore the co\u2010constitutive relationship between politics and space. As the political organization of society has spatial consequences, so too does geography influence our understanding of political relationships. These relations are negotiated and contested in multiple ways that cut across different locations, scales, and temporalities. Accordingly, we will examine political concerns, disputes, accommodations, and consequences from a geographical perspective, where students can expect to acquire a critical appreciation for the historical trajectories and evolving implications of states, sovereignty, territoriality, nationalism, colonialism, democracy, ethnic conflict, policing and crime, terrorism, war, environmental justice, and political activism.", + "title": "Politics and Space", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE2222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Living Space introduces students to the idea that space is lived and experienced as part social and cultural life. Drawing from the arts, food, sports and film, and/or other related topics, the module delves into critical developments in social and cultural geography, providing students with the foundational knowledge and required grounding to read advanced courses in the sub-discipline. It introduces methodological approaches which include \u2018ways of seeing\u2019 and \u2018landscape as text\u2019. These are critical to understanding the human/culture and environment/space relationship.", + "title": "Living Space: Introducing Social and Cultural Geography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE2231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Indiscriminate use of the Earth by humans has\nprecipitated in the \u2018sixth mass extinction\u2019. Conservation\nis a mission-oriented scientific enterprise to protect\nEarth\u2019s animals, plants, and ecosystems by applying\nprinciples from various natural and social sciences. This\nmodule will equip students with the knowledge\nrequired to engage in critical dialogue regarding\nconservation activities with different audiences (e.g.\nacademic, policy maker). The course covers topics\nrelated to protecting biodiversity and uses geospatial\ntechnologies to evaluate conservation plans. While\nlooking at conservation from a holistic perspective, the\nmodule lays special emphasis on how conservation\nplans affect local communities.", + "title": "Geospatial Analytics for Biodiversity Conservation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE2233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows for a new topic of current interest in the discipline of Geography to be offered. It may be offered by existing faculty members of the Department on an experimental basis before the module is regularised, or by visiting members with expertise in a particular subject not already found in the regular curriculum. The module contributes to furthering geographical understanding and practice in a specific field within the discipline.", + "title": "Topics in Geography I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE2880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines the patterns of growth and location of service industries. A number of current theoretical perspectives explaining the growth in service employment in developed countries will then be examined. Locational patterns and trends of producer and consumer services are compared at the metropolitan and national scales. The module also analyses the role of the service sector in economic development of selected countries, including Singapore. Other topics covered include the internationalisation of service firms, outsourcing of services, privatisation of public services, and the impact of new technology on service sector development.", + "title": "The Service Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the basic ideas and context of both urban and regional planning. Key planning systems, policy agendas and perspectives are critically assessed. Examples are drawn mainly from rapidly changing regions in Asia. Challenges addressed include infrastructure, land policy, housing, poverty, governance dilemmas and environmental problems. Planning in regions and cities is viewed in light of wider social, political and economic trends as well as the geographical context. Planning is placed into perspective relative to other forces that influence development patterns. The module is aimed at students wanting to understand planning and its place in society.", + "title": "Cities and Regions: Planning for Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the impact of feminism on human geography, from the call to insert women into geographical analyses and take into account gender relations in rethinking dominant definitions of space, place, landscape and nature to more recent debates on diversity and difference. It also explores the politics and practice of doing feminist research in geography. Drawing on case studies in both developed and developing countries, the gendering of specific sites (ranging from the home to the nation) and processes (e.g. migration) is explicated in the module. The module is targeted at all students interested in gender issues.", + "title": "Gender, Space & Place", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Module examines important geographical, ecological and political concepts and approaches to natural resources management. In particular, we focus on ownership regimes, access, exploitation and conservation in different social, economic and cultural contexts. Detailed cases of fisheries, forestry, freshwater and agriculture conflicts and problems are discussed.", + "title": "Natural Resources: Policy and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the applications of GIS and remote sensing in a geographical context. The emphasis is on the use of spatial data in business analysis, environmental planning, and resource and impact assessment. One section of the module covers topics on digital image processing with emphasis on the knowledge and understanding of techniques used in a planning context. The second section deals with spatial analysis and visualisation for geographical and business analysis (GE2215 is a prerequisite for this module).", + "title": "Applications of GIS & Remote Sensing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with an in-depth understanding of the social, political, and economic changes at various geographical scales with respect to globalisation. More specifically, this module focuses on developing understandings of the complex forces driving globalisation and the related urban and regional changes and the relationship between globalisation and regionalisation. This module is not just for geography students, but for all students who are interested in the urban and regional changes in the Asia-Pacific with respect to globalisation and regionalisation and the driving forces of the changes.", + "title": "Globalisation and the Asian Cities", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the contribution of cultural geography to an understanding of interrelations of landscape, space and culture. After charting the development of the concept of 'landscape', the module explores cultural landscapes in a variety of historical and geographical settings. Cultural Landscapes works through four key themes: imaginative geographies of exploration and representation; landscape and national identity; moral geographies of environmental conduct and belonging; and issues of cultural deterritorialisation associated with processes of globalisation. The module will be of interest to students across the university seeking to develop critical perspectives on cultural landscape formations at a variety of scales.", + "title": "Cultural Landscapes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module evaluates the intersections and diversions between development and leisure/tourism. Using critical development lenses, the module will first critique \u201cbig D\u201d Development\u2019s (specific intentional interventions to achieve improvement or progress) globalized approaches in tourism development and then \u201crespond\u201d to these critiques by considering more localized political, economic, and cultural connections in tourism strategies. While localized \u201cdevelopment\u201d projects often suggest more equitable growth, input from local stakeholders, and incorporation of livelihood strategies and grounded knowledge, and more \u201csustainable\u201d models with a long-term sensibility, the module will take a critical position toward these ideas as well.", + "title": "Tourism Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3226", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is essentially a module designed to encourage students to apply different fieldwork methods in small-team projects in an overseas context within the region. The module exposes students to different geographical methods, both human and physical, and as such it is an ideal preparation for any student wishing to undertake further primary research at higher levels in geography, and indeed other social science disciplines. After a series of lectures/seminars on fieldwork methods, fieldwork ethics, and health and safety issues in the field (which may include some basic introductory language classes), students then undertake a 2-5 week period of field study overseas, depending on logistical and other constraints. The previous field studies have been for periods of 4-5 weeks overseas in Thailand and Malaysia. Whilst overseas, students undergo orientation workshops, meet peers in host universities, visit potential field sites before conducting an intensive period of fieldwork in small groups of 3-5 students. The module concludes with (group and individual) project report writing and presentations. Field Studies provides basic training, a chance to apply skills and techniques learnt in the classroom in real field settings, and rich opportunities for cultural exchanges.", + "title": "Field Studies in Geography: SE Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "GE3230A", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Natural hazards result in high losses in human life and welfare, property, resource productivity, and infrastructure. Often human activities interact with the landscape to exacerbate the probability of a potentially hazardous situation. The module will cover the prediction, prevention, mitigation, and response strategies for various hazards. Various types of natural hazards, including landslides, debris flows, volcanic hazards, earthquakes, fire, tsunami, typhoons, floods, tornadoes, and wildfire will be highlighted with respect to inherent forms and processes. Examples will be presented from various regions worldwide. Land management issues and effects will be emphasized, particularly within the context of the Pacific Rim.", + "title": "Natural Hazards", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is divided into two sections. Using examples from the Southeast Asian region, the first focuses on the aims of historical geography and explores different approaches used in the geographer's attempt to reconstruct or interpret landscapes of past times (e.g. changing landscapes, peopled landscapes, imagined landscapes, contested landscapes). Some attention will also be given to the sources of evidence used in reconstructing historical landscapes. The second part examines the significance of studying past landscapes for contemporary purposes. This will involve a discussion of the question of heritage in general, and more specifically, the debate surrounding urban heritage conservation.", + "title": "Historical Landscapes and Heritage", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through interrogating theories, strategies and trajectories of development in diverse contexts, students will develop a understanding of the geography of the global political economy as it relates to development issues and the attendant cultural and political geographies of development.", + "title": "Geographies of Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3235", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "DO2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "DO1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The transport of goods, people and information is analysed using a systems approach, embracing the spatial patterns of demand and supply, transport modes, networks, volume and composition of flows, and political considerations. The module also evaluates the different modes of transport and communications in terms of comparative advantages, coordination and integration, infrastructural support, technological advances, role in economic development and management in the urban, regional and international scales. Students will learn about tools of network and flow analysis, and about analytical techniques associated with planning and management of transport and communications.", + "title": "Transport and Communications", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "DO3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "DO1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "DO2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "DO4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the range of considerations necessary to develop GIS, and is intended for geographers, planners, IT managers and computer scientists who have already acquired an introductory knowledge of the field. The module begins with a formal understanding of data and information and compares spatial data to traditional data processing. Topics covered are representation and storage of spatial data, database design, Internet GIS, and/or basic GIS programming. Students will obtain substantial hands-on GIS skills in support of geographic and environmental analyses.", + "title": "GIS Design and Practices", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3238", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0313", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0313", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide Geography major students with the basic foundation skills, necessary knowledge, and recommended practices for the preparation of honour theses (HT). These essential skills and knowledge include philosophies, theories, and key concepts in human and physical geographies, research ethics and field safety, proposal writing and literature review, and other crucial skills and techniques that all Geography major students should possessed.", + "title": "Geographical Research: Developing Ideas", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3240", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "DO3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "DO2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores debates in geography about social issues. It emphasises the relationship between social identity and social space, and how different places reflect and shape diverse ways of life. The module examines the role of space in the interplay of different social groups (e.g. ethnic groups, men/women), and in relation to different aspects of daily life (e.g. housing, leisure). Its emphasis, however, is on how to think about these issues in different scales/contexts (streets, public spaces, global cities). The course is intended for geography majors, and students throughout NUS with an interest in the relationship between society and space.", + "title": "Geographies of Social Life", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3241", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a field\u2010based, intensive module run in collaboration with Duke University. Together with Duke students, students will learn about urban tropical ecology and environmental conservation in Southeast Asia in two three\u2010week sessions. Learning will be through lectures, simulations, day field trips around Singapore, group conservation projects, and a 7\u201010 day field visit overseas.", + "title": "Conservation & Urban Tropical Ecology in SE Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "GE3245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers a work and labour-based perspective on the contemporary global economy, which is still predominantly studied from the viewpoint of firms and states in the social sciences. It profiles the vast range of work types and conditions that constitute the economy, and their wider societal implications. Moreover, it develops an explicitly geographical perspective, using the lenses of place, space and scale to reveal the inherent spatialities of worlds of work.", + "title": "Worlds of Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for students with an interest in urban studies. Applying urban theories to contemporary case studies drawn from Asia and beyond, the module critically examines global urban system dynamics and the changing roles of cities from a geographical perspective. The first part of the module focuses on how cities function at different scales from the global, regional to national levels. The second half of the module examines urban challenges on the ground including the revitalization of downtowns/city centres; changing urban retail patterns; suburban residential landscapes and the impact of urbanization on the environment.", + "title": "Cities in Transition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3248", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to contemporary debates in population from a geographical perspective, focusing on the ways that geography is implicated in the processes and meanings of life and death. Besides examining historical and contemporary population trends and demographic transitions, this module also investigates discourses and politics around topics such as fertility and women\u2019s bodies, migration and transnational life, disease and health\u2010care, and ageing, death and dying. The module enables students to think critically about contemporary population problems and solutions and to understand how these influence policy formulation and everyday lives. This module is open to all students who are interested in population issues from a social science perspective.", + "title": "Geographies of Life and Death", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3249", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces conceptual approaches for understanding the myriad relationships between human societies and their biophysical environments. It addresses three key questions. First, how are nature and society interconnected? Second, what theoretical and methodological approaches can be used to study nature-society relationships? Third, how can societal relationships with nature be improved in ways that are sustainable and just? These questions will be explored using different social theories, particularly from the interdisciplinary field of political ecology, which will be applied to contemporary environmental issues. Students will learn how to critically think, discuss, and write about complex nature-society interactions.", + "title": "Nature and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3250", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What do we mean by Southeast Asia? Are we referring to a physical area? A shared history? A group of distinct nations? Or is Southeast Asia a constantly changing flow of people, capital, and beliefs? We explore these questions to better understand how ideas about a region influence our relationships to each other and the wider world. We investigate the construction of political boundaries, socio-ecological challenges of economic development, and diversity of social and cultural landscapes in the region. Students will learn to apply key concepts and practices from human geography to critically investigate historical and contemporary Southeast Asia.", + "title": "Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the art, science, and ethics of mapmaking and map use. It aims to introduce students the design principles and techniques for creating maps with contemporary mapping tools. Topics covered include conceptualisation of geographic phenomena, projection and distortion, geospatial data manipulation and presentation, thematic map design, interactive geographic visualization, and emerging trends in cartography and geovisualisation. The module emphasises effective visual thinking and visual communication with Geographic Information Systems (GIS). It is mounted for students with interests in GIS and map design as a medium for communication.", + "title": "Cartography and Geovisualisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3252", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0313", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0313", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Weather has an immediate effect on all of us and climate is important in human affairs on a global level. This module provides an introduction to both weather and climate. Processes underlying the behaviour of the atmospheric environment from local to global scales are discussed. The module commences with a discussion of atmospheric concepts in a visual and practical manner. Understanding and application of basic meteorological principles will help to explain environmental phenomena such as clouds and precipitation, tropical storms and global climate change. This course is appropriate for students from all Faculties.", + "title": "Weather and Climate", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3253", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-ELAB", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-ELAB", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The extraction, production, distribution and use of energy sources has significant environmental, social, political and economic impacts. Impacts are multi\u2010scalar, ranging from global climate change to socio\u2010cultural disruption at local, national and regional scales. This course exposes students to these impacts and related energy geopolitics with detailed case studies. The course also gives students a comprehensive background of the development and use of promising future post-carbon alternative energy sources such as wind, solar, geothermal, tidal, and biofuels. It discusses how to build the energy-efficient architecture of a low carbon economy and develop sustainable energy system design for the future.", + "title": "Energy Futures: Environment and Sustainability", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3254", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "DO3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "DO4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "DO2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Water is present and moves through all parts of the Earth system; the freshwater component, amounting to about 1% of water on Earth, is fundamental to life. This module focuses on rivers, lakes, estuaries, wetlands and adjoining land (coastal and riparian zones). Taking a global perspective, with a focus on the tropics and Singapore, this module explores the reservoirs, pathways and functioning of the hydrologic cycle, and the interactions between water and land, both on and below Earth\u2019s surface. Dynamic hydrological processes and their effects, aquatic ecosystems, human interactions and impacts and ecohydrology are also covered.", + "title": "Aquatic, Riparian and Coastal Systems", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3255", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Earth's geosphere \u2013 the ground beneath our feet \u2013 may seem constant and relatively unchanging, but nothing could be further from the truth. This module examines the main processes that combine to influence the development of Earth\u2019s surface and the formation of and changes to landscapes. The origins and development of landforms, particularly in the humid tropics, is explored, as are the characteristics, functioning, dynamics and interactions within and between major associated ecosystems. Human-induced landform and ecosystem modifications are also considered. The knowledge obtained in this module is applicable to broader environmental management issues.", + "title": "Earth Surface Processes, Landforms and Ecosystems", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3256", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-ELAB", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-ELAB", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The global financial system is a central component of the world economy, within which financial centres such as London, New York, Shanghai and Singapore act as key decision-making centres. Financial globalisation is, however, an extremely complex and controversial process, generating contradictory interpretations and policy proposals. This module introduces and develops a financial geography perspective, understood as the study of the spatiality of money and finance, and its implications for the economy, society, and nature. It introduces students to the vocabulary of finance, drawing on research relating to the global financial system, financial centres, financial globalisation, and their geographical footprint.", + "title": "Financial Geographies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module traces emergence and development of geopolitics as a subdiscipline, focusing on the historical and contemporary geopolitical forces that shape Southeast Asia and the region\u2019s relations with the world. It will cover the development of geopolitics in the region from colonial times, through to the Cold War and post-Cold War era, including Big Power conflicts and US-China rivalries and the Covid-19 pandemic. Through geopolitical lenses, students will examine issues related to major- and extra-Southeast Asian powers\u2019 influence on the region, forced migration, contested territories/nationalisms, environmental conflicts and intra- and inter-regional geopolitical concerns, e.g. ASEAN\u2019s engagements with other regional/global institutions.", + "title": "Geopolitics: Southeast Asia and the World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Geography increasingly relies on empirical data to understand social and environmental phenomena. This module will build a foundation for applied data analysis, emphasizing the fundamental data science tasks of wrangling, visualization, and analysis. Each of these tasks requires an understanding of quantitative approaches to generate and evaluate hypotheses. As such, the module will also cover essential concepts in statistics including expectation, hypothesis testing, and regression. By the end of the module, students will have a strong foundation to analyze multivariate data and communicate findings using open-source programming tools.", + "title": "Applied Geographical Data Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3259", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Laboratory", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Laboratory", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents Geography majors who are taking/ intend to declare GIS minor a unique opportunity to gain practical experience in using GIS. It allows the students to apply their geospatial technology skills, such as spatial database management, data visualization, and data analysis, in a real working environment. Through mentoring from internship managers of employing companies/public sectors and NUS advisors, students are trained to apply theoretical aspects of GIS for solving real-world problems. They will also be able to collaborate with colleagues from the employing company or agency, and develop research questions involving the use of GIS in environmental issues.", + "title": "GIS Internship Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3550A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships will take place in organizations or companies located in Singapore. Through the mentoring from internship managers of the employing companies/ organizations and NUS advisors, students are trained to apply theoretical aspects to solving real problems. Students will learn how policies and practices that they read about are applied in a real world situation. The hands-on experience they gain while on internship will provide an added dimension to their education. It will give them a practical edge and prepare them for work in the future.", + "title": "Geography Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3550B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3551R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GE3722", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3746", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows for a new topic of current interest in the discipline of Geography to be offered. It may be offered by existing faculty members of the Department on an experimental basis before the module is regularised, or by visiting members with expertise in a particular subject not already found in the regular curriculum. The module contributes to furthering geographical understanding and practice in a specific field within the discipline.", + "title": "Topics in Geography II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Aimed at developing a critical perspective on the nature and practice of modern geography, this module situates the development of geography within the wider context of philosophical and social change. It examines the basic nature of the discipline by considering some of the ways in which the relationship between society and space has been theorised within geography. One component explores the development of environmental scientific thought and practice and related philosophical issues. A second component evaluates the different paradigms, approaches and methodological considerations which have influenced human geography including the impact of positivism, humanism, Marxism, feminism, realism and postmodernism. Some attention is also given to new approaches to narrating the history of geography alongside the more conventional forms of historiography theory critique.", + "title": "Development of Geographic Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the interrelationships between transnational corporations (TNCs) and regional development in an era of global economic restructuring. The module seeks to achieve a mixed blend of theory and practice of TNCs and regional development. It provides students with not only description and explanation of TNC operations, but also practical knowledge in analysing the impact of TNCs on regional development. In addition to regular readings, students are expected to conduct specific case studies on the role of TNCs in regional development.", + "title": "Remaking the Global Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Geographers have contributed much to understandings of urban lives, landscapes and processes. Urban Space Critical Perspectives explores this contribution in two interrelated ways. First, through an examination of key themes in geographical analyses of cities and urban regions. These range from housing and infrastructure provision to mobility and labour market issues. And, second, through an engagement with diverse histories and geographies of cities. This involves a questioning of the spatiality of urban processes in various regions of the world, interrogating Euro-American-centred conceptions of urbanization and discussing alternative perspectives. The module thus examines both urban geographies and geo-histories of 'the urban'.", + "title": "Urban Space:Critical Perspectives", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding of the tropical coastal ecosystems and evaluates various approaches and techniques to achieve sustainable coastal management. The issues for discussion include sea level rise, beach erosion, coral reefs degradation, mangroves depletion, small-scale tourism development, and coastal management strategies of small island states. Case studies are taken mainly from Southeast Asia. The module should appeal to all geography students taking an applied approach to coastal management.", + "title": "Coastal Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4207", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module adopts a catchment-based approach to discussing fluvial and hydrological processes and their application to water management issues, with emphasis on Asia. A detailed analysis of the changes that occur to these processes as a result of the degradation and urbanisation of catchments is a particular focus of the module, as is the use of Asian and local examples.", + "title": "Advanced Hydrology and Water Resources Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the application of models (analytical, numerical, physical) through theory and practice in environmental or social sciences. Strengths and weaknesses of individual model types are discussed. Hands-on practical experience in the design and application of computer-based modelling will be a focus of the course. After completion the students should be able to demonstrate an understanding of the concept of modelling, explain why and how modelling is employed in environmental or social sciences and possess skills in developing and critically assessing such models.", + "title": "Environmental Modelling", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module facilitates a theoretical and methodological engagement with 'the cultural' in Geography and related fields of study. Cultural Analysis examines: theoretical developments in geographical studies of culture, particularly interrelations with domains that have conventionally been considered extra-cultural (such as 'the economic' and 'the political'); and methodological techniques and approaches for studying reconceptualised notions of culture (in particular, 'cultural politics' and 'cultural economy'). The module will appeal to advanced students in Geography and related disciplines interested in interrelationships between culture and space.", + "title": "Cultural Geographies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module are to build upon the fundamentals taught in GE2215 and GE3216 through in-depth study of remote sensing technology, error analysis, calibration, and image analysis. The module places an emphasis on class presentation of recent and relevant journal articles by the students followed by critical discussion of article content. Various applications of remote sensing and geographic information systems are covered in greater detail than in lower level modules and are the subject of project assessments.", + "title": "Remote Sensing of Environment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0313", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the relationship between space and power. It investigates how political processes shape human geography, and conversely, how assumptions about geography underscore global politics. We will examine key themes, concepts, & theories that define the study of critical politics from a geographical perspective. Students will gain a critical understanding of and\nappreciation for the historical and contemporary challenges of sovereignty, territoriality, governmentality, identity, citizenship, difference, violence, genocide, colonialism, and war. The module culminates with the themes of resistance, emancipation, direct action, and anarchism, which will allow students to consider alternative configurations of space and power.", + "title": "Political Geographies: Space and Power", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recent years have seen an emergence of \u2018critical tourism studies\u2019 focused on tourism\u2019s role in alleviating local problems and addressing global inequalities between countries and communities. Part of this discourse has focused on Asian tourism development and how Asian scholars have interpreted what is critical to their part of the world and the needs of indigenous communities. This module explores how different forms of tourism development are realised in the particularities of Asian socio-cultural, economic, political and intellectual contexts. More specifically, it highlights the significance of Asian realities in defining the scopes and outcomes of tourism changes and knowledge production.", + "title": "Interpreting Tourism Spaces and Cultures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the intersection between development and environment in Southeast Asia. Utilising a range of conceptual lenses from sustainable development to political ecology, the module interrogates the varied environmental impacts and ramifications of the development of the region. The module pays particular attention to the ways in which environmental change affects everyday lives. Case studies include issues such as upland living and forest peoples, trans\u2010boundary environmental issues, and the role and place of Buddhism as an eco\u2010centric religion. The module encourages a critical view of the trade\u2010offs between economic growth (development) and environmental protection.", + "title": "Development and Environment in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an opportunity for students to gain hands\u2010on skills and research design practice through residential fieldwork in physical geography. The field trip will be embedded within the regular semester and will be preceded by preparatory classes to provide concepts, theories and specific techniques relevant to the fieldwork location. It will be followed by a period of post fieldwork analysis and presentation of project outcomes.", + "title": "Field Investigation in Physical Geography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4220", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an opportunity for students to gain hands\u2010on skills and research design practice through residential fieldwork in human geography.\nThe field trip will be embedded within the regular semester and will be preceded by preparatory classes to provide concepts, theories and specific techniques\nrelevant to the fieldwork location. It will be followed by a period of post fieldwork analysis and presentation of project outcomes.", + "title": "Field Investigation in Human Geography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course addresses the interactions between surface processes and landforms and landscapes. These interactions lead to physical, chemical and biological changes, which in turn create the current landscapes and the geological record of past landscapes. This focus is core to both physical geographical and geological communities, and also the wider geosciences.", + "title": "Advanced Geomorphology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Aimed at developing a critical perspective on the nature and practice of modern geography, the module situates the development of geography within the wider context of philosophical and social change. It examines the basic nature of the discipline by considering some of the ways in which the relationship between the society and space has been theorised within geography. There are two parts to the module, each to be conducted over one semester. One component traced the history of the discipline and evaluates the different paradigms, approaches and methodological considerations which have influenced human geography including the impact of positivism, humanism,", + "title": "Development of Geographic Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to developing fundamental knowledge in the field of Biogeography, this module also covers the quickly developing technologies (including genomic tools, computer models and Earth observation), big data and quantitative and qualitative forms of analyses that characterise biogeographical applications. In particular the content of the module illustrates how biogeographical understanding can be, and is, used to enable biodiversity to cope with and adapt to rapidly changing ecological conditions. The module has relevance beyond geography, ecology and evolutionary biology to include bioinformatics, global change, conservation, invasion biology, food security and ecosystem services.", + "title": "Applied Biogeography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the theories and concepts of childhood and youth\u2010hood from critical geography and development studies perspectives. The module will particularly focus on approaches and material from the\nsub\u2010discipline of children\u2019s and young people\u2019s geographies. It will explore material and representational geographies of children and young people from a global perspective. Different strands of examination may include key issues such as: children\u2019s and young people\u2019s social and spatial identities; the complexities of growing up global; young people and social and cultural development; mediated representations of younger people; youthful politics and\nactivism; contexts of education, employment and aspirations.", + "title": "Young People and Children: Global Perspectives", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4225", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students theoretical and applied understandings of mobilities as a productive site of social life and culture. Drawing perspectives from the \u2018new\u2019 mobilities paradigm, it demonstrates how movement is not a sterile activity or zone, but a space replete with meaning. To exemplify this point, this course takes transportation as a lens of analysis, and interrogates its socio\u2010cultural organization and experience. Three aspects will be emphasized, namely the identities and embodiments latent in transportation; the infrastructures of transit; and the (geo)politics of mobility. Case studies will be drawn internationally, including Asia.", + "title": "Mobile Spaces: Making Social Worlds", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4226", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates geographical aspects of recent and future climate change, especially at regional and local spatial scales. The following major topics will be introduced, with greater focus in places depending on the specialisation of the lecturer(s). 1. The physical science of climate change, which include observational and modelling techniques and evidence; 2. Sectorial and multi\u2010scale impacts on natural and human systems, which include vulnerability frameworks, and communicating aspects of climate change; 3. Adaptation, mitigation measures and sustainable development, which include technological developments, risk and decision making under uncertainty, governmental responses and socioeconomic assessments of climate change mitigation.", + "title": "Climate Change: Processes, Impact and Responses", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the co\u2010constitutive relationship between gender and the city. Drawing from theoretical arguments made by geographers on feminist interventions into the urban, the module provides a gendered re\u2010orientation of critical issues for the city such as transport, housing, uneven development, regeneration and social exclusion. Students will draw from their understanding of key spatial concepts covered in GE3206 Gender, Space and Place to further develop their understanding of the socio\u2010spatial dialectic and the politics that underpin the social (re)production of built environments and their impact on gendered representations and (re)distribution in cities.", + "title": "Gender and the City", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4228", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the political economy and contemporary transformation of Greater China (broadly defined to include the mainland China, Hong Kong and Macau SARs, Taiwan and overseas Chinese communities in Asia) in the contemporary period. By adopting an institutional analysis from new economic geographies, it examines the ways in which state formation (and transformation), business systems, organisational structures and socio\u2010cultural factors account for the geographical processes and outcomes of economic and political changes at various spatial scales. Issues covered include economic development and reforms, the financial and banking system, national business systems, financial crises, technology, foreign direct investment and", + "title": "Greater China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4230", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the dynamics of urban and regional development from the perspectives of economic and political geography. It is primarily concerned with contemporary issues such as urban assemblages and clusters, regional networks and institutions, and their relationships with the evolving global political economy. Uneven geographical development is both underpinned by, and contributes to, these urban and regional development dynamics around the world. The module will draw upon a wide variety of examples from across Asia.", + "title": "Urban and Regional Economies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the relationships between politics (broadly defined) and the environment at a global level. Global political ecologies will examine environmental issues that have explicit global impact. It is also interested in issues that have comparatively less global impact but are nonetheless considered \u201cglobal\u201d because they are endemic in many places around the world. Drawing on the theoretical underpinnings of political ecology and case studies around the world, this module will explore themes such as environmental ideology and discourse; politics and livelihoods; energy and natural resource management; production and consumption of food, nature conservation and climate change.", + "title": "Global Political Ecologies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4232", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through this module students engage with key contemporary global/regional events, issues and changes through geographical lenses. The events,\nissues and changes selected for geographical analysis will vary each year so the module remains contemporary. Students will draw upon their accumulated geographical knowledge to research, analyse and interpret the selected events. Working in self\u2010defined sub\u2010disciplinary groups (climate change geography, geomorphology, social, economic, political geography etc.) students will be assigned research and evaluation tasks to bring their particular critical perspective (connected with academic debates) to a selected event, for example, the 2010 earthquake in Haiti or food insecurities.", + "title": "Geography in the Contemporary World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The tropics are presently the world's most rapidly changing region. This module looks in detail at the causes and consequences of high rates of environmental change in tropical environments. Environmental change will be looked at from two different perspectives; 1) Climate change (including sea-level changes and ocean acidification) and 2) anthropogenic change (including deforestation, agriculture and urbanization). Particular focus will be given to processes, linkages and interactions between climate and anthropogenic changes. Current high rates of changes in these processes, and their nature, are placed within a contemporary context with a particular focus on Asia.", + "title": "Environmental Change in the Tropics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modifications made by humans to the surface of the Earth during urbanization alter just about every element of climate and weather in the atmosphere above the city. This module examines how these changes affect environmental variables such as solar radiation, surface and air temperature, evaporation, storage of heat, wind climates, emissions of pollutants and greenhouse gases and the wider implications for air quality and environmental change. Students are expected to read widely and conduct an empirical research project. This module is suited for students reading geography, climatology, ecology, engineering and planning.", + "title": "Urban Climates", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4235", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on theoretical and applied perspectives on international migration, with particular reference to the Asia-Pacific region. It covers conceptual approaches to the drivers and effects of migration, and examines the relationship between migration and development, as well as between migration and diversity. It includes analyses of migration regulatory regimes and the migration industry, while also giving attention to migrant outcomes and experiences in relation to transnational circuits of skilled and unskilled labour migrants, marriage migration and international student mobilities. The consequences of migration for gender relations, class mobility, family dynamics and citizenship will also be discussed.", + "title": "Geographies of Migration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Environmental pollution, the introduction of pollutants to the environment through human activity in amounts that can have adverse effects on biota, including humans, and ecosystem services, has in recent years become both more widespread and, in places, more acute. The fundamental principles of environmental pollution are used as a basis for an in-depth examination of the production and release of pollutants and their eventual pollution of the environment, and how pollution processes and effects have varied over time. Students will also consider how problems of environmental pollution can best be addressed - both in terms of their sources and their", + "title": "Environmental Pollution", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4237", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the transformation of the modern Middle East. The focus will be on the evolution of the state systemin the region, political geographies and their relationship to nations, empire, war and peace. A key analytical lens will be urban geographies. Although not a primary focus, the course will also consider the resource geographies of the region and their intersection with social, urban, economic and political geographies. The module also affords an opportunity to review the status of and approaches to area studies, the complexities of defining macro-regions, and the evolving relationship between geography and area studies.", + "title": "The Middle East: cities, states and territory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Located at the land-ocean interface, coastal landforms are among the most dynamic landscapes on earth and provide the substrate for 80% of the world\u2019s population. This module examines the diversity and evolution of different coastal landforms, and the rates and magnitude of coastal change. Focussing on tropical coastal landforms the module uses morphodynamics as an integrating framework to examine process drivers and morphological feedbacks that modulate coastal change across a range of temporal and spatial scales. Knowledge and skills gained in the module provide the science basis that contributes to management of the coast.", + "title": "Coastal Dynamics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4239", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A rational decision is made through a systematic approach, method and practice of decision-making processes. Spatial decision making is the process of generating, evaluating alternatives and choosing the best or optimal course of action to solve a spatial decision problem. The tools, techniques, models and procedures relevant to spatial decision making are integrated to support the process of spatial decision making. This module explores the paradigms, models, tools, techniques and processes for spatial decision-making and schema of spatial decision support systems and delves into the uncertainty in spatial decision-making process and framework of collaborative and online spatial decision support systems.", + "title": "Spatial Decision-Making", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the principles and methods of using geospatial technologies to address health issues, focusing on human-health-environment relationship. Geospatial concepts and data for health and disease ecology are explained. Methods and considerations are introduced with case studies for mapping population and health data, quantifying spatial patterns and detecting spatial clusters in health events, measuring exposure to risk factors, and evaluating spatial accessibility to health care. The combination of seminar discussion and practical work will provide students the opportunities to gain a thorough understanding of the roles of the environmental factors, social-economic conditions, and behavioural responses on health outcomes.", + "title": "Spatial Health", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Equivalent to 8 MCs (applies to students entering Arts 1 in 1999/2000 or earlier). Equivalent to 10 MCs (applies to students entering Arts 1 in 2000/2001). Equivalent to 12 MCs (applies to students entering Arts 1 in 2001/2002 and later). Word limit to be advised. Please check with the Honours Year Coordinator. The Honours Thesis may be on either: (a) an aspect of the geography of Singapore or Malaysia; or (b) any other approved geography topic. The subject for the thesis is to be chosen in consultation with the staff of the Department.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "GE4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Geography Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4752", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows for a new topic of current interest in the discipline of Geography to be offered. It may be offered by existing faculty members of the Department on an experimental basis before the module is regularised, or by visiting members with expertise in a particular subject not already found in the regular curriculum. The module contributes to furthering geographical understanding and practice in a specific field within the discipline.", + "title": "Topics in Geography III", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GE4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces techniques through which dynamic environmental conditions can be measured and monitored and provides a basis for reasoned debates about issues related to environmental change. Students following the module can expect to be tutored in a number of techniques that may include (depending upon expertise of staff who are available to teach the module) geomorphic hazard mapping, micro-meteorology, palaeoecology and remote sensing. The module goes on to discuss the implications to humans of past and present environmental dynamism and of predicted environmental changes. Among the topics for student-led discussions in this part of the module are the dialectic of global climate change; the contribution of urban areas to global climate change; possible relationships between biodiversity and environmental instability; and inequalities in the degree of human vulnerability. A seminar presentation focusing on the relevance of the module to their thesis or on thesis topic is expected.", + "title": "Dynamic Environments", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0316", + "day": "Thursday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores globalisation and its impacts on urban identities, places and politics. Global processes connect cities and shape urbanisation and urban life. Yet, not all urban dwellers are affected the same way by these processes. Furthermore, cities and people respond to, and may even be actively involved in, the shaping of these global flows and processes. In this module, attention is paid to the webs of relations at different scales, from the global to the local, and even those at the micro scale, such as intimate relations, to consider their implications for the remaking of cities and urban social life.", + "title": "Cities and Global Connections", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for students keen on pursuing post-graduate tourism research. It is multidisciplinary in approach with the broad aim of addressing the complex processes at play when tourism is harnessed for economic growth. Using examples from the Asia-Pacific region, the module explores tourism initiatives at the governmental level comparing them with the efforts by NGOs and other informal collectives. The module will also examine the real and perceived impacts of tourism on regional economies, environments, societies, cultures and political systems with an eye to critically evaluating the role of tourism in the contemporary world. The module will be structured around discussion points, and students are expected to contribute in the form of seminar presentations and essay assignments.", + "title": "Tourism Impacts and Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module situates geography within the field of knowledge constituted by the social and natural sciences. It focuses on the way that geographic thought has developed through a dialogue with other disciplines. Students will learn about some key social theorists and how geography may be enriched through careful engagement with their works. This module is targeted at all interested in thinking critically about the spatiality of everyday life.", + "title": "Geography and Social Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0316", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is intended to provide an introduction to integrative aspects of earth environmental sciences, varying from climatology, geomorphology, hydrology to ecology, at the research level. Environmental systems are studied at several scales and research design is examined within the context of experimental methods in physical geography. The course includes lectures, reading assignments and seminars. Students are expected to participate actively throughout. This course is for all graduate students during the first semester in which they are registered in the department of geography. A formal research proposal for beginning graduate students (MA and PhD level) is expected at the end.", + "title": "Research Methods in Environmental Sciences", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0316", + "day": "Monday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module challenges students to analyse the practical problems encountered in using the various methods available in human geography research. It builds upon the undergraduate modules in research methods and includes an evaluation of the construction and design of research questions in various field contexts, weighing between the major methods of data collection (e.g. quantitative and qualitative), and the practical problems of data and information analysis. Common research methods such as surveys, case studies, interviews, focus group discussions and participant observation will be carried out so that students can benefit from first hand experience in the field. Students will also be exposed to archival and map materials. Students will also be taught what sponsors look for in research proposals. As the module is entirely project-based, students are expected to have full-scale participation in the module.", + "title": "Research Methods in Human Geography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0316", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for students with some experience in geographic information systems (GIS) who want to learn how to extend GIS to perform custom analyses, to automate common GIS tasks, or just to learn how spatial data is structured and managed \u201cunder the hood\u201d. Topics will include the fundamentals of programming (in Python), geo-processing function libraries, spatial data structures and access, and geometry and spatial algorithms. No prior programming experience is required.", + "title": "Spatial Programming", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5219", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0313", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students the fundamental concepts and components of Geographic Information Systems (GIS). Fundamental concepts covered include spatial data models, data quality, cartographic principles, and\nspatial analysis. Hands\u2010on training provided includes spatial data development, attribute management, geovisualization, and spatial analysis\noperations. Some selected cases of GIS applications in social sciences, humanities, environmental studies, and management will be introduced. The\nrole of GIS as an integrated platform for decision making will be highlighted. The module is for students who have no prior GIS background but wish to apply geospatial techniques in their respective fields of interest.", + "title": "Introduction to Applied GIS", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0313", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to guide students in the selection and development of an appropriate MSc thesis topic. The importance of a thorough evaluation of relevant literature to the process of identifying live research problems and of effective project management will be stressed. Students will obtain the necessary training to plan and implement a research thesis and evaluate the various available research approaches. The primary output of this module will be a detailed research proposal, presented in written and oral forms as a prelude to GE6225 Research Thesis.", + "title": "Thesis Planning and Implementation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0302", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity to gain hands\u2010on experience in GIS applications across a range of different subject areas, including geography, geology, environmental science, ecology, civil engineering, urban planning, real estate, health sciences, social sciences and humanities. Through this module, students are expected to explore different modelling approaches, discuss applications of the models, and work on lab exercises and research projects.", + "title": "GIS Applications", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0313", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides state\u2010of\u2010the\u2010art training in\nInternet GIS technologies and spatial theories for\nmapping and comprehending activities in virtual\nspace, real space, and the intersections of the two\nspaces. It sees Internet as an integral part of social life\nand provides students a venue to explore the\nimplications of the digital transformations brought\nforth by the Internet. Major topics that will be\ncovered include 1) web\u2010based GIS mapping, 2)\nInternet of Things, 3) social sensing and social web,\nand 4) social dynamics of the Internet.", + "title": "Internet GIS", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0313", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity to\ngain hands\u2010on experience in applying geospatial big\ndata analytics to complex spatiotemporal problems that\nchallenges sustainability of our society and\nenvironment, including but not limited to disease\noutbreaks, traffic patterns, urban dynamics, and\nenvironmental changes. Major topics that will be\ncovered include 1) nature of spatial big data, 2)\nvolunteered geographic information, 3) spatial\nanalytical approaches for discovering patterns, 4) datadriven\ngeography, and 5) big data ethics.", + "title": "Spatial Big Data and Analytics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0313", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Political ecology is a vibrant interdisciplinary field for critically investigating complex relations between environment and society, paying close attention to power and politics. This module traces the foundations of the field, particularly within geography, and its diverse epistemological approaches, which address how capitalism, knowledge, gender, race, and more shape human interactions with biophysical natures. The module covers current themes such as decolonization, urbanization, and climate change and is intended for graduate students with and without a political ecology background. Students will gain the theoretical tools and analytical skills necessary to understand, and address, urgent contemporary environmental and social problems.", + "title": "Political Ecology: People, Power, and Nature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5229", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0316", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The level 5000 Independent Study Module is designed to enable a graduate student or small group of graduate students to explore an approved topic relating to their planned area of research. Students should normally expect to meet with their mentor three to five times over the duration of the module. A proposal must be drawn up between the student(s) and mentor and approved by the Graduate Coordinator/Deputy Graduate Coordinator before the end of week 3 of the semester. The assignment will comprise written work of 4000\u20106000 words, or 6000\u20108000 words for a group\u2010based, single (collective) piece. All CA is double\u2010marked.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The content of this module will vary according to the research interests and availability of the staff who may be a visiting professor. Students will be expected to attend lectures and seminars conducted by the staff. Written assignments and seminar presentations constitute part of the evaluation in this module. The module will address advanced research topics in such areas as environmental studies, GIS, hazards, transport, regional studies, economic geography, geopolitics, population and urban and regional planning.", + "title": "Topics in Geography I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module familiarizes students with advanced spatial data science techniques and literature in the emerging field of digital geography. Topics examined include \nspatiotemporal data mining, geospatial simulation, spatial statistics and machine learning techniques, and spatial data quality. Upon completion of the module, students will be expected to be able to apply these spatial data science techniques to their field(s) of interest, and critically assess the analysis outcomes and implications to human everyday life and the physical environment. Students are required to undertake an independent project, and their work will be presented in a seminar format.", + "title": "Spatial Data Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE6211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0313", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the complex debates on economic globalisation and assesses the contributions of human geography to these debates. In particular, we will discuss and evaluate the spatial processes and ramifications of global economic change that is associated with globalisation tendencies. We will also analyse the role of states, labour, capital, technology, and politically contested discourses of globalisation in shaping global economic change. This module will be a graduate seminar comprising student presentations and discussions. Attendance and full preparation are the basic requirements. Ph.D. candidates will be expected to cope with additional written materials, as well as added responsibility in the seminar context.", + "title": "Mapping Global Economic Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE6212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for students pursuing post-graduate tourism research. It uses a geographical lens to explore the tourism phenomenon, examining how spaces are shaped from various human and physical perspectives, as well as discussing the consumption of such landscapes within particular social relations. In the critical investigation of planned and spontaneous landscapes, not only will the production of consumptive spaces of tourism be evaluated but the capacity for reflexivity in consumption will also be emphasized. In this way, the concept of sustainable tourism can be evaluated. The module is structured around seminars, including a departmental seminar by the students.", + "title": "Tourism Geographies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE6213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses key concepts relating to interactions between humans and their environment, from both theoretical and empirical perspectives. Important classic and recent publications relating to a range of subject matter will be discussed, such as: foundational concepts, theories and issues relating to the human\u2010environment interface; conceptual framing of human\u2010environment interactions and methodological approaches to their study; the ways through which human\u2010environment interactions have been and are viewed, produced and commodified; anthropogenic environmental changes, and their separation from natural variability; environmental hazards; policy and management implications and responses.", + "title": "Discussing Human\u2010Environment Interactions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE6221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Transnationalism studies draw attention to social processes and relations that simultaneously transgress borders while remaining in some ways anchored on territorially defined spaces. This module examines the theoretical foundations, historical perspectives, methodological premises and innovative developments of transnationalism studies through empirically grounded analyses of transnational phenomenon. Topics offered may include but are not limited to transnational migration, institutional governance, socio\u2010political mobilisations, corporations, urbanism or popular culture and media. Comparative examples from Asia and beyond will be drawn upon to inform discussions.", + "title": "Transnationalism and Society: Comparative Spaces", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE6222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0316", + "day": "Thursday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This science and policy module is focused upon giving students particular skills in linking geographical science (both physical and human) to management and policy changes. Areas of focus include developing salient projects, partnering with decision makers, synthesizing existing findings, building local capacity, engaging in political and management processes, involving non\u2010scientists in data collection, developing key scientific messages, and communicating science to the general public.", + "title": "Navigating the Boundaries Between Science and Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE6223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced level course in concepts, approaches and methods in political geography. The teaching and learning objectives involve a sophisticated understanding and appreciation of the trajectory, approaches and contents of political geography; A grounding in research methods and concepts in political geography and an appreciation of the relationship of political geography to allied fields both in geography and the wider social sciences and humanities. The major topics to be covered are the modes of thinking in political geography; Contested concepts: power, territory, boundaries, scale and place; Critical geopolitics; States, territory and identity; Geographies of political and social movements and Geographies of environmental politics.", + "title": "Political Geography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE6224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Following on from GE5225 Thesis Planning and Preparation, GE6225 provides students with an opportunity to conduct an in-depth research project as part of the MSc (Applied GIS). Students are required to apply relevant research approaches and techniques under the guidance of an advisor to a live problem in the field, as outlined in their original proposal, and to write the research analyses in the form of a thesis (10,000 words maximum). The research underpinning the thesis will also be presented in a seminar.", + "title": "GIS Research Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "GE6225", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "GE6226 GIS Research Project module provides students on the project track of the MSc in Applied GIS with an opportunity to conduct a professional GIS project that typically involves in-depth analysis of spatial/spatiotemporal data or develop new GIS tools or databases. Students are required to apply relevant GIS approaches and techniques under the guidance of an advisor to a live problem in the field.", + "title": "GIS Research Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "GE6226", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The level 6000 Independent Study Module is designed to enable an individual student to explore in some depth a topic in Geography that is of relevance to their research interests. Students should normally expect to meet with their mentor three to five times over the duration of the module. A proposal must be drawn up between the student(s) and mentor and approved by the Graduate Coordinator/Deputy Graduate Coordinator before the end of week 3 of the semester. The assignment will comprise written work of 4000\u20106000 words. All CA is double\u2010marked.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GE6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0316", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The content of this module will vary according to the research interests and availability of the staff who may be a visiting professor. Students will be expected to attend lectures and seminars conducted by the staff. Written assignments and seminar presentations constitute part of the evaluation in this module. The module will address advanced research topics in such areas as environmental studies, GIS, hazards, transport, regional studies, economic geography, geopolitics, population and urban and regional planning. These topics will be more substantial and analytical than those covered in GE5880.", + "title": "Topics in Geography II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GE6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip undergraduate students with essential data literacy skills to analyse data and make decisions under uncertainty. It covers the basic principles and practice for collecting data and extracting useful insights, illustrated in a variety of application domains. For example, when two issues are correlated (e.g., smoking and cancer), how can we tell whether the relationship is causal (e.g., smoking causes cancer)? How can we deal with categorical data? Numerical data? What about uncertainty and complex relationships? These and many other questions will be addressed using data software and computational tools, with real-world data sets.", + "title": "Quantitative Reasoning with Data", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEA1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E49", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E43", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-14", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E37", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E09", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D43", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E41", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E42", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E39", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E40", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E32", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E33", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E21", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E25", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E29", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D32", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D31", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E44", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E50", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D03", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D04", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D51", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D40", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D44", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D45", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D48", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E45", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D36", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D37", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D38", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D34", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E27", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E51", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-14", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E34", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E36", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E22", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E23", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E28", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E30", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E31", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E46", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E48", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D06", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D07", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D09", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D08", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D52", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D42", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D47", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D49", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D33", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E26", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D39", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E38", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E35", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E24", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D41", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D46", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D50", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D35", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D22", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D05", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E05", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E47", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 60 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E04", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E05", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E36", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D06", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E28", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E30", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E09", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E21", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D34", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D31", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D33", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E24", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D07", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E26", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E34", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E35", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E40", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E37", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D05", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E31", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E32", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E33", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E25", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D35", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E23", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D04", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D08", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E39", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E38", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D03", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E27", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D32", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D22", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E29", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-SR5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D09", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "TP-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "R02", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-05-16", + "end": "2023-06-27", + "weeks": [ + 1, + 2, + 4, + 5, + 7 + ] + }, + "venue": "S16-0440", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "R04", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-05-19", + "end": "2023-06-30", + "weeks": [ + 1, + 2, + 4, + 5, + 7 + ] + }, + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "R05", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-05-19", + "end": "2023-06-30", + "weeks": [ + 1, + 2, + 4, + 5, + 7 + ] + }, + "venue": "S16-0440", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "R06", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-05-19", + "end": "2023-06-30", + "weeks": [ + 1, + 2, + 4, + 5, + 7 + ] + }, + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "R01", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-05-16", + "end": "2023-06-27", + "weeks": [ + 1, + 2, + 4, + 5, + 7 + ] + }, + "venue": "S16-0436", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "R03", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-05-16", + "end": "2023-06-27", + "weeks": [ + 1, + 2, + 4, + 5, + 7 + ] + }, + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip undergraduate students with essential data literacy skills to analyse data and make decisions under uncertainty. It covers the basic principles and practice for collecting data and extracting useful insights, illustrated in a variety of application domains. For example, when two issues are correlated (e.g., smoking and cancer), how can we tell whether the relationship is causal (e.g., smoking causes cancer)? How can we deal with categorical data? Numerical data? What about uncertainty and complex relationships? These and many other questions will be addressed using data software and computational tools, with real-world data sets.", + "title": "Quantitative Reasoning with Data", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEA1000N", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "5", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 60 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students an introduction into the role of new communication technologies in the context of globalization. We will explore various aspects of global communication flows including the global reach of new media and its consequences, global and transnational timesharing and workflows, the role of new media in global and local politics, and the potential of new and traditional communication channels in the context of various forms of activism and communication for social change. The role of culture in global communication and ways in which cultural processes shape and are shaped by the landscape of globalization will be emphasized.", + "title": "Globalisation and New Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the complex relationships underlying Chinese music, language and literature. It focuses on Chinese music from the perspective of popular music produced in the People\u2019s Republic of China, Hong Kong, Taiwan and Singapore. These four economies have developed different strands of popular music in Mandarin and various Chinese dialects, due to different linguistic and ideological environments. Students will learn how Chinese popular music draws upon the aesthetics of Chinese literature and traditional Chinese music, and how the music has hybridised influences from foreign musical genres, thus expressing different versions of \u201cChineseness\u201d.", + "title": "Chinese Music, Language and Literature (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the role which nationalism has played in the formation and political development of the nations and states of South Asia. It examines nationalist forces in anti-colonial struggles, in post-colonial state formation and in contemporary political developments. It will be of relevance to students with an interest in political developments in Asia, with particular reference to forms of nationalism and nation-building", + "title": "Nations & Nationalism in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Piracy, understood broadly as violence or crime at sea, is a present day phenomenon and yet one which has a history spanning centuries and across all the oceans of the world. From pirates to privateers, corsairs to raiders, maritime predators take various names and forms. This module explores the history of pirates and piracy. By examining case studies from the 1400s onwards and by placing pirates into the context of oceanic history and maritime studies, students will be able to demystify the popular images often associated with pirates.", + "title": "Pirates, Oceans and the Maritime World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module challenges the foundation of human knowledge. Examining cultural icons from Japan's past and present we will unpack the assumptions, stereotypes, narrative strategies, and visualizing techniques of representing Japan. Students will probe one or more of Japan's three famous cultural icons - the samurai, the geisha, and/or the yakuza - as they appear in literature, visual and performance arts, and academic writings. By the end of the module students will not only have a richer understanding of the 'realities' behind such icons, but more significantly, they will be equipped to challenge stereotypes of Japan presented by journalism, popular culture, and the humanistic and social sciences. Ultimately such discovery will lead students to question their own knowledge of self and other. Students should refer to the module IVLE page for details of the selected icon(s) for the current semester.", + "title": "Samurai, Geisha, Yakuza as Self or Other", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Humans have always actively borrowed from other cultures. Such borrowing is a creative process which influences aspects of life ranging from basic material\nneeds to aesthetic appreciation. Often, however, cultural borrowing is labelled as simple imitation. This results in cultural stereotypes that impede understanding of other cultures. Using Chinese and Japanese cultural borrowings as illustration, this module teaches second and third year students to analyze the creative process of cultural exchange. By developing theoretical perspectives from the study of China and Japan, students will learn about exchanges among culture in general.", + "title": "Cultural Borrowing: Japan and China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Consumption has come to dominate our lives, is driving economies, yet also endangering the future of our planet. This module asks questions about consumption from multiple perspectives, such as how did consumption assume its prominent place, how do economists rationalise consumption, how do companies use behavioural models to craft marketing strategies, whether consumption is good or bad for society or the individual, or whether consumers need to be protected. Participants in this module will explore how different disciplines approach such questions and will have the opportunity to reflect on their own consumption practices and impact on the social and physical environment.", + "title": "Understanding Consumption", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "GE 1022 K (GEOPOLITICS) is an exciting introduction to the world of practical, formal and popular geopolitics via numerous case studies and multi-media presentations. The basic aim is that each of you will become familiar with the world political map and the relevance of geopolitics as ways of understanding and seeing our world. The Geopolitics module provides an engaging way to integrate aspects of modern history with political geography, for instance through the analysis of nationalisms and territorial disputes (in different parts of the world); through the study of the Cold War in relation to changing political landscapes in Southeast Asia; and through more contemporary understandings of the global geopolitics associated with the so-called War on Terror; and global issues of ecological security and environmental geopolitics.", + "title": "Geopolitics: Geographies of War & Peace", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1007", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Studies on cinema offer an important perspective for understanding human cultures. This course explores Chinese-language film history from the 1930s to the present through examining some key genres of films made by major filmmakers from China, Hong Kong, Singapore and Taiwan, including opera, musical, action and youth films. Special attention will be paid to the socio-cultural condition of their production, distribution, exhibition and consumption, as well as larger regional cultural connections of these four places. The course will be taught in English.", + "title": "Exploring Chinese Cinema: Shanghai\u2010Hong Kong\u2010Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to impart an appreciation of the use of drugs in relation to the cultural and social environment of societies past and present. How drugs are employed today, watershed \"drug\" discoveries and their impact on society (for example contraceptives, antibiotics, vaccines, psychopharmacological agents), the issue of drug use in sports, \"social\" drugs and the \"pill for every ill\" syndrome will be discussed. Particular attention will be paid to \u201ccontroversial\u201d drug-related societal issues within each topic. For example, the role of pharmaceutical industry will be examined to determine if the tendency to \u201cbash\u201d big Pharma is justified or if decriminalization of drug use will be a more effective means of curtailing drug abuse. One of the components in this module requires students to objectively evaluate such issues and articulate their stand in an audio-visual presentation.", + "title": "Drugs and Society", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1009", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modern civilization, which on the one hand boasts of having discovered the behaviour of subatomic particles, has also to its credit the impending intensified energy crisis and global warming. The urgent need to address these challenges has now become obvious. The course will acquaint students with the role of scientific development towards understanding the current global energy crisis and global warming. Emphasis will be given on how scientific progress has helped us in understanding the principle and development of various clean energy and storage technologies, their potential and applicability in present day scenarios and in shaping future energy systems.", + "title": "Clean Energy and Storage", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1010", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary aim of the module is to introduce students to the nature of infectious diseases and their impact on human activities. At the end of the module, students will be able to understand the interactions between microorganisms and human, and the position and role of human in the living world.", + "title": "Microbes which Changed Human History", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1011", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Friday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module proposes to examine the processes of globalization and seeks to provide a deeper understanding of it. The world is globalizing both culturally and economically. We need to ask whether this process is creating a single world without borders or intensifying cultural differences between societies. By discussing various trends of the interdependent world, the course helps us in understanding the various processes of globalization. Since the processes of globalization involve societal, cultural, technological, political, and economic processes, we will take an inter-disciplinary framework in understanding this diverse experience. The course will specifically highlight the problems and prospects of the contemporary world.", + "title": "Understanding Globalisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introductory survey of major religious traditions of the world, with specific Page 12 of 141 focus on Hinduism, Buddhism, Confucianism, Daoism, Judaism, Christianity, and Islam. We will examine the historical development of each tradition, along with its sacred texts, basic philosophical ideas, patterns of ritual and worship, and specialized institutions Our goal is to provide an objective understanding of each faith tradition on its own terms, and secondarily, to explore how religion is relevant to contemporary social, political and cultural issues. This is an introductory course which presumes no prior expertise in religious studies.", + "title": "World Religions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1013", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 96, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "E4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a cross-cultural introduction to music both as an art and as a human, socio-cultural phenomenon. Through lectures, reading and listening assignments, and actually playing different styles of music, students will learn how music works, why people listen to and make music, what its roles are in a society, and how these things vary in different cultures. The module introduces a variety of musical styles and cultures that represent an enormous wealth of human experience. At the end of the course the students will have access to a much wider variety of music to listen to, participate in, enjoy, and understand.", + "title": "Social and Cultural Studies through Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From the global increase in obesity to SARS, a range of health issues and solutions will be explored in differing contexts throughout the world. Working in small groups, students debate and evaluate paths to addressing global health issues in a variety of cultural contexts. For example, lessons learned about tuberculosis in Russia may be applied to the Singaporean context, or students may examine efforts to prevent newborn deaths in developing nations. Students will develop an appreciation of how the health of an entire population impacts individuals and how complex problems can be prevented or addressed using culturally appropriate solutions.", + "title": "Public Health in Action", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1015", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How are human beings and plants interdependent? How did plants shape the planet Earth to one that is suitable for life as we know it? Such topics will be examined to deepen our appreciation of the roles played by plants in the progress of civilizations and cultures from both historic perspective and continuing impact on society. The discussion topics, written and oral presentations will include plants as sources of food, clothing, shelter, medicine. There will be talks by guests from local industry, along with team projects by students to enrich their awareness of the deep coexistence of plants and society.", + "title": "Plants and Society", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1016", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Can movies engage with serious concerns? Through the close study of films by great directors, this module explores how film as an artistic medium can be used to engage with significant socio-cultural and existential concerns. Students will be taught how to analyze film as an artistic medium and, further, how film directors use the aesthetic elements of film to engage with important subjects. Through films by directors like Stanley Kubrick, Orson Welles, Wong Kar-Wai and Zhang Yimou, students get a chance to reflect on issues like the human condition, the family, the urban condition, love and society, and the nation.", + "title": "Film Art and Human Concerns", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1017", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on names as a means of marking out the socio-cultural identity of the named and of the namer. Attention will be paid to anthroponyms (personal names), toponyms (place names) and commercial names. This module will be interdisciplinary in nature and will combine a range of approaches to names. Linguistic and philosophical approaches will provide the theoretical anchor to the topic of names. Subsequent seminars will contextualise names in their historical, geographical, political and literary contexts. There will be scope for students to develop the module in the direction of their interests in the mini project.", + "title": "Names as Markers of Socio-cultural Identity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1018", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cinematic and literary expression centred on religious topics can be studied to see how the vitality of cultural expression and power of the religious imagination interrelate. No prior training in artistic interpretation or religious history is required, though the module presumes a curiosity about religion and culture. It trains students to think about why people sometimes enjoy seeing films about painful topics. It clarifies the difference between \u201cstudying\u201d and \u201cpractising\u201d religion, and it teaches students to discuss controversial topics with tact.", + "title": "Religion and Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This GE module introduces the diversity of human cultural experience in the contemporary world. It offers an anthropological lens for understanding cultural diversity with concrete cases. We will read articles and analyse ethnographic films on kula exchange, cannibalism, oracle, feud, animism, sacrifice, initiation, incest, spirit-possession, statelessness, potlatch, genocide, and so on, found in Melanesia, Amazonia, sub-Sahara, Siberia, Zomia, South Asia, and Southeast Asia. We will gain a sensitivity toward stereotypes and ethnocentrism, understand the connections and processes that shape social life at different levels, and learn the skills to appreciate and analyse differences in the changing world.", + "title": "Cultural Diversity in the Contemporary World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1020", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "While many of us spend much of our lives glued to small computer screens, theatrical productions continue to bring people together for shared experiences. What are the attractions of theatre, what makes it distinct, and how can it enrich our understanding of human society? This module, which requires no prior knowledge of theatre, starts with the spectator\u2019s experience and works outwards. We learn how to analyse theatre\u2019s styles and effects. We explore how human societies use theatre to confront questions and express beliefs, hopes, and anxieties. We examine how cultures influence each other through theatre, and how theatre provokes change.", + "title": "The Theatre Experience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1021", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The nuclear age dawned in 1945. Since then, the world has been profoundly shaped by the implications of nuclear fission. From science and engineering to war and peace, from design and popular culture to health and safety, exposure to the nuclear condition has shaped the lives of millions of people worldwide. This module offers a sweeping panorama of the nuclear world over the last century, from early scientific experiments to the recent Fukushima accident, with stops along the way in Japan, the Bikini atoll, North Korea, India, Israel, France, Ukraine, and the United States.", + "title": "Living in the Nuclear World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An interdisciplinary study of how societies and different generations responded to the invention of the piano. This module focuses on the social history of the piano throughout the past three centuries, canvassing a wide array of performers, composers, supporters, manufacturers, \u201cheroes\u201d, politicians, teachers and students. Various expressions of ideologies from differing periods eventually revolutionized and efffectuated the versatility of the piano, shaping a legacy which led to the \u201cglobalization\u201d of the piano, including China. Students will learn through lectures, readings, discussions, listening, playing, and attending piano recitals and masterclasses.", + "title": "Social History of the Piano", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1023", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ghosts and spirits have been subjects of perennial interest in different human societies. At the same time, beliefs about persons with powers to initiate injury or good, and their relationship with spirits are found in almost all cultures throughout human history. This module introduces students to the scholarly study of ghosts and spirits, and the specialists and practitioners involved with these forces. These include shamanism, spirit possession, witchcraft and sorcery, and other supernatural entities such as zombies, vampires and werewolves, and how these intersect with issues of class, gender, sexuality, ethnicity, citizenship, popular culture, modernity and social change.", + "title": "Ghosts and Spirits in Society and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1024", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Oceans cover most of the globe. Yet once we venture from the shore, our understanding of the marine environment is necessarily mediated by technology, from the plumb line used by sailors for millennia to measure the water\u2019s depth, to the latest satellite imaging tracking ocean currents in real time. This module examines how different \u201cmachines,\u201d or technologies have produced understandings of the ocean across history, and places these technologies in their social, cultural, economic, and political contexts. The result is to reveal the complex and evolving interconnections that link technology, and society and our understanding of the natural world.", + "title": "The Life Aquatic: Machines and the Making of the Ocean", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a thematic introduction to the major religious, traditional and decorative arts of Asia. Through a study of important architectural monuments, key works of art, materials and processes, students will explore the shared cultures, aesthetics and artistic achievements of India, China and Southeast Asia and how the visual arts of Asia were shaped by religious, imperial, political, economic, and social climates from its early civilizations to the modern era.", + "title": "Art in Asia: Through Media, Style, Space and Time", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1026", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to the world of culture through specific examples. It examines the ways in which the cultural sphere produces value and significance for humans in society. It introduces students to different approaches to understanding culture, and explores the influence of the cultural sphere on both political and personal relations. Students will examine questions about communication, broadcasting, media technology, architecture, and cyberspace. The module also examines the ways in which culture is produced, disseminated, and consumed, i.e., through specific communities and contexts, and through types of popular culture, including film, television, popular fiction, performance, music, and digital culture.", + "title": "Culture in Action", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to highlight how luck has influenced and still\ninfluences several aspects of the world we live in. From the\nbeginning of the universe, to our present-day lives, to the end\nof the universe, random events beyond anyone\u2019s control\ncontinue to shape our fate. By exploring the various fields that\nluck manifests itself in, the module ultimately delves into the\nintriguingly precarious nature of existence.", + "title": "Luck", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1028", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "W05", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "Unknown" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Football is found in one form or another in almost every part of the modern world. \u201cWorlds of Football\u201d takes the ubiquity and diversity of football as an entry point for critical examination of issues of geography and human culture at a range of scales \u2013 from the most intensely local and embodied, to globe-spanning networks. The module uses football as a window into: contextual and environmental variegation in human practices; worldly cultural politics (along lines of age, (dis)ability, class, gender, and race, among others); and processes through which everyday lifeworlds are bound up with distant and not-so-distant people and places.", + "title": "Worlds of Football", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1029", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "DO3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "DO2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "DO7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "DO4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "DO6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "More people live in cities now than in any other point in history: how does this change human culture and civilisations? Cities tell a story of our world; they are a testament to humankind\u2019s ability to reshape the environment in lasting ways. They reveal how we interact with the environment and with each other. Cities are created in many forms and for many reasons ranging from defense, religion and economic activity. Through case studies this module examines urban history, lived experiences and how city life has changed over time.", + "title": "Metropolis: The City in World History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1030", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to analyse why killing \u2018unarmed civilians\u2019 has been so commonplace in war, across time and space. Why were defenceless unarmed people killed by armed forces? The word now used to define this theme is \u2018non-combatant.\u2019 But neither word nor concept is primordial, or was universal. The notion that some types of people should not be targets for military operations did not spring from our consciousness, or from any abstract sense of ethics or morality. It evolved historically, and not in any straight line. This course will ask the direct questions: how, why and to what ends?", + "title": "Whatever it takes? Making War on Civilians", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1031", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Few words in the English language (or any language) are as evocative and emotionally\u2010charged as \u201chome.\u201d But how do we determine what we call home, and why should we take \u201chome\u201d seriously? This module explores the political, social, economic, and cultural aspects of the complex idea of home. Major topics include: sense of place, home technologies and design, gender and housework, home and travel, globalisation,\nnationalism, homelessness, exile, and representations of home. Students will complete the module with a new appreciation for the complexity of the places \u2013 house, neighbourhood, nation, planet \u2013 they call home.", + "title": "Home", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1032", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the life and writings of Mohandas Karamchand Gandhi, regarded as one of the icons of the twentieth century and one of the principal architects of a free India. The course is meant to not only understand and analyse Gandhi\u2019s thought but also to outline his extraordinary legacy. The course will introduce students to Gandhi\u2019s writings and ideas on several issues, including non-violence, colonialism, modernity, ethics, science and health. The aim would be to not only expose students to the complexity of Gandhi \u2014 the man and his ideas \u2014 but to critically interrogate Gandhi and his legacies.", + "title": "Maverick or Mahatma? Gandhi\u2019s Life & Legacy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1033", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Why and how have things changed and moved so fast? Why and how has the global economy become more open and integrated? This module discusses the increasing connections and mobilities of goods (like grains, oil, cars, appliances, parts & components), services (like banking, education, tourism), money and finance, labour, technology, ideas and information. It discusses their trends and patterns and critically examines the role of various factors such as international and regional institutions, media and ICT, infrastructure and distribution networks, state intervention, and private sector involvement. It also assesses the social, economic, political and environmental impacts of increasing interconnectedness and mobilities.", + "title": "Understanding the Changing Global Economic Landscape", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1034", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 56, + "covidZone": "Unknown" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Friday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-GLR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Why and how have things changed and moved so fast? Why and how has the global economy become more open and integrated? This module discusses the increasing connections and mobilities of goods (like grains, oil, cars, appliances, parts & components), services (like banking, education, tourism), money and finance, labour, technology, ideas and information. It discusses their trends and patterns and critically examines the role of various factors such as international and regional institutions, media and ICT, infrastructure and distribution networks, state intervention, and private sector involvement. It also assesses the social, economic, political and environmental impacts of increasing interconnectedness and mobilities.", + "title": "Understanding the Changing Global Economic Landscape", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1034T", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT6", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is a conceptual and practical introduction to the complex networks that drive \"patronage,\" including multifarious kinds of patronage. Issues raised and debated include exploring money, religion, politics, social classes, and many other social constructs that influence what art people support, and why they, especially you, support different kinds of art. Students will need to grasp and evaluate critically each set of issues that drive and affect patronage of the arts, and demonstrate their critical understanding of the interplay of these factors through written assessments, classroom discussions, and contributions to blog postings related to the module materials.", + "title": "Patrons of the Arts", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the essential knowledge to make intelligent assessments on the potential risks and uses of radiation in our modern society. After introducing the physics behind various forms of radiation, we will look at how these radiations are used in medical diagnosis and treatment and other applications. Some controversial issues in these applications will be raised and debated. The health effects of high and low levels of radiation will be presented based on scientific evidence thus dispelling some of the negative misconceptions of radiation and irrational fear of it.", + "title": "Radiation-Scientific Understanding and Public Perception", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1036", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses \u2018big picture\u2019 History by considering defined themes that range across time and space. The focus is not on individual societies or\ntime periods, but on questions related to commonalities in developments across all societies. This approach is like looking at a painting from a\ndistance instead of at the brush strokes that constitute it, and will lead to questions about what human activities and experiences constitute the global\nexperience. As part of the Thinking and Expression pillar, this module will help students think historically and also critically engage the maxim that \u2018the past is a foreign country.\u2019", + "title": "Big Picture History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1037", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores Asian cinema from its beginning to the introduction of talkies in the 1930s. The advent of cinema in Asia transformed entertainment across the continent and provided a novel means of popular expression. As a medium, cinema is closely tied to modernity and helps us understand how different societies and cultures in Asia responded to the modern transformation and how they appropriated it for their own ends. The module focuses on China, Japan, and India, three regions that developed a vibrant film culture and whose films have survived to the present day.", + "title": "Asian Cinema: The Silent Era", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1038", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Asia has become part and parcel of world politics since the 19th century. This module examines how a wide range of ideas and ideologies borne in Europe have shaped the norms, practices and institutions of Asia\u2019s politics and international relations. It explores the resilient nature of local norms and culture in the changing dynamics of international relations, particularly in the age of globalization. After this course, students will appreciate the historical background to contemporary developments and have acquired a solid basis of rationality in understanding international relations of Asia and in general.", + "title": "International Relations of Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1039", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cultures influence how sustainability issues are viewed and addressed in different contexts and situations. They determine the ways in which environmental, social, and economic considerations connect to sustainability and sustainable urban development. Success in our global sustainability efforts depends on our understanding of the underlying cultures and the connections between them, particularly in the face of urbanisation. This module aims to raise our students\u2019 awareness of these issues and to equip them with the critical thinking and collaborative decision-making skills necessary to find solutions to local and global problems of societal concern. Appropriate cross-cultural case studies will be discussed.", + "title": "A Culture of Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1040", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cultures influence how sustainability issues are viewed and addressed in different contexts and situations. They determine the ways in which environmental, social, and economic considerations connect to sustainability and sustainable urban development. Success in our global sustainability efforts depends on our understanding of the underlying cultures and the connections between them, particularly in the face of urbanisation. This module aims to raise our students\u2019 awareness of these issues and to equip them with the critical thinking and collaborative decision-making skills necessary to find solutions to local and global problems of societal concern. Appropriate cross-cultural case studies will be discussed.", + "title": "A Culture of Sustainability", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1040T", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-08T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the dazzling diversity of crime fiction and film, with a dedicated focus on the linkages among different geographical regions and cultural traditions. By examining common or similar plot elements and artistic techniques, the course conveys how authors and film-makers employ them in tales about crime to arouse audience interest. Students will get to sample Western detective fiction and Chinese court-case fiction, as well as be exposed to their adaptations in Japan and Latin America. The emphasis on grasping the tenets of adaptation will also be imparted through analyzing the relations between print media and moving images.", + "title": "Crime Fiction and Film across Space & Time", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1041", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces a revisionist fashion history that decenters the West (Europe and North America) and places the East as its equal counterpart. Sartorial cultures in Asia are studied in their own right and on their own terms. Students will explore the history of global cultural exchange through the lens of fashion, understand the differences and similarities between Eastern and Western sartorial cultures, and gain critical insights into contemporary fashion consumption and industry. The module follows a chronological and thematic approach that examines fashion\u2019s intersection with other domains of social life such as class, identity, and politics.", + "title": "Fashion: East and West", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1042", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended to whet students\u2019 appetites for a gustatory exploration of the past. We will consider various historical exchanges of ingredients across the globe, the refinement of techniques of culinary preparation, rituals of consumption, table manners and cutlery as well as the cultural significance of acts of feasting or fasting. Various religious, medical and cultural dietary regulations and taboos will be examined, along with the rise of sumptuary rules and connoisseurial practices, and the development of \u2018dining out\u2019. Finally we will analyse the role of food in the formation of various identities nation, gender, class, diaspora.", + "title": "Feasting and Fasting: Global Histories of Food", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1043", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module offers the opportunity to explore traditional Chinese medicine through a survey of Chinese medical culture in its dynamic formation and transformation. The first half of the module gives students a historical overview of Chinese medicine\u2014 shaped by philosophy, natural science, religion, while influenced by political and social forces for 2,000 years. The second half allows students to study \nthe theoretical foundation and practical aspects of Chinese medicine, which is opened to influence from western medicine and impact from modernity. Students will examine the globalisation of Chinese medicine, focusing on transregional connections and cultural negotiations with the world.", + "title": "Chinese Medicine: Theory and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEC1044", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 260, + "covidZone": "Unknown" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students an introduction into the role of new communication technologies in the context of globalization. We will explore various aspects of global communication flows including the global reach of new media and its consequences, global and transnational timesharing and workflows, the role of new media in global and local politics, and the potential of new and traditional communication channels in the context of various forms of activism and communication for social change. The role of culture in global communication and ways in which cultural processesshape and are shaped by the landscape of globalization will be emphasized.", + "title": "Globalisation and New Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module highlights the major economic problems characterising the developing countries, with focus on Southeast Asia and East Asia. Cross-thematic development problems and policy responses are analysed in a non-technical fashion with appropriate policy illustrations. The module also examines the impact of globalization and the ongoing technological disruptions on developing countries and the need for them to remain prepared to gain maximum out of these technologies. Upon module completion, students should have up-to-date knowledge about the Asian development experiences and their leading role in the global economy. They will also get ring-side view of the Singapore development experiences.", + "title": "Economic Issues in Dev World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to provide a general understanding of traditional China by focusing on two important aspects of its civilization: history and literature. In the first half of the module, students will be introduced to some significant Chinese customs and wisdom while the second half will focus on Chinese literature. In so doing, we offer students an overview of what formed the cornerstone of the civilization of traditional China. This module is taught in English.", + "title": "Chinese Heritage: History and Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the dazzling diversity of crime fiction and film, with a dedicated focus on the linkages among different geographical regions and cultural traditions. By examining common or similar plot elements and artistic techniques, the course conveys how authors and film-makers employ them in tales about crime to arouse audience interest. Students will get to sample Western detective fiction and Chinese court-case fiction, as well as be exposed to their adaptations in Japan and Latin America. The emphasis on grasping the tenets of adaptation will also be imparted through analyzing the relations between print media and moving images.", + "title": "Crime Fiction and Film across Space & Time", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the complex relationships underlying Chinese music, language and literature. It focuses on Chinese music from the perspective of popular music produced in the People\u2019s Republic of China, Hong Kong, Taiwan and Singapore. These four economies have developed different strands of popular music in Mandarin and various Chinese dialects, due to different linguistic and ideological environments. Students will learn how Chinese popular music draws upon the aesthetics of Chinese literature and traditional Chinese music, and how the music has hybridised influences from foreign musical genres, thus expressing different versions of \u201cChineseness\u201d.", + "title": "Chinese Music, Language and Literature (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores Asian cinema from its beginning to the introduction of talkies in the 1930s. The advent of cinema in Asia transformed entertainment across the continent and provided a novel means of popular expression. As a medium, cinema is closely tied to modernity and helps us understand how different societies and cultures in Asia responded to the modern transformation and how they appropriated it for their own ends. The module focuses on China, Japan, and India, three regions that developed a vibrant film culture and whose films have survived to the present day.", + "title": "Asian Cinema: The Silent Era", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the role which nationalism has played in the formation and political development of the nations and states of South Asia. It examines nationalist forces in anti-colonial struggles, in post-colonial state formation and in contemporary political developments. It will be of relevance to students with an interest in political developments in Asia, with particular reference to forms of nationalism and nation-building", + "title": "Nations & Nationalism in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1008", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bollywood cinema is an iconic aspect of Indian popular culture and a striking manifestation of India\u2019s global \u2018soft power.\u2019 This module aims to interrogate core concepts in the humanities and social sciences through the lens of India\u2019s most powerful film industry. Through an exploration of selected films, students will think critically and creatively about key cultural, social and political themes originating in the subcontinent. They will analyze important developments in India and the diaspora through the study of Bollywood cinema. The course will thus facilitate a nuanced understanding of the relationship between text and context, with a focus on Bollywood.", + "title": "Framing Bollywood: Unpacking The Magic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1009", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 72, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 54, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How do ideas about big beasts and the wild inform our socio\u2010cultural worldview? In other words, what is a \u201ctiger\u201d when it is not just a zoo animal but one that lives in a forest next to your home? In this introductory and interdisciplinary course to conservation and the environment, we will watch films and discuss novels and ethnographies focusing on human/animal relations in six different spheres: Mountains, Deserts, Rivers, Plains, Forests, and Sea. The course aims to be an informative, provocative and fun introduction to an exciting and relatively new field of scholarship.", + "title": "Beasts, People and Wild Environments in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Piracy, understood broadly as violence or crime at sea, is a present day phenomenon and yet one which has a history spanning centuries and across all the oceans of the world. From pirates to privateers, corsairs to raiders, maritime predators take various names and forms. This module explores the history of pirates and piracy. By examining case studies from the 1400s onwards and by placing pirates into the context of oceanic history and maritime studies, students will be able to demystify the popular images often associated with pirates.", + "title": "Pirates, Oceans and the Maritime World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module challenges the foundation of human knowledge. Examining cultural icons from Japan's past and present we will unpack the assumptions, stereotypes, narrative strategies, and visualizing techniques of representing Japan. Students will probe one or more of Japan's three famous cultural icons - the samurai, the geisha, and/or the yakuza - as they appear in literature, visual and performance arts, and academic writings. By the end of the module students will not only have a richer understanding of the 'realities' behind such icons, but more significantly, they will be equipped to challenge stereotypes of Japan presented by journalism, popular culture, and the humanistic and social sciences. Ultimately such discovery will lead students to question their own knowledge of self and other. Students should refer to the module IVLE page for details of the selected icon(s) for the current semester.", + "title": "Samurai, Geisha, Yakuza as Self or Other", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1014", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Humans have always actively borrowed from other cultures. Such borrowing is a creative process which influences aspects of life ranging from basic material\nneeds to aesthetic appreciation. Often, however, cultural borrowing is labelled as simple imitation. This results in cultural stereotypes that impede understanding of other cultures. Using Chinese and Japanese cultural borrowings as illustration, this module teaches second and third year students to analyze the creative process of cultural exchange. By developing theoretical perspectives from the study of China and Japan, students will learn about exchanges among culture in general.", + "title": "Cultural Borrowing: Japan and China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1015", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Consumption has come to dominate our lives, is driving economies, yet also endangering the future of our planet. This module asks questions about consumption from multiple perspectives, such as how did consumption assume its prominent place, how do economists rationalise consumption, how do companies use behavioural models to craft marketing strategies, whether consumption is good or bad for society or the individual, or whether consumers need to be protected. Participants in this module will explore how different disciplines approach such questions and will have the opportunity to reflect on their own consumption practices and impact on the social and physical environment.", + "title": "Understanding Consumption", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1016", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Why computers are so ubiquitous nowadays? What rule the computer is playing in scientific query and discovery? What was it like before the age of digital electronic computer? This module brings us back to antiquity from ruler and compass, abacus, mechanical calculator and all the way to modern electronic digital computer. It is intriguing to see the methods of computations in ancient Babylonian, Greek and Roman times, and in Chinese and Arabic cultures. For the modern digital era, we discuss how computer does calculations, how the instructions or algorithm are given to computer, and why the binary number system is used. Finally, we speculate the role quantum computer will play in the future.", + "title": "Computation & Machine: Ancient to Modern", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Nowadays it is all too easy to take basic science laws and theories, such as Newtons law of gravitational attraction or evolution for granted. The impact of research breakthroughs on society at the time of their development is being forgotten, as they come to be taken for granted. Even Science students tend to be unaware of how modern concepts have arisen, what their impact was at the time and how they changed the world. This course is intended to explain the history and significance of scientific developments on societies and how perceptions of the world have changed as a result.", + "title": "A Brief History of Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1018", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the current thinking and information as regards the importance of diet and health. It will explore traditional and more modem views on what constitute an adequate and healthy diet. The composition of food along with potential contaminants of food will be examined and how an individual needs to consider their diet in relation to specific needs. The aim will be to educate the students on the need for and the composition of a healthy diet and how to obtain this and remain healthy during the important years of development in early adulthood. There is now much more emphasis on the role of food in preventative medicine and how a well balanced diet can keep one fit and healthy. It is necessary to be aware of the composition of various foods and how different methods of processing and cooking may affect the compositional quality of the product.", + "title": "Food & Health", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "GE 1022 K (GEOPOLITICS) is an exciting introduction to the world of practical, formal and popular geopolitics via numerous case studies and multi-media presentations. The basic aim is that each of you will become familiar with the world political map and the relevance of geopolitics as ways of understanding and seeing our world. The Geopolitics module provides an engaging way to integrate aspects of modern history with political geography, for instance through the analysis of nationalisms and territorial disputes (in different parts of the world); through the study of the Cold War in relation to changing political landscapes in Southeast Asia; and through more contemporary understandings of the global geopolitics associated with the so-called War on Terror; and global issues of ecological security and environmental geopolitics.", + "title": "Geopolitics:Geographies of War & Peace", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1022", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Friday", + "lessonType": "Tutorial", + "size": 0, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Studies on cinema offer an important perspective for understanding human cultures. This course explores Chinese-language film history from the 1930s to the present through examining some key genres of films made by major filmmakers from China, Hong Kong, Singapore and Taiwan, including opera, musical, action and youth films. Special attention will be paid to the socio-cultural condition of their production, distribution, exhibition and consumption, as well as larger regional cultural connections of these four places. The course will be taught in English.", + "title": "Exploring Chinese Cinema: Shanghai\u2010Hong Kong\u2010Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1023", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Asia has become part and parcel of world politics since the 19th century. This module examines how a wide range of ideas and ideologies borne in Europe have shaped the norms, practices and institutions of Asia\u2019s politics and international relations. It explores the resilient nature of local norms and culture in the changing dynamics of international relations, particularly in the age of globalization. After this course, students will appreciate the historical background to contemporary developments and have acquired a solid basis of rationality in understanding international relations of Asia and in general.", + "title": "International Relations of Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1024", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Monday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "GEK1522 is an interdisciplinary module that brings together perspectives from different disciplines to provide deep insights into known and emerging global environmental issues and to develop polcies for achieving environmental, economic and social sustainability in a holistic manner. Given the scope of the module and its educational outcomes, the module draws students from diverse disciplines within NUS including \"Law\", \"Business\" and \"Computing\", etc. The key strength of the module is its diversity in terms of disciplinary composition. To take advantage of this diversity, the module promotes \"collaborative learning\" through peer teaching & learning by dividing the large class (120 to 130 students) into multi-disciplinary teams of 5 students. The instructor assigns reading materials to individual teams on broad topics that cut across human society and culture.", + "title": "Global Environmental Issues", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "GEH1025T is an interdisciplinary module that brings together perspectives from different disciplines to provide deep insights into known and emerging global environmental issues and to develop polcies for achieving environmental, economic and social sustainability in a holistic manner. Given the scope of the module and its educational outcomes, the module draws students from diverse disciplines within NUS including \"Law\", \"Business\" and \"Computing\", etc. The key strength of the module is its diversity in terms of disciplinary composition. To take advantage of this diversity, the module promotes \"collaborative learning\" through peer teaching & learning by dividing the large class into multi-disciplinary", + "title": "Global Environmental Issues", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1025T", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-08T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to impart an appreciation of the use of drugs in relation to the cultural and social environment of societies past and present. How drugs are employed today, watershed \"drug\" discoveries and their impact on society (for example contraceptives, antibiotics, vaccines, psychopharmacological agents), the issue of drug use in sports, \"social\" drugs and the \"pill for every ill\" syndrome will be discussed. Particular attention will be paid to \u201ccontroversial\u201d drug-related societal issues within each topic. For example, the role of pharmaceutical industry will be examined to determine if the tendency to \u201cbash\u201d big Pharma is justified or if decriminalization of drug use will be a more effective means of curtailing drug abuse. One of the components in this module requires students to objectively evaluate such issues and articulate their stand in an audio-visual presentation.", + "title": "Drugs and Society", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1026", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Einstein's Ideas of our Universe and his Quantum contributions has greatly impacted the human societies. Students will also be enthused with the historical and philosophical development of Relativity and Quantum Theories. Einstein's relativistic thinking eventually leads to the creation of navigational systems that are used in transportation and communication, both by the military as well as hand phone consumers. The construction of nuclear plants is made possible by the relativistic results of mass and energy conversion. Einstein's Photoelectric discoveries also pave the way for modern cameras in the ubiquitous mobile devices. The quest for new quantum particles at the colliders by huge collaborations among many countries gave birth to the World Wide Web and the internet Culture.", + "title": "Einstein's Universe & Quantum Weirdness", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will acquaint students with the rapid development of the nanoworld with insights into the impact of this emerging technology on our society, environment and human life. The essence of nanoscience and technology lies in the understanding and manipulation of molecules. The advances in these fields are expected to significantly influence our lives in the spheres of medical, engineering, ethical and environmental issues. This module will discuss the potential benefits and challenges of novel nanotechnologies. How does nanotechnology affect society and human interaction? How will nanodevices and nanomaterials change our lives in the future?", + "title": "The Emerging Nanoworld", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1028", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Human society is facing major challenges in meeting the requirements of a technological age. Internet is ubiquitous and so are a variety of devices, all of which are based on utilizing the semi-conductor. Another pervasive technology is that of GPS. The module will focus on de-mystifying these technologies and show how the principles of science are indispensable in the functioning of these technologies. For example, the semi-conductor will be shown to be the result of quantum mechanics. Nuclear energy, with emphasis on fusion as possible source of clean energy, and GPS will be shown to an application of the theory of relativity.", + "title": "Great Ideas in Contemporary Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1029", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to establish clear relationships between the basic elements of music found in virtually all musical cultures and their underlying scientific and mathematical principles. Musical scales which are the foundation of western musical culture as well as many other musical cultures will be discussed, with their evolution viewed from both western and non-western perspectives. The scientific and technical basis for the development of musical instruments of different musical cultures such as the piano, as well as their acoustical characteristics, will be examined. The module also looks at contemporary technologies in music such as digitization which has profoundly affected how the music of virtually all musical cultures is propagated.", + "title": "Science of Music", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first part of the module covers the observations of celestial objects and their influences on the ancient cultures. Students will learn how calendars and astrology were developed, and how the fundamental laws of nature were discovered. The second part covers the use of telescopes and space missions to explore the universe. Discoveries of stars and galaxies and their impact on mankind's perceptions of the Universe will be explored. Students will learn how Earth formed as a planet that develops and sustains life. There will be a discussion on the latest developments in searching for Earth-like extraterrestrial objects, and explore their impacts on the societies.", + "title": "Understanding the Universe", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The human race has entered an epoch where life span has increased significantly. During the twentieth century, life span has increased from around 50 to over 75 years mainly due to antibiotics, vaccinations, and improved nutrition. However this increase in lifespan has brought to the forefront a rise in many age-related diseases. These diseases, which include cancer, heart disease, Alzheimer\u2019s disease, Parkinson\u2019s disease, are now a focus of health care in the 21st century. This course describes many of these diseases, and their diagnosis and treatment using advanced technology found in modern hospitals. The course also provides an insight into the scientific principles underlying these new and powerful technologies.", + "title": "Modern Technology in Medicine and Health", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1032", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "About three-quarters of the surface of our home, the Earth, is covered by an ocean of water! The ocean is inseparably intertwined with human settlements. Day in, day out, directly, indirectly - from the air that we breathe to climate change, trade, politics or social holidays - the presence and the influence of the ocean is undeniable on the human society. We will discuss how the ocean is connected to our lives, how the various ocean phenomena affect our lives and our attempts at controlling and exploiting the ocean. Students will gain an appreciation of the scientific principles involved. This course will also help us make educated decisions about our environment and our ocean, so that future generations may also enjoy the majesty of our blue planet, as we do now.", + "title": "How the Ocean Works", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modern civilization, which on the one hand boasts of having discovered the behaviour of subatomic particles, has also to its credit the impending intensified energy crisis and global warming. The urgent need to address these challenges has now become obvious. The course will acquaint students with the role of scientific development towards understanding the current global energy crisis and global warming. Emphasis will be given on how scientific progress has helped us in understanding the principle and development of various clean energy and storage technologies, their potential and applicability in present day scenarios and in shaping future energy systems.", + "title": "Clean Energy and Storage", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1034", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 5, + 6, + 6, + 7, + 7, + 8, + 8, + 9, + 9, + 10, + 10, + 11, + 11, + 12, + 12, + 13, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 5, + 6, + 6, + 7, + 7, + 8, + 8, + 9, + 9, + 10, + 10, + 11, + 11, + 12, + 12, + 13, + 13 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module demonstrates the application of physical science to everyday situations besides to excite the curiosity and imagination of the students and bring out their awareness of the many marvels that surround them. Students will develope a deeper knowledge and a greater appreciation towards apparently mundane events of their daily life. Everyday phenomenon relate to physical concepts will be discussed in the context to real-world topics, societal issues, and modern technology, underscoring the relevance of science and how it relates to our day-to-day lives. During the module, students will select and discuss their own apparently mundane event and present their topic accordingly.", + "title": "Phy'cal Qns from Everyday Life", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to exhibit some simple mathematical ideas that permeate a modern society and to show how a reasonably numerate person can use these ideas in everyday life and, in the process, gain an appreciation of the beauty and power of mathematical ideas. For example, we will learn some counting methods that can be applied to the enumeration of bus routes in a model of a grid system of roads in a city. We will also investigate some basic properties of graphs, which are mathematical structures used to model relationships between people in social networks, groups, organizations, computers, URLs etc. Transmission of digital information and signals is now an integral part of modern society. We will look at questions like: How do we encode information so that certain errors in transmission can be detected, or even corrected? How do we check that a given sequence of numbers is a proper International Standard Book Number (ISBN)? How do we encrypt sensitive information like credit card numbers using properties of prime numbers? Finally, we will examine some basic ideas in probability which are often at the basis for making decisions and judgement in the real world with random outcomes and measurements.", + "title": "Living with Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1036", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An interdisciplinary examination of the arts in western recreational practices and religious, political, and social rituals. Areas of study such as storytelling, theatre, reading, festivals, weddings, concerts, coronations, dancing, hymn singing, and so forth will comprise the course. Critical comparison of past and present cultures is integral to the course. Common homework assignments - including readings and audio and video files - form the basis of class discussion and written exercises; this is not a lecture-based course.", + "title": "The Art of Rituals and Recreation", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1039", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module engages students to think and express themselves through the production process of a musical. By introducing the various aspects of mounting a musical production, it empowers the students to transmit this understanding into an actual display of intrinsic ideas. The module will be executed through classroom seminars and an experiential component culminating in the form of a micro-musical. The content coverage embodies a survey and appreciation of Singapore musicals; and to expound on the hardware and software requirements in mounting a musical. This include individual elements like acting, singing, writing, composing, music-making and dancing which are interwoven in the creation of this art form; as well as the financial and budget planning, safety measures and basic aspects of stage management.", + "title": "Exploration in Musical Production", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1040", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module was designed as a foundation to a community service project in ASEAN. Weekly topics will provide students with an overview of history and contemporary society with a focus on the intersections between the capitalist globalization and development and some of the major consequences on poverty, inequality, migration and social change in selected ASEAN countries. The module also introduces students to debates around service learning and questions of development assistance/community service and \"volunteer tourism\" in a globalizing age. Lastly, the module provides a four week training workshop led by CELC experts where via break-out groups, students will learn hands-on simulations of proposal writing and oral presentation to potential funding agencies.", + "title": "Engaging the natural environment in ASEAN", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1041", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module shall examine the scientific definition for life, its origins on this planet, and the possibility of finding it elsewhere in our solar system and beyond. It will develop fundamental concepts by drawing elementary knowledge from diverse fields of natural sciences such as Biology, Geology and Astronomy. It would give students an idea of how scientists work and think. The scientific contents of the module shall be speckled with historical, social and philosophical ponderings. The module shall put forward the message that there exist some profoundly important pursuits for us humans, both as a species and as a civilization", + "title": "The Search for Life on Other Worlds", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1042", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary aim of the module is to introduce students to the nature of infectious diseases and their impact on human activities. At the end of the module, students will be able to understand the interactions between microorganisms and human, and the position and role of human in the living world.", + "title": "Microbes which Changed Human History", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1043", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Friday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module proposes to examine the processes of globalization and seeks to provide a deeper understanding of it. The world is globalizing both culturally and economically. We need to ask whether this process is creating a single world without borders or intensifying cultural differences between societies. By discussing various trends of the interdependent world, the course helps us in understanding the various processes of globalization. Since the processes of globalization involve societal, cultural, technological, political, and economic processes, we will take an inter-disciplinary framework in understanding this diverse experience. The course will specifically highlight the problems and prospects of the contemporary world", + "title": "Understanding Globalisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1044", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introductory survey of major religious traditions of the world, with specific Page 12 of 141 focus on Hinduism, Buddhism, Confucianism, Daoism, Judaism, Christianity, and Islam. We will examine the historical development of each tradition, along with its sacred texts, basic philosophical ideas, patterns of ritual and worship, and specialized institutions Our goal is to provide an objective understanding of each faith tradition on its own terms, and secondarily, to explore how religion is relevant to contemporary social, political and cultural issues. This is an introductory course which presumes no prior expertise in religious studies.", + "title": "World Religions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1045", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 204, + "covidZone": "Unknown" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "E4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a cross-cultural introduction to music both as an art and as a human, socio-cultural phenomenon. Through lectures, reading and listening assignments, and actually playing different styles of music, students will learn how music works, why people listen to and make music, what its roles are in a society, and how these things vary in different cultures. The module introduces a variety of musical styles and cultures that represent an enormous wealth of human experience. At the end of the course the students will have access to a much wider variety of music to listen to, participate in, enjoy, and understand.", + "title": "Social and Cultural Studies through Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1047", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How have artists driven technological development, and to what extent does technology shape artistic developments? This course explores the origins of art and technology from small metal workings and glass beads long before their use in military and agriculture, to animation shorts and how they are used to utilize the latest computer hardware and software development to make the latest animation blockbusters. We will also explore how the relationship with technology and arts changes the human relationship with the arts, such as art reproductions, and how technological advances in the arts alters our relationship with each other, like the advent of headphones and the Sony Walkman. Common homework assignments, including scholarly readings and audio and video files, form the foundation for course work and class discussions.", + "title": "Technology and Artistic Innovators", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1048", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From the global increase in obesity to SARS, a range of health issues and solutions will be explored in differing contexts throughout the world. Working in small groups, students debate and evaluate paths to addressing global health issues in a variety of cultural contexts. For example, lessons learned about tuberculosis in Russia may be applied to the Singaporean context, or students may examine efforts to prevent newborn deaths in developing nations. Students will develop an appreciation of how the health of an entire population impacts individuals and how complex problems can be prevented or addressed using culturally appropriate solutions.", + "title": "Public Health in Action", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1049", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How are human beings and plants interdependent? How did plants shape the planet Earth to one that is suitable for life as we know it? Such topics will be examined to deepen our appreciation of the roles played by plants in the progress of civilizations and cultures from both historic perspective and continuing impact on society. The discussion topics, written and oral presentations will include plants as sources of food, clothing, shelter, medicine. There will be talks by guests from local industry, along with team projects by students to enrich their awareness of the deep coexistence of plants and society.", + "title": "Plants and Society", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1050", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will learn the basic concepts of narrative. It will expose them to narrative as a basic idea that runs through their lives, and which has its most sophisticated manifestations in literature and cinema. While the analysis of literary and cinematic texts will play an important part in the module, students should also develop an awareness of how narrative is used in everyday discourse, and how it shapes their response to reality.", + "title": "Narrative", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1051", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With special reference to Singapore, this module examines English \u2013 especially its standard form - as the leading global linguistic and cultural resource for intra- and inter-cultural communication. Students use a variety of tools to analyse language in terms of phonetics, lexis, grammar, and meaning in context. We ask questions such as the following: (1) Why does the idea of \u2018standard language\u2019 appeal to human cultures?; (2) What does \u2018standard English\u2019 comprise?; (3) What happens to the shape of English when local culture is blended in? (4) Are \u2018native speakers\u2019 really native?; (5) Does 'Standard Singapore English' exist?", + "title": "Standard English Across Cultures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1052", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Can movies engage with serious concerns? Through the close study of films by great directors, this module explores how film as an artistic medium can be used to engage with significant socio-cultural and existential concerns. Students will be taught how to analyze film as an artistic medium and, further, how film directors use the aesthetic elements of film to engage with important subjects. Through films by directors like Stanley Kubrick, Orson Welles, Wong Kar-Wai and Zhang Yimou, students get a chance to reflect on issues like the human condition, the family, the urban condition, love and society, and the nation.", + "title": "Film Art and Human Concerns", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1053", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on names as a means of marking out the socio-cultural identity of the named and of the namer. Attention will be paid to anthroponyms (personal names), toponyms (place names) and commercial names. This module will be interdisciplinary in nature and will combine a range of approaches to names. Linguistic and philosophical approaches will provide the theoretical anchor to the topic of names. Subsequent seminars will contextualise names in their historical, geographical, political and literary contexts. There will be scope for students to develop the module in the direction of their interests in the mini project.", + "title": "Names as Markers of Socio-cultural Identity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1054", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cinematic and literary expression centred on religious topics can be studied to see how the vitality of cultural expression and power of the religious imagination interrelate. No prior training in artistic interpretation or religious history is required, though the module presumes a curiosity about religion and culture. It trains students to think about why people sometimes enjoy seeing films about painful topics. It clarifies the difference between \u201cstudying\u201d and \u201cpractising\u201d religion, and it teaches students to discuss controversial topics with tact.", + "title": "Religion and Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1055", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This GE module introduces the diversity of human cultural experience in the contemporary world. It offers an anthropological lens for understanding cultural diversity with concrete cases. We will read articles and analyse ethnographic films on kula exchange, cannibalism, oracle, feud, animism, sacrifice, initiation, incest, spirit-possession, statelessness, potlatch, genocide, and so on, found in Melanesia, Amazonia, sub-Sahara, Siberia, Zomia, South Asia, and Southeast Asia. We will gain a sensitivity toward stereotypes and ethnocentrism, understand the connections and processes that shape social life at different levels, and learn the skills to appreciate and analyse differences in the changing world.", + "title": "Cultural Diversity in the Contemporary World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1056", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module addresses the key roles of enabling materials in driving the sweeping changes of human history and the rapid development of civilization, technology and society. This module will examine, from the Stone Age to the 21st century, how the different types of enabling materials were discovered, became available to the general people, completely transformed their lives, and consequently shaped the entire course of our civilization. This module will also highlight the latest advances in materials, their uses in our daily lives and future sustainable development, such as IT, iPhones, Boeing 787, Airbus A380, energy-saving buildings and smart transport.", + "title": "Materials: The Enabling Substance of Civilization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1057", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "While many of us spend much of our lives glued to small computer screens, theatrical productions continue to bring people together for shared experiences. What are the attractions of theatre, what makes it distinct, and how can it enrich our understanding of human society? This module, which requires no prior knowledge of theatre, starts with the spectator\u2019s experience and works outwards. We learn how to analyse theatre\u2019s styles and effects. We explore how human societies use theatre to confront questions and express beliefs, hopes, and anxieties. We examine how cultures influence each other through theatre, and how theatre provokes change.", + "title": "The Theatre Experience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1058", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The nuclear age dawned in 1945. Since then, the world has been profoundly shaped by the implications of nuclear fission. From science and engineering to war and peace, from design and popular culture to health and safety, exposure to the nuclear condition has shaped the lives of millions of people worldwide. This module offers a sweeping panorama of the nuclear world over the last century, from early scientific experiments to the recent Fukushima accident, with stops along the way in Japan, the Bikini atoll, North Korea, India, Israel, France, Ukraine, and the United States.", + "title": "Living in the Nuclear World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1059", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An interdisciplinary study of how societies and different generations responded to the invention of the piano. This module focuses on the social history of the piano throughout the past three centuries, canvassing a wide array of performers, composers, supporters, manufacturers, \u201cheroes\u201d, politicians, teachers and students. Various expressions of ideologies from differing periods eventually revolutionized and efffectuated the versatility of the piano, shaping a legacy which led to the \u201cglobalization\u201d of the piano, including China. Students will learn through lectures, readings, discussions, listening, playing, and attending piano recitals and masterclasses.", + "title": "Social History of the Piano", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1060", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the basic concepts in representations of gender, politics, celebrities and culture, and otherness. Concepts that will be examining in this module include representation, structuralism, and feminism. The module will examine and analyse the basic idea of representation, celebrity and culture, gender, politics and otherness; and how media portray them.", + "title": "Representation and Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1061", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "W1", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 38, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ghosts and spirits have been subjects of perennial interest in different human societies. At the same time, beliefs about persons with powers to initiate injury or good, and their relationship with spirits are found in almost all cultures throughout human history. This module introduces students to the scholarly study of ghosts and spirits, and the specialists and practitioners involved with these forces. These include shamanism, spirit possession, witchcraft and sorcery, and other supernatural entities such as zombies, vampires and werewolves, and how these intersect with issues of class, gender, sexuality, ethnicity, citizenship, popular culture, modernity and social change.", + "title": "Ghosts and Spirits in Society and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1062", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the contemporary society, sports are closely linked to larger issues such as health, fitness, physical appearance, money, politics, and cultural values. This module draws on physical, psychological and sociocultural knowledge and complements it with required practical and experiential learning to provide students with a grounded appreciation of sports and related issues. The module discusses basic principles in sports physiology and nutrition for the promotion of physical and mental resilience/well-being. It also seeks to address issues related to the development of sporting culture and policies in Singapore.\n\nIn addition, the module provides an evidence-based platform for the evaluation of contemporary sporting technology and aids, encouraging critical analysis and differentiation of commercially-driven gimmicks from truly efficacious sporting products. Finally, this module provides experiential learning opportunities on concepts and skillsets pertaining to exercise prescription for health and performance, ie. be prepared to sweat it out during the practical classes!", + "title": "Understanding Body, Mind and Culture through Sport", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1063", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An interdiscisplinary study of the arts, ideas and values in different societies and the extent to which these spread from one society to another. We will explore why and how the arts germinate, proliferate, evolve, hibernate, revive, and die. But, how far must art grow to be called a movement? Primary emphasis is on western art and its intersections with other societies, including\nwest influencing east and east influencing the west, particularly in the musical and visual arts. The movements and \u2013isms students study will vary each time the course is taught.", + "title": "Art Movements and -isms", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1066", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the social and cultural significance of superhero entertainments. Particular attention is paid to the origins of superheroes in comic books and the manner in which the major two companies, DC and Marvel, positioned those heroes in blockbuster movies commencing with Superman in 1978. The module traces the antecedents of comic book\nsuperheroes, discuss their various incarnations in other media forms like radio and television, and culminates in a discussion of the wave of recent superhero films. The module will also cover some of the strategies companies have adopted in licensing and marketing their superheroes.", + "title": "Superhero Entertainments", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1067", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Oceans cover most of the globe. Yet once we venture from the shore, our understanding of the marine environment is necessarily mediated by technology, from the plumb line used by sailors for millennia to measure the water\u2019s depth, to the latest satellite imaging tracking ocean currents in real time. This module examines how different \u201cmachines,\u201d or technologies have produced understandings of the ocean across history, and places these technologies in their social, cultural, economic, and political contexts. The result is to reveal the complex and evolving interconnections that link technology, and society and our understanding of the natural world.", + "title": "The Life Aquatic: Machines and the Making of the Ocean", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1068", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a thematic introduction to the major religious, traditional and decorative arts of Asia. Through a study of important architectural monuments, key works of art, materials and processes, students will explore the shared cultures, aesthetics and artistic achievements of India, China and Southeast Asia and how the visual arts of Asia were shaped by religious, imperial, political, economic, and social climates from its early civilizations to the modern era.", + "title": "Art in Asia: Through Media, Style, Space and Time", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1069", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module offers the opportunity to explore traditional Chinese medicine through a survey of Chinese medical culture in its dynamic formation and transformation. The first half of the module gives students a historical overview of Chinese medicine\u2014 shaped by philosophy, natural science, religion, while influenced by political and social forces for 2,000 years. The second half allows students to study the theoretical foundation and practical aspects of Chinese medicine, which is opened to influence from western medicine and impact from modernity. Students will examine the globalisation of Chinese medicine, focusing on transregional connections and cultural negotiations with the world.", + "title": "Chinese Medicine: Theory and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1070", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 315, + "covidZone": "Unknown" + }, + { + "classNo": "D11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to the world of culture through specific examples. It examines the ways in which the cultural sphere produces value and significance for humans in society. It introduces students to different approaches to understanding culture, and explores the influence of the cultural sphere on both political and personal relations. Students will examine questions about communication, broadcasting, media technology, architecture, and cyberspace. The module also examines the ways in which culture is produced, disseminated, and consumed, i.e., through specific communities and contexts, and through types of popular culture, including film, television, popular fiction, performance, music, and digital culture.", + "title": "Culture in Action", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1072", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the aesthetics, forms and genres, major themes, representative poets and evolution of Chinese poetry over a span of 3,000 years. It examines the historical background, rationales and linguistic concerns behind the poetic forms, rules and regulations. It reviews how Chinese poets applied metaphors, allusions and imagery to convey their sophisticated feelings, how they considered the relationship between state, society, nature, arts and themselves. It also studies how modern poets, including those from Singapore and North America, used traditional (as well as vernacular) forms to voice their opinions about contemporary socio-political issues.", + "title": "The Art of Chinese Poetry: Past and Present", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1073", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to highlight how luck has influenced and still\ninfluences several aspects of the world we live in. From the\nbeginning of the universe, to our present-day lives, to the end\nof the universe, random events beyond anyone\u2019s control\ncontinue to shape our fate. By exploring the various fields that\nluck manifests itself in, the module ultimately delves into the\nintriguingly precarious nature of existence.", + "title": "Luck", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1074", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "W01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "W08", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Sharing Economy (a.k.a. Collaborative Consumption or Peer Economy), describes the development of new business models or platforms, through the coordinated exchanges between individuals, that disrupt traditional markets by redefining industry categories, lowering transaction costs, and maximizing the use of scarce resources. We will explore how sharing economy platforms transform the way we live: how we consume, how we work, and how we trust. Finally, we evaluate the policy responses of governments, to mitigate potential threats to our social compact as a result.", + "title": "Life, Disrupted: The Sharing Revolution", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1075", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Football is found in one form or another in almost every part of the modern world. \u201cWorlds of Football\u201d takes the ubiquity and diversity of football as an entry point for critical examination of issues of geography and human culture at a range of scales \u2013 from the most intensely local and embodied, to globe-spanning networks. The module uses football as a window into: contextual and environmental variegation in human practices; worldly cultural politics (along lines of age, (dis)ability, class, gender, and race, among others); and processes through which everyday lifeworlds are bound up with distant and not-so-distant people and places.", + "title": "Worlds of Football", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1076", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "DO4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "DO3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "Unknown" + }, + { + "classNo": "DO2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "DO7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "DO6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "More people live in cities now than in any other point in history: how does this change human culture and civilisations? Cities tell a story of our world; they are a testament to humankind\u2019s ability to reshape the environment in lasting ways. They reveal how we interact with the environment and with each other. Cities are created in many forms and for many reasons ranging from defense, religion and economic activity. Through case studies this module examines urban history, lived experiences and how city life has changed over time.", + "title": "Metropolis: The City in World History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1077", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 96, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 104, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Across time and space people have been fascinated with legends of heroes, particularly those that enshrine the essential values of human culture of a given society. This module, adopting a comparative approach, introduces salient features of Chinese culture\u2014norms like filial piety, loyalty, patriotism, and great unity\u2014through a dozen selected hero and hero-making stories across time within China. In examining these stories, this module also analyzes key themes of identity, sexuality, and ethnicity that have configured distinctive characteristics of Chinese heroes.", + "title": "Heroes of China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1078", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to analyse why killing \u2018unarmed civilians\u2019 has been so commonplace in war, across time and space. Why were defenceless unarmed people killed by armed forces? The word now used to define this theme is \u2018non-combatant.\u2019 But neither word nor concept is primordial, or was universal. The notion that some types of people should not be targets for military operations did not spring from our consciousness, or from any abstract sense of ethics or morality. It evolved historically, and not in any straight line. This course will ask the direct questions: how, why and to what ends?", + "title": "Whatever it takes? Making War on Civilians", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEH1079", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Computational thinking is increasingly being recognised as a fundamental problem solving method for everyone. Computational thinking involves problem formulation, solution development, and solution analysis, with a focus on computation and computational tools. This module emphasises the computational thinking thought process and the communication of the process and the solutions, rather than implementation of the solution on a computer. Students learn to apply computational thinking to solve problems and discover new questions that can be explored within and across disciplines. Students are assumed to already possess elementary critical thinking and logical thinking aptitudes, which are practised in this module.", + "title": "Computational Thinking", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEI1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "G09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through a series of fun and engaging hands-on activities, this module aims to equip students with the ability to thoughtfully apply computational tools when solving complex real-world problems. In particular, this module aims to impart students with the ability to critically self-evaluate the way they apply these tools, and thus be able to reason effectively in a variety of contexts. They will learn to identify problems and design solutions, while also developing a critical awareness of the merits and limits of their methods, thereby empowering them to make better-informed decisions and to articulate the reasons for those decisions.", + "title": "Computational Reasoning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEI1001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital technologies expand the frontiers of the humanities through interactive publishing, machine-driven analysis, media-rich platforms, online archives and crowd-sourced databases. This module invites students from across the university to consider these new approaches through a problem-based approach. In each session, the students will learn to use and critically evaluate digital approaches. Reflecting the multiple perspectives within the digital humanities, teaching combines seminar discussions with computational thinking projects that require the students to pose humanities questions in terms of data.", + "title": "Computers and the Humanities", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEI1002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "UTSRC-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "UTSRC-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Human beings are 'tale-telling animals'. We all tell stories, and we all listen to them, read them and watch them. This module looks at the ways in which people tell stories, the kinds of stories they tell, and the meanings those stories generate. It focuses, in particular, upon the telling, and gives special attention to questions concerned with that. Texts include a novel, a play, films, short stories, poems and oral tales.", + "title": "An Introduction to Literary Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces contemporary issues shaping our world and the geographical perspectives needed to understand them. Starting with \u2018how geographers view the world\u2019, the module offers a lens to analyse issues like climate change, urban flooding, human\u2010environment relations, challenges of migration, cultural diffusion, economic integration and so forth. Each lecture will touch on contemporary scenarios and geographical analyses of issues. Students will also be exposed to field work techniques and strategies of project management in group discussions and project assignments. The goal is to develop students with strong \u2018geographical imaginations\u2019 better able to understand the world and all its complexities.", + "title": "Geographical Journeys: Exploring World Environments", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to the subject of Japanese studies from a multi-disciplinary approach. It has three main components. The first component is humanities, covering art, philosophy, history and literature. The second component is social sciences, which includes sociology,anthropology, politics and economics. The third component is linguistics and language development. Students will learn about the methods and theories the various disciplines contribute to the study of Japan. Audio-visual materials, fieldwork, guest lectures, study tours, projects and debates will supplement lecture and tutorials.", + "title": "Introduction to Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is to impart a preliminary overview of political science and its sub-fields so that students have a basic orientation of the discipline. It briefly explains the scope and components of each of the four sub-fields (political theory, comparative politics, international relations and public administration) and familiarises students with the major issues and arguments related to power, justice, political culture, national identity, accountability, ethics and world order. It also focuses on key political institutions. The module will be of interest to students across the university who want to gain a basic understanding of politics.", + "title": "Introduction to Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This GE module introduces the diversity of human cultural experience in the contemporary world. It offers an anthropological lens for understanding cultural diversity with concrete cases. We will read articles and analyse ethnographic films on kula exchange, cannibalism, oracle, feud, animism, sacrifice, initiation, incest, spirit-possession, statelessness, potlatch, genocide, and so on, found in Melanesia, Amazonia, sub-Sahara, Siberia, Zomia, South Asia, and Southeast Asia. We will gain a sensitivity toward stereotypes and ethnocentrism, understand the connections and processes that shape social life at different levels, and learn the skills to appreciate and analyse differences in the changing world.", + "title": "Cultural Diversity in the Contemporary World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to provide a general understanding of traditional China by focusing on two important aspects of its civilization: history and literature. In the first half of the module, students will be introduced to some significant Chinese customs and wisdom while the second half will focus on Chinese literature. In so doing, we offer students an overview of what formed the cornerstone of the civilization of traditional China. This module is taught in English.", + "title": "Chinese Heritage: History and Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia is many things. Its past includes dinosaurs, ancient kingdoms and devastating wars, while its future is still being shaped. SE1101E explores this fascinating region in all its diversity historical, cultural, economic, aesthetic, political, religious, gendered, environmental, and more. The module focuses on human experiences in Southeast Asia and how Southeast Asians engage with global processes. Lectures cover topics that move between the region\u2019s murky past to the cyber spaces of a seemingly borderless future. It provides both an insightful introduction to the region and a foundation for future studies.", + "title": "The Lands Below the Winds: Southeast Asia in the World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This introductory overview of linguistics aims at equipping students with a solid foundation in the object, methods and goals of the science of spoken language, the prime tool of human communication. Through a principled analysis of patterns of sound, form and meaning at the levels of word, sentence and text, students will gain insight into what it means to say that language is a rule-governed system and an organic whole. The results of this exploration will be useful to those interested in the relationship between language and mind, society and culture.", + "title": "The Nature of Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module challenges students to examine current and emerging social issues in Singapore that affect family and community well-being. Due to complex social and technological changes that societies are experiencing, people are forced to adapt rapidly, often with negative consequences in many instances. The social issues that arise as a result need to be understood and addressed by individuals, families, communities and society at large. Students will learn to appreciate the implications of these issues for individual and collective action.", + "title": "Contemporary Social Issues in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module highlights the major economic problems characterising the developing countries, with focus on Southeast Asia and East Asia. Cross-thematic development problems and policy responses are analysed in a non-technical fashion with appropriate policy illustrations. The module also examines the impact of globalization and the ongoing technological disruptions on developing countries and the need for them to remain prepared to gain maximum out of these technologies. Upon module completion, students should have up-to-date knowledge about the Asian development experiences and their leading role in the global economy. They will also get ring-side view of the Singapore development experiences.", + "title": "Economic Issues in the Developing World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the dazzling diversity of crime fiction and film, with a dedicated focus on the linkages among different geographical regions and cultural traditions. By examining common or similar plot elements and artistic techniques, the course conveys how authors and film-makers employ them in tales about crime to arouse audience interest. Students will get to sample Western detective fiction and Chinese court-case fiction, as well as be exposed to their adaptations in Japan and Latin America. The emphasis on grasping the tenets of adaptation will also be imparted through analyzing the relations between print media and moving images.", + "title": "Crime Fiction and Film across Space & Time", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1021", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "GE 1022 K (GEOPOLITICS) is an exciting introduction to the world of practical, formal and popular geopolitics via numerous case studies and multi-media presentations. The basic aim is that each of you will become familiar with the world political map and the relevance of geopolitics as ways of understanding and seeing our world. The Geopolitics module provides an engaging way to integrate aspects of modern history with political geography, for instance through the analysis of nationalisms and territorial disputes (in different parts of the world); through the study of the Cold War in relation to changing political landscapes in Southeast Asia; and through more contemporary understandings of the global geopolitics associated with the so-called War on Terror; and global issues of ecological security and environmental geopolitics.", + "title": "Geopolitics:Geographies of War & Peace", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary aim of the module is to introduce students to some central concepts in literary & cultural studies to enable them to apply these concepts in the analysis of fictional narratives to arrive at an understanding of certain fundamental dichotomies on which most cultural narratives are constructed, such as self/other, inside/outside, savage/civilized, living/dead, taste/appetite and so on.", + "title": "The Horror of the Other", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1026", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the role which nationalism has played in the formation and political development of the nations and states of South Asia. It examines nationalist forces in anti-colonial struggles, in post-colonial state formation and in contemporary political developments. It will be of relevance to students with an interest in political developments in Asia, with particular reference to forms of nationalism and nation-building", + "title": "Nations & Nationalism in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In general, this module is aimed at getting student to critically engage with the \u2018work\u2019 or \u2018power\u2019 of maps in shaping the historical emergence of the modern world and in its ongoing transformation. To do this we will combine diverse modes of learning, covering issues of knowledge and content (the history of cartography), practical skills of map making/reading, and critical skills of evaluating and interpreting maps. We will stimulate a critical awareness of mapping as an evolving technology that has far-reaching social and political considerations.", + "title": "Seeing the World Through Maps", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1037", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module proposes to examine the processes of globalization and seeks to provide a deeper understanding of it. The world is globalizing both culturally and economically. We need to ask whether this process is creating a single world without borders or intensifying cultural differences between societies. By discussing various trends of the interdependent world, the course helps us in understanding the various processes of globalization. Since the processes of globalization involve societal, cultural, technological, political, and economic processes, we will take an inter-disciplinary framework in understanding this diverse experience. The course will specifically highlight the problems and prospects of the contemporary world", + "title": "Understanding Globalisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1041", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introductory survey of major religious traditions of the world, with specific Page 12 of 141 focus on Hinduism, Buddhism, Confucianism, Daoism, Judaism, Christianity, and Islam. We will examine the historical development of each tradition, along with its sacred texts, basic philosophical ideas, patterns of ritual and worship, and specialized institutions Our goal is to provide an objective understanding of each faith tradition on its own terms, and secondarily, to explore how religion is relevant to contemporary social, political and cultural issues. This is an introductory course which presumes no prior expertise in religious studies.", + "title": "World Religions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1045", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course examines the import of \"culture\" for understanding human activity and the history of the emergence of Cultural Studies as a discipline within the university. Specifically it explores the theoretical and methodological tools that have defined the field, as well as the objects to which they are turned. The course addresses the following areas: theories and models of communication; the history of broadcasting and broadcasting institutions; current and future developments in media technology; and cyberspace. Starting with an introduction to key theoretical concepts, the course examines the production and consumption of a range of popular cultural forms including film, television, popular fiction, and music.", + "title": "Introduction to Cultural Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1046", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the life and writings of Mohandas Karamchand Gandhi, regarded as one of the icons of the twentieth century and one of the principal architects of a free India. The course is meant to not only understand and analyse Gandhi\u2019s thought but also to outline his extraordinary legacy. The course will introduce students to Gandhi\u2019s writings and ideas on several issues, including non-violence, colonialism, modernity, ethics, science and health. The aim would be to not only expose students to the complexity of Gandhi \u2014 the man and his ideas \u2014 but to critically interrogate Gandhi and his legacies.", + "title": "Maverick or Mahatma? Gandhi\u2019s Life & Legacy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1048", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will learn the basic concepts of narrative. It will expose them to narrative as a basic idea that runs through their lives, and which has its most sophisticated manifestations in literature and cinema. While the analysis of literary and cinematic texts will play an important part in the module, students should also develop an awareness of how narrative is used in everyday discourse, and how it shapes their response to reality.", + "title": "Narrative", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1049", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Main aim of this module is to widen the capacity for understanding the relations of space and health. Upon completion students will be able to recognize how space influences the wellbeing and efficiently define qualities and deficiencies of this relation. They will critically evaluate real life examples and develop conceptual proposals for creative improvements. \n\nIssues like function, form, light, noise, wayfinding, color and symbols, environment, and many more are discussed from social, psychological, technical, cultural and environmental perspective. Lectures are combined with on site exercises and critical enquiry on real problems.", + "title": "Space And Health", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1050", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the complex relationships underlying Chinese music, language and literature. It focuses on Chinese music from the perspective of popular music produced in the People\u2019s Republic of China, Hong Kong, Taiwan and Singapore. These four economies have developed different strands of popular music in Mandarin and various Chinese dialects, due to different linguistic and ideological environments. Students will learn how Chinese popular music draws upon the aesthetics of Chinese literature and traditional Chinese music, and how the music has hybridised influences from foreign musical genres, thus expressing different versions of \u201cChineseness\u201d.", + "title": "Chinese Music, Language and Literature (in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1053", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "While many of us spend much of our lives glued to small computer screens, theatrical productions continue to bring people together for shared experiences. What are the attractions of theatre, what makes it distinct, and how can it enrich our understanding of human society? This module, which requires no prior knowledge of theatre, starts with the spectator\u2019s experience and works outwards. We learn how to analyse theatre\u2019s styles and effects. We explore how human societies use theatre to confront questions and express beliefs, hopes, and anxieties. We examine how cultures influence each other through theatre, and how theatre provokes change.", + "title": "The Theatre Experience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1055", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is the power of artistic images? How do images express ideas and feelings? How are images controlled and used to control or influence people in different societies? How do images become sacred or lose their sacred potential? How do images function in rituals? The module explores the ways visual images are produced, used, exploited, and transformed in different societies. The class attempts to answer some of these questions through looking at the social life of visual images across cultures and time periods.", + "title": "Visual images", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1056", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With special reference to Singapore, this module examines English \u2013 especially its standard form - as the leading global linguistic and cultural resource for intra- and inter-cultural communication. Students use a variety of tools to analyse language in terms of phonetics, lexis, grammar, and meaning in context. We ask questions such as the following: (1) Why does the idea of \u2018standard language\u2019 appeal to human cultures?; (2) What does \u2018standard English\u2019 comprise?; (3) What happens to the shape of English when local culture is blended in? (4) Are \u2018native speakers\u2019 really native?; (5) Does 'Standard Singapore English' exist?", + "title": "Standard English Across Cultures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1059", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers NUS students an opportunity to explore different aspects and contexts of Chinese communication. The target audience is English speaking undergraduates with minimal Chinese language proficiency. The various contexts of Chinese communication include advertising, business, the press, social communication, regional usages, pop culture, translations, meaning of Chinese names, codeswitching and the use of Chinese dialects. It is intended to serve as a primer for students interested in these areas of study. A minimum Chinese language proficiency of CLB is required.", + "title": "Bridging East and West: Exploring Chinese Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1062", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is designed to equip students who are not planning to major in psychology with basic literacy in the discipline. Students will acquire basic understanding of common human experiences, such as sleep, dreams, learning, and memory from a psychological perspective; and apply psychological knowledge to understand some of the common problematic behaviours we encounter, such as forgetfulness, sleep problems, addiction, eating disorders, depression, and mental retardation. Students will also learn about some of the practical issues, such as whether it is beneficial to boost one\u2019s self\u2010esteem, whether subliminal persuasion works, and how we could find happiness.", + "title": "Psychology in Everyday Life", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1064", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module engages students to think and express themselves through the production process of a musical. By introducing the various aspects of mounting a musical production, it empowers the students to transmit this understanding into an actual display of intrinsic ideas. The module will be executed through classroom seminars and an experiential component culminating in the form of a micro-musical. The content coverage embodies a survey and appreciation of Singapore musicals; and to expound on the hardware and software requirements in mounting a musical. This include individual elements like acting, singing, writing, composing, music-making and dancing which are interwoven in the creation of this art form; as well as the financial and budget planning, safety measures and basic aspects of stage management.", + "title": "Exploration in Musical Production", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1065", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module was designed as a foundation to a community service project in ASEAN. Weekly topics will provide students with an overview of history and contemporary society with a focus on the intersections between the capitalist globalization and development and some of the major consequences on poverty, inequality, migration and social change in selected ASEAN countries. The module also introduces students to debates around service learning and questions of development assistance/community service and \"volunteer tourism\" in a globalizing age. Lastly, the module provides a four week training workshop led by CELC experts where via break-out groups, students will learn hands-on simulations of proposal writing and oral presentation to potential funding agencies.", + "title": "Engaging the natural environment in ASEAN", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1066", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an opportunity to grapple with some of the most enduring challenges to human thought. Our starting point is a conception of ourselves as free and conscious beings equipped with bodies that allow us to observe and explore a familiar external world. Successive lectures investigate alternative conceptions of the human condition, such as ones in which we are unfree, or non-spirituous, or inhabit a world whose fundamental nature is hidden from our view. Different conceptions bear differently on the further question of what we should value and why. Discussion is both argument-driven and historically informed.", + "title": "Life, the Universe, and Everything", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1067", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the current thinking and information as regards the importance of diet and health. It will explore traditional and more modem views on what constitute an adequate and healthy diet. The composition of food along with potential contaminants of food will be examined and how an individual needs to consider their diet in relation to specific needs. The aim will be to educate the students on the need for and the composition of a healthy diet and how to obtain this and remain healthy during the important years of development in early adulthood. There is now much more emphasis on the role of food in preventative medicine and how a well balanced diet can keep one fit and healthy. It is necessary to be aware of the composition of various foods and how different methods of processing and cooking may affect the compositional quality of the product.", + "title": "Food & Health", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1529", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary aim of the module is to introduce students to the nature of infectious diseases and their impact on human activities. At the end of the module, students will be able to understand the interactions between microorganisms and human, and the position and role of human in the living world.", + "title": "Microbes which Changed Human History", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1534", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module shall examine the scientific definition for life, its origins on this planet, and the possibility of finding it elsewhere in our solar system and beyond. It will develop fundamental concepts by drawing elementary knowledge from diverse fields of natural sciences such as Biology, Geology and Astronomy. It would give students an idea of how scientists work and think. The scientific contents of the module shall be speckled with historical, social and philosophical ponderings. The module shall put forward the message that there exist some profoundly important pursuits for us humans, both as a species and as a civilization", + "title": "The Search for Life on Other Worlds", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1537", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Nowadays it is all too easy to take basic science laws and theories, such as Newtons law of gravitational attraction or evolution for granted. The impact of research breakthroughs on society at the time of their development is being forgotten, as they come to be taken for granted. Even Science students tend to be unaware of how modern concepts have arisen, what their impact was at the time and how they changed the world. This course is intended to explain the history and significance of scientific developments on societies and how perceptions of the world have changed as a result.", + "title": "A Brief History of Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1539", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The challenges of a global engineer increasingly call upon engineers to think critically and communicate effectively to undertake developmental leadership. This course aims to develop and practise students\u2019 critical thinking and writing skills through analysing case studies in engineering leadership, constructing complex engineering-related problems and solutions, presenting arguments effectively and reflecting on personal leadership development. Relevance to engineering practice is emphasized with references to grounded theories of engineering leadership and the seven missing basics of engineering education.", + "title": "Critical Thinking And Writing", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1549", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From the global increase in obesity to SARS, a range of health issues and solutions will be explored in differing contexts throughout the world. Working in small groups, students debate and evaluate paths to addressing global health issues in a variety of cultural contexts. For example, lessons learned about tuberculosis in Russia may be applied to the Singaporean context, or students may examine efforts to prevent newborn deaths in developing nations. Students will develop an appreciation of how the health of an entire population impacts individuals and how complex problems can be prevented or addressed using culturally appropriate solutions.", + "title": "Public Health in Action", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK1900", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide students with a basic grounding of American historical and cultural developments from European colonisation to the end of the twentieth century. It will examine both the internal developments in the United States as well as its growing importance in international politics. By offering a range of social, economic, and political perspectives on the American experience, it will equip students with the knowledge for understanding and analysing the dominance of the United States in contemporary world history and culture. This course is designed for students throughout NUS with an interest in American history.", + "title": "The U.S.: From Settlement to Superpower", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module attempts to understand the rationale of changes in Singapore's urban landscape. It places these changes within a framework that considers Singapore's efforts to globalise and examines how policies are formulated with the idea of sustaining an economy that has integral links sub-regionally with Southeast Asia while developing new spatial linkages that will strengthen its position in the global network. Emphasis is also given to recent discussions about how diversity and difference in the perception and use of space pose a challenge to the utilitarian and functional definition adopted by the state.", + "title": "Changing Landscapes of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Art and aesthetics raises deep philosophical puzzles. Sunsets are beautiful because they\u2019re pleasing. But they seem pleasing because they\u2019re beautiful. Galleries display some things because they\u2019re art. But some things are art because galleries display them. Just as the Mona Lisa resembles Lisa, she resembles it. But she does not represent it as it represents her. When one watches a horror film one feels fear, but one does not run away. When one listens to instrumental music one feels sad, but there\u2019s nothing one is sad about. This course addresses the central philosophical questions with which these puzzles are entangled.", + "title": "Philosophy of Art", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines a number of areas in Singapore's domestic politics with the following objectives identify the key determinants of Singapore's politics; understand the key structural-functional aspects of Singapore's domestic politics; examine the extent to which nation building has taken place in Singapore; and analyse the key challenges facing Singapore and its future as far as domestic politics is concerned. The course examines both the structural-functional aspects of domestic politics as well as issues related to nation building, state-society relations and the likely nature of future developments and challenges.", + "title": "Government and Politics of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce students to major themes in Environmental History, meaning the historical study of the mutual influence of humans and the environment. After critically evaluating how the discipline of Environmental History has developed, lectures and discussions will focus on topics such as disease, agriculture, gender and modern environmental problems. Lectures will be combined with research assignments that will help students better understand how a historian approaches a topic. Students interested in history, the environment or new approaches to the past will be interested in the course", + "title": "Environmental History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This exciting field of study provides an understanding of the foreign policy processes and behaviour of actors in world politics. These actors are largely but not exclusively, the nation states. The module deals with various concepts, frameworks and approaches to the study of foreign policy and diplomacy. It explains both the external and internal determinants shaping foreign policies of different states. It also focuses on foreign policy implementation by analyzing the role of diplomacy, economic statecraft and the use of military force. The module is meant for students who want to understand how states conduct their external relations", + "title": "Foreign Policy and Diplomacy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module briefly covers the origins, functions, and contexts of public administration, and various comparative approaches to administrative systems in Asian countries. On that foundation, it then focuses on some of the major administrative issues in Asian countries, including local government and decentralisation, privatisation and public sector reform, ethnic representation, bureaucratic corruption, and administrative accountability. The module can be read by year 1-3 students across all faculties at NUS.", + "title": "Public Administration in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the relation between literature and the expression of individual identity. Since classical times, western literature has been centrally concerned with the various ways in which individuals negotiate with social, political, cultural, and personal constraints. And these constraining conditions often correspond to an aspect of a central protagonist's identity: Oedipus sets out to learn why his city is destroyed by a plague; to his horror, he discovers that he is to blame. This module looks at some of the ways in which fictional characters confront the various oppressive constraints that express different aspects of social and individual identity", + "title": "Identity and Western Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Can movies engage with serious concerns? Through the close study of films by great directors, this module explores how film as an artistic medium can be used to engage with significant socio-cultural and existential concerns. Students will be taught how to analyze film as an artistic medium and, further, how film directors use the aesthetic elements of film to engage with important subjects. Through films by directors like Stanley Kubrick, Orson Welles, Wong Kar-Wai and Zhang Yimou, students get a chance to reflect on issues like the human condition, the family, the urban condition, love and society, and the nation.", + "title": "Film Art and Human Concerns", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2020", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module challenges the foundation of human knowledge. Examining cultural icons from Japan's past and present we will unpack the assumptions, stereotypes, narrative strategies, and visualizing techniques of representing Japan. Students will probe one or more of Japan's three famous cultural icons - the samurai, the geisha, and/or the yakuza - as they appear in literature, visual and performance arts, and academic writings. By the end of the module students will not only have a richer understanding of the 'realities' behind such icons, but more significantly, they will be equipped to challenge stereotypes of Japan presented by journalism, popular culture, and the humanistic and social sciences. Ultimately such discovery will lead students to question their own knowledge of self and other. Students should refer to the module IVLE page for details of the selected icon(s) for the current semester.", + "title": "Samurai, Geisha, Yakuza as Self or Other", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The term Habitat encompasses a broad spectrum of living spaces including residences, places of work, surroundings and much more. In todays context, comfortable habitation is highly desired and this comfort could be derived easily with the help of modern technological advancements. However, the lack of knowledge of relevant technology and its application often results in either a compromised or a criticized habitat. Appreciation of the various concepts of technology and the knowledge of simple applications of these concepts could possibly be the only way to the end users of such spaces to avoid this situation. Thus, this module aims at delivering concepts of technology relevant to social living spaces (buildings) and enlightens on the application of the same through critical appreciation of actual design examples.", + "title": "Technology For Better Social Habitats", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2023", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module begins with the examination of various strands of liberalism, including liberal versions of communitarianism, and then proceeds on that basis to survey various significant reactions to liberalism. In addition to communism and fascism, the module will also examine the ideological challenges to liberalism from radical/militant Islamism and the advocates of so-called \"Asian values\". This is an introductory module and is designed for any beginning student with an interest in the theoretical approach to the study of competing political belief systems.", + "title": "Political Ideologies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2024", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comparative overview of politics in the Middle East, giving particular attention to the history, societies, and cultures of the region. It considers some of the forces shaping its politics and discusses, selectively, major issues and challenges facing states in the Middle East today.", + "title": "Politics of the Middle East", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to survey the history of Indian philosophy both classical and modern. The course will begin with lectures on the Rig Veda and the Upanishads. It will proceed with the presentation of the main metaphysical and epistemological doctrines of some of the major schools of classical Indian philosophy such as Vedanta, Samkhya, Nyaya, Jainism and Buddhism. The course will conclude by considering the philosophical contributions of some of the architects of modern India such as Rammohan Ray, Rabindrananth Tagore and Mohandas Gandhi.", + "title": "Introduction to Indian Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module looks at the beginnings of modern Western philosophy in the seventeenth century, when philosophers conceived of themselves as breaking away from authority and tradition. It will deal with central themes from the thought of Descartes, Locke, Berkeley, Leibniz and Spinoza; in particular, the attempt to provide foundations for knowledge and science.", + "title": "Founders of Modern Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2028", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module considers some of the significant normative ethical theories in the history of moral philosophy and examines how their principles may be applied to ethical issues of practical concern. There is a wide range of topics that are typically understood to come under the category of applied ethics. These include ethical issues pertaining to the family, food, race relations, poverty, punishment, conduct in war, professional conduct in general, and so on. The specific topics to be dealt with may vary from semester to semester, and the selection will be announced at the start of the semester in which the module is offered.", + "title": "Applied Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2029", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to some of the main figures and movements of Continental European Philosophy. The purpose is to provide a broad synoptic view of the Continental tradition with special attention paid to historical development. Topics to be discussed include phenomenology, existentialism, structuralism, hermeneutics, Critical Theory, and post\u2010structuralism/post\u2010modernism. Thinkers to be discussed include Husserl, Heidegger, Sartre, Levi\u2010Strauss, Derrida, Gadamer, Habermas, Lyotard and Levinas. The main objective is to familiarize the student with the key concepts, ideas and arguments in the Continental tradition.", + "title": "Introduction to Continental Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an introduction to some standard accounts of how humans ought to relate to the natural environment. We begin by examining the issue of whether only humans are entitled to moral consideration, and go on to consider what other objects might be deserving of such consideration. We then explore how our attitude towards the natural world is shaped by what we take to be morally considerable.", + "title": "Environmental Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will help students identify and think critically about the ethical dimensions of markets and business organizations and provide tools for making informed and ethically responsible decisions relating to workplace issues. Specific topics may include justifications for free markets and government intervention, corporate governance and economic democracy, managerial compensation, price discrimination, hiring discrimination, employment at will, privacy and safety in the workplace, advertising, product liability, the environment, whistle-blowing, and international business.", + "title": "Business Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a study of the different ways societies organize their political, economic, and other social institutions, with an emphasis on the philosophical principles that justify (or don\u2019t) alternative social arrangements. Topics will include different systems of social organization (capitalism, socialism, and democracy), specific policies (taxation, redistribution), and related normative concepts and theories (feminism, individualism, collectivism, community, freedom, equality, rule of law).", + "title": "Social Philosophy and Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2034", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will help students identify and think critically about the ethical dimensions of the medical profession and the provision of medical care and provide tools for making informed and ethically responsible decisions relating to healthcare issues. Specific topics may include the ethics of abortion, euthanasia, physician assisted suicide, physician-patient relationships, organ procurement, bio-medical research, etc.", + "title": "Medical Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Socrates and Plato stand at the source of the Western Philosophical tradition. Alfred Whitehead said that \u201cthe safest general characterization of the European philosophical tradition is that it consists of a series of footnotes to Plato.\u201d Through a close reading and analysis of several representative Platonic dialogues, this module introduces the student to the philosophy of Plato and Socrates (Plato\u2019s teacher and main interlocutor in his dialogues), and prepares him/her for PH 3222 on Aristotle\u2019s philosophy and the Honours seminar on Greek Thinkers. The module may include material on earlier Philosophy forming the background to Socrates and Plato.", + "title": "Greek Philosophy (Socrates and Plato)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2036", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module looks at the philosophical problems arising from technology and its relation to nature and human values. In doing so, it draws on a number of philosophical approaches and traditions. Among the topics to be discussed are the relation between science and technology, the way technology has shaped our perception of nature and human experience, and the ethical challenges posed by technological progress. Potential topics to be discussed will include the concept of risk, issues in environmental ethics, and socialepistemological problems arising from communication technology.", + "title": "Introduction to the Philosophy of Technology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2037", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is the first half of a two-part course which offers an introduction to philosophical debate in the Warring States period of ancient China, the Classical Age of Chinese Philosophy and the seedbed from which grew all of the native currents of thought that survived from traditional China. It will begin by considering the intellectual-historical background to the ancient philosophies and focus primarily on the Confucius (the Analects), Mozi, Yang Zhu, Mencius and Laozi, closing with a brief introduction to some of the later developments that will be covered more fully in Part II. The approach of the course will be both historical and critical, and we will attempt to", + "title": "Classical Chinese Philosophy I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2038", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is the first half of a two-part course on Chinese Philosophy. This module surveys the philosophical discourse of the period from early Han dynasty up to the close of the Tang dynasty. We begin by considering the philosophical developments in Confucianism and Xuan Xue thought. Then, we turn to the arrival of Buddhism in China and survey the transformations in Chinese Buddhist philosophy through the Tang. We will treat these thinkers and their ideas in their proper historical contexts and evaluate their philosophies critically. We will also address and assess the relevance of these ideas to contemporary philosophical debates.", + "title": "Chinese Philosophical Traditions I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2039", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\"Philosophy and Film\" means, in part, philosophy of film, in part, philosophy in film. Philosophy of film is a sub-branch of aesthetics; many questions and puzzles about the nature and value of art have filmic analogues. (Plato's parable of the cave is, in effect, the world's first philosophy of film.) Philosophy in film concerns films that may be said to express abstract ideas, even arguments. (Certain films may even be thought-experiments, in effect.) Questions: are philosophical films good films? Are they good philosophy? The module is intended for majors but - film being a popular medium - will predictably appeal to non-majors as well. (This module is offered as special", + "title": "Philosophy and Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2040", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module considers science fiction as a mode of philosophical inquiry. Science fiction stories are used to examine fundamental questions of metaphysics, epistemology and ethics. Topics include the nature of time, space, religion, nature, mind, and the future. Specific topics may include such issues as genetic enhancement, environmental ethics, and implications of encounters with non\u2010human life forms.", + "title": "Science Fiction and Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2041", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Humans have always actively borrowed from other cultures. Such borrowing is a creative process which influences aspects of life ranging from basic material\nneeds to aesthetic appreciation. Often, however, cultural borrowing is labelled as simple imitation. This results in cultural stereotypes that impede understanding of other cultures. Using Chinese and Japanese cultural borrowings as illustration, this module teaches second and third year students to analyze the creative process of cultural exchange. By developing theoretical perspectives from the study of China and Japan, students will learn about exchanges among culture in general.", + "title": "Cultural Borrowing: Japan and China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2042", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines representations of politics in film and television and considers the ways in which they become politically controversial as objects of\nregulation and censorship, economic commodities or projections of cultural \u2018soft power\u2019. It also considers the reflexive potential of film and television to comment their socio\u2010political role as well as on their own representation of politics. The module explores these themes in a variety of cinematic and televisual ways of representing politics, including documentaries, dramas, historical re\u2010enactments, and comedies.", + "title": "Politics on Screen", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2043", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to ways of looking at and discussing works of art. The focus is chiefly on painting and sculpture; the emphasis is on analyzing the composition or design of art works and in constructing meanings for them. The study of this module enables students to acquire critical skills for interpreting and connecting with works of art. The module encourages students to read art works in relation to a range of interests, intentions and issues; the aim here is to suggest or propose contexts or environments in which art works are made and received. There are three sections. In the first, three (3) topics from Asian art traditions are discussed. The are 1. Indian sculpture 2. Chinese landscape painting 3. Islamic calligraphy In the second section, ideas and movements from the Renaissance in Italy to the end of the 20th century in Europe, are surveyed.", + "title": "Reading Visual Images", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2044", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To develop a basic understanding of the major principles of contemporary architecture and urbanism from mid-nineteen century to the present; To study the making of architectural and urban language as they have been evolved and developed within specific social, political, cultural, technological and economic contexts; and to develop critical perspectives regarding contemporary architectural practice, the design process, and perceptions of the built environment. Major topics to be covered Arts and Crafts movements, Art Nouveau, Chicago School, modernity, the avant-garde, international style, High tech, Populism, regionalism, critical regionalism, post-modernism, deconstructivism?etc.", + "title": "History & Theory Of Modern Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2045", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Studies on cinema offer an important perspective for understanding human cultures. This course explores Chinese-language film history from the 1930s to the present through examining some key genres of films made by major filmmakers from China, Hong Kong, Singapore and Taiwan, including opera, musical, action and youth films. Special attention will be paid to the socio-cultural condition of their production, distribution, exhibition and consumption, as well as larger regional cultural connections of these four places. The course will be taught in English.", + "title": "Exploring Chinese Cinema: Shanghai-Hong Kong-Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2047", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is good reasoning? We will try to answer this question by studying the mechanics of reasoning. Students will learn what an argument is, what the difference between validity and soundness is, and what it means to say that an argument is valid in virtue of its form. They will also be introduced to various strategies and pitfalls in reasoning. In addition, to hone their analytical skills, students will be given arguments\u2014drawn from philosophy and other areas\u2014to unpack and evaluate. It is hoped that in the process of learning what counts as good reasoning, one will become a better reasoner.", + "title": "Effective Reasoning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2048", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Piracy, understood broadly as violence or crime at sea, is a present day phenomenon and yet one which has a history spanning centuries and across all the oceans of the world. From pirates to privateers, corsairs to raiders, maritime predators take various names and forms. This module explores the history of pirates and piracy. By examining case studies from the 1400s onwards and by placing pirates into the context of oceanic history and maritime studies, students will be able to demystify the popular images often associated with pirates.", + "title": "Pirates, Oceans and the Maritime World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2049", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Digital technologies expand the frontiers of the humanities through interactive publishing, machine-driven analysis, media-rich platforms, online archives and crowd-sourced databases. This module invites students from across the university to consider these new approaches through a problem-based approach. In each session, the students will learn to use and critically evaluate digital approaches. Reflecting the multiple perspectives within the digital humanities, teaching combines seminar discussions with computational thinking projects that require the students to pose humanities questions in terms of data.", + "title": "Computers and the Humanities", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2050", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will introduce students in the humanities to the general principles of drug actions that underpin their therapeutic applications. The science of drug action (pharmacology) will include two major areas of pharmacology, pharmacodynamics and pharmacokinetics, which provide the scientific foundation for the study of drug actions. In dealing with the therapeutic applications of drug actions, examples of commonly used drugs for specific disease states will be discussed, and their possible side-effects highlighted. The examples will illustrate the use of over-the-counter as well as prescription drugs.", + "title": "Understanding your Medications", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK2501", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the many forms of relationship between politics and visual culture. From the ancient world to the present, politics, whether formal or popular, has had a visual dimension. Politicians have been concerned to control their appearance; various media (from painting to theatre to television to the internet) have been used to both serve and defeat this goal. The module surveys the relationship between politics and visual culture and allows students to engage with contemporary issues surrounding politics, film, and digital culture.", + "title": "Politics and the Visual", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK3005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a module that examines theories of human rights since 1945, and the practice of promoting or rejecting these ideas as universal \"goods\" in international relations. Students will critically examine NGO issue advocacy, western states' \"ethical\" foreign policies; and the \"Asian values\" counter-challenge. This module relates the subject of human rights to political philosophy, international law, the UN system, morality, national interest, and values/ideology in foreign policy.", + "title": "Human Rights in International Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK3006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Music\u2019s political importance was recognized long ago by theorists in both East and West. Plato, for example, wrote that \u2018when the mode of music changes, the walls\nof the city tremble\u2019, and Confucians and Legalists engaged in extended controversy over the social desirability of music. Students will be asked to read\ntheoretical writings on music and politics by these and other thinkers (including Rousseau, Nietzsche, and Adorno) and to consider how music has been exploited\nat the level of political practice for a wide variety of purposes from promoting nationalism to articulating popular protest.", + "title": "Politics, Music and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEK3007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with foundational knowledge of the different aspects of, approaches and discursive contexts relating to the study and praxis of theatre and performance. The module will also introduce students to the various forms of classical and contemporary performance practices and their attendant modes of analyses combining play analysis, theatre history & theory. Using complementary content\u2010centred lectures and practice laboratory, the module creates an environment where students simultaneously engage with module content while investigating its relations to the creation of theatre and performance.", + "title": "Introduction to Theatre and Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first six weeks we read Plato (a 5th Century BC Greek, of whom it has been said, 'All of Western thought is just footnotes to Plato') and Descartes (a 17th Century Frenchman, of 'I think therefore I am' fame.) The second six weeks concern questions and problems raised by Plato and Descartes. We will mull the metaphysics of mind and consciousness; ponder the politics of freedom. The module title hints at a basic question: what sorts of ways of convincing people, and being convinced by people - about life, about anything - are good ways?", + "title": "Reason and Persuasion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop in students an awareness of the aspects of Movement Aesthetics, through practice and theory, understanding that movement (beyond the confines of dance) has become increasingly vital as an autonomous vocabulary in contemporary performance. They will be guided on a discovery of how: thoughts and feeling are expressed through a variety of media, music, art and literary creations; simple objects and everyday activities can evoke emotional responses; any or all of these might be re-expressed through body movement.", + "title": "Study of Movement Aesthetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "History of Modern Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1016K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on names as a means of marking out the socio-cultural identity of the named and of the namer. Attention will be paid to anthroponyms (personal names), toponyms (place names) and commercial names. This module will be interdisciplinary in nature and will combine a range of approaches to names. Linguistic and philosophical approaches will provide the theoretical anchor to the topic of names. Subsequent seminars will contextualise names in their historical, geographical, political and literary contexts. There will be scope for students to develop the module in the direction of their interests in the mini project.", + "title": "Names as Markers of Socio-cultural Identity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cinematic and literary expression centred on religious topics can be studied to see how the vitality of cultural expression and power of the religious imagination interrelate. No prior training in artistic interpretation or religious history is required, though the module presumes a curiosity about religion and culture. It trains students to think about why people sometimes enjoy seeing films about painful topics. It clarifies the difference between \u201cstudying\u201d and \u201cpractising\u201d religion, and it teaches students to discuss controversial topics with tact.", + "title": "Religion and Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students an introduction into the role of new communication technologies in the context of globalization. We will explore various aspects of global communication flows including the global reach of new media and its consequences, global and transnational timesharing and workflows, the role of new media in global and local politics, and the potential of new and traditional communication channels in the context of various forms of activism and communication for social change. The role of culture in global communication and ways in which cultural processesshape and are shaped by the landscape of globalization will be emphasized.", + "title": "Globalisation and New Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1036", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Few words in the English language (or any language) are as evocative and emotionally\u2010charged as \u201chome.\u201d But how do we determine what we call home, and why should we take \u201chome\u201d seriously? This module explores the political, social, economic, and cultural aspects of the complex idea of home. Major topics include: sense of place, home technologies and design, gender and housework, home and travel, globalisation,\nnationalism, homelessness, exile, and representations of home. Students will complete the module with a new appreciation for the complexity of the places \u2013 house, neighborhood, nation, planet \u2013 they call home.", + "title": "Home", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1046", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Consumption has come to dominate our lives, is driving economies, yet also endangering the future of our planet. This module asks questions about consumption\nfrom multiple perspectives, such as how did consumption assume its prominent place, how do economists rationalise consumption, how do companies use behavioural models to craft marketing strategies, whether consumption is good or bad for society or the individual, or whether consumers need to be protected. Participants in this module will explore how different disciplines approach such questions and\nwill have the opportunity to reflect on their own consumption practices and impact on the social and physical environment.", + "title": "Understanding Consumption", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1047", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Asia has become part and parcel of world politics since the 19th century. This module examines how a wide range of ideas and ideologies borne in Europe have shaped the norms, practices and institutions of Asia\u2019s politics and international relations. It explores the resilient nature of local norms and culture in the changing dynamics of international relations, particularly in the age of globalization. After this course, students will appreciate the historical background to contemporary developments and have acquired a solid basis of rationality in understanding international relations of Asia and in general.", + "title": "International Relations of Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1048", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores Asian cinema from its beginning to the introduction of talkies in the 1930s. The advent of cinema in Asia transformed entertainment across the continent and provided a novel means of popular expression. As a medium, cinema is closely tied to modernity and helps us understand how different societies and cultures in Asia responded to the modern transformation and how they appropriated it for their own ends. The module focuses on China, Japan, and India, three regions that developed a vibrant film culture and whose films have survived to the present day.", + "title": "Asian Cinema: The Silent Era", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1049", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Bollywood cinema is an iconic aspect of Indian popular culture and a striking manifestation of India\u2019s global \u2018soft power.\u2019 This module aims to interrogate core concepts in the humanities and social sciences through the lens of India\u2019s most powerful film industry. Through an exploration of selected films, students will think critically and creatively about key cultural, social and political themes originating in the subcontinent. They will analyze important developments in India and the diaspora through the study of Bollywood cinema. The course will thus facilitate a nuanced understanding of the relationship between text and context, with a focus on Bollywood.", + "title": "Framing Bollywood: Unpacking The Magic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1050", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines policies and programmes dealing with ethnic relations based on the experiences of Singapore and Malaysia. It focuses on how these much talked about and debated policies, impact or affect the Malays in particular, who constitute a numerical minority in Singapore, but form the majority in Malaysia. The module examines major socio\u2010historical factors\nconditioning these policies and programmes and the processes by which they are materialised from the period of British colonialism to the present. How these efforts bear upon nation building and national integration will be explored.", + "title": "Ethnicity and Nation-Building: Singapore and Malaysia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1051", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why and how have things changed and moved so fast? Why and how has the global economy become more open and integrated? This module discusses the increasing connections and mobilities of goods (like grains, oil, cars, appliances, parts & components), services (like banking, education, tourism), money and finance, labour, technology, ideas and information. It discusses their trends and patterns and critically examines the role of various factors such as international and regional institutions, media and ICT, infrastructure and distribution networks, state intervention, and private sector involvement. It also assesses the social, economic, political and environmental impacts of increasing interconnectedness and mobilities.", + "title": "Understanding the Changing Global Economic Landscape", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1052", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Charles Darwin is remembered like no other figure in the history of science. However, public understanding of Darwin and evolution remains a serious problem. What most people think they know about Darwin, his life and his famous book \u2018On the origin of species\u2019 is wrong. This module provides a solid background for understanding how the theory of evolution actually unfolded. It covers the history of geology, palaeontology and biology from the 1700s to the 20th century. The central focus is on the life and work of Charles Darwin and how biological evolution was uncovered, debated and accepted by the international scientific community in the 19th century, and beyond. There will be a lot of myth busting and this provides case studies on how to assess historical claims and evidence, and discussions on recent developments in evolutionary biology, human evolution and anthropology are included.", + "title": "Darwin and Evolution", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1536", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Junior Seminar is a requirement for all first year students resident in the College. It also helps fulfil the General Education requirement. The seminar allows students to work closely with a Fellow, and in classes of no more than 15. It is organized around weekly discussions, outside research, writing essays, and making presentations. Besides being exposed to a particular cross\u2010disciplinary issue, students will be invited to exercise their curiosity, think critically, and develop their written and oral communications skills. Topics will vary with the instructor.", + "title": "Junior Seminar", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1902", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The scientific developments of the 19th century from geology to palaeontology, culminating in the theory of evolution by natural selection are arguably the greatest transformations in our understanding of the natural world in human history. Much of the science of the following century has been further refinements and elaborations of these earlier foundations. Yet most of these developments remain totally unknown or misunderstood by most people. Surely, therefore, an understanding of these issues is essential knowledge for any educated person today.", + "title": "Junior Seminar: The Darwinian Revolution", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GEM1902B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar attempts to explore the relationality between seeing and knowledge. It begins with a meditation on the phrase \u201cseeing is believing\u201d; and questions the privileging of sight over all the other senses. Through a close reading of various texts, seminar participants will explore the relationality between sight and blindness\u2014are they necessarily antonyms, or are they always already a part of each other? And if they are intimately related, what are the implications on knowledge? Are we all potentially blind to our own insights?", + "title": "Junior Seminar: On Blindness", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GEM1902M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The \u2018Special Topics\u2019 junior seminar at Tembusu College is a one\u2010off seminar taught by a Visiting Fellow or Adjunct Fellow \u2013 sometimes in collaboration\nwith one or more regular College Fellows. It focuses on topics, approaches or methods closely related to a Visiting or Adjunct Fellow\u2019s research (or personal)\ninterests, and represents an educational experience different from those found in the departmental curricula at NUS.", + "title": "Jr Sem : Special Topics", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GEM1912", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "News reports that purport to have marshalled facts and opinion on current issues are often taken at face value: they are consumed without question. How can we discern quality journalism from the less worthy instances of the craft? This seminar, led by an experienced journalist, is organised around the critical exploration of key aspects of journalistic writing: the questions behind the story, the use of numbers and the organisation of the message or argument. By dissecting media coverage of current issues, students will bolster their skills as critical readers and communicators.", + "title": "Jr Sem Special Topics: Quality Journalism and Critical Reading", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GEM1912B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How do ideas about big beasts and the wild inform our socio\u2010cultural worldview? In other words, what is a \u201ctiger\u201d when it is not just a zoo animal but one that lives in a forest next to your home? In this introductory and interdisciplinary course to conservation and the environment, we will watch films and discuss novels and ethnographies focusing on human/animal relations in six different spheres: Mountains, Deserts, Rivers, Plains, Forests, and Sea. The course aims to be an informative, provocative and fun introduction to an exciting and relatively new field of scholarship.", + "title": "Beasts, People and Wild Environments in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1913", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This inter-disciplinary module will provide foundational knowledge and skills relating to the emerging problem of sustainability. Probing questions about how humans impact and react to environmental change will be asked. Students will explore current and future global environmental change issues from the standpoints of science, technology, and policy. The science behind global change (climate variability and change, natural weather disasters such as floods and droughts, environmental degradation); human aspects of change (water crises and conflict, agriculture and food security, energy sustainability, climate, health); and technology and policy issues relating to mitigation and adaptation (renewable energy, carbon trading, water resource engineering, agricultural development) will be covered.", + "title": "Understanding and Critiquing Sustainability", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM1917", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will serve to prepare systems citizens with thinking and quantitative skills that thought leaders across the world consider critical for functioning in the 21st century. Comprising qualitative and quantitative elements, this module will hone students\u2019 ability to engage in Systems Thinking: understanding parts of a system, seeing interconnections, asking \u2018what-if\u2019 questions, quantifying the\neffects of specific interventions and using such understanding to propose operational/structural policies courageously and creatively. Interactive discussions and hands-on computer modelling using examples from several ecological and natural resource systems will serve as the primary learning mechanisms.", + "title": "Thinking in Systems: Ecosystems and Natural Resources", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GEM1918", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Does a virus attack any individual? Or, does an individual create conditions for infection? How should hospitals plan treatment strategies and patient-staff movements during an outbreak? Should government allocate more resources\nto prevent onset of chronic diseases rather than managing the complications arising out of chronic diseases? Students will approach such questions from a systems perspective, which involves: understanding behaviours of subsytems and stakeholders such as disease/ infection, patients, providers, payers and society. They will also learn how the interdependencies and interactions between the different actors of the system can be integrated into a holistic system that enables better understanding.", + "title": "Thinking in Systems: Diseases and Healthcare", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GEM1919", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "History & Theory Of Industrial Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM2004K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to classical logic. The first half of the course introduces propositional logic, using the techniques of truth-tables and linear proof by contradiction. The second half of the course extends the use of linear proof by contradiction to predicate logic. Emphasis is placed on applying the techniques to philosophical arguments.", + "title": "Logic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM2006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "EAST ASIA", + "title": "East Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM2007K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad overview of the major philosophical issues related to natural science to students of both science and humanities without a background in philosophy. It introduces the views on the distinctive features of science and scientific progress espoused by influential contemporary philosophers of science such as Popper and Kuhn. There is also a topical treatment of core issues in philosophy of science, including causation, confirmation, explanation, scientific inference, scientific realism, and laws of nature.", + "title": "Introduction to Philosophy Of Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM2025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the conventions of a variety of film genres and styles, ranging from Hollywood and Chinese cinemas to Bollywood and animation. It traces the development of each genre, examining its defining characteristics, the role and influence of the star system and individual stars such as actors and directors, and its relations to other film styles and industries. Through a group creative project, students will make a film that involves the practical application of critical ideas.", + "title": "Film Genres: Stars and Styles", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM2026", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students to be effective public speakers and critically attuned listeners. It introduces students to theories of oral communication and public speaking, as well as practical strategies for analysing and connecting with audiences, gathering and structuring relevant information, employing effective rhetorical devices, incorporating visual aids, and delivering purposefully engaging speeches. Importantly, students will be given multiple opportunities to practise their speaking skills and to give and receive critical constructive feedback. Through experiential and reflective learning, students will gain confidence in speaking in academic, professional and public settings.", + "title": "Public Speaking and Critical Reasoning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM2027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A \u2018global city\u2019, a \u2018city in a garden\u2019, a \u2018city of 6.9 million\u2019... what do these and other models say about Singapore and its relationship to its past and future? This course facilitates critical and multi\u2010disciplinary engagement with the imagination and organization of Singapore as city. Students will examine visible aspects of the urban environment together with what is (treated as) invisible, and explore what is at stake in meeting Singapore\u2019s ambition within its borders and beyond. The module culminates in a project that allows students to situate ideals of the liveable, sustainable, inclusive (etc.) city in particular urban sites.", + "title": "Singapore as \u2018Model\u2019 City?", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM2905X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We live in a world where complex negotiations take place daily. Navigating these complex negotiations requires one to be conscious of the psychological,\nhistorical, sociological, economical, and other contextual factors that shape each unique encounter. The rapid advancement in science and technology\nadds to the challenge of interpreting highly technical, domain\u2010specific information, which is critical in rationalizing decisions and persuading counterparts. In this module, we adopt a case study approach to dissecting complex negotiations. Students will learn to adopt both a macro and micro perspective in analysing such negotiations.", + "title": "Senior Seminar: Negotiating in a Complex World", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM2907X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will look at how claims to knowledge are legitimized and how our concept and representations of it have developed over time due to the kinds of technologies that have been adopted. We examine the role and nature of\nknowledge, communication, data, trust, privacy, and related concepts from an interdisciplinary angle. Through 13 seminars, we explore these issues with examples such as big data, humanmachine interaction, engineering, and the internet. The goal of the module is to enable students to critically appreciate various forms of knowledge and assess how they shape our individual and collective lives.", + "title": "Senior Seminar: Technology and the Fate of Knowledge", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM2908X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For those seeking mastery of systems thinking and system dynamics modeling, to serve our human species, Donella (Dana) Meadows\u2019 life and work seem uniquely suited to inspire and guide. Her work sets disciplined high standards in multiple areas: systems modeling, systems thinking, modeling methodologies and environmental journalism. She created resilient communities that embodied her values. Mastering skills and practices her work exemplifies will empower students to become proficient disciplined, humane systems citizens, capable of envisioning and traversing life paths that make a difference.", + "title": "Committed to Changing Our World: Dana Meadows\u2019 Legacy", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GEM2911", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For those seeking mastery of systems thinking and system dynamics modeling, to serve our human species, Donella (Dana) Meadows\u2019 life and work seem uniquely suited to inspire and guide. Her work sets disciplined high standards in multiple areas: systems modeling, systems thinking, modeling methodologies and environmental journalism. She created resilient communities that embodied her values. Mastering skills and practices her work exemplifies will empower students to become proficient disciplined, humane systems citizens, capable of envisioning and traversing life paths that make a difference.", + "title": "Committed to Changing Our World: Dana Meadows\u2019 Legacy", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM2911X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module offers an opportunity to study the dynamics of cultural production in the modern metropolis. It aims to provide the theoretical models and the analytic methods from which to understand this dynamics in terms of the interplay between the global and the local. The module provides a multi-disciplinary approach to a study of the relations between culture and the metropolis from the following perspectives: 1. The history and politics of urban development; 2. The relation of space to place in the modern city; 3. The metropolis as a locus for the intersection of modernity and modernism; 4. The economic bases of metropolitan patronage and arts management; 5. The work of the audience in an age of electronic media; 6. Ethnicity and Popular Culture; 7. Utopias, dystopias and Heterotopias; 8. Globalism, Regionalism and Neo-colonialism in Metropolitan culture; 9. The Infernal City; 10. Urban Sound: Jamaica.", + "title": "Global Cities and Local Cultures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM3002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus specifically on the relation between contemporary poetry and painting. It will provide students an opportunity to develop a systematic understanding of the relation between poetic language and the visual medium of painting. The general component will provide a methodology for the analysis of the relation between the two arts, and the practical component will entail a detailed study of representative poems directly inspired by specific paintings. Examples of poetry will be confined to the contemporary period and the English language. The module will provide opportunity for students to undertake a small research project which will explore the relation between poetry and painting in non-Anglophone cultures, using translated texts.", + "title": "Literature and the other Arts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEM3003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is it that enlivens culture? What does it mean to connect with culture through the arts and minority community sites? What role does service play in communities of identity and the arts? This module probes identity maintenance by examining material culture, the performing arts and community service. Students will learn about South Asian culture through two fieldwork components at a physical site of identity, and with a South Asian performing arts tradition. The module will equip students with hands-on experiences in engaging with a dynamic community as they explore what it means to be South Asian in Singapore.", + "title": "Living Culture: Engaging Indian Communities in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0205", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to how theatre can be an effective tool to engage communities. Leveraging on theatre\u2019s inherent collaborative, experiential and embodied propensities, the module aims to raise student awareness of the sensitivities, responsibilities & creativity of Theatre in community engagement. Students will be tasked to envision and pitch theatre-centred community engagement projects.", + "title": "Theatre and Community Engagement", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through the years, the nature of threats has evolved from traditional security, e.g. territorial threats and terrorism, towards hybrid threats, in which state or non-state actors conduct coordinated propaganda, sabotage, pressure, and other overt or covert non-military or military actions to subjugate the target. In this module, students will learn the key concepts of total defence to deal with such threats to a nation\u2019s well-being; identify and articulate a potential hybrid threat to Singapore; and then design, and possibly execute, a community project that could deliver suitable counter-measures that integrate an effective multi-faceted response to the identified threat.", + "title": "Total Defence Project Against Threat to Community", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7 + ], + "venue": "TP-SR5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 12 + ], + "venue": "TP-SR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "ERC-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through the years, the nature of threats has evolved from traditional security, e.g. territorial threats and terrorism, towards hybrid threats, in which state or non-state actors conduct coordinated propaganda, sabotage, pressure, and other overt or covert non-military or military actions to subjugate the target. In this module, students will learn the key concepts of total defence to deal with such threats to a nation\u2019s well-being; identify and articulate a potential hybrid threat to Singapore; and then design, and possibly execute, a community project that could deliver suitable counter-measures that integrate an effective multi-faceted response to the identified threat.", + "title": "Total Defence Project Against Threat to Community", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2002X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through the years, the nature of threats has evolved from traditional security, e.g. territorial threats and terrorism, towards hybrid threats, in which state or non-state actors conduct coordinated propaganda, sabotage, pressure, and other overt or covert non-military or military actions to subjugate the target. In this module, students will learn the key concepts of total defence to deal with such threats to a nation\u2019s well-being; identify and articulate a potential hybrid threat to Singapore; and then design, and possibly execute, a community project that could deliver suitable counter-measures that integrate an effective multi-faceted response to the identified threat.", + "title": "Total Defence Project Against Threat to Community", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2002Y", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7 + ], + "venue": "TP-SR5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 6, + 8, + 11 + ], + "venue": "TP-SR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "'Teach SG' is an integrated service-learning module for the education sector to help uplift primary and secondary school students from less-privileged family circumstances. Students will learn key concepts in volunteerism. They will also be equipped with essential skills including communications & collaboration and coaching & mentorship. Students will apply these skills as they perform service work through mentoring school students in after-school care at Ministry of Education schools or Student Care Centres. Through experiential learning, students will learn to develop character, empathy, and personal effectiveness. It is a collaboration with the Ministries of Education and Social & Family Development.", + "title": "Teach SG", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2050", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "E1-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 11 + ], + "venue": "AS7-0106", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 11 + ], + "venue": "TP-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "'Teach SG' is an integrated service-learning module for the education sector to help uplift primary and secondary school students from less-privileged family circumstances. Students will learn key concepts in volunteerism. They will also be equipped with essential skills including communications & collaboration and coaching & mentorship. Students will apply these skills as they perform service work through mentoring school students in after-school care at Ministry of Education schools or Student Care Centres. Through experiential learning, students will learn to develop character, empathy, and personal effectiveness. It is a collaboration with the Ministries of Education and Social & Family Development.", + "title": "Teach SG", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2050X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "'Teach SG' is an integrated service-learning module for the education sector to help uplift primary and secondary school students from less-privileged family circumstances. Students will learn key concepts in volunteerism. They will also be equipped with essential skills including communications & collaboration and coaching & mentorship. Students will apply these skills as they perform service work through mentoring school students in after-school care at Ministry of Education schools or Student Care Centres. Through experiential learning, students will learn to develop character, empathy, and personal effectiveness. It is a collaboration with the Ministries of Education and Social & Family Development.", + "title": "Teach SG", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2050Y", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "AS7-0107", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Many seniors are lonely or estranged, isolated from critical social networks and support structures. Volunteers provide the vital link to reconnect them with society and restore their well-being. In this module, students will learn key concepts in volunteerism, and essential skills, including communications, conflict management, needs identification and risk assessment, to support vulnerable seniors identified by the Agency for Integrated Care (AIC), checking on them regularly to provide emotional support and early intervention, if needed. Thus, students will develop empathy, and sharpen observation and decision-making skills.", + "title": "Reconnect SeniorsSG", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2060", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 10 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 10 + ], + "venue": "S16-03-0506", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Many seniors are lonely or estranged, isolated from critical social networks and support structures. Volunteers provide the vital link to reconnect them with society and restore their well-being. In this module, students will learn key concepts in volunteerism, and essential skills, including communications, conflict management, needs identification and risk assessment, to support vulnerable seniors identified by the Agency for Integrated Care (AIC), checking on them regularly to provide emotional support and early intervention, if needed. Thus, students will develop empathy, and sharpen observation and decision-making skills.", + "title": "Reconnect SeniorsSG", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2060X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Many seniors are lonely or estranged, isolated from critical social networks and support structures. Volunteers provide the vital link to reconnect them with society and restore their well-being. In this module, students will learn key concepts in volunteerism, and essential skills, including communications, conflict management, needs identification and risk assessment, to support vulnerable seniors identified by the Agency for Integrated Care (AIC), checking on them regularly to provide emotional support and early intervention, if needed. Thus, students will develop empathy, and sharpen observation and decision-making skills.", + "title": "Reconnect SeniorsSG", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2060Y", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Silver Generation Ambassadors (SGA) play a key role in promoting healthy ageing amongst seniors in Singapore by conducting preventive health visits to them in their homes. In this module, students will learn key concepts in volunteerism, and essential skills, such as communications, conflict management, outreach, persuasion and motivation, to support their work as SGA. Students will engage seniors in assigned precinct, promote national support schemes and programmes, and encourage seniors to adopt good management practices for own health and well-being. This module is a collaboration with the Silver Generation Office (SGO).", + "title": "Support Healthy AgeingSG", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2061", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "E1-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 10 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 10 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Silver Generation Ambassadors (SGA) play a key role in promoting healthy ageing amongst seniors in Singapore by conducting preventive health visits to them in their homes. In this module, students will learn key concepts in volunteerism, and essential skills, such as communications, conflict management, outreach, persuasion and motivation, to support their work as SGA. Students will engage seniors in assigned precinct, promote national support schemes and programmes, and encourage seniors to adopt good management practices for own health and well-being. This module is a collaboration with the Silver Generation Office (SGO).", + "title": "Support Healthy AgeingSG", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2061X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Silver Generation Ambassadors (SGA) play a key role in promoting healthy ageing amongst seniors in Singapore by conducting preventive health visits to them in their homes. In this module, students will learn key concepts in volunteerism, and essential skills, such as communications, conflict management, outreach, persuasion and motivation, to support their work as SGA. Students will engage seniors in assigned precinct, promote national support schemes and programmes, and encourage seniors to adopt good management practices for own health and well-being. This module is a collaboration with the Silver Generation Office (SGO).", + "title": "Support Healthy AgeingSG", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2061Y", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "SG Cares is a nationwide movement to support local communities through Volunteer Centres for a more caring and inclusive society. In one aspect, these centres provide activity hubs to help keep seniors active and connected. In this module, students will learn key concepts in volunteerism and essential skills in empathy, communications, conflict management, team and activity building, and apply these to the design, coordination and conduct of activities for seniors at selected Volunteer Centres. Thus, students will sharpen their interpersonal effectiveness in communications, collaboration and engagement. This course is a partnership with MCCY through its SG Cares Office.", + "title": "Community Activities for Seniors with SG Cares", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2062X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "SG Cares is a nationwide movement to support local communities through Volunteer Centres for a more caring and inclusive society. In one aspect, these centres provide activity hubs to help keep seniors active and connected. In this module, students will learn key concepts in volunteerism and essential skills in empathy, communications, conflict management, team and activity building, and apply these to the design, coordination and conduct of activities for seniors at selected Volunteer Centres. Thus, students will sharpen their interpersonal effectiveness in communications, collaboration and engagement. This course is a partnership with MCCY through its SG Cares Office.", + "title": "Community Activities for Seniors with SG Cares", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2062Y", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4 + ], + "venue": "TP-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "ComLink is a nationwide initiative to befriend disadvantaged families with young children by providing comprehensive support that would help propel them towards realizing their own aspirations. In this module, students will learn key concepts in volunteerism, and essential skills, including communications, collaboration, conflict management, and family befriending. They will then apply these skills as ComLink Befrienders through regular home visitations, needs assessment, and connecting the families with community resources, journeying with them towards stability, self-reliance and social mobility. Students will thus develop character, empathy, and personal effectiveness.", + "title": "Community Link (ComLink) Befrienders", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2070", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "E1-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 11 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 11 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "ComLink is a nationwide initiative to befriend disadvantaged families with young children by providing comprehensive support that would help propel them towards realizing their own aspirations. In this module, students will learn key concepts in volunteerism, and essential skills, including communications, collaboration, conflict management, and family befriending. They will then apply these skills as ComLink Befrienders through regular home visitations, needs assessment, and connecting the families with community resources, journeying with them towards stability, self-reliance and social mobility. Students will thus develop character, empathy, and personal effectiveness.", + "title": "Community Link (ComLink) Befrienders", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2070X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ComLink is a nationwide initiative to befriend disadvantaged families with young children by providing comprehensive support that would help propel them towards realizing their own aspirations. In this module, students will learn key concepts in volunteerism, and essential skills, including communications, collaboration, conflict management, and family befriending. They will then apply these skills as ComLink Befrienders through regular home visitations, needs assessment, and connecting the families with community resources, journeying with them towards stability, self-reliance and social mobility. Students will thus develop character, empathy, and personal effectiveness.", + "title": "Community Link (ComLink) Befrienders", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEN2070Y", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4 + ], + "venue": "ERC-SR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "There are many ways to ask questions, and many kinds of questions that different disciplines investigate. For a start, this module introduces six dominant modes of questioning from the perspective of computational thinking, design thinking, engineering, philosophy, science, and social sciences. These six perspectives serve as a starting point to introduce all undergraduate students to different modes of questioning across these disciplines, and provide an initial exposure to how scholars from these disciplines pursue specific lines of questioning of everyday issues. We emphasize that while there is only limited time and space within one module to devote to specific disciplinary lines of investigations, we encourage all students to actively think about other lines of questioning, other questions that need to be asked, particularly in disciplines not represented in this introductory platform as we move through this journey together. We expect that in future subsequent offerings, other disciplinary modes of investigations may also be introduced.", + "title": "Asking Questions", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GEQ1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D57", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E47", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E51", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E42", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E49", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D73", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D56", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D61", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D70", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D60", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D59", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D64", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D58", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D63", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D67", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D71", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E76", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E-Learn_B", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "E31", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E46", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D66", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D69", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D68", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E77", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "D62", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E35", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E27", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E34", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E48", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D74", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D72", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E75", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E-Learn_B", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "E50", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D65", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D26", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E26", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E30", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D25", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D29", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D23", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D22", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D20", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E05", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E19", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D28", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D02", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E07", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E29", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E23", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E24", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E25", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E21", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E27", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D24", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D15", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E28", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D07", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "There are many ways to ask questions, and many kinds of questions that different disciplines investigate. For a start, this module introduces six dominant modes of questioning from the perspective of computational thinking, design thinking, engineering, philosophy, science, and social sciences. These six perspectives serve as a starting point to introduce all undergraduate students to different modes of questioning across these disciplines, and provide an initial exposure to how scholars from these disciplines pursue specific lines of questioning of everyday issues. We emphasize that while there is only limited time and space within one module to devote to specific disciplinary lines of investigations, we encourage all students to actively think about other lines of questioning, other questions that need to be asked, particularly in disciplines not represented in this introductory platform as we move through this journey together. We expect that in future subsequent offerings, other disciplinary modes of investigations may also be introduced.", + "title": "Asking Questions", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GEQ1000H", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "There are many ways to ask questions, and many kinds of questions that different disciplines investigate. For a start, this module introduces six dominant modes of questioning from the perspective of computational thinking, design thinking, engineering, philosophy, science, and social sciences. These six perspectives serve as a starting point to introduce all undergraduate students to different modes of questioning across these disciplines, and provide an initial exposure to how scholars from these disciplines pursue specific lines of questioning of everyday issues. We emphasize that while there is only limited time and space within one module to devote to specific disciplinary lines of investigations, we encourage all students to actively think about other lines of questioning, other questions that need to be asked, particularly in disciplines not represented in this introductory platform as we move through this journey together. We expect that in future subsequent offerings, other disciplinary modes of investigations may also be introduced.", + "title": "Asking Questions", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GEQ1000X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This inter-disciplinary module will provide foundational knowledge and skills relating to the emerging problem of sustainability. Probing questions about how humans impact and react to environmental change will be asked. Students will explore current and future global environmental change issues from the standpoints of science, technology, and policy. The science behind global change (climate variability and change, natural weather disasters such as floods and droughts, environmental degradation); human aspects of change (water crises and conflict, agriculture and food security, energy sustainability, climate, health); and technology and policy issues relating to mitigation and adaptation (renewable energy, carbon trading, water resource engineering, agricultural development) will be covered.", + "title": "Understanding and Critiquing Sustainability", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEQ1917", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip undergraduates with basic reasoning skills on using data to address real world issues. What are some potential complications to keep in mind as we plan what data to collect and how to use them to address our particular issue? When two things are related (e.g. smoking and cancer), how can we tell whether the relationship is causal (e.g. smoking causes cancer)? How can quantitative reasoning help us deal with uncertainty or elucidate complex relationships? These and other questions will be discussed using real world examples.", + "title": "Quantitative Reasoning", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GER1000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip undergraduates with basic reasoning skills on using data to address real world issues. What are some potential complications to keep in mind as we plan what data to collect and how to use them to address our particular issue? When two things are related (e.g. smoking and cancer), how can we tell whether the relationship is causal (e.g. smoking causes cancer)? How can quantitative reasoning help us deal with uncertainty or elucidate complex relationships? These and other questions will be discussed using real world examples.", + "title": "Quantitative Reasoning", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GER1000B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip undergraduates with basic reasoning skills on using data to address real world issues. What are some potential complications to keep in mind as we plan what data to collect and how to use them to address our particular issue? When two things are related (e.g. smoking and cancer), how can we tell whether the relationship is causal (e.g. smoking causes cancer)? How can quantitative reasoning help us deal with uncertainty or elucidate complex relationships? These and other questions will be discussed using real world examples.", + "title": "Quantitative Reasoning", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GER1000H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "RE2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "RH-CONF-RM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "SD2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SH-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "SE2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SH-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "KE4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "KRH-READRM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "PE2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "PGPH-FR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TE3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TH-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "WD2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "KEVII-MR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ED3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EH-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "PE4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "PGPH-FR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "SE3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SH-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "PE5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "PGPH-FR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "RE1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "RH-CONF-RM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "SD1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SH-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "SE1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SH-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "SD3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SH-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "RD5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "RH-CONF-RM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "KEVII-MR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "PE1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "PGPH-FR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "KEVII-MR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "KD2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "KRH-READRM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "RD1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "RH-CONF-RM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "RD3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "RH-CONF-RM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "PE6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "PGPH-FR4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "KEVII-MR2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "KD5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "KRH-READRM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "PD5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "PGPH-FR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TE1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TH-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "EE1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EH-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ED4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EH-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WD3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "KEVII-MR2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TD2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TH-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TE2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TH-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "KD3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "KRH-READRM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "EE3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EH-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "KD4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "KRH-READRM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "PD4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "PGPH-FR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "KD1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "KRH-READRM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "ED2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EH-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "RE5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "RH-CONF-RM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "EE2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EH-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "PD3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "PGPH-FR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "PE3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "PGPH-FR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "SD4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SH-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TE4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TH-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "RE4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "RH-CONF-RM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "PD2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "PGPH-FR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "RD4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "RH-CONF-RM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "PE7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "PGPH-FR4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "RD2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "RH-CONF-RM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "PD1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "PGPH-FR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TD4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TH-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WD1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "KEVII-MR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "KE5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "KRH-READRM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "RE3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "RH-CONF-RM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TD1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TH-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ED1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "EH-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TD3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TH-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "SE4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SH-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "EE4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EH-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the development of industrial relations and labour laws in Singapore. Students can thus understand why labour relations are the way they are in Singapore. In addition, the course is not purely historical. A substantial part of the course is also aimed at looking at the current legal problems faced by employees and employers in Singapore. This course will be of general relevance to all as students are in all likelihood going to be employees or employers some day.", + "title": "Singapore Employment Law and Policies", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the development of industrial relations and labour laws in Singapore. Students can thus understand why labour relations are the way they are in Singapore. In addition, the course is not purely historical. A substantial part of the course is also aimed at looking at the current legal problems faced by the employees end employers in Singapore. This course will be of general relevance to all as students in all likelihood going to be employees or employers some day. This course is offered to BTech students only.", + "title": "Singapore Employment Law", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1000T", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the dynamics of the world economy and the impact on Singapore in the last two centuries. It will demonstrate how Singapore grew through continual dependence on the rest of the world in different ways by focusing on major labour, capital and technological factors, in which threats are also seen as opportunities.", + "title": "Global EC Dimensions of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "W06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the dynamics of the world economy and the impact on Singapore in the last two centuries. It will demonstrate how Singapore grew through continual dependence on the rest of the world in different ways by focusing on major labour, capital and technological factors, in which threats are also seen as opportunities. This course is offered to BTech students only.", + "title": "Global Economic Dimensions Of Singapore", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1002T", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "LT7A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT7A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-08T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module attempts to understand the rationale of changes in Singapore's urban landscape. It places these changes within a framework that considers Singapore's efforts to globalise and examines how policies are formulated with the idea of sustaining an economy that has integral links sub-regionally with Southeast Asia while developing new spatial linkages that will strengthen its position in the global network. Emphasis is also given to recent discussions about how diversity and difference in the perception and use of space pose a challenge to the utilitarian and functional definition adopted by the state.", + "title": "Changing Landscapes of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "DO3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "DO7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "DO2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "DO5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "DO8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "DO6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus on the functions of the biophysical environment of the city state of Singapore. The topics include geology, soils, river systems, water supply, natural reserves, green areas, land reclamation and coastal environments. The environmental problems that arise from the development of a large tropical city within a limited area, and the possible solutions for such problems will be examined. The module does not require an extensive science or mathematics background.", + "title": "The Biophysical Environment of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-ELAB", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-ELAB", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-ELAB", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-ELAB", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Studies on the everyday life of ordinary people offer an important perspective for understanding human history. This module examines the daily life of Chinese\nSingaporeans during the late 19th to 20th centuries, focusing on their cultural expressions and social actions, revolving around eight geo\u2010cultural sites, namely, Singapore River, Chinatown, Chinese temples, clan associations, opera stages, amusement parks, hawker centres, and streets/roads. Students are asked to compare the past and present of these sites through oral history and fieldwork observation.", + "title": "Everyday Life of Chinese Singaporeans: Past & Present (taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 84, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to examine the evolving economic linkages between Singapore and India in a post-Cold War setting and attempts to explain the factors that have led to their enhanced economic collaboration based on areas of complementarity. The module will use concepts like economic regionalism, Singapore's regionalization policy and India's \"Look East\" policies to explain the confluence of national interests that has enhanced bilateral economic ties between both countries. The target audiences are students from various Faculties who would like to have a better understanding of Singapore's evolving foreign policy in South Asia and the socio-cultural impact of the same.", + "title": "Singapore and India: Emerging Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The South Asian presence in Singapore is an important part of Singapore's multicultural society in terms of the 'Indian' community and its economic and commercial influence; its religious and artistic impact; and its role in the everyday life of the nation (eg. cuisine, sport and entertainment). Students will be provided the opportunity to understand the nature of South Asian migration to Singapore, the significance of the South Asian community and its contributions to Singapore's development. Students will be provided with the necessary framework to study and analyse the historical and socio-economic development of the community and South Asian identity and concerns. The module will develop critical and analytical skills guiding students in the process of social scientific enquiry. The target students are undergraduates from all Faculties.", + "title": "South Asia in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 98, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 78, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines policies and programmes dealing with ethnic relations based on the experiences of Singapore and Malaysia. It focuses on how these much talked about and debated policies, impact or affect the Malays in particular, who constitute a numerical minority in Singapore, but form the majority in Malaysia. The module examines major socio\u2010historical factors conditioning these policies and programmes and the processes by which they are materialised from the period of British colonialism to the present. How these efforts bear upon nation building and national integration will be explored.", + "title": "Ethnicity and Nation-Building: Singapore and Malaysia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1008", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module traces the business history of Singapore from its origins as an East India Company outpost, as an entrepot for regional and international trade routes to its current status as a global city and center for international finance and business. This module offers an introduction to business history and explores different case studies in the local context. These care studies range from 'rags to riches' stories of early migrant communities, popular local brands, and present day entrepreneurs. Major topics include trading communities, commodities, networks and migration, entrepreneurship, business culture, heritage, globalization, state, politics and business.", + "title": "Singapore\u2019s Business History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1009", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Friday", + "lessonType": "Lecture", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is about Singapore's emergence from British colonial rule and merger with Malaysia to independence and nation-building. It covers political events, the economy, education, national service, ethnic relations, and culture and national identity. Students are encouraged to think through issues central to these topics. The module is tailored for students in all Faculties at all levels.", + "title": "Nation-Building in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Histories of Singapore have conventionally been narrated along internal lines, framed by administrative, political and national trajectories. Yet, the evolution of Singapore, from regional emporium to imperial port and strategic naval base, has all along been defined by much larger regional and transoceanic forces. Even after political independence in 1965, Singapore continues to project itself as a 'global city-state'. This module seeks to examine the historical evolution of Singapore against the contexts of global changes and developments from the 14th to the 21st century. This module is open to all students interested in Singapore studies.", + "title": "The Evolution of a Global City-State", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1011", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Popular Culture in Singapore is designed for both History and non-History students to look at the development of popular culture in Singapore from the colonial period to the present day. By learning about street theatre, local films, and theme parks among others, students will explore related issues like immigrant and cosmopolitan communities; colonial impact; class, race and religion; surveillance; gender and the body; family and social spaces. Students are expected to gain a sensitivity to historical contexts, and to better understand Singapore\u2019s rich cultural heritage.", + "title": "Popular Culture in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1012", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "D6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the urban history and architecture of Singapore from an inter-disciplinary perspective. It will cover the period from the ancient market and settlement of Tanma-hsi or Singapura, to the formation and development of a colonial town, and to the recent post-independence period, until the contemporary debates in Architecture and Urbanism in Singapore. The module, which is targeted at general audiences of undergraduate students, aims to stimulate intellectual discourse and critical thinking by using inter-disciplinary approaches to understanding the city and architecture.", + "title": "Singapore Urban History & Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1013", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines competing religious orientations that had evolved among the Malays of Singapore and socio-historical factors that had shaped such orientations. The ways in which these orientations condition their responses to the modern world are then discussed. The module analyses the contributions of Muslim religious thinkers to socio-economic reform of the community. A critical \nanalysis of the phenomenon of Islamic resurgence and its impact on the community\u2019s progress will also be examined. A theme underlying the module is the relevance of Islamic values in facilitating Malays adaptation to the demands of social change and pluralistic society.", + "title": "Islam and Contemporary Malay Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1014", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to promote a better understanding of Singapore-Japan relations, combining historical, political, economic, social and cultural perspectives. Besides an examination of the history of interactions between people in Singapore and Japan from the late 19th century to the present, the module also helps students grasp issues affecting Singapore\u2018s position and perception in a wider geographical and cultural context by considering its relations with Japan. Students are actively encouraged to use oral history, fieldwork and internet for their projects.", + "title": "Singapore and Japan: Historical and Contemporary Relationships", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1015", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module challenges students to examine current and emerging social issues in Singapore that affect family and community well-being. Due to complex social and technological changes that societies are experiencing, people are forced to adapt rapidly, often with negative consequences in many instances. The social issues that arise as a result need to be understood and addressed by individuals, families, communities and society at large. Students will learn to appreciate the implications of these issues for individual and collective action.", + "title": "Contemporary Social Issues in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1016", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The focus of the module is to highlight how engineering and technology have contributed to the development of Singapore. The module is structured around case studies such as the creation of Jurong island, one-north, the water story etc. In these case studies, the constraints faced by Singapore (e.g. scarcity of land, lack of water) are overcome through technological, organizational and other forms of innovation. Simple diagrams that can be understood by layman are used to explain some of the innovations (e.g. the water loop).", + "title": "Building a Dynamic Singapore - Role of Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the rationale for, and process of, the emergence and growth of Singapore?s built environment from a third world country to a world class city. It enables students to have an understanding and appreciation of the economic and social aspects and implications of how properties and infrastructure are developed and managed, given the constraints that Singapore faces. It also encourages them to develop alternative views on how the built environment can help Singapore continue to prosper and remain relevant in the region. This module is open to all undergraduates who are interested in Singapore's physical development.", + "title": "Managing Singapore's Built Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1019", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE-ER4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ER1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores Singapore\u2019s historical and present-day relationship with Western music, examining its influences on and integration into our culture and society, and its role in our self-identification. Students will adopt socio-historical and contemporary perspectives through looking at various case studies. They will critically consider how Singapore and Singaporeans have shaped and been shaped by music from the West, and be empowered to make decisions in negotiating this cultural correspondence moving forward. Topics covered include historical overview of the arrival of Western music in Singapore and the various functions that music plays and has played in society.", + "title": "Western Music within a Singaporean Context", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1020", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Located within one of the global centres of biodiversity, Singapore is endowed with a rich natural heritage that is impacted by expanding urbanisation. Development poses a great challenge to nature conservation and Singapore is an excellent model to study how a balance can be achieved. Students will be introduced to the country's natural heritage, its historical, scientific and potential economic value. You will have the opportunity to explore important habitats, and to think critically about the issues of sustainable development and the nation's responsibility to posterity and to regional and international conventions related to biodiversity conservation.", + "title": "Natural Heritage of Singapore", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1021", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Tutorial", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 300, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The status and legitimacy of Singlish is a hotly debated topic in Singapore society. Supporters of Singlish claim it contributes to the Singaporean identity and helps Singaporeans establish a connection with each other overseas. Detractors claim it jeopardizes Singaporeans\u2019 ability to learn Standard English and conveys a poor image of Singapore society on the global stage. This module introduces students to the various arguments and assumptions surrounding the Singlish controversy. It provides students with the conceptual tools needed to better understand the complexity behind an issue that is often presented in simplistic and emotional terms.", + "title": "The Singlish Controversy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "While drawing on methodologies and approaches used in literary studies, this module moves beyond the traditional confines of Singapore Literature. We will thus examine the representation of Singapore, and of contemporary issues of importance in Singapore, in a variety of different popular media. After an initial introduction to the critical reading of cultural representation, we will explore traditional genres such as poetry and drama, as well as more popular ones such as television, film, and popular autobiography. The module is open to all students.", + "title": "Representing Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1023", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This Module introduces students to the law pertaining to real estate development and investment in Singapore. Students will acquire an understanding and appreciation of the policies, circumstances and legal principles which underpin and shape the law on the availability, ownership, development and usage of real estate in Singapore. Students will also gain insight into legal analysis and modes of legal reasoning. This module is targeted at all students across Faculties who have had no exposure to Real Estate Law and wish to acquire a broad understanding of the multiple legal issues that pertain to the built environment.", + "title": "Real Estate Development & Investment Law", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1024", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on Singapore literature in English. It will deal with selected texts in the three main genres: poetry, fiction and drama. There will\nalso be opportunities to discuss the works with the writers. One of its main aims is to show how literature will help us gain a more comprehensive\ninsight into our understanding of Singapore.", + "title": "Singapore Literature in English: Selected Texts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to give students an understanding of the nature of urban planning, basic planning models and theories. Urban planning will be discussed, in the context of urbanisation and globalisation, as an important force shaping the modern human settlements. A study of the institutional aspect of planning will relate to Singapore\u2019s planning system in which issues of planning implementation will be elaborated. Learning objectives: Understanding nature of urban planning; understanding urban planning processes; understanding urban planning principles. Major topics to be covered: Urbanisation history and its impact; Urban forms: organic growth of urban settlements; Utopian city/the garden city movement; The city beautiful movement/ Neighbourhood; New town; Urban design and conservation; Institutional Structure for planning; Concept Plan and Master Plan; Development control/planning implementation; Planning analysis: population and transportation; Public participation in planning.", + "title": "Urban Planning in Singapore", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1026", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0226", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0226", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we seek to reflect on some taken-for-granted understandings of \u201cSingapore society\u201d and to dialogue with the readings, lectures and tutorial materials. We hope you will be able to appreciate the diverse social, political, historical processes and legacies, problems and contradictions that have constructed Singapore society. Ultimately, we aim to equip you with varied viewpoints that will enable you to think critically about Singapore society, its past, its present and its future.", + "title": "Singapore Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1028", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the ways in which Singapore films constitute a national cinema by considering the history and development of local film production as well as closely examining how individual films perform and engage the notion of a Singapore identity. Through a group creative project, students are challenged to make their own Singapore film that involves the practical application of critical ideas and enables students to participate in the ways that a national cinema performs and functions. The films studied may involve mature content and have varied film ratings.", + "title": "Singapore Film: Performance of Identity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1029", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For 700 years Singapore has been a key node on world maritime trade routes. The study of maritime culture in Singapore requires integration of data from numerous disciplines including archaeology, history, economics, engineering, and ecology, to name some of the most significant. The prosperity of Singapore depends to a major extent on its port, yet few students are aware of the importance of maritime industry to the formation of the country. This module will explore Singapore\u2019s appearance as a trading port in the 14th century, the reasons for its growth, and the sea\u2019s influence on Singaporean society and economy.", + "title": "Singapore and the Sea", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to concepts in culture and communication in multiracial Singapore. It raises fundamental questions around what communication means, how it is practiced and enacted (disseminated, practised, consumed) in Singapore. In doing so, it considers the institutions, the history and the lens that we bring to understanding culture and communication, and how they in turn impact on our society. By understanding key sites of Singaporean culture, from hawker centres to shopping, this module asks how we may practice communication as citizens, consumers, and creators in a hyper-urban landscape that positions Singaporeans as global consumers and local citizens.", + "title": "Culture and Communication in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1031", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the topic of censorship in Singapore. It examines the origins and meaning of the term \u201cOB marker\u201d and Singapore\u2019s history of regulating media and speech to contextualise the perception of strict state control on speech. Contemporary events related to speech and expression are critically examined to assess if the perception of strict state controls on speech in Singapore is still valid.", + "title": "Who moved my OB markers?", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module initiates students into the workings of politics from the perspective of citizenship. What constitutes citizenship? What are the roles, duties and obligations of being a Singapore citizen? How do citizens interact and impact politics and decision making in Singapore? How have changes over the years, including (a) perspective of Singapore\u2019s political history, (b) imperatives shaping national politics, (c) the political system, (d) its key structures and approaches to nation building, affected national politics and in turn, led to the political elites responding to changing demands of citizens? The role of civic and civil society will also be discussed.", + "title": "We the Citizens - Understanding Singapore\u2019s Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1034", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As an economically-developed nation with a diverse population, Singapore now confronts a range of socioeconomic issues, a rapidly ageing population, declining fertility rates, widening income inequality, and rising living costs amidst increasing global competition, technological advancements, and security threats. Singaporeans have also become a people with a greater propensity to participate in the decisions that affect the nation. This module aims to encourage undergraduates to reflect on Singapore\u2019s post-independence history, imagine the kind of Singapore they would like to co-create, and deliberate on the ways to achieve the future visions they have for Singapore. All lectures will be mounted online.", + "title": "Singapore: Imagining the Next 50 Years", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GES1035", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D45", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D33", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D44", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D35", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D43", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D37", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D38", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D41", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D32", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D42", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D36", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D31", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D39", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D34", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D40", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D42", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D38", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D37", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D44", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D32", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D39", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D34", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D45", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D41", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D36", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D31", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D40", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D43", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D33", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D35", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ever wonder how many different museums theatres, concert halls, and art events there are in Singapore and why they exist? Why did Singapore recently renovate Victoria Theatre and Concert Hall? This course is a study of Singapore arts in the\npresent, but arranged in relationship with its past and its relationship with the global arts community. Students are required to attend multiple indoor and outdoor art events, from museums, galleries and performance halls to the street as the stage as part of the course requirements.", + "title": "The Arts in Singapore Today", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1036", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module facilitates an introductory inquiry into Singaporean pasts based on a cache of 'objects', broadly defined. Students will be invited to make critical\nobservations and bring to bear their imaginations on a variety of 'objects' from Singapore\u2019s pasts: sand, well, club, movie and sound card, among others. Students will then exercise their historical imaginations to generate interpretive possibilities pertaining to Singapore's past prompted by these objects, both individually and collectively. In reflecting on these objects and their possible connections to the past, students will emerge from this module with a broad, diverse, creative and concrete grasp of Singapore's histories.", + "title": "A History of Singapore in Ten Objects", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1037", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the forging of the Chinese Singaporean community by observing the changes in linguistic data over time. Drawing linguistic\ndata from different aspects of society and entertainment (eg. food, movies, theatre and so on), the module aims to reveal to students how the Chinese community has\nevolved from being a community with multiple languages to a single, unified language. Influential professionals in their field of expertise will also share from their personal experience the evolution of the Chinese community, and how the Chinese Singaporean community fits into Singapore\u2019s multiracial society.", + "title": "La Kopi: Forging of the Chinese Singaporean Community", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1038", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces a broad spectrum of performance practices that may be identified as local cultural expressions found in Singapore. Such practices occur in varied spaces and mediums, and include street opera, getai [song-stage], animal performances, theatre, film, religious festivals, national day parades, YouTube video performances and mobile gaming. Students will explore the rich performative histories of these practices and study concepts of performativity, liveness, and mediation. They will learn the ways in which technology and media play a crucial part in cultural expression and identity formation. The module is open to all students and Continuous Assessment is 100%.", + "title": "Cultural Performances and Practices in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1039", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students an opportunity to understand prominent Chinese pioneers and leaders in Singapore during the colonial period. Selected personalities who are either community leaders, entrepreneurs, philanthropists, patriots, war heroes, and/or social activists will be discussed and examined in historical, social, economic, cultural and political contexts of Singapore in the 19th and first half of the 20th centuries.", + "title": "Prominent Chinese in Colonial Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1040", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Monday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the ethical dimensions of everyday life in Singapore. It focuses on moral dilemmas that arise in the nation\u2019s pursuit of \u2018happiness, prosperity, and progress\u2019. We will explore how moral reasoning from multiple perspectives applies to local concerns such as equality, meritocracy, multiculturalism, immigration, and marriage. This will challenge us to identify moral problems created by social and technological changes, combine ethical principles with practical constraints, and balance the interests of individuals and communities. We will also consider how moral dialogue can be cultivated in Singapore\u2019s multicultural society, so as to manage diverse traditions and divergent values.", + "title": "Everyday Ethics in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1041", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a broad survey of Singapore\u2019s public health issues and challenges since the post-colonial period, situated within the socio-historical context of nation-building. Students will take a trip down memory lane and reflect on how and why different public health challenges have evolved through the ages, and think critically about how the nation can deal with both present and future health threats. Through an exploration of issues ranging from sanitation and hygiene, to pandemic preparedness and health promotion, this course provides an opportunity to investigate the centrality of public health management within Singapore\u2019s national development project.", + "title": "Public Health in Singapore: Challenges and Changes", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1042", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to explore current musical activities across the spectrum of categories. By the end of the course, students should have an understanding of the current state of music in society, ranging from how and where it is taking place, the musical education and government systems involved, influences and trends across the industry, activities in pop and traditional music, and more.\n\nIn addition to regular lectures and student-led discussions on relevant topics, students will have hands-on music making tutorials that relate to musical activities in Singapore, as well as preparing student group presentations on current affairs in music.", + "title": "State of the Art: A Current View of Music in Singapore", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GES1043", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the dynamics of the world economy and the impact on Singapore in the last two centuries. It will demonstrate how Singapore grew through continual dependence on the rest of the world in different ways by focusing on major labour, capital and technological factors, in which threats are also seen as opportunities.", + "title": "Global EC Dimensions of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W05", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W03", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "Unknown" + }, + { + "classNo": "W01", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0509", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the dynamics of the world economy and the impact on Singapore in the last two centuries. It will demonstrate how Singapore grew through continual dependence on the rest of the world in different ways by focusing on major labour, capital and technological factors, in which threats are also seen as opportunities.", + "title": "Global EC Dimensions of Singapore", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1000T", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT7A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 115, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 115, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 115, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 115, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "LT7A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-08T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module attempts to understand the rationale of changes in Singapore's urban landscape. It places these changes within a framework that considers Singapore's efforts to globalise and examines how policies are formulated with the idea of sustaining an economy that has integral links sub-regionally with Southeast Asia while developing new spatial linkages that will strengthen its position in the global network. Emphasis is also given to recent discussions about how diversity and difference in the perception and use of space pose a challenge to the utilitarian and functional definition adopted by the state.", + "title": "Changing Landscapes of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "DO5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "DO6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "Unknown" + }, + { + "classNo": "DO2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "DO7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "DO8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "DO3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus on the functions of the biophysical environment of the city state of Singapore. The topics include geology, soils, river systems, water supply, natural reserves, green areas, land reclamation and coastal environments. The environmental problems that arise from the development of a large tropical city within a limited area, and the possible solutions for such problems will be examined. The module does not require an extensive science or mathematics background.", + "title": "The Biophysical Environment of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-ELAB", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-ELAB", + "day": "Monday", + "lessonType": "Laboratory", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-ELAB", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS2-ELAB", + "day": "Monday", + "lessonType": "Laboratory", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Studies on the everyday life of ordinary people offer an important perspective for understanding human history. This module examines the daily life of Chinese\nSingaporeans during the late 19th to 20th centuries, focusing on their cultural expressions and social actions, revolving around eight geo\u2010cultural sites, namely, Singapore River, Chinatown, Chinese temples, clan associations, opera stages, amusement parks, hawker centres, and streets/roads. Students are asked to compare the past and present of these sites through oral history and fieldwork observation.", + "title": "Everyday Life of Chinese Singaporeans: Past & Present (taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 91, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to examine the evolving economic linkages between Singapore and India in a post-Cold War setting and attempts to explain the factors that have led to their enhanced economic collaboration based on areas of complementarity. The module will use concepts like economic regionalism, Singapore's regionalization policy and India's \"Look East\" policies to explain the confluence of national interests that has enhanced bilateral economic ties between both countries. The target audiences are students from various Faculties who would like to have a better understanding of Singapore's evolving foreign policy in South Asia and the socio-cultural impact of the same.", + "title": "Singapore and India: Emerging Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 52, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The South Asian presence in Singapore is an important part of Singapore's multicultural society in terms of the 'Indian' community and its economic and commercial influence; its religious and artistic impact; and its role in the everyday life of the nation (eg. cuisine, sport and entertainment). Students will be provided the opportunity to understand the nature of South Asian migration to Singapore, the significance of the South Asian community and its contributions to Singapore's development. Students will be provided with the necessary framework to study and analyse the historical and socio-economic development of the community and South Asian identity and concerns. The module will develop critical and analytical skills guiding students in the process of social scientific enquiry. The target students are undergraduates from all Faculties.", + "title": "South Asia in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 77, + "covidZone": "Unknown" + }, + { + "classNo": "E3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 72, + "covidZone": "Unknown" + }, + { + "classNo": "E3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines policies and programmes dealing with ethnic relations based on the experiences of Singapore and Malaysia. It focuses on how these much talked about and debated policies, impact or affect the Malays in particular, who constitute a numerical minority in Singapore, but form the majority in Malaysia. The module examines major socio\u2010historical factors conditioning these policies and programmes and the processes by which they are materialised from the period of British colonialism to the present. How these efforts bear upon nation building and national integration will be explored.", + "title": "Ethnicity and Nation-Building: Singapore and Malaysia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module traces the business history of Singapore from its origins as an East India Company outpost, as an entrepot for regional and international trade routes to its current status as a global city and center for international finance and business. This module offers an introduction to business history and explores different case studies in the local context. These care studies range from 'rags to riches' stories of early migrant communities, popular local brands, and present day entrepreneurs. Major topics include trading communities, commodities, networks and migration, entrepreneurship, business culture, heritage, globalization, state, politics and business.", + "title": "Singapore\u2019s Business History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1007", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Friday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is about Singapore's emergence from British colonial rule and merger with Malaysia to independence and nation-building. It covers political events, the economy, education, national service, ethnic relations, and culture and national identity. Students are encouraged to think through issues central to these topics. The module is tailored for students in all Faculties at all levels.", + "title": "Nation-Building in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The history of Singapore has traditionally been conceived along internal lines, based mainly, if not solely, on the traditional trajectories of administrative, political and national historical narratives. Yet, as we all know, the evolution of Singapore, from classical regional emporium to international port city and strategic naval base, has all along been defined by much larger regional and international forces. After its emergence as a sovereign state in 1965, Singapore continues to project itself as a 'global city-state'. Our local society has an 'international' make-up, being the product as it were of historical and current diasporic trends. This module provides an international framework for a study of the history of Singapore, and seeks to examine the historical evolution of Singapore against the contexts of regional and international changes and developments from the 14th to the 20th century. This module is open to all students throughout NUS interested in Singapore history/studies.", + "title": "The Evolution of a Global City-State", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1009", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Popular Culture in Singapore is designed for both History and non-History students to look at the development of popular culture in Singapore from the colonial period to the present day. By learning about street theatre, local films, and theme parks among others, students will explore related issues like immigrant and cosmopolitan communities; colonial impact; class, race and religion; surveillance; gender and the body; family and social spaces. Students are expected to gain a sensitivity to historical contexts, and to better understand Singapore\u2019s rich cultural heritage.", + "title": "Popular Culture in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1010", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "E7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the urban history and architecture of Singapore from an inter-disciplinary perspective. It will cover the period from the ancient market and settlement of Tanma-hsi or Singapura, to the formation and development of a colonial town, and to the recent post-independence period, until the contemporary debates in Architecture and Urbanism in Singapore. The module, which is targeted at general audiences of undergraduate students, aims to stimulate intellectual discourse and critical thinking by using inter-disciplinary approaches to understanding the city and architecture.", + "title": "Singapore Urban History & Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1011", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines competing religious orientations that had evolved among the Malays of Singapore and socio-historical factors that had shaped such orientations. The ways in which these orientations condition their responses to the modern world are then discussed. The module analyses the contributions of Muslim religious thinkers to socio-economic reform of the community. A critical \nanalysis of the phenomenon of Islamic resurgence and its impact on the community\u2019s progress will also be examined. A theme underlying the module is the relevance of Islamic values in facilitating Malays adaptation to the demands of social change and pluralistic society.", + "title": "Islam and Contemporary Malay Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1012", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to promote a better understanding of Singapore-Japan relations, combining historical, political, economic, social and cultural perspectives. Besides an examination of the history of interactions between people in Singapore and Japan from the late 19th century to the present, the module also helps students grasp issues affecting Singapore\u2018s position and perception in a wider geographical and cultural context by considering its relations with Japan. Students are actively encouraged to use oral history, fieldwork and internet for their projects.", + "title": "Singapore and Japan: Historical and Contemporary Relationships", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1013", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the rationale for, and process of, the emergence and growth of Singapore?s built environment from a third world country to a world class city. It enables students to have an understanding and appreciation of the economic and social aspects and implications of how properties and infrastructure are developed and managed, given the constraints that Singapore faces. It also encourages them to develop alternative views on how the built environment can help Singapore continue to prosper and remain relevant in the region. This module is open to all undergraduates who are interested in Singapore's physical development.", + "title": "Managing Singapore's Built Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1014", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ER1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE-ER4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores Singapore\u2019s historical and present-day relationship with Western music, examining its influences on and integration into our culture and society, and its role in our self-identification. Students will adopt socio-historical and contemporary perspectives through looking at various case studies. They will critically consider how Singapore and Singaporeans have shaped and been shaped by music from the West, and be empowered to make decisions in negotiating this cultural correspondence moving forward. Topics covered include historical overview of the arrival of Western music in Singapore and the various functions that music plays and has played in society.", + "title": "Western Music within a Singaporean Context", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1015", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Located within one of the global centres of biodiversity, Singapore is endowed with a rich natural heritage that is impacted by expanding urbanisation. Development poses a great challenge to nature conservation and Singapore is an excellent model to study how a balance can be achieved. Students will be introduced to the country's natural heritage, its historical, scientific and potential economic value. You will have the opportunity to explore important habitats, and to think critically about the issues of sustainable development and the nation's responsibility to posterity and to regional and international conventions related to biodiversity conservation.", + "title": "Natural Heritage of Singapore", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1016", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "While drawing on methodologies and approaches used in literary studies, this module moves beyond the traditional confines of Singapore Literature. We will thus examine the representation of Singapore, and of contemporary issues of importance in Singapore, in a variety of different popular media. After an initial introduction to the critical reading of cultural representation, we will explore traditional genres such as poetry and drama, as well as more popular ones such as television, film, and popular autobiography. The module is open to all students.", + "title": "Representing Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This Module introduces students to the law pertaining to real estate development and investment in Singapore. Students will acquire an understanding and appreciation of the policies, circumstances and legal principles which underpin and shape the law on the availability, ownership, development and usage of real estate in Singapore. Students will also gain insight into legal analysis and modes of legal reasoning. This module is targeted at all students across Faculties who have had no exposure to Real Estate Law and wish to acquire a broad understanding of the multiple legal issues that pertain to the built environment.", + "title": "Real Estate Development & Investment Law", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1018", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to give students an understanding of the nature of urban planning, basic planning models and theories. Urban planning will be discussed, in the context of urbanisation and globalisation, as an important force shaping the modern human settlements. A study of the institutional aspect of planning will relate to Singapore\u2019s planning system in which issues of planning implementation will be elaborated. Learning objectives: Understanding nature of urban planning; understanding urban planning processes; understanding urban planning principles. Major topics to be covered: Urbanisation history and its impact; Urban forms: organic growth of urban settlements; Utopian city/the garden city movement; The city beautiful movement/ Neighbourhood; New town; Urban design and conservation; Institutional Structure for planning; Concept Plan and Master Plan; Development control/planning implementation; Planning analysis: population and transportation; Public participation in planning.", + "title": "Urban Planning in Singapore", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1019", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0226", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0226", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we seek to reflect on some taken-for-granted understandings of \u201cSingapore society\u201d and to dialogue with the readings, lectures and tutorial materials. We hope you will be able to appreciate the diverse social, political, historical processes and legacies, problems and contradictions that have constructed Singapore society. Ultimately, we aim to equip you with varied viewpoints that will enable you to think critically about Singapore society, its past, its present and its future.", + "title": "Singapore Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1020", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the ways in which Singapore films constitute a national cinema by considering the history and development of local film production as well as closely examining how individual films perform and engage the notion of a Singapore identity. Through a group creative project, students are challenged to make their own Singapore film that involves the practical application of critical ideas and enables students to participate in the ways that a national cinema performs and functions. The films studied may involve mature content and have varied film ratings.", + "title": "Singapore Film: Performance of Identity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1021", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to concepts in culture and communication in multiracial Singapore. It raises fundamental questions around what communication means, how it is practiced and enacted (disseminated, practised, consumed) in Singapore. In doing so, it considers the institutions, the history and the lens that we bring to understanding culture and communication, and how they in turn impact on our society. By understanding key sites of Singaporean culture, from hawker centres to shopping, this module asks how we may practice communication as citizens, consumers, and creators in a hyper-urban landscape that positions Singaporeans as global consumers and local citizens.", + "title": "Culture and Communication in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1022", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the topic of censorship in Singapore. It examines the origins and meaning of the term \u201cOB marker\u201d and Singapore\u2019s history of regulating media and speech to contextualise the perception of strict state control on speech. Contemporary events related to speech and expression are critically examined to assess if the perception of strict state controls on speech in Singapore is still valid.", + "title": "Who moved my OB markers?", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1023", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module initiates students into the workings of politics from the perspective of citizenship. What constitutes citizenship? What are the roles, duties and obligations of being a Singapore citizen? How do citizens interact and impact politics and decision making in Singapore? How have changes over the years, including (a) perspective of Singapore\u2019s political history, (b) imperatives shaping national politics, (c) the political system, (d) its key structures and approaches to nation building, affected national politics and in turn, led to the political elites responding to changing demands of citizens? The role of civic and civil society will also be discussed.", + "title": "We the Citizens - Understanding Singapore\u2019s Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1024", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As an economically-developed nation with a diverse population, Singapore now confronts a range of socioeconomic issues, a rapidly ageing population, declining fertility rates, widening income inequality, and rising living costs amidst increasing global competition, technological advancements, and security threats. Singaporeans have also become a people with a greater propensity to participate in the decisions that affect the nation. This module aims to encourage undergraduates to reflect on Singapore\u2019s post-independence history, imagine the kind of Singapore they would like to co-create, and deliberate on the ways to achieve the future visions they have for Singapore. All lectures will be mounted online.", + "title": "Singapore: Imagining the Next 50 Years", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GESS1025", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D45", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D33", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D35", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D37", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D32", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D40", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D36", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D44", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D31", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D39", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D38", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D42", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D43", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D41", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D34", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D24", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D38", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D40", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D43", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D44", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D32", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D39", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D34", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D36", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D31", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D33", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D45", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D37", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D35", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D41", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D42", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module facilitates an introductory inquiry into Singaporean pasts based on a cache of 'objects', broadly defined. Students will be invited to make critical\nobservations and bring to bear their imaginations on a variety of 'objects' from Singapore\u2019s pasts: sand, well, club, movie and sound card, among others. Students will then exercise their historical imaginations to generate interpretive possibilities pertaining to Singapore's past prompted by these objects, both individually and collectively. In reflecting on these objects and their possible connections to the past, students will emerge from this module with a broad, diverse, creative and concrete grasp of Singapore's histories.", + "title": "A History of Singapore in Ten Objects", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1026", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the forging of the Chinese Singaporean community by observing the changes in linguistic data over time. Drawing linguistic\ndata from different aspects of society and entertainment (eg. food, movies, theatre and so on), the module aims to reveal to students how the Chinese community has\nevolved from being a community with multiple languages to a single, unified language. Influential professionals in their field of expertise will also share from their personal experience the evolution of the Chinese community, and how the Chinese Singaporean community fits into Singapore\u2019s multiracial society.", + "title": "La Kopi: Forging of the Chinese Singaporean Community", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces a broad spectrum of performance practices that may be identified as local cultural expressions found in Singapore. Such practices occur in varied spaces and mediums, and include street opera, getai [song-stage], animal performances, theatre, film, religious festivals, national day parades, YouTube video performances and mobile gaming. Students will explore the rich performative histories of these practices and study concepts of performativity, liveness, and mediation. They will learn the ways in which technology and media play a crucial part in cultural expression and identity formation. The module is open to all students and Continuous Assessment is 100%.", + "title": "Cultural Performances and Practices in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1028", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the ethical dimensions of everyday life in Singapore. It focuses on moral dilemmas that arise in the nation\u2019s pursuit of \u2018happiness, prosperity, and progress\u2019. We will explore how moral reasoning from multiple perspectives applies to local concerns such as equality, meritocracy, multiculturalism, immigration, and marriage. This will challenge us to identify moral problems created by social and technological changes, combine ethical principles with practical constraints, and balance the interests of individuals and communities. We will also consider how moral dialogue can be cultivated in Singapore\u2019s multicultural society, so as to manage diverse traditions and divergent values.", + "title": "Everyday Ethics in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1029", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a broad survey of Singapore\u2019s public health issues and challenges since the post-colonial period, situated within the socio-historical context of nation-building. Students will take a trip down memory lane and reflect on how and why different public health challenges have evolved through the ages, and think critically about how the nation can deal with both present and future health threats. Through an exploration of issues ranging from sanitation and hygiene, to pandemic preparedness and health promotion, this course provides an opportunity to investigate the centrality of public health management within Singapore\u2019s national development project.", + "title": "Public Health in Singapore: Challenges and Changes", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to explore current musical activities across the spectrum of categories. By the end of the course, students should have an understanding of the current state of music in society, ranging from how and where it is taking place, the musical education and government systems involved, influences and trends across the industry, activities in pop and traditional music, and more.\n\nIn addition to regular lectures and student-led discussions on relevant topics, students will have hands-on music making tutorials that relate to musical activities in Singapore, as well as preparing student group presentations on current affairs in music.", + "title": "State of the Art: A Current View of Music in Singapore", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students an opportunity to understand prominent Chinese pioneers and leaders in Singapore during the colonial period. Selected personalities who are either community leaders, entrepreneurs, philanthropists, patriots, war heroes, and/or social activists will be discussed and examined in historical, social, economic, cultural and political contexts of Singapore in the 19th and first half of the 20th centuries.", + "title": "Prominent Chinese in Colonial Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1032", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Monday", + "lessonType": "Lecture", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The status and legitimacy of Singlish is a hotly debated topic in Singapore society. Supporters of Singlish claim it contributes to the Singaporean identity and helps Singaporeans establish a connection with each other overseas. Detractors claim it jeopardizes Singaporeans\u2019 ability to learn Standard English and conveys a poor image of Singapore society on the global stage. This module introduces students to the various arguments and assumptions surrounding the Singlish controversy. It provides students with the conceptual tools needed to better understand the complexity behind an issue that is often presented in simplistic and emotional terms.", + "title": "The Singlish Controversy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on Singapore literature in English. It will deal with selected texts in the three main genres: poetry, fiction and drama. There will\nalso be opportunities to discuss the works with the writers. One of its main aims is to show how literature will help us gain a more comprehensive\ninsight into our understanding of Singapore.", + "title": "Singapore Literature in English: Selected Texts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1034", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For 700 years Singapore has been a key node on world maritime trade routes. The study of maritime culture in Singapore requires integration of data from numerous disciplines including archaeology, history, economics, engineering, and ecology, to name some of the most significant. The prosperity of Singapore depends to a major extent on its port, yet few students are aware of the importance of maritime industry to the formation of the country. This module will explore Singapore\u2019s appearance as a trading port in the 14th century, the reasons for its growth, and the sea\u2019s influence on Singaporean society and economy.", + "title": "Singapore and the Sea", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "GESS1035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the development of industrial relations and labour laws in Singapore. Students can thus understand why labour relations are the way they are in Singapore. In addition, the course is not purely historical. A substantial part of the course is also aimed at looking at the current legal problems faced by employees and employers in Singapore. This course will be of general relevance to all as students are in all likelihood going to be employees or employers some day.", + "title": "Singapore Employment Law and Policies", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1036", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to introduce students to Employment Law\nin Singapore and the policies behind them. At the end of\ncourse, students should gain a good grasp of employment\nlaw in Singapore and understand the policy reasons behind,\nvarious employment laws or the lack of certain employment\nlaws. Students will also gain an appreciation of the various\nand ever evolving initiatives taken by the government, some\nof which are unique to Singapore (such as NWC, TAFEP,\nProgressive Wage Model, Workfare Income Supplement\nand Workforce Singapore), to enhance the interests of\nworkers but at the same time not over-burden businesses.", + "title": "Singapore Employment Law and Policies", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1036T", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to gender and sexuality issues in Singapore from a historical perspective. We examine how our everyday understandings of gender have been formed in a long, complex process of negotiation over the twentieth century. In five themes 1) religion and marriage, 2) non-binary histories, 3) state morality, 4) queer stories and 5) gender troubles, we trace how state and religious authorities have shaped sexual behaviours and gender identities, with varying degrees of conformity and contestation from groups and individuals. Throughout history, gender remained fluid despite multiple attempts at restraining sexuality.", + "title": "Gender and Sexuality: A Singaporean History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GESS1037", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In general, this module is aimed at getting student to critically engage with the \u2018work\u2019 or \u2018power\u2019 of maps in shaping the historical emergence of the modern world and in its ongoing transformation. To do this we will combine diverse modes of learning, covering issues of knowledge and content (the history of cartography), practical skills of map making/reading, and critical skills of evaluating and interpreting maps. We will stimulate a critical awareness of mapping as an evolving technology that has far-reaching social and political considerations.", + "title": "Seeing the World Through Maps", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers NUS students an opportunity to explore different aspects and contexts of Chinese communication. The target audience is English speaking undergraduates with minimal Chinese language proficiency. The various contexts of Chinese communication include advertising, business, the press, social communication, regional usages, pop culture, translations, meaning of Chinese names, codeswitching and the use of Chinese dialects. It is intended to serve as a primer for students interested in these areas of study. A minimum Chinese language proficiency of CLB is required.", + "title": "Bridging East and West: Exploring Chinese Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Few words in the English language (or any language) are as evocative and emotionally\u2010charged as \u201chome.\u201d But how do we determine what we call home, and why should we take \u201chome\u201d seriously? This module explores the political, social, economic, and cultural aspects of the complex idea of home. Major topics include: sense of place, home technologies and design, gender and housework, home and travel, globalisation,\nnationalism, homelessness, exile, and representations of home. Students will complete the module with a new appreciation for the complexity of the places \u2013 house, neighborhood, nation, planet \u2013 they call home.", + "title": "Home", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Friday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Internet has become the most widely used medium for commerce and communication as its infrastructure can be quickly and easily set up to link to the worldwide network and access information globally. Its growth over the last few years has been phenomenal. With these activities, countries are beginning to recognize that this new technology can not only expand the reach and power of traditional crimes, but also breed new forms of criminal activity. \n\n\n\nOn the successful completion of this module, students should gain sufficient baseline knowledge to be able to identify, assess and respond to a variety of cybercrime scenarios, including industrial espionage, cyber-terrorism, communications eavesdropping, computer hacking, software viruses, denial-of-service, destruction and modification of data, distortion and fabrication of information, forgery, control and disruption of information. \n\n\n\nStudents will also learn about countermeasures, including authentication, encryption, auditing, monitoring, technology risk management, intrusion detection, and firewalls, and the limitations of these countermeasures.", + "title": "Cyber Security", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students to be effective public speakers and critically attuned listeners. It introduces students to theories of oral communication and public speaking, as well as practical strategies for analysing and connecting with audiences, gathering and structuring relevant information, employing effective rhetorical devices, incorporating visual aids, and delivering purposefully engaging speeches. Importantly, students will be given multiple opportunities to practise their speaking skills and to give and receive critical constructive feedback. Through experiential and reflective learning, students will gain confidence in speaking in academic, professional and public settings.", + "title": "Public Speaking and Critical Reasoning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1008", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 62, + "covidZone": "Unknown" + }, + { + "classNo": "W16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W8", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the life and writings of Mohandas Karamchand Gandhi, regarded as one of the icons of the twentieth century and one of the principal architects of a free India. The course is meant to not only understand and analyse Gandhi\u2019s thought but also to outline his extraordinary legacy. The course will introduce students to Gandhi\u2019s writings and ideas on several issues, including non-violence, colonialism, modernity, ethics, science and health. The aim would be to not only expose students to the complexity of Gandhi \u2014 the man and his ideas \u2014 but to critically interrogate Gandhi and his legacies.", + "title": "Maverick or Mahatma? Gandhi\u2019s Life & Legacy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1009", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to enhance thinking and communication skills of students through case studies and experiments in the history of scientific invention and discovery. It does this primarily by using an experimental and historical case study approach. There will be approximately 8 weeks of lectures that will involve the student in recreating the circumstances surrounding many inventions and discoveries in the history of electricity and magnetism. Students will go on to carry out a home experiment of his or her choice in electricity and magnetism. Students will also carry out a case study on an invention/inventor of his or her choice and present it in the form of a poster paper. The thinking skills of students will be enhanced by experiencing the many different ways that engineering devices and discoveries in physics can be made, which often involves controversy. They will become familiar with opposing approaches both through different experimental methods and through seeking to understand how specific inventions came about. Students will improve their communication skills and expression by giving a lecture on their selected case study to the class, which will be debated ,analyzed and interpreted, and they will also prepare a poster paper on their home experiment/case study which will be presented at an open forum.", + "title": "Modes Of Invention", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What do natural resources utilization, spread of diseases and urbanization have in common? Why do economic, social and health systems behave the way they do? Students will explore these questions through the systems and critical thinking paradigm. Through collaborative work and classroom debates, students will expand and consolidate knowledge fragments into structured representations for larger, complex systems. By deciphering common motifs, and understanding the effect of interdependencies between the different parts of the system, students will develop critical stances about real-world phenomena. They will express their understanding of the structure and behavior of systems through multimedia reports and oral presentations.", + "title": "Towards an Understanding of the Complex World", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It often seems the worlds of science and art are unrelated: Logical truth versus emotional imagination. Still, science and art have much in common. Science has caused paradigm shifts in artistic expression while art is used for engineering design and communication of scientific knowledge. In this module, students will be introduced to the use of materials and technology related to architecture, sculpture, painting, photography and imaging. The use of technology for dating and attribution of objects of art as well as the use of visual art for scientific illustration and design will be examined. Knowledge of the scientific principles of various forms of visual art will also be explored. The module aims at the development of some artistic skills for illustrations of scientific concepts and engineering designs. This module will help students to better express their thoughts through artistic expression and appreciate visual art.", + "title": "The Art of Science, the Science of Art", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why and how have things changed and moved so fast? Why and how has the global economy become more open and integrated? This module discusses the increasing connections and mobilities of goods (like grains, oil, cars, appliances, parts & components), services (like banking, education, tourism), money and finance, labour, technology, ideas and information. It discusses their trends and patterns and critically examines the role of various factors such as international and regional institutions, media and ICT, infrastructure and distribution networks, state intervention, and private sector involvement. It also assesses the social, economic, political and environmental impacts of increasing interconnectedness and mobilities.", + "title": "Understanding the Changing Global Economic Landscape", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1016", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 104, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR8", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "TP-GLR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Why and how have things changed and moved so fast? Why and how has the global economy become more open and integrated? This module discusses the increasing connections and mobilities of goods (like grains, oil, cars, appliances, parts & components), services (like banking, education, tourism), money and finance, labour, technology, ideas and information. It discusses their trends and patterns and critically examines the role of various factors such as international and regional institutions, media and ICT, infrastructure and distribution networks, state intervention, and private sector involvement. It also assesses the social, economic, political and environmental impacts of increasing interconnectedness and mobilities.", + "title": "Understanding The Changing Global Economic Landscape", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1016T", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT6", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this course are to introduce basic notions in mathematics and to develop thinking skills in terms of ideas and intuition. Illustrated by simple examples and with wonderful developments, the course is especially designed to inspire students to apply imagination and creativity in understanding mathematics. For example, how do we recognise simple number patterns and geometric figures, guess a formula, and justify its validity? Does intuitive idea always work? Why do we need axioms and what are undefined terms? What are analogies and generalizations in mathematics? How do algorithms such as the algorithm of finding the greatest common divisor of two numbers come about in terms of thinking process? What do we think of mathematics? The course also includes a discussion on some famous incidents of pleasant surprises and discoveries in the scientific and mathematical communities.", + "title": "Mathematical Thinking", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Games being a form of human activities since antiquity are often played with strategies that require critical thinking and decision making. Many of the number games like the game of nim have a rich mathematics favour. Real life social games contain combinatorial and probabilistic strategies. Simple economic activities can also be modelled in terms of games. In this module, selected real-life social games are discussed and treated in ways that bring out their mathematical creativity. The objective is to let students gain an appreciation of mathematics, its beauty and applications through the discussion of some of these games. In particular, we give an introduction of elementary non-zero sum and non-cooperative game as developed by von Neumann and Nash.", + "title": "The Mathematics of Games", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a conceptual and practical introduction to the complex networks that drive \"patronage,\" including multifarious kinds of patronage. Issues raised and debated include exploring money, religion, politics, social classes, and many other social constructs that influence what art people support, and why they, especially you, support different kinds of art. Students will need to grasp and evaluate critically each set of issues that drive and affect patronage of the arts, and demonstrate their critical understanding of the interplay of these factors through written assessments, classroom discussions, and contributions to blog postings related to the module materials.", + "title": "Patrons of the Arts", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Charles Darwin is remembered like no other figure in the history of science. However, public understanding of Darwin and evolution remains a serious problem. What most people think they know about Darwin, his life and his famous book \u2018On the origin of species\u2019 is wrong. This module provides a solid background for understanding how the theory of evolution actually unfolded. It covers the history of geology, palaeontology and biology from the 1700s to the 20th century. The central focus is on the life and work of Charles Darwin and how biological evolution was uncovered, debated and accepted by the international scientific community in the 19th century, and beyond. There will be a lot of myth busting and this provides case studies on how to assess historical claims and evidence, and discussions on recent developments in evolutionary biology, human evolution and anthropology are included.", + "title": "Darwin and Evolution", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1020", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Friday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Thursday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Monday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The challenges of a global engineer increasingly call upon engineers to think critically and communicate effectively to undertake developmental leadership. This course aims to develop and practise students\u2019 critical thinking and writing skills through analysing case studies in engineering leadership, constructing complex engineering-related problems and solutions, presenting arguments effectively and reflecting on personal leadership development. Relevance to engineering practice is emphasized with references to grounded theories of engineering leadership and the seven missing basics of engineering education.", + "title": "Critical Thinking And Writing", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1021", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore how our brain can affect our behavior. It will introduce how classical and modern neuroscience research tools are used to investigate the workings of the brain. We will also examine the ethical and social issues raised by recent developments in neuroscience research. In addition, this module is expected to enable students to develop critical skills in analyzing and writing about controversial issues concerning neuroscience and society.", + "title": "Understanding Your Brain", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1022", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD9-01-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD9-01-02", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "MD9-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to explain human behaviour through the lens of economists. We use economic reasoning to answer questions as diverse as the following: Why would your teacher cheat? Which factors cause crime rates to go down? Why do countries fail sometimes? We use texts that popularize economic concepts to illustrate how different social phenomena can be understood by applying the tools of economic analysis. However, we also discuss possible limitations of the economic approach to social issues. In this course we review, challenge, and debate on firmly established ideas we all have about the world, our society, and ourselves.", + "title": "Thinking Like An Economist", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1023", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W04", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "W02", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the essential knowledge to make intelligent assessments on the potential risks and uses of radiation in our modern society. After introducing the physics behind various forms of radiation, we will look at how these radiations are used in medical diagnosis and treatment and other applications. Some controversial issues in these applications will be raised and debated. The health effects of high and low levels of radiation will be presented based on scientific evidence thus dispelling some of the negative misconceptions of radiation and irrational fear of it. The social and political dynamics in", + "title": "Radiation-Scientific Understanding and Public Perception", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1024", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 3, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 3, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 5, + 6, + 6, + 7, + 7, + 8, + 8, + 9, + 9, + 10, + 10, + 11, + 11, + 12, + 12, + 13, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 5, + 6, + 6, + 7, + 7, + 8, + 8, + 9, + 9, + 10, + 10, + 11, + 11, + 12, + 12, + 13, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 3, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 3, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module considers science fiction as a mode of philosophical inquiry. Science fiction stories are used to examine fundamental questions of metaphysics, epistemology and ethics. Topics include the nature of time, space, religion, nature, mind, and the future. Specific topics may include such issues as genetic enhancement, environmental ethics, and implications of encounters with non\u2010human life forms.", + "title": "Science Fiction and Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1025", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Thursday", + "lessonType": "Lecture", + "size": 77, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0523", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is good reasoning? We will try to answer this question by studying the mechanics of reasoning. Students will learn what an argument is, what the difference between validity and soundness is, and what it means to say that an argument is valid in virtue of its form. They will also be introduced to various strategies and pitfalls in reasoning. In addition, to hone their analytical skills, students will be given arguments\u2014drawn from philosophy and other areas\u2014to unpack and evaluate. It is hoped that in the process of learning what counts as good reasoning, one will become a better reasoner.", + "title": "Effective Reasoning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1026", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 91, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0205", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For the first six weeks, students read three dialogues by the ancient Greek philosopher, Plato: Euthyphro, Meno, and Republic, Book I. These readings touch on a wide range of topics: mind and morals; politics and psychology; metaphysics and science. For the second six weeks, students will meet with the same problems, ideas and arguments, but as they manifest in the writings of various contemporary figures \u2013 philosophers and non-philosophers: psychologists, political scientists, public policy experts. \n\n\u2018Reason and Persuasion\u2019 is a generic title. But it indicates a specific concern. Reason without persuasion is useless; persuasion without reason is dangerous. Plato worried about this; so will we.", + "title": "Reason and Persuasion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to classical logic. The first half of the course introduces propositional logic, using the techniques of truth-tables and linear proof by contradiction. The second half of the course extends the use of linear proof by contradiction to predicate logic. Emphasis is placed on applying the techniques to philosophical arguments.", + "title": "Logic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1028", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0523", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 52, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 106, + "covidZone": "Unknown" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an opportunity to grapple with some of the most enduring challenges to human thought. Our starting point is a conception of ourselves as free and conscious beings equipped with bodies that allow us to observe and explore a familiar external world. Successive lectures investigate alternative conceptions of the human condition, such as ones in which we are unfree, or non-spirituous, or inhabit a world whose fundamental nature is hidden from our view. Different conceptions bear differently on the further question of what we should value and why. Discussion is both argument-driven and historically informed.", + "title": "Life, the Universe, and Everything", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1029", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Friday", + "lessonType": "Lecture", + "size": 183, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W16", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W18", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W8", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W14", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W18", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W17", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "W8", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital technologies expand the frontiers of the humanities through interactive publishing, machine-driven analysis, media-rich platforms, online archives and crowd-sourced databases. This module invites students from across the university to consider these new approaches through a problem-based approach. In each session, the students will learn to use and critically evaluate digital approaches. Reflecting the multiple perspectives within the digital humanities, teaching combines seminar discussions with computational thinking projects that require the students to pose humanities questions in terms of data.", + "title": "Computers and the Humanities", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1030", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "UTSRC-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "UTSRC-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR9CAM", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Computational thinking is increasingly being recognised as a fundamental problem solving method for everyone. Computational thinking involves problem formulation, solution development, and solution analysis, with a focus on computation and computational tools. This module emphasises the computational thinking thought process and the communication of the process and the solutions, rather than implementation of the solution on a computer. Students learn to apply omputational thinking to solve problems and discover new questions that can be explored within and across disciplines. Students are assumed to already possess elementary critical thinking and logical thinking aptitudes, which are practised in this module.", + "title": "Computational Thinking", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1031", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module critically examines theoretical issues and applications of effective interpersonal communication in enhancing interpersonal relationship building. The content will include various theoretical frameworks, models and issues related to interpersonal communication. It will also introduce module participants to interpersonal practice in dealing with diverse individuals. Experiential learning methods will be used in tutorial groups to develop critical thinking abilities on relationship building issues, and to translate the thinking abilities into interpersonal practice using case study, role play and reflection.", + "title": "Building Relationship : Theories and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1032", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module critiques the effects of advertising.\nSpecifically, it deconstructs the role of advertising as\npracticed by commercial, non-commercial and a variety\nof other entities to persuade us to adopt products,\nservices, ideas, and ideologies. In doing so, we highlight\nnegative and positive advertising effects from\ncommunicative, psychological, cultural, sociological, and\npolitical perspectives. Various social and ethical\nimplications of advertising on society in general, and on\nvarious vulnerable populations, such as children,\nminorities, and women, in particular are also discussed.\nThe module promotes approaches to manage advertising\ninfluences through active citizen participation to achieve\na more enlightened society.", + "title": "Critical Perspectives in Advertising", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Our capacity for language is a defining aspect of what it means to be human and is central to both thought and communication. This course investigates the rules that underlie what we say, how meaning is encoded, and how we reason with language. We will apply mathematical tools of pattern description and logic to describe and better understand human language, with the goal of developing logical explanations for linguistic phenomena. Comparison to artificial and programming languages will be discussed. Emphasis will be placed on clear, precise descriptions and their accessible communication through writing and oral presentation.", + "title": "The Logic of Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1036", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W6", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "W1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS1-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses \u2018big picture\u2019 History by considering defined themes that range across time and space. The focus is not on individual societies or\ntime periods, but on questions related to commonalities in developments across all societies. This approach is like looking at a painting from a\ndistance instead of at the brush strokes that constitute it, and will lead to questions about what human activities and experiences constitute the global\nexperience. As part of the Thinking and Expression pillar, this module will help students think historically and also critically engage the maxim that \u2018the past is a foreign country.\u2019", + "title": "Big Picture History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1037", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students understand the theoretical and practical aspects of small group communication so that they may function more\neffectively in groups. Particularly, the module will facilitate discussion on effective communication in the group communication process. Effective communication in a community, public, or professional setting requires\nan understanding of how people behave in a group context and how they interact with others inside and outside the group.", + "title": "Communication in Small Groups", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1038", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the arts through three different, but overlapping, questions: What is art? (including the polemics associated with this question), When is art? (i.e. creations that are interpreted as art, or not art, at different times), and Where is art?\n(i.e. why something is perceived as art when it is in one setting, but is generally otherwise unnoticed). Visits to Singapore locations for case studies are required. Students will study and apply several disparate theories, and will also write their own.", + "title": "What, When and Where is Art?", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1039", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We talk and write about the arts on a daily basis, especially in social media, but what makes talking and writing about the arts unique, challenging, and why should it be exciting? This course helps students further develop the basic concepts and expressive language needed to communicate more effectively about different art mediums and forms, and different ways to communicate about the arts, from opinions and evaluations, to formal reviews, to critical and theoretical responses. Students will do multiple oral and written assessments in this course.", + "title": "Communicating about the Arts", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1040", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This general education module will explore the world of theme parks, originally inspired by the films and vision of Walt Disney. The course will examine a history of this leisure form, and examine how theme parks and theming offer us an interesting lens to understand the contemporary world. What are the values and ideologies that are inscribed within theme parks? Is there a specific \u201cculture\u201d associated with Disney? By examining the Disney phenomenon and the world of theme parks, students will be challenged to think\ncritically about aspects of leisure and popular culture that shape our world views.", + "title": "Disney and the Theme Park World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1041", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "E5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to foster an appreciation of the natural beauty of the night sky and students have a chance at a hands-on activity overseas during recess week as part of the learning experience. In this module, students will learn how to conduct their own astronomical observations and relate that experience to the various modes of thinking and philosophy behind astronomy and astrophysics. Students will also have the opportunity to communicate their experiences and ideas with their peers and a wider audience.", + "title": "Sky and Telescopes", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1042", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will explore the universe, its contents, properties, evolution, and origin. Major topics to be covered include ideas and concepts of the universe, astronomical observations, scientific models, big bang theory, and unsolved problems in cosmology.", + "title": "Universe, Big Bang, and Unsolved Mysteries", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1043", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Hollywood cinema is arguably the most popular and dominant cinema in the world but it is also a group style that represents a particular mode of expression and approach to the cinematic medium. This module explores the ways that Hollywood has used film form to create a naturalised style and viewing experience. We will study its conventions as well as the variations and deviations that push the envelope or constitute alternative constructions of the realistic. This module is 100% CA and some of the films studied may have mature content.", + "title": "Hollywood Cinema: Constructing the Realistic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1044", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What are the elements that go into organising a conversation? This module examines the intricacy and complexity of conversational structure such as the emergent structure of the talk, its prosodic features, gesture, eye-gaze coordination, etc. in everyday life. Students learn the tools and methods of Conversation Analysis (CA) to analyze micro-level human interactions and everyday talk-in-interactions. Placing conversation as the primordial site of human society, CA uses naturalistic conversational data as empirical evidence to discover how people negotiate, construct and perpetuate societal norms through everyday conversation, and how even routine interaction is meaningful and achieved collaboratively with others.", + "title": "Structures of Conversation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1045", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to call attention to the fundamental importance of thinking not only in learning per se but also in shaping who we are. It examines the nature of thinking, as well as its mechanisms. It aims to help students experience the excitement of thinking as they try to understand what thinking is; students are thus compelled to critique and re-examine their own assumptions about what they think they know and about themselves as psychosomatic learners and persons.", + "title": "I Do Not Think Therefore I Am", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1046", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Thursday", + "lessonType": "Lecture", + "size": 54, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From what sources do we engender our individual and group identities, and to what extent do the arts stimulate this process? This course begins with an introduction to identity theory, and then explores identity issues \u2013 such as male and female, self, national, racial, and social identities \u2013 with an emphasise on their manifestations in various performance, visual, and literary art forms. Students will analyse and evaluate their own identities in relation to the course materials and the arts in their lives, requiring critical self-reflection and self-assessment.", + "title": "Art and Identity", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1047", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module approaches science as a mode of thinking and a process of knowing; and examines how the thinking and process generated narratives (stories) about our natural world, life and ourselves. It also explores other controversial and darker narratives of pseudoscience and fraudulent science that arose from the deviation and the misuse/abuse of the thinking and the process of science. It highlights how these narratives ignited imaginations and aroused ethical and societal concerns. Students will learn how science through its thinking and process have generated narratives, and in turn how these narratives have\nchanged our thinking and beyond.", + "title": "Science: From Thinking to Narratives", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1048", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through a series of fun and engaging hands-on activities, this module aims to equip students with the ability to thoughtfully apply computational tools when solving complex real-world problems. In particular, this module aims to impart students with the ability to critically self-evaluate the way they apply these tools, and thus be able to reason effectively in a variety of contexts. They will learn to identify problems and design solutions, while also developing a critical awareness of the merits and limits of their methods, thereby empowering them to make better-informed decisions and to articulate the reasons for those decisions.", + "title": "Computational Reasoning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GET1050", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "ERC-SR11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "ERC-SR11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bollywood cinema is an iconic aspect of Indian popular culture and a striking manifestation of India\u2019s global \u2018soft power.\u2019 This module aims to interrogate core concepts in the humanities and social sciences through the lens of India\u2019s most powerful film industry. Through an exploration of selected films, students will think critically and creatively about key cultural, social and political themes originating in the subcontinent. They will analyze important developments in India and the diaspora through the study of Bollywood cinema. The course will thus facilitate a nuanced understanding of the relationship between text and context, with a focus on Bollywood.", + "title": "Framing Bollywood: Unpacking The Magic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 78, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 96, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "D3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the basic concepts in representations of gender, politics, celebrities and culture, and otherness. Concepts that will be examining in this module include representation, structuralism, and feminism. The module will examine and analyse the basic idea of representation, celebrity and culture, gender, politics and otherness; and how media portray them.", + "title": "Representation and Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 62, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Sharing Economy (a.k.a. Collaborative Consumption or Peer Economy), describes the development of new business models or platforms, through the coordinated exchanges between individuals, that disrupt traditional markets by redefining industry categories, lowering transaction costs, and maximizing the use of scarce resources. We will explore how sharing economy platforms transform the way we live: how we consume, how we work, and how we trust. Finally, we evaluate the policy responses of governments, to mitigate potential threats to our social compact as a result.", + "title": "Life, Disrupted: The Sharing Revolution", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In general, this module is aimed at getting student to critically engage with the \u2018work\u2019 or \u2018power\u2019 of maps in shaping the historical emergence of the modern world and in its ongoing transformation. To do this we will combine diverse modes of learning, covering issues of knowledge and content (the history of cartography), practical skills of map making/reading, and critical skills of evaluating and interpreting maps. We will stimulate a critical awareness of mapping as an evolving technology that has far-reaching social and political considerations.", + "title": "Seeing the World Through Maps", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers NUS students an opportunity to explore different aspects and contexts of Chinese communication. The target audience is English speaking undergraduates with minimal Chinese language proficiency. The various contexts of Chinese communication include advertising, business, the press, social communication, regional usages, pop culture, translations, meaning of Chinese names, codeswitching and the use of Chinese dialects. It is intended to serve as a primer for students interested in these areas of study. A minimum Chinese language proficiency of CLB is required.", + "title": "Bridging East and West: Exploring Chinese Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students to be effective public speakers and critically attuned listeners. It introduces students to theories of oral communication and public speaking, as well as practical strategies for analysing and connecting with audiences, gathering and structuring relevant information, employing effective rhetorical devices, incorporating visual aids, and delivering purposefully engaging speeches. Importantly, students will be given multiple opportunities to practise their speaking skills and to give and receive critical constructive feedback. Through experiential and reflective learning, students will gain confidence in speaking in academic, professional and public settings.", + "title": "Public Speaking and Critical Reasoning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 115, + "covidZone": "Unknown" + }, + { + "classNo": "W8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "Unknown" + }, + { + "classNo": "W8", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students to be effective public speakers and critically attuned listeners. It introduces students to theories of oral communication and public speaking, as well as practical strategies for analysing and connecting with audiences, gathering and structuring relevant information, employing effective rhetorical devices, incorporating visual aids, and delivering purposefully engaging speeches. Importantly, students will be given multiple opportunities to practise their speaking skills and to give and receive critical constructive feedback. Through experiential and reflective learning, students will gain confidence in speaking in academic, professional and public settings.", + "title": "Public Speaking and Critical Reasoning", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1005T", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": { + "start": "2023-05-09", + "end": "2023-07-04" + }, + "venue": "LT4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": { + "start": "2023-05-19", + "end": "2023-06-30", + "weekInterval": 2 + }, + "venue": "LT4", + "day": "Friday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": { + "start": "2023-05-09", + "end": "2023-07-04" + }, + "venue": "LT4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": { + "start": "2023-05-19", + "end": "2023-06-30", + "weekInterval": 2 + }, + "venue": "LT4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It often seems the worlds of science and art are unrelated: Logical truth versus emotional imagination. Still, science and art have much in common. Science has caused paradigm shifts in artistic expression while art is used for engineering design and communication of scientific knowledge. In this module, students will be introduced to the use of materials and technology related to architecture, sculpture, painting, photography and imaging. The use of technology for dating and attribution of objects of art as well as the use of visual art for scientific illustration and design will be examined. Knowledge of the scientific principles of various forms of visual art will also be explored. The module aims at the development of some artistic skills for illustrations of scientific concepts and engineering designs. This module will help students to better express their thoughts through artistic expression and appreciate visual art.", + "title": "The Art of Science, the Science of Art", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Charles Darwin is remembered like no other figure in the history of science. However, public understanding of Darwin and evolution remains a serious problem. What most people think they know about Darwin, his life and his famous book \u2018On the origin of species\u2019 is wrong. This module provides a solid background for understanding how the theory of evolution actually unfolded. It covers the history of geology, palaeontology and biology from the 1700s to the 20th century. The central focus is on the life and work of Charles Darwin and how biological evolution was uncovered, debated and accepted by the international scientific community in the 19th century, and beyond. There will be a lot of myth busting and this provides case studies on how to assess historical claims and evidence, and discussions on recent developments in evolutionary biology, human evolution and anthropology are included.", + "title": "Darwin and Evolution", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore how our brain can affect our behavior. It will introduce how classical and modern neuroscience research tools are used to investigate the workings of the brain. We will also examine the ethical and social issues raised by recent developments in neuroscience research. In addition, this module is expected to enable students to develop critical skills in analyzing and writing about controversial issues concerning neuroscience and society.", + "title": "Understanding Your Brain", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1009", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD9-01-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "MD9-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD9-01-02", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to explain human behaviour through the lens of economists. We use economic reasoning to answer questions as diverse as the following: Why would your teacher cheat? Which factors cause crime rates to go down? Why do countries fail sometimes? We use texts that popularize economic concepts to illustrate how different social phenomena can be understood by applying the tools of economic analysis. However, we also discuss possible limitations of the economic approach to social issues. In this course we review, challenge, and debate on firmly established ideas we all have about the world, our society, and ourselves.", + "title": "Thinking Like An Economist", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1010", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W05", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "W09", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 155, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "W04", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module considers science fiction as a mode of philosophical inquiry. Science fiction stories are used to examine fundamental questions of metaphysics, epistemology and ethics. Topics include the nature of time, space, religion, nature, mind, and the future. Specific topics may include such issues as genetic enhancement, environmental ethics, and implications of encounters with non\u2010human life forms.", + "title": "Science Fiction and Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1011", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0523", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is good reasoning? We will try to answer this question by studying the mechanics of reasoning. Students will learn what an argument is, what the difference between validity and soundness is, and what it means to say that an argument is valid in virtue of its form. They will also be introduced to various strategies and pitfalls in reasoning. In addition, to hone their analytical skills, students will be given arguments\u2014drawn from philosophy and other areas\u2014to unpack and evaluate. It is hoped that in the process of learning what counts as good reasoning, one will become a better reasoner.", + "title": "Effective Reasoning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1012", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 109, + "covidZone": "Unknown" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0205", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For the first six weeks, students read three dialogues by the ancient Greek philosopher, Plato: Euthyphro, Meno, and Republic, Book I. These readings touch on a wide range of topics: mind and morals; politics and psychology; metaphysics and science. For the second six weeks, students will meet with the same problems, ideas and arguments, but as they manifest in the writings of various contemporary figures \u2013 philosophers and non-philosophers: psychologists, political scientists, public policy experts. \n\u2018Reason and Persuasion\u2019 is a generic title. But it indicates a specific concern. Reason without persuasion is useless; persuasion without reason is dangerous. Plato worried about this; so will we.", + "title": "Reason and Persuasion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to classical logic. The first half of the course introduces propositional logic, using the techniques of truth-tables and linear proof by contradiction. The second half of the course extends the use of linear proof by contradiction to predicate logic. Emphasis is placed on applying the techniques to philosophical arguments.", + "title": "Logic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1014", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0523", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 144, + "covidZone": "Unknown" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an opportunity to grapple with some of the most enduring challenges to human thought. Our starting point is a conception of ourselves as free and conscious beings equipped with bodies that allow us to observe and explore a familiar external world. Successive lectures investigate alternative conceptions of the human condition, such as ones in which we are unfree, or non-spirituous, or inhabit a world whose fundamental nature is hidden from our view. Different conceptions bear differently on the further question of what we should value and why. Discussion is both argument-driven and historically informed.", + "title": "Life, the Universe, and Everything", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1015", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W8", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W14", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W18", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Friday", + "lessonType": "Lecture", + "size": 217, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "W16", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W14", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W8", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W18", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W15", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W16", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W13", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W17", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module critically examines theoretical issues and applications of effective interpersonal communication in enhancing interpersonal relationship building. The content will include various theoretical frameworks, models and issues related to interpersonal communication. It will also introduce module participants to interpersonal practice in dealing with diverse individuals. Experiential learning methods will be used in tutorial groups to develop critical thinking abilities on relationship building issues, and to translate the thinking abilities into interpersonal practice using case study, role play and reflection.", + "title": "Building Relationship : Theories and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1016", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This critical thinking and communication module provides an opportunity for students to explore community leadership within an interdisciplinary environment. In particular, through understanding the constructivist theory of communication (Burleson, 2007) and Paul and Elder\u2019s (2014) critical thinking framework, this module will facilitate the development of deliberative and active citizenry among students, regardless of the position they hold in the community. Students will apply these concepts individually to short case studies and reflections. They will then use these short assignments to conceptualize team projects relevant to their respective community settings.", + "title": "Communication and Critical Thinking for Community Leadership", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module critiques the effects of advertising.\nSpecifically, it deconstructs the role of advertising as\npracticed by commercial, non-commercial and a variety\nof other entities to persuade us to adopt products,\nservices, ideas, and ideologies. In doing so, we highlight\nnegative and positive advertising effects from\ncommunicative, psychological, cultural, sociological, and\npolitical perspectives. Various social and ethical\nimplications of advertising on society in general, and on\nvarious vulnerable populations, such as children,\nminorities, and women, in particular are also discussed.\nThe module promotes approaches to manage advertising\ninfluences through active citizen participation to achieve\na more enlightened society.", + "title": "Critical Perspectives in Advertising", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Our capacity for language is a defining aspect of what it means to be human and is central to both thought and communication. This course investigates the rules that underlie what we say, how meaning is encoded, and how we reason with language. We will apply mathematical tools of pattern description and logic to describe and better understand human language, with the goal of developing logical explanations for linguistic phenomena. Comparison to artificial and programming languages will be discussed. Emphasis will be placed on clear, precise descriptions and their accessible communication through writing and oral presentation.", + "title": "The Logic of Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1019", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W6", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "W1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS1-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students understand the theoretical and practical aspects of small group communication so that they may function more\neffectively in groups. Particularly, the module will facilitate discussion on effective communication in the group communication process. Effective communication in a community, public, or professional setting requires\nan understanding of how people behave in a group context and how they interact with others inside and outside the group.", + "title": "Communication in Small Groups", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1020", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the arts through three different, but overlapping, questions: What is art? (including the polemics associated with this question), When is art? (i.e. creations that are interpreted as art, or not art, at different times), and Where is art?\n(i.e. why something is perceived as art when it is in one setting, but is generally otherwise unnoticed). Visits to Singapore locations for case studies are required. Students will study and apply several disparate theories, and will also write their own.", + "title": "What, When and Where is Art?", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1021", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We talk and write about the arts on a daily basis, especially in social media, but what makes talking and writing about the arts unique, challenging, and why should it be exciting? This course helps students further develop the basic concepts and expressive language needed to communicate more effectively about different art mediums and forms, and different ways to communicate about the arts, from opinions and evaluations, to formal reviews, to critical and theoretical responses. Students will do multiple oral and written assessments in this course.", + "title": "Communicating about the Arts", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This general education module will explore the world of theme parks, originally inspired by the films and vision of Walt Disney. The course will examine a history of this leisure form, and examine how theme parks and theming offer us an interesting lens to understand the contemporary world. What are the values and ideologies that are inscribed within theme parks? Is there a specific \u201cculture\u201d associated with Disney? By examining the Disney phenomenon and the world of theme parks, students will be challenged to think\ncritically about aspects of leisure and popular culture that shape our world views.", + "title": "Disney & the Theme Park World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1023", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "E4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "D5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This general education module will explore the world of theme parks, originally inspired by the films and vision of Walt Disney. The course will examine a history of this leisure form, and examine how theme parks and theming offer us an interesting lens to understand the contemporary world. What are the values and ideologies that are inscribed within theme parks? Is there a specific \u201cculture\u201d associated with Disney? By examining the Disney phenomenon and the world of theme parks, students will be challenged to think critically about aspects of leisure and popular culture that shape our world views.", + "title": "Disney & the Theme Park World", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1023T", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "2030", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will explore the universe, its contents, properties, evolution, and origin. Major topics to be covered include ideas and concepts of the universe, astronomical observations, scientific models, big bang theory, and unsolved problems in cosmology.", + "title": "Universe, Big Bang, and Unsolved Mysteries", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1024", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What are the elements that go into organising a conversation? This module examines the intricacy and complexity of conversational structure such as the emergent structure of the talk, its prosodic features, gesture, eye-gaze coordination, etc. in everyday life. Students learn the tools and methods of Conversation Analysis (CA) to analyze micro-level human interactions and everyday talk-in-interactions. Placing conversation as the primordial site of human society, CA uses naturalistic conversational data as empirical evidence to discover how people negotiate, construct and perpetuate societal norms through everyday conversation, and how even routine interaction is meaningful and achieved collaboratively with others.", + "title": "Structures of Conversation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to call attention to the fundamental importance of thinking not only in learning per se but also in shaping who we are. It examines the nature of thinking, as well as its mechanisms. It aims to help students experience the excitement of thinking as they try to understand what thinking is; students are thus compelled to critique and re-examine their own assumptions about what they think they know and about themselves as psychosomatic learners and persons.", + "title": "I Do Not Think Therefore I Am", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1026", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Thursday", + "lessonType": "Lecture", + "size": 96, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From what sources do we engender our individual and group identities, and to what extent do the arts stimulate this process? This course begins with an introduction to identity theory, and then explores identity issues \u2013 such as male and female, self, national, racial, and social identities \u2013 with an emphasise on their manifestations in various performance, visual, and literary art forms. Students will analyse and evaluate their own identities in relation to the course materials and the arts in their lives, requiring critical self-reflection and self-assessment.", + "title": "Art and Identity", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1027", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module approaches science as a mode of thinking and a process of knowing; and examines how the thinking and process generated narratives (stories) about our natural world, life and ourselves. It also explores other controversial and darker narratives of pseudoscience and fraudulent science that arose from the deviation and the misuse/abuse of the thinking and the process of science. It highlights how these narratives ignited imaginations and aroused ethical and societal concerns. Students will learn how science through its thinking and process have generated narratives, and in turn how these narratives have\nchanged our thinking and beyond.", + "title": "Science: From Thinking to Narratives", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1028", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will learn the basic concepts of narrative. It will expose them to narrative as a basic idea that runs through their lives, and which has its most sophisticated manifestations in literature and cinema. While the analysis of literary and cinematic texts will play an important part in the module, students should also develop an awareness of how narrative is used in everyday discourse, and how it shapes their response to reality.", + "title": "Narrative", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1029", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With special reference to Singapore, this module examines English \u2013 especially its standard form - as the leading global linguistic and cultural resource for intra- and inter-cultural communication. Students use a variety of tools to analyse language in terms of phonetics, lexis, grammar, and meaning in context. We ask questions such as the following: (1) Why does the idea of \u2018standard language\u2019 appeal to human cultures?; (2) What does \u2018standard English\u2019 comprise?; (3) What happens to the shape of English when local culture is blended in? (4) Are \u2018native speakers\u2019 really native?; (5) Does 'Standard Singapore English' exist?", + "title": "Standard English Across Cultures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Hollywood cinema is arguably the most popular and dominant cinema in the world but it is also a group style that represents a particular mode of expression and approach to the cinematic medium. This module explores the ways that Hollywood has used film form to create a naturalised style and viewing experience. We will study its conventions as well as the variations and deviations that push the envelope or constitute alternative constructions of the realistic. This module is 100% CA and some of the films studied may have mature content.", + "title": "Hollywood Cinema: Constructing the Realistic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GEX1031", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the emerging field of global studies. Building on ideas about the modern state and international order, it examines how these ideas are\nbeing challenged from the perspective of transnational trends and institutions. Among these are the emergence of a global economy, inequalities within\nand between states, transnational labor and migration, global environmental issues, poverty and development, global consumerism, human rights and global\nresponsibilities, transnational social and political movements, and new patterns of global governance. The module adopts a multidisciplinary approach to reveal different aspects of these issues.", + "title": "Global Issues", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0119", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores how the contemporary structure of the global system emerged. It studies how a world economy with integrated systems of production and trade emerged from interactions in which ethnic, national, political, and cultural divisions played a crucial role. It also examines the mechanisms though which Europeans and European culture maintained a dominant place through conflicts and crises from the sixteenth century onwards. The period under investigation runs from the Thirteenth Century to the start of the Twentieth.", + "title": "Origins of the Modern World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Friday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the study of international political economy, challenging a widely held misconception that global politics and international economics are separable. \u201cWho gets what, how, and why?\u201d \u2013 these are the fundamental questions we ask throughout this course. Students will develop an understanding of the major theoretical approaches and key substantive issues in the field of IPE, including the politics of trade, international monetary relations, and transnational corporations. This course also aims to incorporate an examination of newer theoretical development, such as colonial and feminist approaches to global political economy, as well as cutting-edge topics like environment.", + "title": "Global Political Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the changing nature of political authority in contemporary world politics. Drawing on what social scientists have to say about international institutions and global governance, it asks critical questions with implications for global order, peace, and justice. To what extent has globalization undermined state sovereignty? Who manages global problems in a post\u2010sovereign world, and by what authority? Through what kinds of institutions and practices are global actors governed? Who and what escapes global governance? How should global problems be managed?", + "title": "Global Governance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL2103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the theories of knowledge and methods of inquiry that are used across disciplines to study globalisation and its effects. It introduces students to the means, materials, techniques, and ethical issues entailed by different methods of inquiry. Four themes recur throughout the module how questions are formulated and investigations conducted; how language influences inquiry; how context influences inquiry; and how different means, materials, and methods of inquiry can (or cannot) be brought together to provide a more holistic analysis.", + "title": "Inquiry and Method", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL2104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the theories of knowledge and methods of inquiry that are used across disciplines to study globalisation and its effects. It introduces students to the means, materials, techniques, and ethical issues entailed by different methods of inquiry. Four themes recur throughout the module: how questions are formulated and investigations conducted; how language influences inquiry; how context influences inquiry; and how different means, materials, and methods of inquiry can (or cannot) be brought together to provide a more holistic analysis.", + "title": "Inquiry and Method", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What do Instagram and Google Street View have in common with smart bombs and police mugshots? How do memes communicate politics? This module explores how globally shared (or not) understandings of the world today are shaped by images. Together, we\u2019ll approach global visual culture as both active participants and critical scholarly researchers; address methodological issues in creating, consuming, and studying globalization visually; and contend\nwith what it means to produce visual scholarship. Using an experiential approach, you will produce a visual essay on an aspect of globalization. No photography or videography skills required, just access to any kind of camera.", + "title": "Doing Global Visual Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS5-0205", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the significance of relationships between people, their societies and their environments. We will first consider the diversity of understandings of environment in historical, local and global contexts. Later, we build on those diverse understandings of environment to ask how climate change as global force plays out in and across local experiences. Here, we will give focus on different local meanings of and responses to climate change. Students will also develop their research skills by practicing social science methods for de-centering the human.", + "title": "Global Socio-environmental Entanglements", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL3203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar investigates the impact and processes of global social movements pressing for or resisting social change. Each week focuses on movements from a few different thematic and/or theoretical perspectives, to include resource mobilization, political opportunity, framing, identity, leadership, organization dynamics, networks, tactics, diffusion, countermovements, social control, and media.", + "title": "Globalisation of Social Movements", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL3204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the Convenor of the Global Studies Programme, have relevance to the major in Global Studies, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. In exceptional cases, internships proposed by students may be approved by the Convenor.", + "title": "Global Studies Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL3550", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project. UROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed. UROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GL3551R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a capstone seminar for the Global Studies programme. Each seminar will investigate one specific global issue in depth. Possible topics include legacies of anti\u2010communism, xenophobia, the US war in Iraq, the 2008 financial crisis, climate change, and global poverty.", + "title": "Research in Global Issues", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS5-0205", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Task Force is an intensive capstone project required for Global Studies majors. The seminar simulates a government advisory committee. Each Task Force seminar deals with a given policy problem from the real world. Students research the problem, investigate and debate solutions, and work together to produce a report that recommends policy solutions. Seminar participants apply the training they have received from the GL curriculum to the project. At the end of the semester, students present their report for evaluation. Potential Task Force problems include energy security, terrorism, human trafficking, and an aging population.", + "title": "Task Force", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Honours Thesis will normally be done in the second semester of the student\u2019s final year. The research will normally focus on a topic that combines a student\u2019s theme, region, and language focus within the Global Studies major. A qualified student intending to undertake the Honours Thesis will be expected to consult a prospective supervisor in the preceding semester for guidance on the selection of a topic and the preparation of a research proposal. The supervisor will provide guidance to the student in conducting the research and writing the thesis of 10,000 to 12,000 words.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "GL4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module enables a student to explore in depth an approved topic within Global Studies. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Convenor\u2019s and/or Honours Coordinator\u2019s approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in Business and Transnational Cultures. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in Business and Transnational Cultures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines contemporary global cultural flows. Emphasis is placed on cultural forms and the production/circulation of identity through/within globalization. The goal is to raise questions about power, cultural interaction and change, and the nature of globalization through landscapes of popular/vernacular culture. The course will address debates concerning questions of globalization and identity, such as: What is culture? How and why does \u2018culture\u2019 circulate through material exchange? How and why do processes of globalization mediate the material exchange of culture, and how was this different than the era of \u2018national culture\u2019? Where is the \u2018location of culture\u2019?", + "title": "Globalization, Culture, and Identity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4880A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What role does work play in our lives? What meaning and value do we make of it? Can we imagine a world without it? Using an inquiry-based approach, students will employ visual methods to document and analyse contemporary practices of and discourses surrounding \u201cwork.\u201d The seminar revolves around a fieldwork project, which will result in a visual essay (photo or short video). Prior technical knowledge is not necessary, as skill workshops are incorporated throughout the semester. The goal of the seminar is to adopt a critical stance towards \u201cwork,\u201d in order to better understand contemporary globalization as a cultural phenomenon.", + "title": "Globalisation and the Imagination of Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in Colonialism and Postcolonialism. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in Colonialism and Postcolonialism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module critically examines key literary, philosophical, and political texts in colonial, anticolonial and postcolonial thought through the lens of contemporary globalization. Themes of universality and particularity, the colonizer/colonized relation, the nature of being human, representation and critique, politics and economics, and different visions of how to live in the world will be addressed by careful engagement with primary and secondary texts. Themes will be examined through broader concerns about patterns of global connection, differentiation and belonging. Self-reflection, analysis and critique will be aimed at connecting colonial, anticolonial and postcolonial thought to globalization and how we live in the world.", + "title": "Colonial, Anticolonial and Postcolonial Globalizations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4881A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in Global Economics and Development. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in Global Economics and Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will be organised around the following four topics. First, the vision of agriculture found in early development thought; second the structural transformations of agriculture in the twentieth century in terms of production and trade; third, an examination of states that have resisted the globalising tide in order to determine whether their domestic policies qualify as \u201cdevelopment\u201d; and finally the possibility of decoupling development and globalisation.", + "title": "Development and the Globalisation of Food", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4882A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary module examines the ways in which globalisation has provoked resistance as well as resilience. Global forces are often presented as inevitably and overwhelmingly structuring local actors and processes. But globalisation remains widely resisted in various ways. By drawing on materials from global studies, history, sociology, economics and political science, the class interrogates the varied local sources of and resistance to globalisation in different issue areas, ranging from health and the environment to migration and development. It problematises key concepts related to global processes and places them in the context of crucial debates about globalisation.", + "title": "Contested Globalisation: Resistance and Resilience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4882B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces Global Studies students to the\nconceptual and substantive debates about the politics\nof global finance within Global Political Economy\n(GPE). Starting with a history of global finance and its\nsocial foundations, the module focuses on four\ndominant themes; financialization, financial crisis,\ntransnational governance and regulation, and financial\nintransparency.", + "title": "The Politics of Global Finance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4882C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Global corporations now shape public life in countries\nacross the world. Besides influencing governments\nand international organizations, they also directly\noperate services which were once the domain of\ngovernment. This module investigates corporations\nas actors involved, often informally, in emerging\nconfigurations of power. Topics to be addressed\ninclude the roles of corporations in international\nfinancial institutions, in advising governments, in\ndelivering overseas assistance, in writing treaties, and\nin otherwise participating in public life.", + "title": "Global Corporations and Power", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4882D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in Global Health and Environment. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in Global Health and Environment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the role of natural resource endowments and scarcity in national and international conflicts. The course begins with a review of causes of conflict and develops an understanding of how these causes may be linked to natural resource endowments. We then explore how constraints on natural resources such as water and fertile soil increase the potential of environmentally linked violence. Students will explore not only conflict theory, concepts of greed and grievance, and scarcity, but also technical aspects of global environmental change. Finally, the class will explore potential conflict resolution approaches.", + "title": "Conflict and Natural Resources", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4883A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Climate change represents an unprecedented challenge to our political institutions, social norms, and even our theoretical concepts. Since the effects of climate change will be felt everywhere and for hundreds of years, it creates concerns about global and intergenerational justice, both singly and in combination. This module will explore these issues, discussing the ways in which climate change impacts and responses may be normatively criticized or justified, especially in contexts where considerations of justice must be balanced or traded off. To illustrate, we will also consider the normative issues surrounding resilient and sustainable development.", + "title": "Climate Justice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4883B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces Global Studies students to social science and humanities approaches to understanding and analyzing environmental disaster. The module furthers students\u2019 understanding of concepts such as vulnerability, resilience, adaptation, environmental justice, sustainability, and the Anthropocene from interdisciplinary, political ecological and ethnographic perspectives.", + "title": "Social Experiences of Disaster", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4883C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in International Communications. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in International Communications", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4884", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module invites students to examine how people engage in global interactions through media. Across the module, students will investigate how media challenges our understandings and experiences of time and distance, and challenges the dichotomy of global versus local worlds. Module topics include: identity, representation, self-representation, media technologies, online social movements, remote labor, transnational family and affective relationships, gaming, and religion.", + "title": "Glocal Media Worlds", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4884A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will explore the diversity of ways people use infrastructures, and the various social meanings people ascribe them. We will reconsider formal understandings of infrastructure to question how infrastructures perform unexpected roles in society\u2014perhaps as tools for social identity or community formation. We will also pay particular attention to processes and experiences of globalization through infrastructure. For example how do transoceanic undersea cable networks affect life on their island landing zones? Students will also develop their research skills by working on an ethnography of infrastructure.", + "title": "Living with Infrastructure", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4884B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in Policy Making. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in Policy Making", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4885", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to international law and world politics through case studies. It begins by explaining what international law is, and how it is formed, interpreted, and used to advance certain causes or respond to specific events. Cases are introduced to students in their historical, political, and social contexts so that students can grasp not only the salient legal issues in each particular case, but also the larger diplomatic controversies that were at stake in each case and their consequences for international relations today.", + "title": "International Law and World Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4885A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar investigates the impact and processes of transnational environmental campaigns pressing for or resisting social change. Each week focuses on environmental campaigns from a few different thematic and/or theoretical perspectives, to include business-NGO partnerships, government-NGO partnerships, government repression, saving the Amazon Rainforest, palm oil, clean energy campaigns, NGO divisions on nuclear energy, campaign tactics, social media campaigns, and others.", + "title": "Transnational Environmental Campaigns", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4885B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in Population and Migration. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in Population and Migration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4886", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module critically examines the various contested definitions, practices, policies and laws of citizenship found around the world. It explores how historical legacies, levels of economic development, regime transformations, political geographies, technological changes, and social forces shape who belongs (and who does not) to a particular political community or nation\u2010state. The module systematically applies key concepts to case studies from around the world to highlight how and why actors bestow, deny, and contest citizenship as well as the policy and normative implications that flow from these processes.", + "title": "Citizenship and the Politics of Belonging", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4886A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary module analyses the actors, processes, policies, international relations and geopolitics of global refugee governance. The module introduces students to forced migration; the empirics, national and international legal regimes, key multilateral agreements, politics and norms governing refugees across the globe. In exploring the international refugee regime, students will learn and apply concepts from across the social sciences, including global governance, geopolitics, the nation, sovereignty, border securitization, regionalism, biopolitics and governmentality, among others. Key intergovernmental institutions, national and regional case-studies will be investigated, along with potential policy interventions and alternatives to the contemporary refugee regime.", + "title": "The International Refugee Regime", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4886B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in Religion and Ethnicity. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in Religion and Ethnicity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4887", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the impacts of globalizations on the modern Middle East from 1798 to the present. During this period of local, regional, and global transformations, the Middle East witnessed the collapse of the Ottoman and Qajar Empires, World War One, World War Two, colonialism, decolonization and the Third World Movement, the nation-state building projects of the newly created Arab countries, the Cold War, the global oil politics, and most recently the Arab Spring. The course may focus on connections between the Middle East and other regions including Asia in the context of those global events.", + "title": "The Modern Middle East in the Age of Globalizations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4887A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in Technology and Globalisation. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in Technology and Globalisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4888", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines moral and public policy challenges presented by emergent technologies that challenge notions embodied in current institutions and theories of what is natural and what is subject to human manipulation, and even create entirely new domains of human activity and interest. These new technologies operate globally and often rapidly, generating consequences far beyond the location of their users. The module studies how social and political institutions\u2014new or old\u2014structure, regulate, develop, and distribute these technologies in accordance with various conceptions of justice.", + "title": "Justice and Emerging Technology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4888A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in War and Security. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in War and Security", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4889", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines how international law regulates the use of different forms of violence. It analyses branches of international law and their relationship to contemporary phenomena of political violence, asking what kinds of challenges the latter pose to the former. In this context, the module explores international law vis-\u00e0-vis issues such as (non-)international armed conflict, large-scale collective violence, non-state militancy, counter-insurgency and environmental destruction. Accordingly, topics covered by the module include the international law of armed conflict, international criminal law and international environmental law.", + "title": "International Law's Regulation of Violence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4889A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines contentious debates on the origins, meanings and implementations of human rights in order to map out the complexities of the relationship between human rights and politics. We will discuss contending arguments on the definition and historical origin of human rights, analyze the contradictions between different sets of human rights and study the complicated relationship between human rights and political violence.", + "title": "Debates on Human Rights", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GL4889B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the past 50 years, rapid advances in medical research have revolutionized clinical medicine. Discoveries in fundamental science continue to pave the way for changes in diagnosis and treatment of disease. We will examine and evaluate these developments, seeking to understand their scientific, clinical, social, and ethical importance, in an active and collaborative learning environment.", + "title": "The Duke-NUS Premed Course", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS1000", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The regulation of health products is vital to protecting\npublic health, by ensuring that these products are of the\nexpected safety, quality and efficacy/performance. This\nmodule provides an overview of the regulatory ecosystem\nand defines the roles and responsibilities of a regulatory\nprofessional. It describes the different functions and\ndesired qualities of a regulatory system, including Good\nRegulatory Practices. It emphasizes evidence-based\nquality decision-making by highlighting the key established\ninternational good practice guidelines. Students will learn\nabout integrated approaches to product life cycle\nmanagement and regulatory control. They will also learn\nabout key regional regulatory networks and current\nregulatory challenges.", + "title": "Foundations of Health Product Regulation", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Across all professions, including the regulatory profession,\nthere is increasing need to develop effective leadership\nskills. For regulatory professionals, their job scopes include\nleading regulatory departments as well as cross-functional\nwork groups. Furthermore, many have to play key roles in\norganizational leadership teams and spend a significant\namount of their time working on strategy or businessrelated\nduties. They also need to navigate multinational\nand/or multicultural environments. This module will\naddress these challenges and aims to provide skills\nnecessary for regulatory professionals to become effective\nleaders.", + "title": "Leadership for Regulatory Professionals", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Regulation of health products is controlled by standards, guidelines and legal frameworks. The interactions among these and the stakeholders \u2013 industry, regulatory authorities, healthcare professionals and patients \u2013 are required for effective governance for timely access and safe, quality and efficacious medicines and medical devices for patients.\n\nThis 4-credit module provides the understanding of the contribution of the various stakeholders, functions and guidelines that shape the regulatory environment and impact the healthcare management scene. The concept of product life cycle will be also be explored among other contemporary regulatory approaches.", + "title": "Fundamentals of Health Products Regulation", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5003", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ensuring quality of healthcare products is one of the key pillars in regulatory responsibilities, for industry, manufacturers and regulators. The contribution of CMC to a successful control of quality in pharmaceutical products spans from product development and manufacture, process validation to post-market variation changes, as well as an optimal quality management system.\n\nThis 4-credit module provides the foundation in understanding the regulatory science behind the development, manufacturing and control of pharmaceuticals, including the global guidances that shapes the regulatory processes. Besides promoting good submissions and evaluation practices, the module aims to enhance regulatory convergence and cooperation on CMC regulation.", + "title": "Regulation of Pharmaceutical Manufacturing", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "1730", + "weeks": [ + 8 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1730", + "weeks": [ + 8 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1730", + "weeks": [ + 8 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1730", + "weeks": [ + 8 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1730", + "weeks": [ + 8 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced therapies, covering the scope of cellular, tissue and gene treatment modalities, is a rapidly advancing field that offers exciting new therapeutic possibilities and constantly challenges the regulatory environment to expedite access to these innovations.\n\nThis 4-credit module provides a better understanding of the various frameworks and practices regulating advanced therapies, including requirements for product evaluation and dossier submission for an effective product life cycle management. The module will interest students who are keen in global trending regulatory approaches and strengthening the skillsets to accommodate new innovation. There is also a focus on promoting convergences of regulatory approaches for advanced therapies.", + "title": "Regulation of Advanced Therapies", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The advent of biotherapeutics and biosimilars highlighted the need for regulatory affairs to accommodate the rapidly evolving medical sciences, necessitating timely revisions in policies, processes and the technical knowledge in managing these new innovations and facilitating access to meet medical needs.\n\nThis 4-credit module provides the background to the rise of these biologicals in healthcare, and the defining differences from traditional pharmaceuticals and generics. There is a focus on post-market activities which serve as the main guards for ensuring the safe use of these products.", + "title": "Regulation of Biotherapeutics and Biosimilars", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5006", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Generic medicines are becoming increasingly important as a means of providing access to affordable healthcare by helping to suppress rising healthcare costs. This module aims to equip students with skills to assess the therapeutic equivalence of a generic medicinal product relative to a comparator, specifically with respect to bioavailability (BA) and bioequivalence (BE). Students will learn how to design and conduct appropriate bioavailability and bioequivalence studies in accordance with established international guidance documents, and to analyse the data from such studies.", + "title": "Regulation of Generic Medicines", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Regulation of pharmaceuticals is controlled by standards, guidelines and legal frameworks. The interactions among these and the stakeholders \u2013 industry, regulatory authorities, healthcare professionals and patients \u2013 are required for effective governance for safe, quality and efficacious medicines and timely access for patients.\n\nThis 4-credit module provides the understanding of the contribution of the various stakeholders, functions and guidelines that shape the regulatory environment and\nimpact the healthcare management scene. The concept of product life cycle will be also be explored among other contemporary regulatory approaches.", + "title": "Fundamentals of Pharmaceutical Regulation", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5011", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ensuring quality of healthcare products is one of the key pillars in regulatory responsibilities, for industry, manufacturers and regulators. The contribution of CMC to a successful control of quality in pharmaceutical products spans from product development and manufacture, process validation to post-market variation changes, as well as an optimal quality management system.\n\nThis 4-credit module provides the foundation in understanding the regulatory science behind the development, manufacturing and control of pharmaceuticals, including the global guidances that shapes the regulatory processes. Besides promoting good submissions and evaluation practices, the module aims to enhance regulatory convergence and cooperation on CMC regulation.", + "title": "Chemistry, Manufacturing and Controls (CMC)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The effective regulation of pharmaceuticals for safety and efficicacy depends on the availability, understanding and appropriate implementation of relevant guidelines and the processes designed to ensure quality in decision-making. The requirements are frequently different from traditional clinical trials and specific to regulatory affairs. \n\nThis 4-credit module provide the understanding for the unique requirements of clinical trials and clinical data meant to support regulatory evaluation and approvals.", + "title": "Clinical Trial Design and Data Analysis", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the globalisation of the pharmaceutical industry,\nMRCTs are an increasing trend in pharmaceutical\ndevelopment. While this approach may make the conduct\nof trials more efficient through multiple recruitment centres,\nissues of adequate population representation, ethnicity\ndifferences and statistical robustness are frequently\nbrought up.\nThis 4-credit module provides the principles supporting\nMRCTs and address some of the concerns related to this\napproach, building on the fundamentals of good clinical\npractices, study designs (selection of population and\ndoses) and regulatory evaluation sciences (biostatistics,\npharmacodynamics, pharmacovigilance).", + "title": "Multi-Regional Clinical Trials (MRCT)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced therapies, covering the scope of cellular, tissue and gene treatment modalities, is a rapidly advancing field that offers exciting new therapeutic possibilities and constantly challenges the regulatory environment to expedite access to these innovations.\n\nThis 4-credit module provides a better understanding of the various frameworks and practices regulating advanced therapies, including requirements for product evaluation and dossier submission for an effective product life cycle management. The module will interest students who are keen in global trending regulatory approaches and strengthening the skillsets to accommodate new innovation. There is also a focus on promoting convergences of regulatory approaches for advanced therapies.", + "title": "Regulation of Cell, Tissue and Gene Therapies", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The advent of biotherapeutics and biosimilars highlighted the need for regulatory affairs to accommodate the rapidly evolving medical sciences, necessitating timely revisions in policies, processes and the technical knowledge in managing these new innovation and facilitating access to meet medical needs.\n\nThis 4-credit module provides the background to the rise of these biologicals in healthcare, and the defining differences from traditional pharmaceuticals and generics. There is a focus on post-market activities which serve as the main guards for ensuring the safe use of these products.", + "title": "Biotherapeutics and Biosimilars", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5104", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Generic medicines are becoming increasingly important as a means of providing access to affordable healthcare by helping to suppress rising healthcare costs. This module aims to equip students with skills to assess the therapeutic equivalence of a generic medicinal product relative to a comparator, specifically with respect to bioavailability (BA) and bioequivalence (BE). Students will learn how to design and conduct appropriate bioavailability and bioequivalence studies in accordance with established international guidance documents, and to analyse the data from such studies.", + "title": "Generic Medicines", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s digital world, technologies and software play an increasingly important role in healthcare management - diagnosis, treatment, patient monitoring and Real World Data collection. While software-based medical devices products are currently controlled via medical device regulation, they differ significantly from traditional medical devices requiring a more streamlined and efficient regulatory oversight. Software standards and guidelines published by standards development organisations (eg., ISO, IEC) and regulatory agencies/forums are important tools for effective governance for safe, quality and efficacious health products and timely access for patients.\n\nThis 4-credit module provides the foundation in understanding established standards, guidelines and regulatory principles on conformity assessment of medical device softwares.", + "title": "Regulation of Digital Health Products", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5106", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In Vitro Diagnostic Medical Devices (IVDs) are a key component of healthcare, and pivotal to advancing technology solutions for patient centric care, such as precision medicine and companion diagnostics. This module covers an overview of the technical documentation and available international standards for IVDs, providing a\nfundamental understanding of the principles behind effective regulation of IVDs.\n\nThis 4-credit module provides the foundation in IVDs regulatory principles, use in precision medicine and companion diagnostics. It also provides an introduction to\nstandards and guidelines playing a pivotal role in meeting requirements to ensure product safety, quality and performance.", + "title": "In-Vitro Diagnostic Devices and Precision Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5107", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The effective regulation of pharmaceuticals and medical devices for safety and efficacy depends on the availability, understanding and appropriate implementation of relevant guidelines and the processes designed to ensure quality in decision-making. The requirements are frequently different from traditional clinical trials and specific to regulatory affairs.\n\nThis 4-credit module provide the understanding for the unique requirements of clinical trials and clinical data meant to support regulatory evaluation and approvals.", + "title": "Clinical Studies and Evaluation of Health Products", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Pharmacovigilance is one of the key regulatory functions, and monitors the safe effective use of pharmaceuticals in the real-world healthcare setting. It drives the source of real-world evidence that feedbacks into the regulatory decision-making process, contributes to timely postapproval actions and completes the product life cycle management.\n\nThis 4-credit module introduces the principles of pharmacovigilance, regional and global frameworks, as well as the pivotal processes involved in optimal data\ncollection, collation and signal generation. The need for partnership among regulatory stakeholders is a focus as this is critical in ensuring adequate quality data that is the stem of pharmacovigilance.", + "title": "Pharmacovigilance Principles and Frameworks", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5111", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Pharmacovigilance is one of the key regulatory functions, and monitors the safe effective use of pharmaceuticals in the real-world healthcare setting. The scope has progressively increased to include risk management planning for product life cycle management which encompasses appropriate drug use, signal detection and other risk mitigation/minimisation activities.\n\nThis 4-credit module provides the background to the evolved role of pharmacovigilance in optimising safe and effective use of pharmaceuticals. This covers regional and global models, approaches to risk communication among\nstakeholders, and the detection, assessment and management of safety signals. In addition, the scope will include a segment on handling substandards and falsified pharmaceuticals.", + "title": "Pharmacovigilance Risk Management Planning", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The assurance of safe and quality medicines in the market depends on a range of vital activities after the approval of a medicine by the authorities. This includes the continual monitoring offered by inspections and audits of facilities and testing of product quality. In this globalised environment, there is also an increasing need to leverage on networks to effectively detect lapses in product quality and services in a timely manner. \n\nThis 4-credit module introduces the key activities and roles essential for effective post-market control, including management of failures of conformance and compliance. Topics covered will include collaborations and networks for optimising post-market communications, and handling of substandard and falsified pharmaceuticals.", + "title": "Post-market Surveillance and Enforcement", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5113", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Post market vigilance is a key regulatory function in the total product life cycle. Continual monitoring and reporting of medical device adverse events is critical in ensuring the marketed devices are free from unacceptable risk. This 4-credit module introduces the key activities and roles essential for effective post-market vigilance, including adverse events, field safety correcting action and change\nmanagement.", + "title": "Post-Market for Medical Technologies", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Pharmacovigilance is one of the key regulatory functions, and monitors the safe effective use of pharmaceuticals in the real-world healthcare setting. It drives the source of real-world evidence that feedbacks into the regulatory decision-making process, contributes to timely post-approval actions and completes the product life cycle management.\n\nThis 4-credit module introduces the principles of pharmacovigilance, regional and global frameworks, as well as the pivotal processes involved in optimal data collection, collation and signal generation. The need for partnership among regulatory stakeholders is a focus as this is critical in ensuring adequate quality data that is the stem of pharmacovigilance.", + "title": "Principles and Frameworks for Pharmacovigilance", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5115", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The assurance of safe and quality medicines in the market depends on a range of vital activities after the approval of a medicine by the authorities. This includes the continual monitoring offered by inspections and audits of facilities and testing of product quality. In this globalised environment, there is also an increasing need to leverage on networks to effectively detect lapses in product quality and services in a timely manner.\n\nThis 4-credit module introduces the key activities and roles essential for effective post-market control, including management of failures of conformance and compliance. Topics covered will include collaborations and networks for optimising post-market communications, and handling of substandard and falsified pharmaceuticals.", + "title": "Post-Market Activities for Pharmaceuticals", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5116", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advances in medical science, product development and\nhealthcare models are rapid and frequently these pose a\nchallenge for timely responses from regulatory authorities.\nFrameworks must be flexible, accommodate the evolving\nsciences, and fulfil the mandate of facilitating timely access\nto new innovations in healthcare.\nThis 4-credit module introduces the trends in regulatory\nprocesses, paradigm shifts and upcoming frameworks for\nexpediting access to innovations and products for unmet\nmedical needs. Considerable focus will be given to\nregulatory convergence and system strengthening.", + "title": "Advanced Topics in Regulatory Policy", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5121", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A sound regulatory strategy is needed to bring a product to\nmarket and to safe guard public health. Regulatory\nstrategy needs to address three areas, including product\ndevelopment, product manufacture and market vigilance.\nRegulatory professionals, particularly those in lead roles,\nwill need to be strategic and \u201cinnovative.\u201d Implementing a\nstrategy requires examination of the potential pitfalls and\nplanning to mitigate any risks, challenges or issues a drug\nmight face.\nThis module will provides content on strategy development\nfor bringing pharmaceutical products to market.", + "title": "Strategic Planning for Pharmaceutical Products", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A sound regulatory strategy is needed to bring a medical\ndevice to market as well as to safeguard public health.\nRegulatory strategy needs to address three areas,\nincluding product and design development, product\nmanufacture and market vigilance. Regulatory\nprofessionals and in particular those in lead roles will need\nto be strategic and \u201cinnovative.\u201d Implementing a strategy\nrequires examination of the potential pitfalls and planning\nto mitigate any risks, challenges or issues a drug might\nface. This module will equip the participants with skills to\nformulate, implement and execute a strategy for bringing a\nmedical device to market.", + "title": "Strategic Planning for Medical Devices", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5123", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce health care professionals to the principles of translating evidence for better services into a clinical setting. \n\nParticipants will learn processes and factors associated with successful integration of evidence-based interventions within a particular setting, assess whether the core components of the original intervention were faithfully transported to the real-world setting and gain new knowledge about the adaptation of the implemented intervention to the local context.", + "title": "Implementation Science for Health Services", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-04-05", + "end": "2023-05-03", + "weekInterval": 4 + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-04-04", + "end": "2023-05-02", + "weekInterval": 4 + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is about the current practice of health services research. It will include a discussion of the reproducibility crisis. The sources of data that are commonly used to address research questions are reviewed and critiqued. And then different approaches to assessing causality and associations are taught. An introduction to qualitative research methods is provided and participants are taught about systematic reviews and meta analyses.", + "title": "Research Methods for Health Services", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5202", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is about how decisions are made about what services are provided and who receives them. \n\nHealth technology assessment is a well-established tool used when decisions need to be made quickly. Often there is not time for new data collection or a dedicated research effort. It is an exercise in synthesising current evidence and responding appropriately. Economic evaluation has it foundations in welfare economics and offers a theory based approach to informing choice and trade-offs given resources are scarce. Often new data are required or a more formal research approach is used. Various modelling approaches are used to complete economic evaluations. Some principles of science will be covered such as how hypothesis testing differs from decision making. Other high level issues will be covered such as disruption and non-rational processes and outcomes.", + "title": "Health Technology Assessment, Cost-Effectiveness and Decision-making", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 5 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 5 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be exposed to the foundation concepts, case studies and applications, some mathematics behind data science models and algorithms. There will also be practical sessions for model development, training, validation and tests. Students will acquire new knowledge of data science techniques. The new knowledge from this course will enable predictions to be made about likely diagnoses, prognoses of health conditions and risks of adverse events. There will also be a mini-project and healthcare case studies to demonstrate the applicability of data science as a key enabler for improving the delivery of health services.", + "title": "Data Science + Healthcare", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5204", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will give you a framework to develop skills necessary for course design, teaching, learning, assessments, and facilitating learning within the context of your professional context. You will have opportunities to build your confidence in teaching practice through reflection and participation in a community of practice. With your peers, you will be exploring learning theories, course design and good instructional practices. Finally, this module will provide you with opportunities to put theory into practice in the form of a microteaching activity or portfolio where you will receive feedback from your peers and experts.", + "title": "Principles of Learning & Teaching in the Professions", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5301", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce participants to the principles of teaching and learning when using technology. Participants will have the opportunity to explore, evaluate and incorporate existing technologies in their own teaching practice to promote and encourage learning. This module will provide the theoretical foundation for those who wish to further explore advance topics in using technology to enhance learning.", + "title": "Principles and Applications of Technology Enhance Learning", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5302", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will expose participants to the fundamentals of simulation-based education (SBE) in healthcare. The module will explore the educational theories applied to SBE, scenario design, creating safe learning environments, and facilitating immersive simulation, touching on feedback and debriefing. \nParticipants will have to opportunity to design, develop and implement a simulation-based educational activity specific to their healthcare setting.", + "title": "Fundamentals of Simulation-based Education in Health Professions Education", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an introduction to immersive learning, an approach that makes use of Extended Reality (XR) technologies to create a highly interactive virtual or simulated environment where learners can be fully immersed in the learning process. During the course, you will learn about the principles of immersive learning, key XR enabling technologies. You will also learn to recognise the opportunities and challenges presented by immersive learning, as well as evaluate their use in healthcare education.", + "title": "Immersive Learning", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5312", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 5, + 7 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 6 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 5, + 6, + 7 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce you to the world of using games for learning. Games are usually associated with entertainment but \u201cserious games\u201d are designed with a specific intent and purpose. You will learn about the principles of designing games and be able to evaluate the use of serious games for learning and patient care.", + "title": "Serious games: Applications in healthcare", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5313", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2022-11-07", + "end": "2022-11-14" + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2022-11-29", + "end": "2022-11-29" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In learning analytics, educators use technology to improve learning by capturing course delivery and student learning data to report on the student\u2019s performance. Through learning analytics, we can obtain objective traces of data to understand student learning and do a faster iteration to close the loop of teaching, learning and feedback to improve student\u2019s learning experience. During this module, you will learn to design and identify student learning data collection, handle, clean and curate data , isualise and analyse student performance data, formulate the possibilities of providing real-time feedback and be equipped with skills for decision making.", + "title": "Learning Analytics and Student Performance", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5314", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-24", + "weeks": [ + 1, + 2, + 4 + ] + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce healthcare professionals to the fundamental principles in medical education assessment practice.\nParticipants will explore the foundations of evidenced based assessment theories and practice that are most suitable for use in the healthcare sector. A special focus of this module will be the implementation of authentic and valid online assessments. Formative and summative online assessments will be explored, in addition to the appropriate delivery of actionable feedback.", + "title": "Implementing Online Assessments", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5315", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 8, + 9, + 11 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the first module of the executive certificate programme called Qualitative Methods for Health Education Research & Quality Improvement (QUAL-E). This module covers the fundamentals of qualitative methods. Four topics will be discussed. The first is the research philosophy employed to study the social world. The second explores how and why quality inquiry is relevant to health professions education and quality improvement. The third focuses on the critical appraisal of qualitative literature. The fourth examines issues related to the quality criteria that ensure rigour in qualitative inquiry.", + "title": "Understanding the fundamentals of Qualitative Methods", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "1330", + "weeks": [ + 1, + 4 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the second module of the executive certificate programme called Qualitative Methods for Health Education Research & Quality Improvement (QUAL-E). This module covers the methods of collecting qualitative data. Three topics will be discussed. The first pertains to ethics concerning research participants recruitment. The second explores when and how to conduct qualitative interviews, facilitate focus group discussions, or collect other forms of textual data including but not limited to observations, qualitative surveys, and stories. The third explores a range of purposive sampling strategies such as maximum variation, emergent-subgroup and sensitising concept exemplars sampling.", + "title": "Collecting Qualitative Data", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5402", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "1330", + "weeks": [ + 6, + 7 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the third module of the executive certificate programme called Qualitative Methods for Health Education Research & Quality Improvement (QUAL-E). This module covers the methods of analysing qualitative data. Three topics will be discussed. The first pertains to preparing audio data for analysis by means of transcription. The second introduces a range of qualitative methodologies and methods including but not limited to grounded theory, ethnography, and thematic analysis (TA). The third focuses on TA, and how it can be applied to analyse qualitative data.", + "title": "Analysing Qualitative Data", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5403", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "1330", + "weeks": [ + 9, + 11 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the fourth and last module of the executive certificate programme called Qualitative Methods for Health Education Research & Quality Improvement (QUAL-E). This module covers the methods to disseminate qualitative data. Three topics will be discussed. The first focuses on how to write a qualitative manuscript (education research and quality improvement papers). The second discusses issues pertaining to journal selection. The third provides guidance on how to respond to peer reviewers\u2019 comments.", + "title": "Disseminating Qualitative Scholarship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5404", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1230", + "endTime": "1730", + "weeks": [ + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1330", + "weeks": { + "start": "2023-04-26", + "end": "2023-04-26" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce participants to the fundamentals of genetics and genetic testing. Participants would be able to understand the different aspects of genetics and the role of genetic testing as well as interpretation of genetic results.", + "title": "Basics in Genetics and Genetic Testing", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5501", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 7 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 7 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce participants to the genetics in the clinical setting. Participants will be able to understand the core knowledge and appreciate the applications of clinical genetics.", + "title": "Application of Clinical Genetics", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5502", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 7 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 7 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce participants to the role of genetics counselling, related issues and the genetic disease registry. Participants will be able to recognize the significance of genetic counselling and the genetic disease registry in Clinical Genomics.", + "title": "The role and application of Genetic Counselling", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5503", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 7 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 7 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide participants with practical experience in genetic counselling and variant curation through hands-on sessions. Participants have the opportunity to experience genetic counselling by role playing or with simulated patients. They will also have the opportunity to curate candidate variants identified in genomic testing.", + "title": "The application and use of genetic counselling - a practical approach", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5504", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 7 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 7 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 4 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundational module explores the challenges faced by key\nstakeholders along the Translational Medicine continuum\n(including patients, epidemiologists/data scientists, basic\nscientists, clinician scientists, entrepreneurs, investors, and\nregulators, etc) by examining real-life case-studies representing\nthe barriers that each face in their quest to develop a cure for\nan unmet health care need.", + "title": "Translational Medicine: From Unmet Need to Cure", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5801", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on harnessing technology to identify\ntherapeutic targets. From basic science research to large\ndataset analysis, including Big Data, Artificial Intelligence,\nGenomics, and Machine Learning have reshaped the ways\nin which potential therapeutic targets are identified.\nTopics will include the drug discovery process from\ncomputer modeling to clinical application, resistance\nmechanisms, pharmacogenomics of hosts that determine\nsensitivity to drugs, gene therapy strategies and\nlimitations.", + "title": "From Need to Target", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5802", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be exposed to the clinical\ndevelopment process including exploration of the design,\nanalysis, and ethical issues related to establishing causal\nrelationships between treatments and effects in patients.", + "title": "From Target to Treatment", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5803", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, students will explore the types of risks\nencountered in the TM continuum and the implications\nfor patients, researchers, funders, and society. Strategies\nfor reducing risks will be examined through case-based\nanalyses.", + "title": "De-Risking Discoveries", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5804", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will expose students to key issues related to\nthe profitability of discovery, including: protecting\nintellectual property, working with industry partners,\nseeking and accepting funding to develop businesses.", + "title": "Entrepreneurship for Translational Medicine\nResearchers", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS5805", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2023-01-11", + "end": "2023-04-12" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will immerse students in a week-long intensive\nprogram as part of the Eureka Institute\u2019s Merlion School, where\nstudents will conduct fieldwork on a self-directed learning\nactivity that focuses on enhancing their skills and competencies\nin Translational Medicine. Students will engage with\nTranslational Medicine researchers, policy makers, financers,\ntechnologists, and other scholars to explore the business,\nscientific, and regulatory aspects of Translational Medicine and\nbuilding their network of local and international collaborators.\nTopics include: ideation and design thinking, international\nnetworks, communication skills, presentation skills, enhancing\ncreativity in science, mentorship, and entrepreneurialism.", + "title": "Networking in International Translational\nMedicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "GMS5806", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students produce a thesis after conducting\nan academic, scholarly project that demonstrates their\nmastery of the core content of the MITM. The thesis\nincludes a comprehensive synthesis and review of the\nliterature related to the topic, discussion of the\nsignificance and potential impact of a focused question,\nthe methods and measures used to address the question,\nthe results and discussion of those results taking into\naccount their strengths and limitations, how they fit with\nand extend existing knowledge, implications for future\npractice, and the next steps to be taken as a result of this\nactivity.", + "title": "Thesis", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "GMS5849", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Student Research Seminars are weekly seminars in which\nMSc students present the progress of their research\nprojects to faculty and graduate students.", + "title": "Student Research Seminar (MSc)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS5900", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "C.A.R.E. 1: Joining the Medical Profession", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "GMS6100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Molecules, Cells and Tissues", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "GMS6101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Human Structure & Function", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "GMS6102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Brain & Behaviour", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Body & Disease", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "18", + "moduleCode": "GMS6104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Skills Foundation", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "GMS6105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Investigative Methods & Tools", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Evidence Based Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Foundations of Patient Care 1", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "19", + "moduleCode": "GMS6108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Foundations of Patient Care 2", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "20", + "moduleCode": "GMS6109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "C.A.R.E. 2: Learning From & For Patients", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "7", + "moduleCode": "GMS6200", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Medicine Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "GMS6201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Surgery Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "GMS6202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Obstetrics & Gynecology Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "GMS6203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatrics Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "GMS6204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Psychiatry Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neurology Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Core 1", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Core 2", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Core 3", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oncology, Geri Med & Pall Care Progrm", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Core 5", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Practice Course 2", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Emergency Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6213D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Histopathology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6214B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Histopathology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6214D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Anaesthesiology Program", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Obstetrics & Gynaecology Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "GMS6216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Longitudinal Integrated Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "GMS6217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Fundamentals of Research & Scholarship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "GMS6218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Geriatrics & Nutrition", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Innovation & Design Thinking", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "GMS6220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oncologic Body Imaging", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6221D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Vascular & Interventional Radiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6222B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Vascular & Interventional Radiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6222D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Radiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6223B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Radiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6223D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neuroradiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6224B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neuroradiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6224D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Basic Radiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6225B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Basic Radiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6225C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Basic Radiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6225D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Body Imaging", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6226D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oncologic Imaging", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6227D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Radiology Program", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Emergency Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6230B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Emergency Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6230D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Rheumatology & Immunology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6231B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Rheumatology & Immunology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6231D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Allergy and Immunology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6232B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Allergy and Immunology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6232D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neonatology Elective Program", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6233D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Perinatal Psychiatry", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6234B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Perinatal Psychiatry", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6234D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Paediatrics Elective", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6235D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Neurology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6236B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Neurology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6236D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Developmental Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6237B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Developmental Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6237D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Orthopaedics", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6238B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Orthopaedics", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6238C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Gynaecology Oncology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6240B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Gynaecology Oncology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6240D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "OB Anaesthesia Clinical & Research Prog", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6242B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "OB Anaesthesia Clinical & Research Prog", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6242C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "OB Anaesthesia Clinical & Research Prog", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6242D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Fundamentals of Family Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "GMS6246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Reflections", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Virtual Integrated Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6249B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Consultation-Liaison Psychiatry", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6250B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Consultation-Liaison Psychiatry", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6250C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Consultation-Liaison Psychiatry", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6250D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Child & Adolescent Psychiatry", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6251B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Child & Adolescent Psychiatry", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6251D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Mood Disorders & Schizophrenia", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6252B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Mood Disorders & Schizophrenia", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6252D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Early Psychosis Intervention", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6253B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Early Psychosis Intervention", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6253D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Palliative Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "GMS6260", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Palliative Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6260B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Palliative Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6260D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Rehabilitative Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "GMS6261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Rehabilitation Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6261B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Rehabilitation Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6261D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Geriatric Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "GMS6262", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Geriatric Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6262B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Geriatric Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6262D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Respiratory & Critical Care Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6263D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Infectious Disease", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6264B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Infectious Disease", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6264C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Infectious Disease", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6264D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Rheumatology & Immunology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6265B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Rheumatology & Immunology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6265D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Gastroenterology/Hepatology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6266B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Gastroenterology/Hepatology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6266D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Medical Oncology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6267B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Medical Oncology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6267D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Cardiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6268B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Cardiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6268C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Cardiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6268D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dermatology @ SGH", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6269B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dermatology @ SGH", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6269D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Renal Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6270B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Renal Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6270C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Renal Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6270D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Endocrinology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6271B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neurology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6272B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neurology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6272D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Respiratory Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6273B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dermatology @NSC", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6274B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dermatology @NSC", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6274D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neurology @TTSH", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6275B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cardiology Program", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6276", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Urologic Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6280B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Urologic Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6280D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Colorectal Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6281B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Colorectal Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6281D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Surgical Oncology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6282B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Surgical Oncology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6282C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Surgical Oncology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6282D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Hand Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6283B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Hand Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6283D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Plastic, Reconstructive & Aesthetic Surg", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "GMS6284A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Plastic, Reconstructive & Aesthetic Surg", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6284B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Plastic, Reconstructive & Aesthetic Surg", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6284D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neurosurgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6285B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neurosurgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6285D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Anaes, Perioperative Med & Pain Mgmt", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6286B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Anaes, Perioperative Med & Pain Mgmt", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6286D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "HPB & Liver Transplant Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6287B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "HPB & Liver Transplant Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6287D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Orthopaedics - Adult Reconstruction", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6288B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Sports Orthopaedic Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6289B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Orthopaedics - Trauma", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6290B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Orthopaedics - Trauma", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6290D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Ophthalmology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6291B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Breast Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6292B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Breast Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6292D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Orthopaedics - Spine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6293B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Surgery Elective", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6294D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Upper Gastrointestinal Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6295B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Upper Gastrointestinal Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6295D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Vascular Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6296B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Vascular Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6296D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Musculoskeletal Year 2 Program", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6297", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Oncology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6298", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Orientation to Research Year", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6300", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Practice Course 3", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Family Medicine Clerkship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Methods and Analysis", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Family Medicine Elective@SHS Polyclinics", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6305B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Transitional Care & Com Hosp Setting", + "title": "Transitional Care & Com Hosp Setting", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6306B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research & Critical Thinking", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6309", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "IRB Modules", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GMS6310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research/Scholarship (Part 1)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "17", + "moduleCode": "GMS6311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research/Scholarship (Part 2)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "17", + "moduleCode": "GMS6312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research/Scholarship Thesis", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "C.a.r.e. 3", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6390", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Clinical Elective", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6398B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Clinical Elective", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6398C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Clinical Elective", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6398D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "GMS6399A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6399B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6399D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Practice Course 4", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6400", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "GMS6401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Medicine Sub-Internship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "7", + "moduleCode": "GMS6401F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Critical Care Rotation", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Musculoskeletal Rotation", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "GMS6404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Phase 4 Family Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Community Hospital", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6406", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Psychiatry Sub-Internship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "GMS6407D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Integrated Community Care", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "10", + "moduleCode": "GMS6408", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advance Clinical Practice", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6410", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advance Clinical Practice", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6410B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Student as Future Educator", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Pathology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6412B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Pathology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6412D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Microbiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6413B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Microbiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6413D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Emergency Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6414", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Radiation Oncology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6417B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Radiation Oncology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6417D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Molecular & Functional Imaging", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6421B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Molecular & Functional Imaging", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6421D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cognitive Neurology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6427B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cognitive Neurology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6427D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Children Intensive & Acute Care", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "GMS6430C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Children Intensive & Acute Care", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6430D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatrics (General&Urological) Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6431B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatrics (General&Urological) Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6431D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Infectious Diseases", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6432B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Infectious Diseases", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6432D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatrics Sub-Internship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "GMS6433D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Cardiothoracic Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6434B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Cardiothoracic Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6434D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Neurosurgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6435B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Neurosurgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6435D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Anaesthesia", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6436B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Anaesthesia", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6436D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Paediatric Cardiology", + "title": "Paediatric Cardiology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6437B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Maternal-Foetal/General OG Elective", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6440B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Maternal-Foetal/General OG Elective", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6440D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Maternal-Foetal/OG Sub-Internship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "GMS6441D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Maternal-Foetal/OG Sub-Internship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "7", + "moduleCode": "GMS6441F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Reproductive Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6442B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General & Consultatn Liaison Psychiatry", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6450B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Psychogeriatrics", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6451B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Psychogeriatrics", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6451D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Psychotraumatology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6452B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Addiction", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6454B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Addiction", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6454D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Geriatric Psychiatry @IMH", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6455B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dermatology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6460", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dermatology @ CGH", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6460B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Internal Medicine Elective @ CGH", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6461B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Internal Medicine Elective @ CGH", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6461D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Geriatric Medicine (Phase IV)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6462", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Haematology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6463B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Haematology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6463D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Medical Oncology (Y4)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6466D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cardiothoracic Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6482B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cardiothoracic Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6482D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Ophthalmology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6483", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Ophthalmology Sub-Internship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "GMS6483D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Otorhinolaryngology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6484", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Otorhinolaryngology (ENT)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6484B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Otorhinolaryngology (ENT)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6484D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Upper Gastrointestinal Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6487B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Upper Gastrointestinal Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6487D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Head & Neck Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6488B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Head & Neck Surgery", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GMS6488D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Orthopaedic Surgery Sub-Internship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "GMS6489D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Trauma Surgery (General Surgery)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6490B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Sports Medicine @ CGH", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GMS6491B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Student-In-Practice (Medicine)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "GMS6495", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Student-In-Practice (Surgery)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "GMS6496", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Student-In-Practice", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "GMS6497", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Capstone", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "GMS6499", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "C.A.R.E. 4: Caring for Patients", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "GMS6500", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the following: \n- Uses published articles to highlight quantitative and medical science issues that are common to biostatistics and bioinformatics \n- Appreciates and critiques the use and misuse of quantitative methods in medical research \n- Identifies and reviews techniques and resources that biostatisticians and bioinformaticians need \n- Identifies potential areas for futher research", + "title": "Integrated Biostatistics and Bioinformatics Journal Club", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Pass and Fail", + "moduleCredit": "4", + "moduleCode": "GMS6800", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Medical and health research is a multi-step and multi-faceted process. Early phase experiments assess safety, tolerability, dose-response and other parameters of candidate interventions to make Go/No-Go decisions for further research. Later phase clinical trials seek to verify and augment the earlier findings. Observational studies investigate medicine and health in the population and identify avenues for improvement. \n\nThis 4-credit module covers the key concepts in the research process and the major study designs involved. This module provides a general background in quantitative studies of medicine and health. This is tailored for students interested in biostatistics, clinical trials, epidemiology, and related fields. The focus will be on concepts, study designs, and research practice; statistical techniques will be elementary-to-intermediate.", + "title": "Study Designs in Clinical and Population Health Research", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6801", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module are to develop the modelling skills for longitudinal studies, survival analysis, categorical data analysis and high-dimensional data analysis. This module is to prepare Ph.D. students to conduct methodological research in Biostatistics and practise general statistical analysis in biomedical context.", + "title": "Analysis of Complex Biomedical Data", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6802", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-01-12", + "end": "2023-04-27", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 16 + ] + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will enable students to design various kinds of clinical trials and analyse the resulting data, to answer research questions in biomedical research. \n\n- Design and analysis of various kinds of trials such as factorial, cross-over and stepped wedge trials \n- Regulatory affairs in clinical trials \n- Design and analysis of various kinds of adaptive and sequential designs \n- Design of early phase dose-finding trials \n- Pharmacovigilance \n- Dynamic Treatment Regimens and SMART designs", + "title": "Design and Analysis of Modern Clinical Studies", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6803", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Biomedical Research Internship is scheduled for year 2, second semester of the program. Working in a real-world milieu (e.g., DCRI Duke, Durham; SCRI, Singapore; P&G, Singapore; Gov\u2019t ministries; local biomedical companies; Gov\u2019t. ministries; Monash Univ., Australia) the internship program will provide a learning bridge between the Duke-NUS academic environment and an actual work environment.", + "title": "Biomedical Research Internship", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6804", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the following:\n- Uses published articles to highlight clinical research issues that are common to clinician scientists\n- Appreciates and critiques the use and misuse of research methods in clinical sciences\n- Identifies and reviews techniques and resources that clinician scientists need\n- Identifies potential areas for further research", + "title": "Clinical and Translational Research Journal Club", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "GMS6810", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This one-semester module covers the fundamentals of clinical research. A list of covered topics are as below:\n- Introduction to Clinical Research\n- Design, Conduct and Analysis of Clinical Studies\n- Clinical Research Project Management, Recruitment Strategies, Data Management\n- Health Services Research I\n- Epidemiology\n- Safety, Ethics, and Regulatory Overview", + "title": "Principles of Clinical Research", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Pass and Fail", + "moduleCredit": "4", + "moduleCode": "GMS6811", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 9 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 10, + 10, + 10 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 11 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This one-semester module covers the fundamentals of precision medicine. A list of covered topics are as below:\n- Gene Expression and Pharmacogenetics\n- Medical Genomics\n- Medical Bioinformatics\n- Metabolomics\n- Personalized Proteomics\n- Immunomics\n- Data Integration\n- Applications of Precision Medicine: potentials and challenges\n- Technological Advances in Precision Medicine and Drug Development\n- Protection and Commercialization of Precision Medicine Innovations: patent and regulatory frameworks", + "title": "Foundations of Precision Medicine", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6812", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to biostatistics methods used in medical research. Specific topics covered include methods for describing data, hypothesis testing and statistical modeling for continuous, binary and survival outcomes. The emphasis of the course in on concepts and application of these methods to medical research. This module will enable clinical researchers to perform basic statistical analysis using Stata software and interpret their results appropriately.", + "title": "Biostatistics for Clinical Research", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6813", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This one-semester module covers core concepts in statistics with an emphasis on working with biomedical data. Covered topics:\n- Concepts in probability\n- Theory of point estimation and hypothesis testing.\n- Large sample theory and maximum likelihood estimation.\n- Linear models and linear algebra.\n- Sampling techniques and resampling methods.\n- Classification and discrimination techniques.", + "title": "Core Concepts in Biostatistics", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6820", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2022-08-10", + "end": "2022-11-23", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 16 + ] + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a non-credit module. The objective for this module\nis to prepare students in IBB with programming capability\nfor their PhD work.", + "title": "R-Programming", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Pass and Fail", + "moduleCredit": "0", + "moduleCode": "GMS6821", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1630", + "endTime": "1800", + "weeks": [ + 9, + 11, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This one-semester module covers core concepts in bioinformatics with an emphasis on working with omics-scale data. Covered topics: biological sequence analysis include alignments, searching, and annotation; analysis of next-generation DNA and RNA sequencing data in multiple applications, including de-novo sequencing, re-sequencing for germ-line and cancer genetics, RNA-sequencing for multiple applications and ChIP-seq; microarray based SNP, gene-expression, and DNA-methylation analysis; metabolomics; proteomics; gene-set enrichment analysis; pathway analysis; analysis of protein-protein interaction networks; integrated analysis of multiple kinds of \u2018omic\u2019 data; availability and use of public data for all of the above The module will also provide a brief introduction to methods of computational modeling for biological networks.", + "title": "Core Concepts in Bioinformatics", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6850", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-01-09", + "end": "2023-04-24", + "weeks": [ + 1, + 2, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 16 + ] + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students are to pursue original independent research work related to computational biology and data driven biomedical research under the guidance of a research mentor. The work must make a significant contribution to the state of knowledge in the scientific community. The reseach culminates with the development of a written research thesis and an oral defense. The thesis or its components must be worthy of publication. The thesis must be written in English, and NUS has an upper limit of 40,000 words (not including bibliography and appendices) for the length of the thesis.", + "title": "Thesis Research (QBM Computational Biology)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Pass and Fail", + "moduleCredit": "36", + "moduleCode": "GMS6891", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students are to pursue original independent research\nwork related to biostatistics and health data science,\nunder the guidance of a research mentor. The work must\nmake a significant contribution to the state of knowledge in\nthe scientific community. The reseach culminates with the\ndevelopment of a written research thesis and an oral\ndefense. The thesis or its components must be worthy of\npublication.\nThe thesis must be written in English, and NUS has an\nupper limit of 40,000 words (not including bibliography and\nappendices) for the length of the thesis.", + "title": "Thesis Research", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "32", + "moduleCode": "GMS6892", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students are to pursue clinical or translational research work under the guidance of a clinician scientist mentor. The work must make a significant contribution to the state of knowledge in the scientific/clinical community. The reseach culminates with the development of a written research thesis and an oral defense. \n\nThe thesis or its components must be worthy of publication. The thesis must be written in English, and NUS has an upper limit of 40,000 words (not including bibliography and appendices) for the length of the thesis.", + "title": "Thesis Research (Clinical and Translational Sciences)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Pass and Fail", + "moduleCredit": "41", + "moduleCode": "GMS6895", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Student Research Seminars are weekly seminars in which PhD students in the IBM program present the progress of their research projects to faculty and IBM students. \u201c(Participation for at least 6 semesters is required to qualify for credits.)", + "title": "Student Research Seminars", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "GMS6900", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Molecules to Medicines", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6901", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Laboratory Rotation 1", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6902", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Laboratory Rotation 2", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6903", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an overview of parasitic, bacterial, and viral diseases with an emphasis on emerging infectious agents and those of regional importance. The module is directed towards graduate students with basic cell biology, microbiology, and immunology background. The first part of the module with focus on general principles of the biology, dynamics, detection, control, and pathogenesis of infectious agents, followed by case studies of selected agents.", + "title": "Principles of Infectious Diseases", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6904", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-09", + "end": "2023-04-13" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-07", + "end": "2023-04-18" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves critical discussion of recent publications in the infectious disease research field. Articles will be chosen in collaboration with the course organizer or supervisor and research findings and conclusions will be presented. In addition, each student will develop a grant application (NMRC NIG format) based one of the article presented.", + "title": "Developments in Infectious Diseases", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6905", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Laboratory Rotation 3", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GMS6906", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With digitalisation of medical records and availability of high-throughput omics technologies, big data is becoming increasingly accessible. However, without formal bioinformatics training, it is easy to get lost in the big data as there could be multiple ways of interpreting them. Moreover, investigator bias may lead to errorneous interpretation of big data that can compromise decision making processes. This module is designed to cover the concepts in big data analyses, including data mining, data preprocessing, data visualisation, pathway enrichment analysis and data dashboarding. Students will also learn the fundamentals of Python programming, which is useful for handling big datasets.", + "title": "Applied Bioinformatics and Omics Data Analysis", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6907", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-11", + "end": "2022-10-13" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-12", + "end": "2022-10-14" + }, + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide theory and practical exercises in methods of evolutionary genetic analysis including, multiple sequence alignment, evolutionary models, phylogenetic tree reconstruction, temporal phylogenetics, natural selection, population dynamics, and experimental design and hypothesis testing. The module is directed towards graduate students with basic cell biology, microbiology, and immunology background. In addition to theory the students will gain extensive experience in the use of computer programs used in evolutionary analysis.", + "title": "Evolutionary Genetics", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6910", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "There is an increasing appreciation that the underlying causes of major diseases have a metabolic basis, such as diabetes and cancer. It is thus becoming necessary for scientists and physicians to have a foundation in\nintermediary metabolism in order to better understand the etiology of diseases and develop novel strategies for treating diseases.\n\nThis 4-credit course offered at Duke-NUS will cover the basics in intermediary metabolism and the regulation of metabolism with special emphasis on human diseases related to metabolic dysfunction and adaptation. This\ncourse is tailored for students interested in cancer biology, diabetes, and for those students that have an interest in obtaining a general background in the biochemistry of metabolism.\n\nThe class format will involve a combination of lectures and discussion and meet twice a week. Grading will be based on tests and a student presentation on a relevant research article.", + "title": "Metabolic Basis of Disease", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6920", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 7 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-18", + "end": "2022-11-17", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8, + 12, + 14 + ] + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0000", + "endTime": "0001", + "weeks": { + "start": "2022-09-01", + "end": "2022-10-13", + "weekInterval": 3 + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0000", + "endTime": "0001", + "weeks": { + "start": "2022-11-15", + "end": "2022-11-15" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-23", + "end": "2022-10-18", + "weeks": [ + 1, + 3, + 4, + 5, + 7, + 8, + 9 + ] + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cardiovascular disease accounts for approximately 30% of annual deaths in Singapore, and research advances in recent years have shed tremendous insight into the molecular basis of this cadre of diseases. This course is offered jointly to graduate students at NUS, Duke-NUS and Duke (USA) to explore the molecular basis of the disease. Topic areas will be include diseases such hypertension, lipoprotein metabolism, steatosis, atherosclerosis, arrhythmias, and heart failure.", + "title": "Cardiovascular Molecular Biology", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6921", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "After defining health services and systems research (HSSR), this course will provide the students with a structured review of the topics that have been and are \nbeing studied. Strong emphasis will be given on the interdisciplinary nature of HSSR by presenting how multiple disciplines can contribute to improving the \nfinancing, organization, quality, access, and cost of the health system. The course will include four major thematic areas of HSSR: i) aging and long-term care, ii) decision science and modelling, iii) health economics, and iv) implementation science and clinical investigation.", + "title": "Health Services and Systems Research", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6950", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "1100", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-19" + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-08-22", + "end": "2022-11-21", + "weeks": [ + 1, + 2, + 3, + 4, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Healthcare is a complex system of interacting entities. Achieving effective and sustainable behavior requires more than a reactive approach. System dynamics is a robust way to evaluate potential solutions to complex system problems. This module is relevant to individuals with a wide range of backgrounds including biology, business, engineering, public policy. Students develop expertise in identifying system structures such as accumulations, feedbacks, and time delays that generate and perpetuate particular system behaviors. The module covers qualitative methods for representing complex causal relationships as well as simulation model construction to gain quantitative insights into system behaviors and suggest effective, sustainable solutions.", + "title": "Dynamic Modelling of Healthcare Services and Systems", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GMS6951", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to Global Health is designed to provide a comprehensive overview of the main issues related to global health. The course will be global in coverage but with a focus on low- and middle-income countries, particularly in the ASEAN region. Attention to socioeconomic and gender determinants of health, the imperative for health equity, the role of health systems and the linkages between health and other multidisciplinary aspects will be maintained throughout the course. This course will also provide an overview of the most important health challenges facing the world today.", + "title": "Introduction to Global Health", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Pass and Fail", + "moduleCredit": "4", + "moduleCode": "GMS6961", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 2 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Thesis", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "40", + "moduleCode": "GMS6991", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Thesis (HSSR)", + "faculty": "Duke-NUS Medical School", + "gradingBasisDescription": "Graded", + "moduleCredit": "19", + "moduleCode": "GMS6992", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Ethics And Jurisprudence", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GPM3010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "General Practise Management", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GPM4000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Ethics And Jurisprudence", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GPM4010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Ethics & Integrity 1", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GS5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to introduce students to NGS and to equip them with the academic know-how to succeed in this programme. Among others, students will practice their academic writing and presentation skills. They will engage in in-depth research discussions and learn how to conduct a scientific dialogue. There will have intense scientific discussion on topics within and across discipline with instructors and peers in the form of small group journal clubs.", + "title": "Academic Professional Skills and Techniques", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GS5002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELS-01-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Stem Cell Biology", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GS5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Microscopy For Cell & Developmental Biology", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GS5007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Supervision", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Not Shown in Transcript", + "moduleCredit": "0", + "moduleCode": "GS5100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will complete two lab rotations, two months per rotation, in their first semester. Students will submit a report for each rotation that includes a description of the research project and the supervisor\u2019s assessment of the student\u2019s performance during the rotation. \n\nStudents will attend a workshop before they start their second lab rotation. They will discuss research mentorship, research planning and management and articulate the learning experiences gleaned from their first lab rotation. \n\nModular credits and a \u2018Completed Satisfactory (CS)/Unsatisfactory (CU)\u2019 grade will be awarded for satisfactory performance for both rotations, completion of two rotation reports and workshop attendance.", + "title": "Research Immersion module", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GS5101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim is to expose students of varied research backgrounds to the different experimental skills. Lab Rotation (LR) was compulsory under the GPBE\nprogram requirements. Students have to fulfill a semesterlong LR. Upon completion of the LR with satisfactory performance, 4 modular credits will be awarded and these can count to the students\u2019 coursework requirements. \nAt the end of the lab rotation, student\u2019s performance in the lab will be assessed by the lab supervisor. Additionally the student has to submit a lab rotation report to detail what he has achieved from the lab rotation and how the techniques\nlearnt are beneficial to his area of research A \u2018Satisfactory/Unsatisfactory\u2019 grade is awarded on the basis of attendance, submission of an evaluation report\nand satisfactory performance rated by the lab coordinator.", + "title": "Lab Rotation", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "GS5101A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Undergraduate Teaching", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Not Shown in Transcript", + "moduleCredit": "0", + "moduleCode": "GS5104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers issues that graduate student in science and engineering shall face at some point during their PhD candidature and in their subsequent academic careers. Through lectures, discussions and presentations, students shall ponder on and analyze ethical issues and dilemmas associated with data archival, mentoring, authorship, credit sharing and conflicts of interest. They shall rationalize internationally sanctioned rules and regulations in dealing with ethically sensitive research subjects. They shall be taught sensible and appropriate approaches in dealing with incidents of scientific misconduct, and how ethical integrity should and could be maintained in spite of research intensity and competition.", + "title": "Research Ethics and Scientific Integrity", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GS6001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELS-01-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T06:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Stem Cell Biology", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GS6003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The human brain is the most complex structure in the known universe, with large areas responsible for processing visual information. In this module, we adopt an interdisciplinary approach to studying the human visual system as a model for understanding the functional organization of the brain. We begin with how photons are converted into neural synaptic potentials. Next, we explore the anatomical and physiological organization of the cortical visual areas, as well as computational models of their function. We then review the psychophysical studies of object recognition and visual attention. We conclude by studying mathematical models used in artificial vision systems.", + "title": "Vision and Perception", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GS6004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Microscopy for Cell & Developmental Biology", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GS6007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "The Biology and Sociology of Influenza Pandemics", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GS6880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Primarily lectures, discussions, and readings in a research or development topic across disciplinary boundaries. Themes are selected to immerse students in work that is amenable to integrative approaches. Topics are organized with background and current research lectures and discussions, followed by students presenting projects and leading discussion with faculty mentoring. In a semester, students chose capsules among available themes or participate in all capsules of a single theme. 1 capsule (1MC) consists of 1 class (2h) per week for 3 weeks.\nThe capsule topic will be introduced in the first class (the \u201cwhat\u201d session), followed by interactive presentations and discussions by both the lecturer as well as students in the second (the \u201cwhy\u201d session) and third class (the \u201chow\u201d session).", + "title": "Infectious Disease Modeling", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GS6880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "BioEnergy", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GS6881A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module consists of a series of lectures and discussions/presentations that would provide students with an interdisciplinary exposure and knowledge foundation for selected research areas/themes that are of prime importance to humankind, and where interdisciplinary science and engineering are frequently practiced. Some of these areas are traditional strategic areas which NUS have great research strength in, and others are emerging areas of intense interest. Each theme is taught and coordinated by two instructors, who will contribute to different, yet complementary, perspectives of the theme. The areas/themes may include \"infectious agents and global pandemics\", \"Omics\", \"Renewable Energy\", \"Human-Computer Interactions\" and \"Environmental problems/climate change\".", + "title": "Interface Science and Engineering", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GS6883A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to cultivate an interdisciplinary mindset among postgraduate students. Through interactive lectures, the module will expose students to various research themes to broaden their knowledge and examine the role of integrative approaches in addressing 21st century challenges. Through journal clubs, the module will prepare students to critically evaluate research literature across the science and engineering disciplines and recognize the broader significance of work presented within the context of each field.", + "title": "Integrative Science & Engineering Research", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GS6883B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELS-01-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Introduction to Optical Tweezers", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "GS6884A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Introduction to Image Processing and Basic ImageJ", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GS6885", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Sound, Music, and Mind", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GS6887A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Professional Skills series enables students better to approach, present, and otherwise communicate their research. Students are helped to understand what graduate level research involves, how to gauge their own progress and set appropriate goals, to read critically, listen effectively, write-up and present their research to different audiences - peers, lab meetings, conferences, grant bodies, journals, and thesis examiners. Each skills capsule will be timed relevantly to accord with the different stages of the PhD degree.", + "title": "Academic Professional Skills II", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GS6889A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELS-01-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to equip NGS networked group students with knowledge in soft skills in research and an appreciation of research ethics. Among other skills, students will practice their academic writing and presentation skills. They will be instructed on how to conduct a scientific dialogue, and be given foundation knowledge in intellectual property and patent issues. The will also go through a research ethics workshop where various topics on proper conduct in research shall be highlighted and discussed.", + "title": "Academic Skills and Research Ethics", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GS6889B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This practice-based module will acquaint students with the basics of effective oral communication. The module will emphasize the need for clarity and simplicity when expressing central messages, and will prepare students to structure their thoughts and bring them to screen, or slide in a reasonable timeframe. Through practical exercises based on their own research (either ISEP lab rotations or pre-ISEP projects), students will learn how to articulate themselves professionally to a multidisciplinary audience.", + "title": "Scientific Communication Primer", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GS6889C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELS-01-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Computational Systems Biology", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GSC6880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graphene: Production, Properties and Applications", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GSG6886A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "During development of the nervous system, billions of neurons with trillions of synaptic connections are assembled in complex neuronal circuits, which underlie\nevery aspect of brain function, from simple motor tasks to complex emotions. In this module we will describe our current understanding of the molecular and cellular mechanisms that shape neuronal circuits during development in health and disease states, with emphasis on the following topics: \n- Induction and patterning of the nervous system.\n - Birth and migration of neurons.\n- Axon guidance to their target fields.\n- Synapse formation.\n- Mechanisms of regeneration and repair.\n- Neurodevelopment disorders.", + "title": "Developmental Neurobiology: from genes to neuronal circuits", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GSN6502", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a conceptual understanding of several of the classical and the most advanced techniques in modern neuroscience research. The emphasis is on showing how different techniques can optimally be combined in the study of problems that arise at some levels of nervous system organization. Several fundamental aspects of neuroscience research techniques, including: (1) biochemical, (2) anatomical staining, (3) behavioural, (4) electrophysiological and (5) fluorescence and functional imaging approaches will be discussed", + "title": "Techniques in Neuroscience", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GSN6503", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This capsular module comprising of 4 sub-modules is designed to introduce students to clinically-relevant neuroscience topics. Major topics to be covered in :\n1) Neurodegenerative diseases\n2) Neuropsychiatric and other brain disorders\n3) CNS injuries and repair and\n4) Pharmacotherapy for nervous system dysfunction", + "title": "Brain Disorders & Repair", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GSN6505", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This series of 4 capsule modules will cover:\n1) quantitative methods to study information encoding and decoding in\n the responses of single neurons and of populations of neurons\n2) neural network models of learning, including back-propagation, radial basis \n functions, Hebbian plasticity, spike-time-dependent plasticity, and liquid\n state machines\n3) non-invasive recording methods in humans for brain-computer interfaces,\n including EEG and fMRI; and\n4) signal processing methods for brain-computer interfaces used in neural \n prostheses for paraplegics and to rehabilitate stroke patients.", + "title": "Computational Neuroscience & Neuroengineering", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GSN6506", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neuroethics", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "GSN6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Human Cognitive Neuroscience: A hands on approach", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "GSN6881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main purpose of this module is to provide NGS students an opportunity to improve their presentation skills and participate in scientific seminars in a professional manner. The module involves attending seminars, writing summaries of selected seminars, and giving a presentation. The module will be spread over one semester and will be graded Satisfactory/Unsatisfactory on the basis of student participation and the individual presentation.", + "title": "NGS Seminars", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "GSS6886", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Healthcare Informatics is an integral part in the provision of healthcare. This course introduces participants to foundational concepts in healthcare informatics, healthcare data and regulations governing its use, consumer health technology and basics of data visualization. The course will be delivered by an experienced faculty with the use of case studies, discussions and hands-on experience with various consumer health technology and a data visualization tool.", + "title": "Health Informatics and Data Visualisation", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "HI5101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces participants to \u201cValue Based Healthcare\u201d concepts and framework, and \u201cHow Value Based Healthcare\u201d can be implemented in Singapore\u2019s context. Participants will learn a structured data management framework, identification of key clinical quality measurements for specific medical conditions and tracking of improvements in quality and safety. The module will be delivered by experienced faculty with the use of actual Value Based Projects implemented at NUHS regional health system.", + "title": "How Informatics can enable 'Value Based Healthcare'", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "HI5102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip healthcare professionals with quality improvement tools and techniques for problem-solving and process improvement.\n\nParticipants will be provided with theoretical and reflective exercises to be familiarised with the use of several quality improvement tools. Subsequently, the participants can employ these tools in a quality improvement or patient safety project back in their respective job roles.", + "title": "Quality Improvement in Healthcare", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "HI5103", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip healthcare professionals, doctors, nurses and allied health, who have been using EPIC as an Electronic Medical Record system, with enhanced skills and knowledge to fully utilise the functionalities within EPIC.\n\nThe aim of this module is to increase productivity within the healthcare delivery system, reduce unnecessary screen time and provide the most optimal integrated patient care.\n\nInterprofessional collaboration can be strengthened through case-based discussions which can lead to improvements in workflows and patient care.", + "title": "How to make the most out of EPIC", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "HI5104", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the core legal principles and precedents in clinical practice. No experience in law or bioethics is needed. Related ethical issues that arise when reviewing cases will also be discussed. The topics covered include medical negligence, medical errors, patient confidentiality and disclosure, vulnerable adults and children at risk, innovative treatments and telemedicine.", + "title": "Essentials of Law for Healthcare Professionals", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "HLE5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the core legal and ethical issues in clinical decision-making in clinical practice. No experience in law or bioethics is needed. The topics covered include consent, mental capacity, treatment refusal, end of life, role of family in decision-making, limits of parental authority in medical decision-making, lasting powers of attorney, advance directives, advance care planning, and best interests decision-making.", + "title": "Clinical Decision-Making: Ethical and Legal Aspects", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "HLE5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Participants will learn to identify and manage Psychosis, and will also be provided with a clinical attachment totalling 6 hours with IMH\u2019s senior clinicians.", + "title": "Psychosis", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "HM5102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Participants will learn to approach and manage depression, anxiety, and grief", + "title": "Mood, Anxiety, & Grief", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "HM5103", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Participants will learn to intervene addiction & personality disorders", + "title": "Addiction", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "HM5104", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Participants will learn to identify & apply psychosocial interventions in children & adolescents", + "title": "Child & Adolescent Mental Health including Learning Disabilities", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "HM5105", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Participants will learn to identify, assess, diagnose, & treat mental disorders in the elderly", + "title": "Psychogeriatrics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "HM5106", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Module 6 comprises of three topics, Managing Borderline and Antisocial Personality Disorders in General Practice, Psychological Treatment for Addictive Disorders and Cognitive Behavioral Therapy.", + "title": "Personality Disorders and Psychological Therapies", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "HM5107", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Workplace Communication helps students refine their written and interpersonal communication skills for the workplace. Students learn to frame and present their written and verbal messages clearly, convincingly and effectively, as appropriate to the context, audience, and purpose of the communication. Topics include email, report and minutes writing skills; meeting skills; and interpersonal interaction skills with colleagues and superiors. Classes are conducted in an interactive and engaging manner, and incorporate roleplays, small group discussions and self-reflection activities.\n\nThis 6-week module employs a flipped classroom approach. There are online materials for independent learning, and weekly 2-hour face-to-face sessions.", + "title": "Workplace Communication", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "HS1301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "10B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "01A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "AS3-0314", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "10B", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "01A", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "AS3-0314", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 4-Year career readiness roadmap aims to provide a formalised and systematic framework to assist our students in their career planning. Delivered by CFG and allocated to Year 1 CHS students, this e-module provides a brief introduction to the future of work and provides the direction for students to build essential core skills and succeed at internships. Topics include increasing self-efficacy and strategic career planning with the help of readily available resources.", + "title": "Career Compass I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Not Shown in Transcript", + "moduleCredit": "0", + "moduleCode": "HS1401A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 4-Year career readiness roadmap aims to provide a formalised and systematic framework to assist our students in their career planning. Delivered by CFG and allocated to Year 1 CHS students, this e-module provides a brief introduction to the future of work and provides the direction for students to build essential core skills and succeed at internships. Topics include increasing self-efficacy and strategic career planning with the help of readily available resources.", + "title": "Career Compass I", + "faculty": "Science", + "gradingBasisDescription": "Not Shown in Transcript", + "moduleCredit": "0", + "moduleCode": "HS1401S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 4-Year career readiness roadmap aims to provide a formalised and systematic framework to assist ourstudents in their career planning. Delivered by CFG and allocated to Year 2 CHS students, it delves deeper into acquiring the essential career skills, and to seek greater industry exposue through various forms of experiential learning beyond classroom, with the guidance from the career advisors.", + "title": "Career Compass II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Not Shown in Transcript", + "moduleCredit": "0", + "moduleCode": "HS1402A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 4-Year career readiness roadmap aims to provide a formalised and systematic framework to assist ourstudents in their career planning. Delivered by CFG and allocated to Year 2 CHS students, it delves deeper into acquiring the essential career skills, and to seek greater industry exposue through various forms of experiential learning beyond classroom, with the guidance from the career advisors.", + "title": "Career Compass II", + "faculty": "Science", + "gradingBasisDescription": "Not Shown in Transcript", + "moduleCredit": "0", + "moduleCode": "HS1402S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 4-Year career readiness roadmap aims to provide a formalised and systematic framework to assist our students in their career planning. Delivered by CFG and allocated to Year 3 CHS students, it focuses on ensuring the students are ready in securing an internship or research projects, to enhance their employability.", + "title": "Career Compass III", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Not Shown in Transcript", + "moduleCredit": "0", + "moduleCode": "HS1403A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 4-Year career readiness roadmap aims to provide a formalised and systematic framework to assist our students in their career planning. Delivered by CFG and allocated to Year 3 CHS students, it focuses on ensuring the students are ready in securing an internship or research projects, to enhance their employability.", + "title": "Career Compass III", + "faculty": "Science", + "gradingBasisDescription": "Not Shown in Transcript", + "moduleCredit": "0", + "moduleCode": "HS1403S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 4-Year career readiness roadmap aims to provide a formalised and systematic framework to assist our students in their career planning. Delivered by CFG and allocated to Year 4 CHS students, students will work on their job search strategy. The focus will be on strengthening their work-readiness skills, updating their resume and improving their interviewing skills, as they actively apply for jobs in their graduating year.", + "title": "Career Compass IV", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Not Shown in Transcript", + "moduleCredit": "0", + "moduleCode": "HS1404A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 4-Year career readiness roadmap aims to provide a formalised and systematic framework to assist our students in their career planning. Delivered by CFG and allocated to Year 4 CHS students, students will work on their job search strategy. The focus will be on strengthening their work-readiness skills, updating their resume and improving their interviewing skills, as they actively apply for jobs in their graduating year.", + "title": "Career Compass IV", + "faculty": "Science", + "gradingBasisDescription": "Not Shown in Transcript", + "moduleCredit": "0", + "moduleCode": "HS1404S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the role of Artificial Intelligence (AI) in our society, considering its practical and potential uses, the economics and ethics of AI, and how it can dramatically revolutionise our society in the future in areas like retail, manufacturing and service industries, national security, law enforcement, and justice systems. The course is designed for students who are new to AI, and aims to equip learners with the foundational concepts in AI, with hands-on activities to experiment and learn how to train and use it.", + "title": "Artificial Intelligence and Society", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HS1501", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 620, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 60 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 278, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 367, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 628, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the language of finance and accounting. It intends to help the students understand the basic concepts used in the financial world. The topics include understanding basic terms used in finance and accounting; operation of financial markets and the instruments traded in them; classification, measurement, and management of the financial risks; risks and returns in investment; introduction to financial data analytics and fintech.", + "title": "Financial Literacy and Numeracy", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HS2301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 13 + ], + "venue": "RMI-SR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 13 + ], + "venue": "RMI-SR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We introduce students to the intersections, interactions, and analogies that exist between mathematics and music. A primary goal of the course is to explore the power of mathematics for representing and understanding music. Students will have hands-on experience with problem solving and creative applications of mathematics and computation. Topics include pitch, scales, and tuning systems; statistical analysis and generation; audio representations; MIDI; set theory, mathematical devices in sound synthesis and composition; data sonification; music classification and recommendation systems, and AI music modeling. Python notebooks will be the platform for exploring the rich connections between math and music through code.", + "title": "Music, Mathematics, and Code", + "faculty": "College of Humanities and Sciences", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HS2901", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Play is often seen as not serious, separate from the real world, and serving no purpose. However, play is essential for our cognitive, emotional and social development, creativity, and interaction with the world. Play is also something that animals, not just humans, engage in. Starting from the perspective of play as free movement within constraints, students will explore the concept of play across disciplines, in both theory and practice, so as to appreciate its central role in our lives. This can involve field observation of animal play, lab work using play as a mode of enquiry, and role-playing for problem-solving.", + "title": "\u201cDo Play Play\u201d: The Importance of Play", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HS2902", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sports offer an important arena for the study of bodies and bodies in their various forms (e.g. bodies that do or govern sports) are also vital sites for studying sports. This module blends cultural and scientific perspectives to encourage diverse interests and multiple approaches toward sporting bodies. We will discuss a variety of issues including elite, college, and everyday sports and mental and physical health; sport industry and race, ethnicity, nation-state, and globalization; sports media, culture, and the embodiment of genders and sexualities; doping, substance (ab)use, and \u201csex-testing\u201d in sport; disability, digital technologies, and sport inclusion and exclusion.", + "title": "Sporting Bodies", + "faculty": "College of Humanities and Sciences", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HS2903", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "On the road to a low carbon future is the electrification of transport. This module will examine the renaissance of Battery Electric Vehicles (EVs) worldwide via an interdisciplinary approach, incorporating the physics and chemistry of batteries into the environmental, economic, geopolitical and policy consideration of EVs. EV start-ups, breaking news and government initiatives will be highlighted to provide real-world context. Students taking this course will develop a macro picture of the EV landscape and the clean energy sector in general by understanding the key perspectives of different stakeholders.", + "title": "Driving Towards the Future: Battery Electric Vehicles", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HS2904", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S5-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Why do we eat what we eat? To answer this complex question, this module takes a meal consumed around the world \u2013 the burger \u2013 and examines its component foods from multiple perspectives: from culture and history and political economy to technology, engineering, nutrition, and microbiology. As part of the module, students will be introduced to systems thinking and different methods for \u201cmaking thinking visible\u201d that facilitate understanding complex issues and producing interdisciplinary solutions to real-world problems. The result may shape not only your next meal but also the future of our planet.", + "title": "Cheeseburger in Paradise: Why We Eat What We Eat", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HS2905", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why is the sea so important to us? Human engagements with the maritime world are introduced through three themes \u2018Exploration, Extraction and Expression\u2019. By integrating humanities and scientific approaches, this module examines the drivers of human pursuit for knowledge, resources, and inspiration from the vast oceans of the world. The consequences of these interactions are monumental, creating multiple fundamental shifts in collective knowledge yet also presenting challenges through unsustainable acquisition of ocean resources. These challenges are framed in historical, socio-economic and regional contexts to facilitate authentic discourse on emerging solutions that mitigate anthropogenic impacts to ocean ecosystems.", + "title": "Saltwater: Society and the Sea", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HS2906", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces earth and planetary science in an integrated manner through the intersection of physical geography and astronomy, providing students with an understanding of Earth as a planet, alien worlds, universal processes and life beyond Earth. In particular, the students will develop an understanding of processes common to planets, with a view to understanding the potential future human exploration and colonization of the solar system. This module will also highlight the key concepts shaping planetary system science and how discoveries from different fields are changing the interdisciplinary knowledge relevant to the earth and planetary science.", + "title": "Earth and Beyond", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HS2907", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module adopts a multidisciplinary and comparative approach to the study of Asia and its regions. It will expose students to diverse perspectives and challenges that affect Singapore and other Asian societies such as ethnic and religious diversity, colonial histories, migration and social inequalities.\n\nThe module equips students with conceptual and methodological tools to understand regional production in Asia, and emphasises experiential learning through field studies at various sites in Singapore. Students will leave the module with the critical skills necessary for a deep appreciation of the social, political and cultural diversity in Asia.", + "title": "Asian Interconnections", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSA1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D22", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E24", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 1240, + "covidZone": "Unknown" + }, + { + "classNo": "E15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E30", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E27", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E26", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E23", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E21", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D31", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E31", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E25", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E22", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E29", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E24", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E26", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E21", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E25", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 1240, + "covidZone": "Unknown" + }, + { + "classNo": "E29", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E27", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0211", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is the essence of being human? Across the intellectual traditions of the world, fundamental concerns relating to the triumphs and problems of social organization and what a worthwhile life is have persisted through the changing circumstances of every historical age. This module introduces students to some of these enduring concerns and gives them the opportunity to engage critically with them through the discussion of selected texts and other media. Through this process, students develop an appreciation for the complexities of being human.", + "title": "The Human Condition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSH1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E25", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E26", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E05", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D09", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E29", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 1240, + "covidZone": "Unknown" + }, + { + "classNo": "D15", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E09", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D06", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E24", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D31", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E28", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D05", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E23", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 1160, + "covidZone": "Unknown" + }, + { + "classNo": "E30", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E28", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E29", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E24", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E25", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D22", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E22", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E23", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E26", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is Science? How does it work? Why does it work? Not only will this module help answer these questions, but it will also hone the skills needed to negotiate a world in the post-truth era. These skills derive from the scientific method; the characteristic of modern science that has made it without a doubt the most successful endeavour in human history. These questions and these skills will be woven within a rich history of scientific accomplishment, culminating in an understanding of the frightening challenges we face to mitigate climate change and biodiversity loss.", + "title": "How Science Works, Why Science Works", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "27", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 4, + 7 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "31", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 11 + ], + "venue": "S12-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 11 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 10 + ], + "venue": "S12-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 8 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 8 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 8 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 8 + ], + "venue": "S12-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "40", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6, + 12 + ], + "venue": "S12-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "45", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6, + 12 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 8 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "37", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6, + 12 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 9 + ], + "venue": "S12-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 3, + 9 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 10 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 9 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 8 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C12", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F6", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F8", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Monday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Monday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Thursday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 1350, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 10 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 9 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 3, + 9 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 9 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 3, + 9 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 7, + 13 + ], + "venue": "S16-03-0506", + "day": "Monday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Thursday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F7", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F9", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C9", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Thursday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C6", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 11 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 10 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "44", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6, + 12 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "39", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6, + 12 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "35", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 5, + 11 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "C5", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C7", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Thursday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F12", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F13", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 8 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 4, + 10 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 4, + 10 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 9 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 7, + 13 + ], + "venue": "S16-0598", + "day": "Monday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 8 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 5, + 11 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C13", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F5", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 10 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "41", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6, + 12 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "C8", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "43", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6, + 12 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "38", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6, + 12 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "36", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 5, + 11 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 11 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 32, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 70 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "C06", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C08", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C14", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F05", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F09", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Thursday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F08", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 8, + 13 + ], + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Thursday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 5, + 9 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 4, + 8 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 5, + 9 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6, + 10 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6, + 10 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6, + 10 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 1350, + "covidZone": "Unknown" + }, + { + "classNo": "D09", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D06", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Monday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F06", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 8, + 13 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 5, + 8, + 13 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 8, + 13 + ], + "venue": "S16-0598", + "day": "Thursday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C13", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Monday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E09", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 4, + 8 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 9 + ], + "venue": "S12-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 7, + 11 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6, + 10 + ], + "venue": "S12-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "D04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E05", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D05", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Monday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Monday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Monday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "36", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 11 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6, + 10 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 7, + 11 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 7, + 11 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 4, + 8 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "C05", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C09", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Friday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "F02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-0598", + "day": "Monday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "37", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 11 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 37, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 3 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 12 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 4, + 8 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 5, + 8, + 12 + ], + "venue": "S16-03-0506", + "day": "Tuesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "C01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-03-0506", + "day": "Monday", + "lessonType": "Workshop", + "size": 34, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 3, + 12 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 5, + 9 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 4, + 8 + ], + "venue": "S12-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6, + 10 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 9 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "35", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 11 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6, + 10 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 5, + 9 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 11 + ], + "venue": "S12-0402", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "D08", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 4, + 7, + 11 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Workshop", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5, + 9 + ], + "venue": "S12-0402", + "day": "Friday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "31", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 11 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 36, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Given the abundance and oftentimes conflicting nature of health information and advice, how do we decide what to believe and what not to? This module aims to develop students\u2019 scientific thinking capacity to distinguish good science from bad science using interesting authentic case studies and everyday examples on selected health topics. Through a deeper appreciation of scientific inquiry in the context of health sciences, this module hones students\u2019 critical thinking skills, empowering them to be critical consumers and creators of new knowledge.", + "title": "Scientific Inquiry & Health: Good Science, Bad Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modern sporting and exercise practices are mostly established based on contemporary research evidence; some, however, can just be anecdotal beliefs influenced by other non-scientific factors including those of sociocultural, media and commercial origin. This module draws on the fundamentals of sports physiology and nutrition to provide an evidence-based platform for inquiry-based evaluation of contemporary sporting practices, technologies and aids. It encourages critical analysis of contemporary sporting issues and also seeks to address common challenges faced by professional athletes. Practical classes will involve considerable participation in physical activities in the form of running and incremental exercise tests to promote experiential learning.", + "title": "Inquiry into Current Sporting Beliefs and Practices", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD9-01-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD9-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the evolution of ideas in molecular biology, focusing on approaches to investigations, how these lead to scientific knowledge, and the practices of scientists. Students will learn how the discovery of the DNA structure ultimately led to tools for gene therapy, enabled by the interplay between disciplines beyond molecular biology. Students will embark on mini-projects, and learn how scientists function within communities in the pursuit of major discoveries. This course will equip students with the knowledge and skills needed to understand and evaluate the impact of scientific advances on society and how society in turn shapes scientific endeavours.", + "title": "From DNA to Gene Therapy", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cell culture meat aims to serve as an alternative protein source through an unconventional meat harvesting method. It is produced via the cultivation of specific stem cells enabling the formation of bio-artificial muscles as a form, of animal proteins for consumption. The application of such technology is a promising way to increase protein production in a resource-scarce environment. The students should be able to critically evaluate the scientific merit of cell-based protein production using the industrial biotechnology method and describe how potential societal, ethical and legal factors can affect the successful introduction of such food sources to the consumers.", + "title": "Cell Based Proteins for a Sustainable Future", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Have you ever wonder what does science have to say about our past, present and future? This module will bring to you the science stories of the origin of the universe, matter, earth, life, species, and humans, that led to our present day and eventually determine our future. It will make connections to why these stories are relevant to you. As science intersects with society, we experienced not only its transforming power but also its related ethical, societal and environmental concerns. Students will encounter ideas, innovations, warnings, and hopes ignited by science that might make them reimagine the future.", + "title": "Our Science Stories and You", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Conflicting messages, inflated claims and quackery on the effects of foods/ diets often confuse our food choices. How do we separate food science facts from science fiction? We will deconstruct food at the physical, chemical and biological level and use this knowledge to examine and explain controversies that often surround food and its relationship with us. Students will be able to make informed decisions on food choices at the individual level, at the population level and appreciate what food needs to be for the future.", + "title": "Deconstructing Food", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 65, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 65, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 65, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 60 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0503", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Module is intended for all CHS students interested in the way the natural sciences (physics, mathematics and chemistry) did progress through the ages, and the cultural background and impact of these developments. The main focus will not be solely on the triumphs of science: As much as looking at success stories, we will also examine cases when things went wrong and try to learn about the reasons and conditions that lead to such problematic situations. We will examine how progress depends critically not only on conditions within the scientific communities but also on wider societal, economic and cultural influences.", + "title": "A Brief History of Science & Why Things Often Go Wrong", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2008", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module starts with an introduction to the historical perspective of astronomy. Planets then stood out as wanderers that moved among the stars. Over history, the study of planets has contributed much to science and the scientific method, and continues to do so today, illustrating the point that as we take in new discoveries, we may be forced to relook our old definitions and theories.", + "title": "What is a Planet?", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2009", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "8", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S12-0403", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S12-0403", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The development of space technology during the mid-20th century ushered in a new age of discovery in which outer space is explored for advancing scientific research, commercial use, and ensuring the future survival of humanity. This module illustrates the use of scientific method to study Solar System objects and their physical characteristics, particularly the presence of water and potential biomarkers, and the multiple considerations required in the development of technology for launching artificial satellites, space tourism, asteroid mining, deflecting a potentially hazardous asteroid, and space colonization.", + "title": "New Worlds Beyond Earth", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2010", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Scientific description of the smallest components of matter (atoms and sub-atomic particles, light) has become known as \u201cquantum theory\u201d. It is one of the greatest triumphs of science: it is not a formalisation of evidence and intuition, but rather harnesses phenomena that are invisible to the naked eye and counter-intuitive. It shows how science can stand behind apparently outlandish claims, and put this knowledge to practical use. The \u201cexperimental metaphysics\u201d aspect of quantum physics is introduced through the description of paradigmatic phenomena. Then the history and current challenges are presented, with a special focus on the emerging quantum technologies.", + "title": "The World of Quantum", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2011", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To early observers, Earth felt unmoving and residing at the center of the universe; the celestial objects were made of a heavenly, weightless element that naturally revolved around Earth. This module covers the history of cosmology from geocentrism and Aristotle\u2019s physics to Einstein\u2019s relativity and the Big Bang theory. Unsolved problems concerning the symmetry of the universe and existence of dark matter and dark energy, and philosophical questions concerning the theory of everything, origin of the universe, and existence of other universes will be addressed.", + "title": "From Ancient Cosmologies to Big Bang", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2012", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for all CHS students interested in the application of science and scientific inquiry to a subject which is believed by most people to be far removed from science - music. The module covers the historical discovery and evolution of the musical scale systems on which all music is based, the physics and technology of musical instruments such as the modern piano, and more modern developments such as electronic music and instruments and the digitisation of music.", + "title": "The Science of Music", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2013", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S13-M-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S13-M-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S13-M-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S13-M-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Lecture", + "size": 210, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S13-M-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S13-M-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 38, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S13-M-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S13-M-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S13-M-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S13-M-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Medical technology is one of the most important applications of science and technology; it provides the means to protect and preserve lives in today\u2019s world of ageing population, proliferation of chronic diseases, global pandemics and rising pollution. This course discusses the fusion of physics of biology that forms the basis of modern medical imaging and radiation therapy technology, and traces its roots from the foundational theories to its implementation in medical procedures. Students will learn how such technology is applied to disease management, as well as the modern innovations that pave the way towards the future of healthcare.", + "title": "Science, Medical Technology and Society", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2014", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S12-0403", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S14-0619", + "day": "Monday", + "lessonType": "Tutorial", + "size": 56, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-03-0506", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S12-0403", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 6, + 8, + 10 + ], + "venue": "S16-0430", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 5, + 6, + 8, + 10 + ], + "venue": "S16-0436", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 5, + 6, + 8, + 10 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 5, + 6, + 8, + 10 + ], + "venue": "S16-0436", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 6, + 8, + 10 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The essence of nanoscience and nanotechnology is the ability to understand and manipulate matter at atomic and molecular levels, to create artificial structures with fundamentally new atomic and molecular organizations. In this course, students will learn that crystal, electronic, optical, and magnetic structures behave differently and exhibit novel physical, chemical and biological properties when their dimensions are reduced to the range of 1\u2013100 nanometers. The nanoworld is an exciting new realm that brings together multidisciplines. Its impact on society is expected to be as significant as the combined antibiotics, integrated circuits and polymers in the twentieth century.", + "title": "The Emerging Nanoworld", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2015", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0205", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It often seems that Science and Art are unrelated: logical truth versus emotional imagination. Still, Science and Art have much in common. Science has caused paradigm shifts in artistic expression and Art is used for communication of knowledge. Students will be introduced to the use of materials related to artistic expression, color and perspective to create a 3-dimensional illusion and technology for dating and attribution of objects of art. Scientific principles of various forms of Art will be explored. The module also aims at the development of some artistic skills for illustration of scientific concepts and designs.", + "title": "The Art of Science, the Science of Art", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSI2016", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "L1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "L1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundation module introduces interdisciplinary work in contemporary social science and encourages thinking about social complexity. We will examine how social scientists construct causal theories, collect and interpret evidence, and use findings to inform knowledge and practice. We will consider pertinent issues affecting contemporary societies, especially those current in Singapore society. Through comparisons of Singapore with other cases in Asia and beyond, students will gain the ability to analyse critically the context-dependent nature of human behaviour and social change. The module will help students grapple with difficult social questions of our times and see possibilities for the future of society.", + "title": "Understanding Social Complexity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HSS1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E23", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E29", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 1240, + "covidZone": "Unknown" + }, + { + "classNo": "E09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E28", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0210", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D22", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D05", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D26", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0210", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D06", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E21", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E31", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0210", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D07", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E24", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E05", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E26", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0210", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 1240, + "covidZone": "Unknown" + }, + { + "classNo": "E21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D30", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E31", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D24", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E24", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D22", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E23", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D25", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D23", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D28", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D17", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E22", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E29", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D29", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E30", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D31", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E25", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the field of history, with a focus on East, Southeast, and South Asia. Among the topics to be discussed are interaction with the West, various forms of nationalism, and the impact of globalization. Students are encouraged to think comparatively and to formulate their own opinions and positions on historical issues based on what they have learned in the module. The module is intended for students from any faculty who are interested in learning more about the history of the region.", + "title": "Asia and the Modern World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0203", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Thursday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Asia In The Modern World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2062", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad survey of Chinese imperial history from the classical period to the eighteenth century. Apart from placing this general history within a chronological framework, it will be analysing major political events and long-term trends in the development of Chinese statecraft, economic and social institutions, philosophy and religion, literature and art, as well as relations with the outside world. The course is mounted for undergraduates throughout the university with an interest in China, especially its history, politics and culture.", + "title": "China's Imperial Past: History & Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with major changes within China from around 1800 to 1949. Emphasis will be given to the internal political and socio-economic dynamics, foreign impact and new ideological currents during the late Qing dynasty as well as in the subsequent Chinese Republic. The broad theme of a long, continuous struggle for wealth, power and democracy will be used to comprehend this period of Chinese history. The course is mounted for students throughout the university with an interest in China, especially its history, politics, and economy.", + "title": "Struggle for Modern China, 1800-1949", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Friday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores major developments in the premodern Japanese polity, economy, culture and society, from the early ages to the end of the eighteenth century. Its main themes include studies in Japanese origins and mythology, court culture and popular culture, samurai and shogunal rule, economic and social trends, intellectual and religious developments, and Japan's interaction with the outside world, notably, China, Korea, Southeast Asia and the West. The relevance of Japan's premodern heritage to present?day Japan will also be emphasized.", + "title": "Pre-Modern Japan: History and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with cultural, economic, political, intellectual and religious movements in continental Europe from an urban perspective. The objective is to enable students to appreciate essential patterns and ideas which have shaped the European cultural and historical inheritance that remain relevant today. This course is open to all students who take an interest in history, culture and questions pertaining to societal development.", + "title": "State & Society in Early-Modern Europe", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "After 1815, the Industrial Revolution and mass politics changed warfare. The new pattern of Modern War that emerged led to a further and more dramatic change: war between great industrial powers for unlimited ends, using unlimited means. Why did this happen and how did it affect the course of history? This course will pursue this question, analyzing changes in the nature and pattern of warfare to identify and explore the characteristics of Total War. It will concentrate on the Second World War. This course is designed for students throughout NUS with an interest in history.", + "title": "Total War, 1815-1945", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2216", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "No general war has been fought since 1945, but there has not been one year free of war since then either. That is the theme of this course: why has post 1945 warfare been limited yet chronic? By studying selected wars in their international, political and social context, this course will address that question. This course is designed for students throughout NUS with an interest in history.", + "title": "Warfare after 1945", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the impact of Japanese rule in the Korean peninsula, of independence in 1945 followed by the 'Korean War' and partition, and of the economic, political and social transformations in South Korea from the 1960's to 1990's. The approach adopted is a thematic one, and certain topics will be selected for analysis.", + "title": "Korea in the Twentieth Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2220", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 76, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores Europe and Asia's mutual fascination with, and appropriation of, each other's visual and material cultures. From the Buddhist art of Central Asia to KL Petronas Towers through medieval textiles, chinoiseries, Orientalist paintings, colonial architecture, museums, modernist avant-gardes and postmodernism, the module surveys chronologically some fifteen centuries of East/West artistic interactions while introducing students to the disciplines (art and cultural history, post-colonial and cultural studies) concerned with visual culture. The module is open to students from all faculties and does not require background knowledge of art history.", + "title": "East-West Artistic Interactions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module - which is offered to all students with an interest in Modern European History - will explore the significant features and impact of nationalism, imperialism and adventurism as they relate to Europe in the dramatic seventy-year period from the upheavals of the 1848 revolutions to the end of the First World War. During this period Europe became the center of a new and deadly game of power politics in which any semblance of defeat was reason enough to prepare the ground for revenge. Eventually, war took its toll on every major participant from 1914-18.", + "title": "Upheaval in Europe: 1848-1918", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys the history of modern Japan from the late\u2010Tokugawa period to the present. Its primary goal is to promote basic understanding of major events, while also aiming to analyze the modern history of Japan in transnational and comparative contexts through exploring a number of\ncommon themes of modern global history: nation building, colonialism, total war, and various transformations and social conflicts in the postwar period. Through such examination, the module aims at promoting critical thinking concerning diverse historical interpretations and controversies. Accordingly, students will be exposed to a broad range of historical debates and viewpoints throughout the module.", + "title": "Modern Japan: Conflict in History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will be a broad survey of political, diplomatic, economic, social and cultural forces that have globalised Singapore since independence in 1965. The exploration of such themes in the assigned readings by journalists, and scholars in history, sociology and international studies will expose students to a wide range of approaches and discourses. This introduction to Singapore will provide students opportunities to investigate and understand some of the common challenges faced by all newly independent nations of Southeast Asia in devising and implementing policies to cope with international and regional developments.", + "title": "International History of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce students to major themes in Environmental History, meaning the historical study of the mutual influence of humans and the environment. After critically evaluating how the discipline of Environmental History has developed, lectures and discussions will focus on topics such as disease, agriculture, gender and modern environmental problems. Lectures will be combined with research assignments that will help students better understand how a historian approaches a topic. Students interested in history, the environment or new approaches to the past will be interested in the course", + "title": "Environmental History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2235", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E-Hybrid_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E-Hybrid_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E-Hybrid_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E-Hybrid_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the part of the U.S. media in shaping American society and culture beginning with the New York Journal's advocacy of the Spanish-American War of 1898 through to the role played by CNN in the 1990s. The module will review the growth of mass circulated newspapers, magazines, radio and television and examine how new media forms, such as the Internet, shape and are shaped by society. Students will learn to critically evaluate media forms and media content in a historical context. This module is well suited for students interested in the USA or media.", + "title": "US Media in the 20th Century & Beyond", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to provide students with a basic grounding of American historical and cultural developments from European colonisation to the end of the twentieth century. It will examine both the internal developments in the United States as well as its growing importance in international politics. By offering a range of social, economic, and political perspectives on the American experience, it will equip students with the knowledge for understanding and analysing the dominance of the United States in contemporary world history and culture. This course is designed for students throughout NUS with an interest in American history.", + "title": "The U.S.: From Settlement to Superpower", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2237", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0106", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Singapore is a sovereign nation\u2010state with formidable armed forces but its military situation is still very much governed by its place in the Malay world and its fluctuating strategic value to great powers. This module showcases the value of a 700\u2010year approach to the island\u2019s military history and examines the relative impact of its distant and recent past on its present situation. This module has no pre\u2010requisites and is suitable for any student with an interest in Singapore\u2019s history or military history in general.", + "title": "Singapore's Military History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will gain a basic understanding of empires in history. Individual empires will be studied to demonstrate patterns regarding the origins, development and collapse of empires. Topics will include the expansion of empires, colonization, military conquest, administration, and ideologies of empire. The humane side of imperialism will also be explored the module will get students to try to understand the experience of subject peoples while also regarding empires as sites of cultural interaction. Finally, students will be introduced to some of the interpretative paradigms which have shaped the scholarly exploration of empires.", + "title": "Empires, Colonies and Imperialism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will explore the connections between sport and history. It will investigate the ways in which history (especially socio-economic and political trends) has produced sport. Emphasis will also be placed upon the ways in which sport has shaped history. This module provides an opportunity to compare societies and cultures as they are reflected in sport and competition. Topics can include pre-industrial forms of sport (in Meso-America, Classical Greece and Medieval Europe, Southeast Asia, and Japan), the impact of industrialization, the emergence of modern team sports, the Olympic movement, Colonialism and Sport, Olympic politics, sport and the American civil rights movement, and sports and globalization.", + "title": "Sport and History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the common ground between the discipline of history and art history by considering images as historical evidence It concerns itself with both Western and Asian art in the time period from the 5th c. BC to the 20th c. \n\n\n\nThe learning objectives are twofold: acquire the conceptual tools to understand the meaning of images and read visual narratives as historical texts.", + "title": "Art and History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces Southeast Asia\u2019s past from earliest times to the present (1st century to 21st century). It highlights how processes of interaction, circulation, and connection shaped the key characteristics and worldviews that are associated with the region today. Module content will focus on how local communities adopted and adapted influences from around the world to form a distinctive regional culture. How polities emerged via the region\u2019s historical interaction with Indian, Chinese, Islamic, Iberian, European, Japanese, and New World civilizations will be given special attention. Today\u2019s nation-states and regional organizations are a product of this long history of community formation.", + "title": "Introduction to Southeast Asian History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2250", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Thursday", + "lessonType": "Lecture", + "size": 86, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the role of technology in human history from Ancient times until today. Does technology drive history, or is it the other way around? Examining a variety of important technologies - ships, windmills, telephones, and of course wheels and the internet - the course will follow a different path through time than that commonly taken. We?ll not forget politics or society, however, because 'technology' turns out to be as much about people as hardware. Wars, geopolitics, and the discovery of new pleasures and anxieties are all interwoven with the history of tools and techniques. The module is open to students from any faculty.", + "title": "From the Wheel to the Web", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces key themes relating to global business history. It considers how business and enterprise have contributed to the making of the modern world. It looks at key economic actors, agents and institutions of historical change, their forms of organization, their strategies and culture, their relations with state and society and at how economic practices have been shaped by culture. Some of the themes covered will be: the business firm; the nineteenth century revolution in production, distribution, transport and communication; the rise of retailing; integration of mass production and distribution; managerial capitalism; multinationals; state -business relationships; and, culture and capitalism.", + "title": "Introduction to Business History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will look at the evolution of Christianity and its impact on Western and global history. It will trace the development of the various branches of Christianity (Catholic, Orthodox, Protestant) and how the conflicts among them shaped European history. It will consider the role of religion in American history. It will look at the linkages between missionary efforts and imperialism, as well as the consequences of conversion in colonial societies around the world. It will also look at how Christianity has been linked to ethnicity and nationalism in the post-colonial nation-states.", + "title": "Christianity in World History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to provide a historical introduction to Islam\u2019s core beliefs, practices, and institutions as they have developed in diverse cultural and political contexts. The course will consider a range of topics all approached historically, among them: Islam\u2019s foundational texts, religious expressions, institutions and cultural forms, as well as the challenges posed by changing economic and social conditions for Muslim societies in the modern period. The objective is to provide an informed appreciation of the historical development, cultural diversity, and contemporary issues facing Muslim communities across the world.", + "title": "Islam in World History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2255", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law, Crime, and Punishment are all social concepts subject to historical change. In the case of law, historical precedents are important in determining how best to apply the rule of law. By presenting a set of themes in the history of law, crime, and punishment across time and cultures, this module allows students to examine processes of change in how these concepts are understood, applied and structured. History as a practice is an investigative process and both historians\nand criminal investigators seek to determine what happened, and why and how it happened. The course is organised thematically dealing with concepts of crime\nand law, particular crimes and laws, ways of understanding crime and law, and popular understanding of crime and law. On the whole the module has a western focus but there are global comparisons.", + "title": "Law, Crime, and Punishment in History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to contemporary India through a study of society and culture. Taking a thematic approach, it will examine caste and class,\nreligion and identity, language and region and popular forms of culture. It will assess the social and cultural change that India has undergone since 1947 and the remarkable continuity of its social institutions. Factors and processes that have held India together despite its diversity and cultural heterogeneity will be highlighted. This course is open to all students, interested in understanding the nature of socio\u2010cultural change in one of the world\u2019s oldest civilizations and largest\ndemocracies.", + "title": "Passage to India: Modern Indian Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2258", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Thursday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers a systematic introduction to the fields and methods of historical research. It combines weekly lectures on the basic types of historical scholarship with tutorials containing a seminar\u2010style lab component that train students in the core skills of research, reading and writing. Tutorial and lab sessions will consist of a series of specially designed hands\u2010on assignments, intensive discussion and close supervision. By the end of the module, students will be able to effectively read historical scholarship and sources, and to conceptualize, research, and complete a simple history project on their own.", + "title": "The Craft of History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2259", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the ways popular culture shapes understandings of history on two different levels. First, it examines how the popular culture of a specific era can reveal much of the social milieu of the time and help contextualise events of that period. Second, it will examine how popular culture, such as a film, created at a later time can influence perceptions about an earlier era. This module will examine instances and eras of popular culture to discuss the challenges of deriving historical knowledge from popular culture. Each iteration of the module may vary in its focus.", + "title": "History and Popular Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2260", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a brief introduction to the modern Middle East from 1699 to the present. It covers events and trends that shaped and ended the Ottoman Empire, the rise of European imperialism, processes of social change and state-building, creation of \u201cnew orders,\u201d (constitutional republics, Islamic regimes or authoritarian states), the Cold War, and relations between state and society during times of local, regional, and global change. To that end, we will read a wide array of writings, including standard textbooks, academic articles, official documents, memoires, and novels.", + "title": "Modern Middle East History: From 1699 to the Present", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Roman empire was one of the longest-lasting in global history. Its enduring impact can be seen, heard and felt today, from language and architecture to film and video. This module will examine Rome\u2019s rise and fall, and ask how it successfully ruled over so many peoples for so long, in comparison with other world empires. We will consider who made up empire emperors, \u2018barbarians\u2019, slaves and ordinary people. We will also uncover the background to early Christianity, Roman legacies inherited through European colonialism, and the numerous references to Rome in both high and popular culture today.", + "title": "The Ancient World The Roman Empire", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2262", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ancient Greece, from Homer to Alexander the Great, has left an enduring legacy. Its myths, art, philosophy and ideas remain with us today. This module traces the historical, scientific and cultural roots of the modern West. Discover the origins of democracy at Athens; Sparta and the Persian wars; and slaves, \u2018barbarians\u2019 and the Other in Western thought. We will explore Greek elements in popular culture today, such as heroes, gods and goddesses. We will also learn how to read and analyse ancient art and literature, and how to construct persuasive historical arguments.", + "title": "The Ancient World: Ancient Greece", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an overview of the major events, actors, and developments that have shaped the course and character of Europe since the French Revolution. From the rise of nationalism, industrialization, and imperialism that paved the way for World War I, this module sketches out the making and remaking of Europe during the nineteenth and early twentieth centuries. This module is designed for all students interested in acquiring an understanding of modern Europe.", + "title": "The Making of Modern Europe", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Buddhism is one of the major religions of the world. This module explores the birth and evolution of Buddhism and its impact on Asian and world history. It will consider sources drawn from various Buddhist traditions (Theravada, Mahayana, Vajrayana), from ancient times to the present day. Through an examination of the spread and development of Buddhism in Asia and the West, the module will address a range of topics, such as the relationship between Buddhist institutions and the state; local traditions and popular practices; travel and trading networks; imperialism and nationalism; and globalization and modernism.", + "title": "Buddhism in World History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2265", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Across time and space people have been fascinated with legends of heroes, particularly those that enshrine the essential values of human culture of a given society. This module, adopting a comparative approach, introduces salient features of Chinese culture\u2014norms like filial piety, loyalty, patriotism, and great unity\u2014through a dozen selected hero and hero-making stories across time within China. In examining these stories, this module also analyzes key themes of identity, sexuality, and ethnicity that have configured distinctive characteristics of Chinese heroes.", + "title": "Heroes of China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2266", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Is love universal? How have concepts and expressions of love changed over time? What does a history of love tell us about politics, social norms, cultural artefacts, religious practices and gender relations in any society? Using historiographical tools from the history of the emotions, we will examine different kinds of love in diverse regions across the centuries: family, platonic, courtly, divine, romantic and erotic love; lovesickness, unrequited and forbidden love. Drawing from ars erotica, courtly romances, talismans, spells, romantic poetry and love letters, this module is intended to encourage students to think widely about cultural specificities and universal emotions.", + "title": "Love: Histories of an Emotion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY2267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The upheavals that took place in Indonesia during the 1940s, the 1960s and the 1990s have deep historical roots, and are linked to social and religious divisions within the country. The course examines the historical background to changes that have taken place in Indonesia over the past 50 years, considering topics such as Islam and politics, the role of the army, and separatist activity in the Outer Islands. This course is designed for students throughout NUS with an interest in history.", + "title": "Indonesia: History, Economy and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Situated between India and China, Southeast Asia in historical times became an important economic and geostrategic nexus in the context of the international trade that stretched from Europe to China and the big power rivalry that accompanied it. As its significance grew, internal conditions within Southeast Asia adjusted to accommodate increased external contacts while the rival powers, including those from the periphery and from without the region, increasingly saw Southeast Asia as an element in the global power game. This module will examine the structure of Southeast Asia?s history within this global context, relating the nature and sequence of its history to developments in the wider international milieu.", + "title": "International History of SE Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "That the Second World War impacted Southeast Asia is beyond doubt. But the significance of its impact on the structure of the region's 'contemporary' history is more debatable, for revisionist historians are wont to discount the thesis that the War represented a significant turning point or watershed which 'transformed' the region's history. Drawing on both country and regional perspectives, this module first assesses the impact of the War on the theme of decolonization, perhaps the one major historically significant process to dominate the region's political terrain in the immediate post-war aftermath. It will further examine the challenges and trials confronting the new states \"after\" decolonization, in particular, their search not only for new political frameworks to replace the colonial structures they had discarded, but also for solutions to mitigate the issues of social integration, inter-state conflict and regional co-operation.", + "title": "Southeast Asia: Decolonization & After", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the economic and social change in China from the Late Ming to the end of the Qing. It examines aspects such as state and society, population growth, agricultural development, commercialization, foreign impact and the dynamics of social change. It also seeks to explain China's retarded modern development. The course is mounted for students throughout the university with an interest in China.", + "title": "Society & Economy in Late Imperial China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines the development of international relations in East Asia from the Opium War to the Korean War. It now only discusses major international events, such as conflicts, treaties, and alliances, but also examines the interplay between domestic and foreign affairs, the spread of political ideologies, and the rise of nationalism and racial/eithnic identities.", + "title": "East Asian International Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will trace the historical development of the major Western and Central European Powers from the late 1930s up to the fall of the Berlin Wall in November 1989 and the reunification of Germany in October 1990. Apart from the international challenges posed by the Second World War and the subsequent Cold War, the European states were also beset by numerous acute domestic crises that required remedial treatment by their governments. Some received it and prospered, others did not and languished.", + "title": "Cold War in Europe, 1945-1991", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From Sun Tzu through theorists of nuclear warfare, military strategists have tried to define the theory and principles of war. For good or bad, that work has affected the conduct of war. Using the writings of selected strategic thinkers, this course studies the evolution of strategic thought and its impact on the practice of war.", + "title": "History of Strategic Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the colonial period in Vietnam, Cambodia, and Laos. In addition to the political, social, and economic effects of colonial rule in each of these countries, attention will be given to the evolution of 'Indochina' as an entity created by the French and to its impact on relations among the Vietnamese, Cambodian, and Lao peoples. These issues will be examined in the context of precolonial history and as a backdrop to the destructive warfare, that followed independence.", + "title": "The Making of Colonial Indochina", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0211", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce Asian, European, and American material from the late nineteenth century to nearly the present day, concentrating on social and cultural themes such as industrialization, colonialism, science and race, technology and war, computers and global telecommunications and biotechnology and the human genome project. It will be taught as a series of cases illustrating important events and multiple themes. The proposition that modern science and technology have been 'socially constructed', reflecting political and cultural values as well as the state of nature, will be examined rather closely. Some theoretical material will leaven our otherwise empirical focus.", + "title": "Technology and Culture in the Asia-Pacific", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is to be conducted in lecture-cum-seminar format. It examines the development of China's maritime sector with emphasis on the period from the sixteenth century onwards. Maritime China will be viewed from a broader interregional and global perspective. Some major themes include China's maritime sector, long contacts and interactions with the maritime world, the late imperial political economy, Chinese emigration in modern times and overseas communities. The course is mounted for undergraduates throughout the university with an interest in China, especially its maritime connections.", + "title": "China and the Maritime World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the creation of colonial states in Southeast Asia, certain peoples in the region became minorities owing to their languages, religious beliefs or customary practices. Examples include the Shan and Karen in Myanmar, Muslim minorities in Myanmar, Thailand and the Philippines, the people of the Mountain Province in the Philippines, Christian communities in Indonesia, the hill peoples of Thailand, Malaysia and Indonesia, and animist groups in Borneo and the Eastern archipelago. Colonial administrations often made special provisions for these minorities, but with independence the dominant ideology across the region called for a single national identity within each nation-state. This course examines the position of minorities under colonial and post-colonial governments. It surveys the minorities of the region, and develops case studies dealing with selected groups. This course is designed for students throughout NUS with an interest in history.", + "title": "Minorities in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module invites the student to reflect critically on the ways the past is established, experienced and represented in the present. The objective is to foster an appreciation of history as a dynamic undertaking in which not only academics but societies as a whole participate. The module is comprised of a theoretical core and changing case studies that touch on media representations, museology and conservation, historiography and the philosophy of history. CA projects afford students the opportunity to experience first-hand how history, far from being confined to libraries and archives, is part of daily life. While the module targets primarily History majors, its cultivation of critical skills in the analysis of written and visual texts is relevant to students from all faculties.", + "title": "Memory, Heritage & History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3226", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Europe was plagued by wars, revolution and totalitarian dictatorship between 1919 and 1945. It witnessed the rise of Bolshevism and of various Fascist regimes, revealed the economic and political weakness of the Western democracies and the failure of the League of Nations. This module will focus on the rise of four dictators of this period Mussolini, Franco, and Hitler. All students are welcome, but those coming with a background in Political Science and even Sociology may find this course builds on existing knowledge and concepts.", + "title": "Europe of the Dictators", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the growth and expansion of Vietnam over the centuries to look at how this history has affected its culture and development. Particular attention is given to how the Vietnamese tell the story of their own past and how they perceive their history as a nation. The module is intended for students with a particular interest in Vietnam and for others who would like to do an in-depth study of a single country; it raises issues about nationhood and historical narrative which are applicable to many other cases.", + "title": "The Evolution of Vietnam as a Nation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the place of business and technology in American culture. Beginning with the transformation of the American economy during the Civil War (1861-1865) students will examine changes in manufacturing systems, the development of corporations and big businesses, the growth of the national and international markets, the invention and marketing of new products, brand names, and advertising. The module asks students to evaluate the place of business in shaping American values and culture and whether companies such as Coca-Cola and Microsoft are typical or untypical of U.S. values. For students interested in the USA, business, and society.", + "title": "American Business: Industrial Revolution-Web", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the histories of the Malays who have populated the Straits of Melaka and the South China Sea. Discussions and lectures do not focus on chronology or a simple narration of \"facts,\" but upon a critical examination of questions such as \"who is Malay?\" and \"what is the Malay World?\", allowing for a better understanding of the key social, cultural, political, and economic practices and institutions that have shaped the Malay experience. The module will be of interest to any student who wants to know more about Malays and the societies in and around Singapore.", + "title": "History of the Malay World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3231", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the political evolution of the Indian nation in two of its most formative periods the late nationalist struggle from 1920-47 that led to the withdrawal of the colonial power; and the years of Jawaharlal Nehru's prime ministership, 1947-64. The module looks at both decolonisation and nation-building as processes characterised by debate and contestation in relation to (a) social, regional and group identity and (b) political rights and power. The module will study the impact of that debate and contestation on the character, institutions and political life of the nation.", + "title": "The Struggle for India, 1920-1964", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a thorough survey of the history of Thailand. Material covered in the course is divided between developments in earlier centuries and those of the modern period, with a balance between political and cultural history. Particular attention is given to the different ways in which Thai history can be narrated. The module is intended for students with a particular interest in Thailand and for others who would like to do an in-depth study of a single country.", + "title": "Issues in Thai History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the political evolution of the US. The pre-eminence of the US in world affairs suggests that knowledge of the evolution of American society and its culture is crucial to understanding American motivations and actions. In tracing how Americans have, from 1776, resolved issues and debates regarding the role of the federal government, racial and economic justice, gender roles, and political participation, budget and resource allocation and environmental concerns, students will gain insight into the historical processes which have shaped the US. By the end of the semester, students would have the necessary perspectives and contexts to assess and interpret American cultural, social and economic developments, as well as the continuing dialogue that Americans have about the nature of their society and democracy. This course is designed for students throughout NUS with an interest in American history.", + "title": "The Political History of the US", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the role of the US in the Asia-Pacific region from the nineteenth to the twenty?first century. The evolution of political, military and economic ties between the America and three sub?regions of Asia will be explored. The nature of US involvement in the conflicts of the East Asian nations of Japan, China and Korea will form the first part of the module. The involvement of America in the decolonization and nation?building of the Southeast Asian nations will also be examined. Finally, the American influence in the sectarian and power differences in the South Asian nations of India and Pakistan will be addressed. This course is designed", + "title": "The United States in the Asia-Pacific", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In 1901 only 14% of American homes had a bath and 8% a telephone. The country however was undergoing a process of economic, social, and cultural modernity that laid the basis for it emerging as the pre-eminent power in the world by 1945. This module examines the transformation of America from 1880. Students will study the processes of modernity in America both as economic modernisation and cultural modernism. The module asks students to evaluate the relationship between various aspects of American modernity. The module is for students interested in the culture and society of the USA.", + "title": "Making America Modern", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module relates the study of modern European imperialism to some topics outside of Europe. It examines a dimension of modern imperialism. Themes will include the economic basis of imperialism, the interaction of cultures (within imperial networks), the migrations of peoples, missionary movements, the management of religion and motives and means of imperial control. Normally one geographical area of imperial experience will be explored in depth.", + "title": "Modern Imperialism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the history of relations between China and Southeast Asia, with an emphasis on the modern period. We will explore in weekly seminars the various dimensions and dynamics of China-Southeast Asian relations, including the evolution of regional state structures, tributary relations, maritime trade, migration, the impact of Western colonialism, nationalism and communism, the Cold War, and the rise of China in recent times. Though a basic knowledge of Chinese and Southeast Asian history will be helpful, the module is open to all undergraduate students who are interested in the topic.", + "title": "China and Southeast Asia: Past & Present", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Gender is a primary way of signifying relationships of power. This module adopts a historical perspective on the ways in which gender has provided for articulating and naturalising differences.\n\n\n\nAfter an introduction to the development of gender as an analytical concept in history, the module proceeds to provide a grounded exploration of the imbrication of gender and modernity. With colonialism as the starting point, the issues of gendered discourses and practices as well as the materiality of the body and of the global structures in which they are enmeshed will be studied.", + "title": "Engendering History/Historicising Gender", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3245", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the history of Muslim states and cultures across Southeast Asia. The goal of this course is to provide students with contextualized understandings of more recent developments, as well as to facilitate comparative reflections on the trajectories of other cultural and political traditions in the region. Major topics to be covered include the spread of Islam, the development of vernacular Muslim cultures, the rise of regional sultanates,the impact of colonialism, and issues related to the expression and manipulation of religion in the modern nation-states of Southeast Asia.", + "title": "History of Muslim Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the history of Myanmar (Burma).\n\nOrganized chronologically from the emergence of the\n\nearliest polities to the present, students will examine the\n\nformation and interaction of communities, ideological\n\nworldviews, ethnic identities, and material cultures that\n\nhave characterized the societies that evolved along the\n\nIrrawaddy River basin and beyond. Module content will\n\nconsider the particulars of Myanmars history (early stateformation\n\nand the historical development of Burmese\n\nidentity) within regional/global processes and themes.\n\nFundamentally, this module addresses why contemporary\n\nMyanmar is perceived to be so different from its regional\n\nneighbours despite sharing many historical and cultural\n\nexperiences.", + "title": "From Monarchy to Military: History of Myanmar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The People\u2019s Republic of China was established in 1949 by the Chinese Communist Party, first led by Mao Zedong and later by Deng Xiaoping and his successors. The development path from its founding to the Tiananmen incident of 1989 was turbulent and far from linear. Indeed, the new China has been premised upon revolutionary remaking and a total break from the past. Nonetheless, there are still historical continuities when compared with the previous imperial and republican eras. This module aims to provide a deeper understanding of contemporary China by looking at its politics, society, economy and culture in broad historical perspective and within a thematic framework. It also explores China\u2019s distancing and connecting with the rest of the world.", + "title": "People's Republic of China, 1949-1989", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at students who wish to deepen their understanding of Singapore history through an examination of different representations of history: (a) academic scholarship, (b) social memory and oral history, (c) heritage. Each section will incorporate fundamental concepts and debates behind the production of history, together with the application of these ideas to specific Singapore case studies. At the end of the course, students will be able to critically analyse Singapore history as a whole in terms of historiography and heritage studies, whilst gaining familiarity with the treatment of key issues in Singapore\u2019s past.", + "title": "Approaches to Singapore History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the historical roots of India\u2019s economic backwardness, stagnation and development as well as its recent emergence as a global economic player. Divided into three segments, it examines the Indian economy: a) during colonial rule, b) under the \u2018developmental state\u2019, and finally c) in the post\nliberalization period. The topics covered include: India\u2019s role in 19th century world economy, growth of urban centers, rise of industrial capitalism, emergence of\nworking class, nature of post\u2010independence development planning and the rising \u2018consuming classes\u2019. The complex relations between politics and\neconomy and linkages between socio\u2010cultural factors and economic developments are discussed.", + "title": "India\u2019s Pursuit of Prosperity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines \u201ctropical\u201d medicine in the three related contexts of colonialism, high imperialism, and nation\u2010building. The module will survey medicine, disease, and epidemics in British, American and Japanese practice, spanning the 18th to 20th centuries, and culminating with present\u2010day Asia and the place of biomedicine in contemporary nation\u2010states, including Singapore. The module covers the transformation of a scientific field from a colonial body of knowledge to a form of practice embraced and utilized by post\u2010colonial societies.", + "title": "From Tropical Medicine to Bioscience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When did multi\u2010ethnic China become a nation? Why did island Japan become an empire? From 1800 to the present day, the two main East Asian powers have shifted back and forth between the ideas and institutions of empires and nation\u2010states. These changes shaped policies towards ethnic, linguistic and religious minorities, and diplomatic relations with neighbouring states. This module also integrates current debates on statecraft and imperialism to show the ideas behind important historical turning points remain relevant today. Background in Asian history or International\nRelations is strongly recommended.", + "title": "Nation and Empire in East Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "No one can say that the Cold War has ended yet in East Asia. But rather a number of the contemporary intra\u2010regional tensions in East Asia stem from the Cold War era; from the tensions over the Taiwan Straits, to the temporary cease\u2010fire status between North and South Korea, to the constitutional controversy in Japan. With a special emphasis on the international dimension, this module explores how the Cold War confrontation (1945\u2010present) has unfolded in the historical context of East Asia over the past decades.", + "title": "Cold War in East Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Brides of the Sea', 'Gateways to Asia' and 'the transformers of Asia' are some of the ways scholars have described Asian port cities. Through case studies, this module explores the port city and the 'maritime world' in Asia. Students are introduced to the history of China's maritime world with a focus on the challenges it faced through encroachment by Western imperial powers. This module also examines Asia's colonial port cities, including Calcutta and Singapore, as sites of Western influence and modernization and also as sites of local resistance and transformation. This module is suitable for all students of NUS.", + "title": "Brides of the Sea: Asia's Port Cities", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the Philippines\u2019 almost 500 years of social and cultural history\u2014from its early association with India, China and Southeast Asia, to its incorporation into the Spanish and American empires, to its tumultuous road towards independence and democratization. Students will consider Filipino religiosity and worldview, and analyze their ramifications in society. Popular images of the Philippines \u2013 homeland of international labor and site of natural hazards and spectacle of poverty \u2013 will be investigated. Students will take Philippine history as an exemplar towards a better understanding of the postcolonial condition that numerous nations experience.", + "title": "The Philippines: A Social and Cultural History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3257", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is about the history of the Cold War in the global south in the second half of the twentieth century. While the Soviet-U.S. rivalry and the European Cold War did not escalate into large-scale conflict, developments elsewhere were marked by significant violence and destruction. This course seeks to reconcile, if that is possible, the perception of the history of the Cold War as a \u201clong peace\u201d with the turbulent lived experiences of peoples in the global south. Which, and whose, Cold War best defines the history of the twentieth century?", + "title": "Cold War in the Global South", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Having achieved modernization and economic development in a remarkably short span of time, Korea demonstrates many unique features within sociocultural processes and issues that are common to newly industrialized countries (NICs). This module deals with issues in the cultural and social history of Korea in the second half of the 20th century. Topics covered may\ninclude the development of popular and consumer culture, national identity, family and gender, education and employment, and religious and political life of\nKoreans in the period since 1945.", + "title": "Issues in Korean Cultural History since 1945", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3259", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys the major patterns and themes of Chinese migrations since 1400. From merchants under the tributary trade system, to indentured and free labour in the industrialising age, as well as the making of new citizens in multi-culturalist nation-states, students will examine the social experience of long-distance migration through regional and global processes of political-economic change. In addition to academic texts, students will read official documents, family letters, memoirs, and novels to address enduring questions in the history of human migration \u2013 why do people leave their homes, and what remains when they adapt to their lands of adoption?", + "title": "Chinese Migrations in World History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3260", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys the history and philosophy underpinning science, technology and society. In part 1 we will examine the history of the Scientific Revolution and its historiographical significance. With this context in mind, part 2 shifts focus to the impact of science and technology on modern societies, keeping in mind the broader historical circumstances that have shaped these forces. Students will encounter historical and contemporary case studies from regions including Europe, the United States and Asia. Themes and topics will allow for an enhanced understanding of the intersections that science and technology have with race, gender, imperialism and the environment.", + "title": "Historicizing Science, Technology and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3261", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From its origins in India, Buddhism has expanded across the world and taken deep root in diverse societies across Asia over the past two thousand years. This module traces the development of both Therav\u0101da and Mah\u0101y\u0101na Buddhism in Southeast Asia. Major topics to be covered include the spread of Buddhism, the rise of Buddhist kingdoms, the development of popular traditions, the impact of European colonialism, the relationship between Buddhism and nationalism, the emergence of modern reformist movements, and Buddhist minorities in maritime Southeast Asia.", + "title": "Buddhism In Southeast Asian History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3262", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will study political ideologies that served to legitimize colonial control in South Asia as well as the struggles against them. Through a series of case studies that focus on a range of issues, students will gain a better understanding of how imperialist discourses categorized and hierarchized communities on the basis of conceptions of religion, masculinity, supposed propensity to violence and hyper-sexuality. Students will also engage with revolutionary ideologies developed by anti-colonial figures and their differing approaches towards shaping national regeneration. The module will highlight and discuss the legacy of these contestations and debates in contemporary South Asia.", + "title": "Imperialism and Anti-Colonialism in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The five senses may seem like simple biological facts, but they are actually culturally constructed in specific historical contexts. Focusing on a range of cultures, we will examine the role of the senses in perception, intelligence and the functioning of the body, the mind and the soul. How could the use of a particular sense elevate or discredit one\u2019s reputation? How was life ordered according to the senses? Drawing on a range of philosophical, scientific, literary, political and folkloric artefacts, we will consider how a history of the senses can illuminate topics as diverse as statecraft, religion, science, medicine, relationships.", + "title": "The Sensorium: Histories of the Senses", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project. UROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed. UROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3551", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3551R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an inter-disciplinary approach to the study of history. It enables students to engage in the study of history by interacting with the methods and genres of other disciplines in the humanities, notably literature and philosophy.", + "title": "Topics in History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is open to all Honours students and no previous background in either early modern or European history is required. The objective of this document-based, seminar-style course is to sharpen student's thinking skills and sense of conceptual evolution. Key concepts, such as \"sovereignty\" and the \"just war\" that remain pertinent until today will stand at the forefront of our investigations.", + "title": "Early Modern Europe and its World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Every year this course explores a different dimension of modern military history. The general theme is the nature of warfare in the 20th century with particular reference to Asia. This course is designed for students majoring in History.", + "title": "Special Paper in Military History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth, in seminar format, problems in a selected area or aspect of modern imperialism. It will examine in closer focus a particular empire (British, Dutch, French, Portuguese, Spanish, and American) with particular reference to Asia and to Asian interaction with Europe and America. Common themes will include subaltern history, economic development, challenges to imperial control, and explanations and arguments about imperial decline.", + "title": "Imperialism and Empires", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0101", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the continuity and change in Malaysian political, economic and society history by focusing on salient themes. Included in these themes will be the evolution of the traditional Malay states and society, internationalism and nationhood, social change within the various communities, the modernization of the Malaysian economy and the interplay of complex historical forces in colonial and independent Malaysia", + "title": "Issues and Events in Malaysian History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will allow students to explore in detail a major theme in Environmental History, meaning the historical study of the mutual influence of humans and the environment. While the material and specific focus of the module will shift, as each instructor will offer a unique approach, it will introduce students to many of the basic issues in the discipline, and require research in both the field and library on a specific topic, thus enhancing their research and writing skills.", + "title": "Topics in Environmental History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore and introduce different themes in Modern European History such as political changes, political leadership, diplomacy and interstate relations.", + "title": "Special Paper in Modern European History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to appreciate the complexities of China within its general development. It surveys theories and concepts that help analyze Chinese history, familiarizes students with past and current scholarships on China, considers debates about the nature of China's historical developments, and discusses selected issues. The course is mounted for students at the senior levels with an interest in China.", + "title": "Approaches to Chinese History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on early Southeast Asian history. It examines and compares various types of political structures, including the fundamental concept of a \"kingdom\" or empire in a Southeast Asian context to raise questions about how this early history has traditionally been analyzed. Cultural history, especially the role of religion, is an important component. The module is intended for Honours students interested in exploring and rethinking the earlier centuries of the region's history.", + "title": "The Classical Empires of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "During this module we will examine how the past in Southeast Asia has been recorded and presented and how the \"literature\" of these works influences our views of the region's history. In the first section of the course we will focus on how history was presented prior to the modern period in the region. The second section of the course will focus on depictions of Southeast Asian culture changed over time in the \"literature\", and how this may provide new understandings of the region. The course is targeted at students that are interested in Southeast Asian history, culture and literature.", + "title": "Culture and Literature in S.E.A. History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys the various approaches that were developed to study and conceptualise Southeast Asian history. It seeks to equip students with an awareness of the analytical frameworks within which history research on the region had been written up. In the process, the module will evaluate the validity of the different approaches. For illustration, samples from secondary literature and, where applicable, primary texts will be used.", + "title": "Approaches to Study of SE Asian History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module traces the historical development of Japan from the mid 19th century to the present. It focuses on close reading and discussion of important English-language works with particular emphasis on historical and theoretical controversies in the field. Students will be encouraged to think about both the modern history of Japan as well as the historians who have claimed to reconstruct and narrate it. The module is aimed at students interested in the intersection between Japanese history, the practice of historiography, and the application of theoretical models to the past.", + "title": "Approaches to Modern Japanese History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar module examines the development of Asian businesses. Selected themes such as organizations, entrepreneurship and networks will be discussed. It may focus either on one country like Singapore, or regions in Asia in comparative studies.", + "title": "Asian Business History: Case Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The history of the Chinese demonstrates cases of total integration into the host society, of long-term coexistence and competition with it, and of a variety of options in between. It has produced a wondrous array of acculturative, adaptive, and assimilative phenomena. Chinese have been pulled towards different identities at various times, as Chinese sojourners abroad, as Westernized colonial subjects, as loyal citizens of their adopted countries, as revolutionary communists or modern multinational capitalists. This module will investigate the history of Chinese emigration through a comparative approach to its diaspora in diverse locals such as East and Southeast Asia, Europe, the Americas,and Australasia. A case study approach will be adopted in this module. The course is mounted for students at the senior levels with an interest in China and the Chinese overseas.", + "title": "Chinese Overseas: Sojourners & Settlers", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is open to all Honours students and no previous background in either early modern or European history is required. The objective of this document-based, seminar-style course is to sharpen student's thinking skills and sense of conceptual evolution. Key concepts, such as \"sovereignty\" and the \"just war\" that remain pertinent until today will stand at the forefront of our investigations.", + "title": "Early Modern Europe and its World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Beyond international circumstances, domestic politics and personalities, a vital key to understanding the complexities of United States? foreign policy is through its ideological dimensions. This module will enable students to explore these ideological threads through both seminal documents and scholarly discourses. The module will be taught through both lectures and student presentations. Students will read, present and write on important documents such as John Winthrop?s City upon a Hill, George Washington?s Farewell Address, the Monroe Doctrine, Woodrow Wilson?s Fourteen Points, and George Kennan?s containment policy.", + "title": "Ideological Origins of US Foreign Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at students who wish to develop research skills using primary sources for the study of Singaporean history. While the material and specific focus of the module will shift, as each instructor will offer a unique approach, it will introduce students to the use of a variety of sources, ranging from newspapers and memoirs to governmental reports and archival material. At the end of the course, students will be able to use, and criticially analyze, a variety of sources and understand their role in the development\nof Singaporean historiography, while also preparing for their own research projects.", + "title": "Sources of Singaporean History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine how material culture is approached as a source for reconstructing history by considering the theoretical literature on the subject as well as involving students in the first\u2010hand analysis of objects from the past. The module\u2019s learning objective of acquiring the analytical instruments necessary for a critical use of material culture as a historical source will be tested by both literature\u2010based and object\u2010based assignments.", + "title": "Material Culture in History: Theory and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will expose students to the historiographically complex relationship between history and biography, and its ramifications for historical writing. Students will be given opportunities to closely consider a wide range of biographies and biographical material and develop their individual sensibilities as to if, and if so, how biographical material can be used in historical construction.", + "title": "Biography and History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4229", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce Honours students to the emergence of the discipline of history. The history of history will also be used to convey some of the key historiographic and theoretical issues which shape contemporary historical writing. Major topics will include: philosophies of history, professionalization, traditional history, metahistory and postmodernism. Finally, Honours students will explore different methodologies.", + "title": "Historiography and Historical Method", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "People today tend to see the family and the state as two separate spheres with clear boundaries \u2014 private sphere and public sphere. In Chinese tradition, the family and the state are, however, inherently connected. Arranged on a chronological and thematic basis, this module provides students an opportunity to survey the development of family\u2010state relations in Chinese history from the ancient to the modern eras. It examines how different teachings\u2014such as Confucianism and Buddhism\u2014significantly defined family\u2010state relations and how the popular culture \u2014 such as dramas and novels \u2014 represented and reshaped these relations over time.", + "title": "Family-State Relations in Chinese History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4231", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Japanese imperialism left a deep and lasting imprint\nthroughout Asia. This module will examine the\ncharacteristics of the Japanese empire and its postwar\nlegacies, as well as the diverse issues surrounding its\nhistory and memory. The primary focus of the module\nwill be a consideration of the Japanese empire in\ninternational contexts. Students are encouraged to\napply comparative perspectives to draw implications\nfor a larger discussion on modern imperialism.", + "title": "Japanese Colonialism and Imperialism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the meaning of the concept\n\u201cgrand strategy,\u201d and its relationship to statecraft.\nAttention is paid to the ways in which historical\npersonalities thought about power and defined\npriorities, as well as the manner in which these actors\ndeveloped, mobilized, and exploited an array of\nresources and measures to advance specific goals.\nTheir successes and failures will be evaluated, and\nsome principles about grand strategy will be drawn\nfrom the study of historical cases.", + "title": "Grand Strategy in Peace and War", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4234", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to new developments, approaches, and themes in the study of global\nand international history of the 20th and 21st centuries. Depending on the instructor, the module\nfocuses on major issues in international history, such as empire and colonialism, total war and\nrevolution, or decolonization and the Cold War. This course is designed for 4th\n-year students majoring\nin History and aims to expose students to new arenas of research, helping them to prepare for their\nown research.", + "title": "A History of the 20th Century and Beyond", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will allow students to explore the sources,\narguments and scholarship related to a major theme\nin Singaporean History. While the material and specific\nfocus of the module will shift, as each instructor will\noffer a unique approach and topic, it will introduce\nstudents to many of the basic issues in the discipline\nof history as it is practiced in Singapore, and require\nresearch in both the field and library on a specific\nissue, thus enhancing their research and writing skills.", + "title": "Topics in Singaporean History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore how masculinities and femininities are constructed and transformed over time through the intersections of gender, class, religion, law, medicine, work and war.", + "title": "Gender, Culture & History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses the role of gender in Indian societies from the early to the modern periods. It covers a wide range of issues, including the social organization and cultural construction of gender and sexuality; the relationship between family structure, sexual attitudes and the economic and political roles of women; the intersection of gender, race and imperialism and the role religion in normative concepts of femininity and masculinity, plays in the legitimization of social and political order as well as in attempts to effect, and respond to, social change.", + "title": "History of Gender in India", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4239", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Honours students in History are required to produce an original piece of historical research based on primary and secondary sources. Students select and develop research topics with the approval and guidance of the History Department. Students are assigned thesis advisors who provide guidance in conducting research and writing up research materials.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "HY4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine specialised topics in history at an advanced level depending on the specialty of the instructor. The topics offered will generally be more specialised in scope than the Department's already existing modules. Most likely the topic will change from year to year.", + "title": "Topics in History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students have been a potent force for social and political change in many parts of Asia, particularly since 1950. Arranged on a chronological and thematic basis, this module will give students an opportunity to survey the history of student activism, primarily but not exclusively, in Asian countries during this period. In emphasizing a comparative approach, the course not only looks into the causes, functions, effects, and limits of student movements in each society, but also explores intra\u2010Asian, or even global, interconnections of student activism in the second half of the twentieth century.", + "title": "Student Movements in Asia Since 1950", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY4880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This graduate module examines the major themes in American History and historiography in recent years. The study of history has been influenced by new fields such as gender studies and environmental history, other disciplines, particularly anthropology, and cross disciplinary approaches such as American Studies. This module will critically evaluate selected approaches to American history. As an initial step students will undertake a bibliographical project to shape the module syllabus.", + "title": "Approaches to American History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the major approaches to the study of modern European (19th-20th centuries) history in order to equip graduate students at the MA level with the major historiographic trends which have shaped research into the subject. To that end, the module will introduce students to the most significant approaches in political, economic, diplomatic, cultural, gender, social, religious and intellectual history which have shaped the existing scholarship.", + "title": "Approaches to Modern European History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce graduate students to the major themes and issues that make up the chronological field of \"modern Southeast Asian history\". A comprehensive study of secondary literature for the period as well as seminal works in Anthropology and Political Science will prepare students with the necessary training before embarking on their own research projects. Topics covered will include: modernity/traditionalism, constructing chronologies, colonialism, nationalism, rebellion/resistance, nation-building, the Japanese in WWII, the role of the Army/Communists, post-colonial critiques, border tensions, migration, and religion.", + "title": "Approaches to Modern Se Asian History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce graduate students to the major themes and issues that make up the chronological field of \"modern Southeast Asian history\". A comprehensive study of secondary literature for the period as well as seminal works in Anthropology and Political Science will prepare students with the necessary training before embarking on their own research projects. Topics covered will include: modernity/traditionalism, constructing chronologies, colonialism, nationalism, rebellion/resistance, nation-building, the Japanese in WWII, the role of the Army/Communists, post-colonial critiques, border tensions, migration, and religion.", + "title": "Approaches to Modern Se Asian History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY5210R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the political, economic, social, cultural, racial, and military histories of China, Japan and Korea over the course of the twentieth and outset of the twenty first centuries. Special attention will be paid to the interaction among these different national histories, as well as the influence of other regional actors, such as the United States and Soviet Union.", + "title": "Approaches to Modern East Asian History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It aims to provide students with practical professional experience involving at least ten weeks in an archive, museum, historical library, or the heritage business. The hosting institution in collaboration with the Department will define the workscope of students on internship. Students are required to submit a project, the topic of which must be approved in advance, together with a 3000-word report on the internship experience at the end of the work period. \n\nThe student is required to spend three hours three days per week for a total of ten weeks at the hosting institution.", + "title": "Internship in History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Military history is one of the most dynamic fields in the subject, focal point for controversies ranging from what historians should be studying to how they should see history per se. The traditional focus on operations, command and strategy now co-exists with the no longer ?new? military history that is more interested in the impact of warfare on society and culture, militarism and its effect on politics, the relationship between military institutions and economies, and issues of race and nationality in the military experience. This module will introduce graduate students to the methodologies and controversies of a field that crosses all regional and national boundaries in history. An important component will be the bibliographical project, training students to develop their own grasp of the literature that must be mastered.", + "title": "Approaches to Military History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce graduate students to cultural history as a distinct sub-discipline within historical studies. In each session, the module will structured around a theme (eg, 'Culture and imperialism', 'Power, Status and Charisma') to allow the student to both learn about the methodology of cultural historians and how this field fits into the broader study of history.", + "title": "Problems in Cultural History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5303", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce graduate students to cultural history as a distinct sub-discipline within historical studies. In each session, the module will structured around a theme (eg, 'Culture and imperialism', 'Power, Status and Charisma') to allow the student to both learn about the methodology of cultural historians and how this field fits into the broader study of history.", + "title": "Problems in Cultural History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY5303R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Imperialism and Empires are two historical developments that no scholars of modern world, political, international, cultural, social, economic and military history ever ignore. Imperialism remains one of the most hotly debated historical forces in the discipline and has been approached by nearly every different methodology and perspective that academic historians have explored in the last century. This module will introduce graduate students to the approaches to a field that crosses all boundaries in the study of history. An important component will be the bibliography project, training students to develop their own grasp of the literature they must master.", + "title": "Imperialism & Empires: Historical Approaches", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Imperialism and Empires are two historical developments that no scholars of modern world, political, international, cultural, social, economic and military history ever ignore. Imperialism remains one of the most hotly debated historical forces in the discipline and has been approached by nearly every different methodology and perspective that academic historians have explored in the last century. This module will introduce graduate students to the approaches to a field that crosses all boundaries in the study of history. An important component will be the bibliography project, training students to develop their own grasp of the literature they must master.", + "title": "Imperialism & Empires: Historical Approaches", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY5304R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines major themes, methodologies and scholarship in the rapidly developing field of world history. Depending on the instructor, the content of the module might\nfocus on specific topics such as immigration, trans-imperial trade, or frontier studies. As special emphasis is placed on the integrationof particular regions into global systems and networks, this course will be especially useful for helping students to locate the significance of their own research in a larger context.", + "title": "Approaches to World History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5305", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines major themes, methodologies and scholarship in the rapidly developing field of world history. Depending on the instructor, the content of the module might focus on specific topics such as immigration, trans-imperial trade, or frontier studies. As special emphasis is placed on the integrationof particular regions into global systems and networks, this course will be especially useful for helping students to locate the significance of their own research in a larger context.", + "title": "Approaches to World History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY5305R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This graduate module examines the history of history writings on China, turning the pool of extant secondary publications into a primary source of analysis. Certain major authors and their works will be highlighted, with attention paid to inter-disciplinary approaches. Their selection is aimed at achieving a broad coverage of the various streams of traditional Chinese historiography, Chinese Marxist writings and Western historical analyses. The reading and writing of book reviews and literature surveys are integral parts of this module.", + "title": "Historiography On China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5401", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In recent decades, the Cold War has developed into an area of study not only in the fields of diplomatic history and international relations, but in social and cultural history, literature and film, design and art, and rhetoric and communications studies. This seminar introduces students to new developments, themes, and approaches in the study of the Cold War through exploring such diverse topics as colonialism and anti-colonialism, cultural diplomacy, Cold War culture, domestic purges, social protest, decolonization, developmentalism, and \"neo-colonialism.\" It aims to expose students to new arenas of research, helping them to prepare for their own research.", + "title": "Reconsidering the Cold War", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In recent decades, the Cold War has developed into an area of study not only in the fields of diplomatic history and international relations, but in social and cultural history, literature and film, design and art, and rhetoric and communications studies. This seminar introduces students to new developments, themes, and approaches in the study of the Cold War through exploring such diverse topics as colonialism and anti-colonialism, cultural diplomacy, Cold War culture, domestic purges, social protest, decolonization, developmentalism, and \"neo-colonialism.\" It aims to expose students to new arenas of research, helping them to prepare for their own research.", + "title": "Reconsidering the Cold War", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "HY5402R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The notion of Southeast Asia continues to be a site of contestation. In this module, students will be encouraged to imaginatively wade into an ongoing\nconversation as the latest in a long line of interpreters \u2013 mythic, historical and contemporary \u2013 of Southeast Asian pasts. Students will encounter a wide range of texts and discover how differing contexts, worldviews, theories, methods and source materials have been creatively and imaginatively used to both question and enrich understandings of Southeast Asian pasts. Each iteration of this module will focus on a specific region in Southeast Asia, depending on the expertise of the instructor.", + "title": "Interpreters of Southeast Asian Pasts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5403", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theories and practices of applied and public history. It examines the development and evolution of the field; the major theoretical debates; and exemplary examples of how history has been applied to educate, entertain, offer perspective to current problems, and resolve realworld\nissues.", + "title": "Applied and Public History: Theory, Method and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5405", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module critically examines \u201cthe archive.\u201d It explores the various ways in which the archive has been defined. It investigates why and how some knowledges about the past are collected, preserved, and recovered, and why and how some are not collected, preserved, and recovered. The class will also study the extent of the authority that the archive holds and wields over interpretations of the past.", + "title": "Archives and Knowledge of the Past", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5406", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the craft and tools of the oral historian. It explores the key theoretical ideas developed in oral history scholarship; the methods used to collect oral histories; the variety of approaches to interpret oral sources; and the ethics of oral history collection. Students reading this module will be equipped with the tools to develop, undertake, transcribe, and critically analyze an oral history interview.", + "title": "Theory and Practice of Oral History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5407", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the major themes in the study of history and memory. It addresses questions about the importance of investigating memory, its construction, its production, and its impact on personal and group identities, popular understandings of the past, and national identity. Topics explored include the relationship and tension between historical research and memory; individual and collective memories; the politics of memory; and memorial practices. The class\nwill also examine the memory industry and the business of memorialization.", + "title": "History and Memory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5408", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the major themes in the study of history and memory. It addresses questions about the importance of investigating memory, its construction, its production, and its impact on personal and group identities, popular understandings of the past, and national identity. Topics explored include the relationship and tension between historical research and memory; individual and collective memories; the politics of memory; and memorial practices. The class will also examine the memory industry and the business of memorialization.", + "title": "History and Memory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5408R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the key theoretical debates and methodological approaches to the study of museums. It equips students with the capacities to understand\nwhat a museum is and does. It also offers critical perspectives on what a museum can be. The range of topics to be covered include the history and development of museums in diverse cultural and sociopolitical contexts; the purpose and functions of museums; the strategies of collection; and the ordering of collections and knowledge.", + "title": "Museums and Museology: Critical Perspectives", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5409", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is about the use of history for decision making. It examines the ways decision-makers employ historical analogies and narratives about the past to make sense of contemporary affairs or solve problems. It explores how history can be abused or misused. The module also presents ways on how history can be better employed to reason and make decisions.", + "title": "Historical Reasoning: The Past and Decision-Making", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5410", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores topics of special interest in applied and public history. It is offered by regular or visiting faculty members. The specific topics to be covered will\ndepend on the instructional and research interests of the faculty member.", + "title": "Special Topics in Applied and Public History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module acquaints graduate students with the field of Singaporean history. Seminar students will read, critique and discuss the analytical and methodological approaches, historiographical debates, key questions, research agendas, and major trends contained in key articles and books on Singaporean history in order to gain a deeper understanding of how the past, and writing about it, has shaped our\nunderstanding of our history.", + "title": "Studying Singaporean History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5412", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores topics of special interest in Asian and global history. It is offered by regular or visiting faculty members. The specific topics to be covered will depend on the instructional and research interests of the faculty member.", + "title": "Special Topics in Asian and Global History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5413", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students select research topics with the guidance and approval of the Department of History. They are assigned supervisors who will guide them in conducting research and writing a 10,000-word thesis.", + "title": "Master's Thesis (Coursework Program)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "HY5414", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys how societies gain new understandings of the past through performances in the public sphere. A broad spectrum of performances across various cultural contexts will be explored, including theatre and dance, historical re-enactments, public rituals, immersive exhibitions, films, and digital sites such as video games and social media. This module equips students with a toolkit with which to interpret, analyse, and reflect on the dramaturgical strategies and techniques that shape the stories told in these performances, examining how they enhance historical consciousness and negotiate the distance between past and present for the communities involved.", + "title": "Theatres of Memory: Performing Public History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5415", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores topics of special interest in the study of the history of U.S. foreign relations with Asia. It addresses the origins, nature, and outcomes of the American interventions and involvement in the region. It also discusses the multiple approaches scholars employ to investigate and explain the history of U.S.-Asia relations. Candidates will be trained and equipped with the analytical tools to critique the approaches and undertake independent research of the subject.", + "title": "The United States and Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5416", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the ways certain monuments have become sites of contestation. From conflicts over religious monuments, to the statue-toppling protests of recent years, to the attacks on ancient historical structures by groups like the Taliban and Islamic State, built heritage embodies ideas and beliefs about social norms, belonging ideals and divine presence, for some, whilst signalling oppression, absence, exclusion and loss for others. Through a series of case studies, students will learn the complex histories of certain sites and the range of actions that various interest groups have taken to \u2018resolve\u2019 the conflicts.", + "title": "Contested Sites: Built Heritage and Historical Memory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5417", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in History in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, number of contact hours, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will enable graduate students to make use of a wide range of contemporary historical methods. The focus will be on major historians, current debate about historical practice, theoretical history and historical interpretation. Students will be strongly encouraged to explore the challenges inherent in connecting archival study with theoretical methodologies.", + "title": "Historiography: Theory & Archive", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY6101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "These modules with deal with close reading and analysis of secondary works [and primary research on selected topics] in a select area of history. Students should choose an area that is related to their proposed dissertation. Each student who offers this module will be assigned a mentor who will help identify the key works in a particular area and guide in the critical readings of these works. Such directed studies modules will provide students with constant instruction and exposure to the subject.", + "title": "Directed Studies: Selected Areas", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY6204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "SPECIAL TOPICS IN HISTORY AND HISTORIOGRAPHY", + "title": "Special Topics in History and Historiography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY6205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus on different types of identity or community different modes of belonging which have operated, or are likely to operate, in Southeast Asia. Discussion will cover the nation state, diasporic, ethnic, family, religious, gender, security, trading and other communities in the region. We will also give attention to regionalism particularly the sentiment that underpins the ASEAN and East Asian regional project", + "title": "Community Formation in Se Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY6206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys the various approaches that were developed to study and conceptualise Southeast Asian history. It seeks to equip students with an awareness of the analytical frameworks within which history research on the region had been written up. In the process, the module will evaluate the validity of the different approaches. For illustration, samples from secondary literature and, where applicable, primary texts will be used.", + "title": "Southeast Asian Historiography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY6401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide intensive training in research and writing of history. lt will begin with methodological discussions on the writing of history and examples and critiques of different techniques and formats. During this time, each student will be composing a research paper of article length and publishable quality on a topic related to his or her own research. The final weeks of class will be dedicated to intense reading and critique of the student papers by their peers.", + "title": "The Historian's Craft", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY6402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in History in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, number of contact hours, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "HY6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will evaluate specific topics in Southeast Asian history depending on the specialty of the instructor. One of the main goals is to help the students develop a bibliography, from which they will develop research papers that will be related to dissertation topics. Thus, the goal is to provide doctoral candidates with the tools to conduct research in the region, while also introducing them to the current state of historical research in Southeast Asia.", + "title": "Topics in Southeast Asian History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY6881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is both a historiographic and research module to study specific themes and issues on Chinese history. The topics will depend on the specialty of the instructor and may vary from one semester to the other. Its goal is to familiarize the students with the current scholarship and primary sources on the selected topic so that they are able to discuss it critically. The students will write a short essay based on secondary literature, develop a bibliography and work on a research paper based on primary sources.", + "title": "Topics in Chinese History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "HY6882", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The internship provides students with an opportunity to apply anthropological knowledge to the workplace. In particular, students learn about the challenges of workplace situations, and reflect upon how practising anthropology may provide clarity to problems encountered. Internships must take place in organizations or companies, be relevant to anthropology, consist at least 120 hours for SC3550 (or 240 hours for ISC3550), and be approved by the Department to be considered for credit. This module is not compulsory and will be credited as a Major Elective or a combination of Major Elective and Unrestricted Elective.", + "title": "Anthropology Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IAN3550", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design 01 - Basic Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "9", + "moduleCode": "ID1101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design 02 - Living & Workplace System", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "9", + "moduleCode": "ID1102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Awakening and first contact with the design tools related to industrial design. Discovery of the elements of design such as: visual communication, creative making and thinking, discovery of basic shapes and forms, rational analysis of existing products. This module is also the opportunity for the students to start to plan and manage various parameters such as design variables and constrains, economy of means and time.", + "title": "Design Fundamentals 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ID1105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Design Fundamentals 2 reinforce semester 1 through exercises of higher complexity. The students have to deal with more elaborate parameters such as ergonomic factors of one hand-held product. They are also confronted for the first time structural issues and communication procedures. In continuity from fundamental 1 they pursue and refine their analytical approaches of existing products. Students learn the design methods of emotional addressing for products and set fundamentals of the design process which will be further developed during the course.", + "title": "Design Fundamentals 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ID1106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides the initial understanding of model making for industrial design. Model making techniques related to metals, wood, and plastics will be undertaken. Safety and security issues will also be addressed. Students are required to do model making exercises to develop different skills as part of the design process. This module is to support the design core modules in order to provide sufficient practical basis for their future design projects.", + "title": "Modelling For Industrial Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Modelling and Sketching for Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID1112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces basic model-making techniques using various material and hands-on processes, and sketching with traditional tools of pen/pencil and paper.\n\nModelling workshops incorporate fundamental form studies through a series of iterations and refinements. Students will develop value judgement while resolving multiple design elements. In addition to the understanding of material\nproperties, the course aims to cultivate an appreciation for precision and finishing. \n\nThrough weekly sketching assignments, students are taught the fundamentals of sketching which include perspective, the concept of drawthrough as well as architecture handwriting.", + "title": "Modelling and Sketching for Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID1113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In Design Fundamentals, students acquire fundamental knowledge, skills and aptitudes in industrial design. This is achieved with a succession of small-scaled design challenges that focus on specific areas of learning in detail.", + "title": "Design Fundamentals A", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ID1114", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In Design Fundamentals, students acquire fundamental knowledge, skills and aptitudes in industrial design. This is achieved with a succession of small-scaled design challenges that focus on specific areas of learning in detail.", + "title": "Design Fundamentals B", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ID1115", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In Design Fundamentals, students acquire fundamental knowledge, skills and aptitudes in industrial design. This is achieved with a succession of small-scaled design challenges that focus on specific areas of learning in detail.", + "title": "Design Fundamentals C", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ID1116", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In Design Fundamentals, students acquire fundamental knowledge, skills and aptitudes in industrial design. This is achieved with a succession of small-scaled design challenges that focus on specific areas of learning in detail.", + "title": "Design Fundamentals D", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ID1117", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In Design Fundamentals, students acquire fundamental knowledge, skills and aptitudes in industrial design. This is achieved with a succession of small-scaled design challenges that focus on specific areas of learning in detail.", + "title": "Design Fundamentals E", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ID1118", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In Design Fundamentals, students acquire fundamental knowledge, skills and aptitudes in industrial design. This is achieved with a succession of small-scaled design challenges that focus on specific areas of learning in detail.", + "title": "Design Fundamentals F", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ID1119", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will inform students on human centred design, human scale, ergonomics, anthropometrics, as well as human perception and their relation to the design of objects, products, system or service. The module will walks students through the human-centered design process and supports them in activities such as building user research skills, implementing ideas and user testing. It provides students with the basic understanding of user needs in new ways, find innovative solutions to meet those needs, and deliver solutions with financial sustainability in mind.", + "title": "Human-Centred Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID1121", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module serves to introduce students to the development of thoughts and ideas in industrial and product design. It will enable students to relate recent history in technological advancement and product development to current trends in design. The module will concentrate on the design innovations from the period of the industrial revolution in the 19th century. This was the transitional period from the Arts and Craft movement to the current design and production methods that are dominated by industrial processes.", + "title": "Principles and Approaches to Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID1223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Tuesday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as workshop and safety induction for students using the prototyping facilities at the Division of Industrial Design. It introduces theories and practical exercises of translating a design on paper to physical objects through digital design tools and fabrication techniques. Students will be equipped with relevant skills and knowledge in working with various workshop fabrication machineries & equipment such as 3D printing and CNC, and various digital design softwares.", + "title": "Introduction to Prototyping", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ID1300", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce students to the materials that are commonly used in the manufacture and fabrication of products. It will enable students to acquire basic knowledge on the properties and performance of materials and enable them to select materials for specific design applications. Major topics will include materials for products such as tableware, furniture, household appliances, light fittings, computer equipment, motor vehicles etc. It will briefly cover the manufacturing and fabrication processes associated with the materials and application.", + "title": "Materials For Industrial Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID1321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a design-related industry attachment program.", + "title": "Design Internship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ID2041", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time undergraduate students who have completed at least 60MCs and plan to proceed on an approved internship of at least 10 weeks in duration in the vacation period. This module recognizes\nwork experiences in fields that could lead to viable career pathways that may or may not be directly related to the student\u2019s major. It is accessible to students for academic credit even if they had previously completed internship stints for academic credit not exceeding 12MC, and if the new workscope is substantially differentiated from previously completed ones.", + "title": "Work Experience Internship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ID2042", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design For the Tropical Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "ID2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This module will focus the study of design issues related to the context of technological developments and the need for connectivity.\n\n\n\nTopics - The module will deal with issues pertaining to communication systems, and the development of industrial products to serve the urban community. It will discuss the importance of modern technology and concepts related to connectivity. It will introduce basic research methodology on design and development for the understanding of the design process as part of the module requirement.", + "title": "Design For Context & Connectivity", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "ID2102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As a progression from the design fundamentals, this module aggregates all the prior lessons into one complete, coherent, industrially-relevant project where students learn to manage, and go through the whole process of 1) initial design research and market research, to 2) formulating the design strategy and 3) design brief, through to 4) conceptualization, 5) evaluation phases, and 6) detailing and refinement.\nThe design is aimed for a specific context which includes specific users, market scenarios, environments, trends, business / competition, and feasibility / manufacturing factors. Critical consideration for sustainability factors is incorporated as part of the context criteria.", + "title": "Design for Context and Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ID2105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical studio\u201d based design platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The students will play the role of a junior designer and work together with the senior students from ID 3106 in the same platform. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In this platform, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "ID2106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms A", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT423", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A8", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ER1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A7", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "A9", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms B", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A7", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A8", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT423", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR1-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "A9", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms C", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2109", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "L1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms D", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2110", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to give students a practical understanding on the use Computer Aided Industrial Design (CAID) for design. This will include conceptual design with technical constraints to final rendering of the designed product. It will allow the student greater understanding of the verification tools by using it to assist in executing design decisions. Learning process will deal with theories and methods for constructive modeling, detailing, rendering and presentation, from simple curves and primitives to complex surfaces. Topics discussed will include Point, Line, Plane, 2-D and 3-D Surfaces, Solids, Colour and Texture and application of Lighting and as well as Basic Animation.", + "title": "Computer Aided Industrial Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students are brought beyond foundational usage of CAD tools for design visualization and construction. Three areas covered are: Advanced Surfacing, Parametric & Generative CAD Modelling, and Digital Manufacturing.\nAdvanced Surfacing covers principles and methods to craft high precision, manufacturing-quality CAD models with complex, continuous organic surfaces that are water-tight. Parametric & Generative CAD teaches programming and algorithm-scripting-based methods to digitally generate and control 3D geometry. Digital Manufacturing introduces methods to translate 3D data to produce physical objects via digital manufacturing equipment.\nStudents are expected to gain an operationally-ready level of mastery through hands-on experimentation in projects for all three areas.", + "title": "Digital Design & Fabrication", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theories and practice of visual communications design. It will enable students to communicate ideas or messages to their desired audiences through various visual media, be it a sign, poster, drawing, photograph, wayfinding, publication, or advertisement. \n\nMajor topics include visual thinking and literacy, typography, data visualisation, communication theory, designing with Adobe illustrator and InDesign.", + "title": "Visual Communication Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the wood-working processes through the fabrication of a small solid wood product and furniture based on standardized designs. The syllabus covers instructional demonstrations on the use of manual hand tools, power tools and workshop machines; with ample time for practical work in completing two well-finished prototypes. In addition, students will also gain an understanding on the different types of wood and the appreciation for grain patterns and good finishing. \n\nExpenses for timber material and delivery charges of approximately S$150 will be borne by individual student participating in the workshop.", + "title": "The Appreciation of Wood Craft", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2114", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Design Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course is designed for individuals who want to improve their visual communication skills and stimulate creative thinking. Through hands-on practice, students are taught how to use the stylus and tablet to create sketches and paintings in Photoshop.\n\nMajor topics include: Dynamic sketching; Introduction to stylus, tablet and Photoshop; Understanding and applying values and light; Rendering with colour; Silhouetting for ideation; Layout for presentation.\n\nStudents are expected to do weekly assignments and apply what they have learnt in two main projects.", + "title": "Digital Sketching and Painting", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2115", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Design Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the elements of computational thinking and its application in Industrial Design. Students will acquire skills and knowledge of computational problem solving, including formulating a problem, designing a solution, and prototyping the solution in the use of computational tools, logic and methods such as the Arduino Integrated Development Environment. Students learn through a hands-on approach to decompose complex problems into smaller components, solve the smaller components using elemental algorithms, and combine the solutions to solve the task at hand. They will learn the concepts of abstraction, how to encapsulate complex data and behavior into objects through object-oriented programming.", + "title": "Computing for Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2116", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR7", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the world of imaginative sketching. Mind-provoking exercises engage creativity and helps one find the extraordinary in unexpected places. Students will gain confidence and skills in expressing their ideas visually, regardless of their drawing level. Major topics include Line Walking exercise, Class Portraits, Left-Hand sketch, Blind Contours and Rorschach sketch.", + "title": "The Art of Imaginative Sketching", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ID2117", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module breaks down everything a professional photographer uses to bring products to life in a photo. Students will learn the basics in framing, shooting, lighting, setting up, and post-processing to accurately represent products in an image. It will enable the students to express these ideas and more through the tools and techniques of photography. Through practical activities, students will then dive into the different styles of photography.\n* Module Requirements\nStudents must bring their own camera (DSLR or compact with manual exposure modes) and SD card, bring a laptop with Adobe Photoshop installed, and a tripod is highly recommended.", + "title": "Product Photography", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ID2118", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the important principles that guide visual storytelling by applying a variety of information design principles, visualization patterns, typographic arrangements, and graphics to communicate concepts in a clear and compelling manner. Students will examine how to appropriately craft visual stories for their intended audience, in both a static (print) and time-based (digital media) context.", + "title": "Typographic Form and Communication", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2119", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR8", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 16, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide the theory and practice for students to understand ecodesign and sustainability and its affects on design practice. It will study the design methods related to ecodesign and sustainable design and its applications. Project work will be conducted to provide the bridge to integrate such theoretical knowledge into practice.", + "title": "Ecodesign And Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2122", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR8", + "day": "Tuesday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will gain knowledge of design process and research methodology. The objective of this module is to learn the process involved in a typical design project as well as its associated design and research methods.", + "title": "Design Process & Research", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2123", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to introduce students to the materials that are commonly used in the manufacture and fabrication of products. It will enable students to acquire knowledge on the properties and performance of materials and enable them to select materials for specific design applications. The module will also introduce contemporary, designerly approaches to material and production, from high tech composite materials, to novel one-off or batch production techniques invented by designer-makers. Knowledge of production processes associated with materials and its appropriate applications is a required skill for any designer involved in the design of products such as consumer electronics, domestic appliances, kitchen wares, furniture, lighting, and packaging. Students are expected to gain an operationally-ready level of mastery through hands-on experimentation and visits to industry practices. This module will train students with practical know-how on engineering materials and the production processes used in mass manufacturing and small scale production. It will present guidelines to assist the designer in selecting the most appropriate materials and manufacturing methods for a given purpose or application. At the end of the module, students should gain sufficient knowledge in various materials and manufacturing technologies so as to be able to communicate effectively with production engineers to materialise their design concept.", + "title": "Materials and Production", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2322", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is specially designed for BA Industrial Design students. This module discusses the physics behind the ordinary objects and natural phenomena all around us. It unravels the mysteries of how things work. From the household appliances that make our lives easier, vehicles that we travel in and to the audio/visual players fill our world with sounds and images.", + "title": "Technology for Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is specially designed for BA Industrial Design students. This module takes the complicated stuff out of understanding how things are made. Using simple illustration as a medium to describe production processes, this module covers a broad range of production methods with descriptive text, diagrams, product shots, and pictures of the manufacturing process. It appeals to product designers involved in consumer electronics, domestic appliances, kitchen wares, furniture, lighting, and packaging.", + "title": "Manufacturing for Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID2324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a one semester involvement for attachment to industry or other institutions of design, research and development work.", + "title": "Special Studies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "14", + "moduleCode": "ID3041", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This module will emphasize the integrative nature of design. It will enable students to understand how technology should be applied to design and production.\n\n\n\nTopics - The module will focus on projects that require consideration for realism imposed by functional and technical constraints. The module will also emphasize the need for a rationalized design process that serves to comprehensively evaluate design ideas, concepts and intentions in the learning of design development.\n\n\n\nTargeted Students - Industrial design students.", + "title": "Design 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ID3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This module will focus on the issues related to culture and identity and the design outcomes that may be generated.\n\n\n\nTopics - The module will require students to acquire an understanding of the history and culture of people and place. It will include the study of traditions and symbolism associated with distinct communities of people.\n\nThis module is planned to essentially provide overseas and exchange students with the opportunity to study design within the cultural context of South East Asia.\n\n\n\nTargeted Students - Industrial design students.", + "title": "Design For Culture & Identity", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ID3102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module reinforces Design Platforms 1 through exercises of higher complexity. This is a \u201cvertical studio\u201d based design platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The students will play the role of a junior designer and work together with the senior students from ID 4105 in the same platform. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In this platform, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "ID3105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "B8", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B7", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A7", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "B9", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A9", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A8", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module works with Design Platforms 1 in \u201cvertical studios\u201d context. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The students will play the role of a senior designer and work together with the junior students from ID 2106 in the same platform. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In this platform, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "ID3106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "B4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "B5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms E", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID3107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms F", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID3108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms G", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID3109", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms H", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID3110", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aims of the module are for the students to:\nDevelop appreciation and understanding of the strategic innovation roles of industrial design in commercial new product development (NPD).\nDevelop knowledge of brand and branding in relation to commercial NPD.\nDevelop abilities to exploit research insights, and brand understanding, within strategic NPD innovation activities.", + "title": "Innovation and Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID3122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Interaction designers discover people\u2019s needs, understand the context of use, frame product opportunities; and propose useful, usable, and desirable (usually digital) products. Interaction designers often work with narrative to explore and refine desired behaviors and user experience.\n\nThis module will engage students with the fundamentals of interaction design and applied interaction design methods, to shape behaviour between people and products, services and environments.", + "title": "Interaction Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID3123", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a means to discover and develop skills in constructing and delivering written and spoken presentations and reports. It is aimed at achieving oral and written proficiency thru critical analysis and practices.", + "title": "Creative Communication & Design Argumentation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID3124", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module looks at how colours, materials & finishing (CMF) is applied in the design industry, in particular to consumer products. Students will learn how to rationalise the best choice of colours and materials to engage the user. They will be able to objectify how the colours, materials and finishing that strongly link to the context of the design.", + "title": "Colours, Materials & Finishing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID3125", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR1", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theories and practice of time-based media and motion graphics communication. It will enable students to express ideas and messages through kinetics, time, and sequence using various techniques of graphic design and illustration integrated with motion aesthetics, animation principles, sound, and editing. Major topics include narrative and story development, dynamic graphic visualization, motion aesthetics, audio editing, and typography, utilizing with Adobe After Effects, Photoshop, and Illustrator.", + "title": "Motion Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID3126", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As industries continually evolve due to technological advancements, digitalization and globalization; students are increasingly required to adapt, unlearn and relearn within complex and ambiguous settings. This module aims to simulate what working in transdisciplinary teams will be like, and to equip students with the necessary skills to deal with real-life challenges through experiential learning. Students from various disciplines will come together to solve an industry/ societal challenge, leveraging on design-driven methods and the collective knowledge/ skillsets of the team. Students are expected to actively participate in contact sessions and commit to project work (including preparatory hours outside of contact sessions).", + "title": "Transdisciplinary Innovation Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "ID3127", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to focus students on documentation, detailing of production drawings and specifications. It will enable students to understand design implications in anticipation of the manufacturing process and production. Major topics will emphasize detailing from the design point of view. It will include drawing conventions, specification writing, knowledge of national standards in industry and current mass production practice.", + "title": "Design Detailing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ID4103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module works with Design Platforms 2 in \u201cvertical studios\u201d context. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The students will play the role of a senior designer and work together with the junior students from ID 3105 in the same platform. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In this platform, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "ID4105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A9", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A5", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A7", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A8", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students with the opportunity to demonstrate their design ability by the execution of a Major Design Project. Research and investigation on project development will be used to support the design. The major topic is a comprehensive design project that is supported by research. Documentation of research findings will form part of the project submission. Students will be required to demonstrate innovation and competency in industrial design.", + "title": "Design Thesis Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ID4106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A5", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A11", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A9", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A7", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A10", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A6", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A8", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID4107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms J", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID4108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms K", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID4109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a \u201cvertical format\u201d based design studio platform. Senior and junior students will participate in design projects which encourage cross-pollination of thoughts, skills and learning. The objectives are to enable students to explore strategic design innovation through a simulated real studio environment. In the platforms, students can select either conceptual or real-life projects led by our industry collaborators and relevant experts within the division.", + "title": "Design Platforms L", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID4110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to learn the methods involved in design research in order to investigate into opportunities that support the Design Thesis Project. It will involve market studies and analysis of current developments to surface opportunities for a project. The major topics will include research methodology, project planning techniques, information search and documentation, product analysis and evaluation and selection process for design development. The results of this study will lead to the rational selection of a project for design and development under Design Thesis Project.", + "title": "Project Research", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID4121", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A7", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A6", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A9", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A5", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A10", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A11", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A8", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Design Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a yearly-updated, felicitous palette of the most relevant soft skills and emerging technical knowledge relating to Design Entrepreneurship and Creative Leadership. It is taught through a selection of industry and faculty-led workshops: 6-8 standalone workshops conducted over 13 weeks, each with their own assessment tasks. These workshops are curated yearly by learner demand, faculty-judgement, and industry advice through the Division\u2019s industry networks. Students can expect exposure to emergent thinking in the way design businesses are structured and conducted, pick up technical skills for creativity, and receive training in soft skills for leadership in the creative industries.", + "title": "Design Entrepreneurship and Creative Leadership", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID4122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Research", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID5021", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID5151", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Design Studies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID5351", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides research students with work attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID5666", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This Graduate Seminar Module in Industrial Design aims to provide Master student a forum to sustain and amplify an active research culture among the faculty and research scholars of the Division of Industrial Design. It aims to explore research methodology for design, share research findings, and exchange ideas with invited academics of distinction across the world. The themes of seminar\npresentations will reflect the latest research conducted in the core areas of the Division of Industrial Design, such as: design education, design management, design innovation, ecodesign and sustainability, etc.", + "title": "Graduate Seminar Module in Industrial Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ID5770", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in\nAdvanced Design Research. Examples of topics that may be discussed are: Ecodesign and sustainability, Experience Design, Interaction Design, Design History, Product Identity, Product Language, Culture and Design etc.", + "title": "Topics in Industrial Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID5951", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to guide the students to explore the issue of product development through a research and design project with strong focus on interdisciplinary collaboration. The module will involve critical analyses and thorough discussions of specific topics in product development with regards to Industrial Design.", + "title": "Topics in Industrial Design: Product Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID5951A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to guide the students to explore the issue of design interaction through a research and design project with strong focus on interdisciplinary collaboration. The module will involve critical analyses and thorough discussions of specific topics in interaction design with regards to Industrial Design.", + "title": "Topics in Industrial Design: Interaction Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID5951B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to guide the students to explore the issue of design in healthcare and its relevant areas through a research and design project with strong focus on\ninterdisciplinary collaboration. The module will involve critical analyses and thorough discussions of specific topics in medicine, healthcare, and design for special needs with regards to Industrial Design.", + "title": "Topics in Industrial Design: Healthcare Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID5951C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to guide the students to explore the issue of design education through a research project with strong focus on interdisciplinary collaboration. The module will involve critical analyses and thorough discussions of specific topics in design education with regards to Industrial Design.", + "title": "Topics in Industrial Design: Design Education", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID5951D", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to guide the students to explore the issue of eco design and sustainability through a research and design project with strong focus on interdisciplinary collaboration. The module will involve critical analyses and\nthorough discussions of specific topics in eco design and sustainability with regards to Industrial Design.", + "title": "Topics in Industrial Design: Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ID5951E", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This Doctoral Seminar Module in Industrial Design aims to provide PhD student a forum to sustain and amplify an active research culture among the faculty and research scholars of the Division of Industrial Design (DID). It aims to explore research methodology for design, share research findings, and exchange ideas with invited academics of distinction across the world. The themes of seminar presentations will reflect the latest research conducted in the core areas of the DID, such as: design education, design management, design innovation, ecodesign and sustainability, etc.", + "title": "Doctoral Seminar Module in Industrial Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ID6770", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces first year engineering students to what engineers do and to the engineer's thought process. This is a two-part module: Industrial and Systems Engineering Principles and Practice (EPP) I and II. Real Industrial and Systems Engineering systems will be used to show how engineers use this discipline of engineering to design, make and test systems. Through grasping engineering fundamentals, students learn how engineering systems work and fail (EPP I). Through learning of real systems, students learn how multi-disciplinary concepts are tied together (EPP II). The students will also learn basic design, experimentation and evaluation of engineering systems.", + "title": "ISE Principles and Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "IE1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces first year industrial and systems engineering students to various problems in this field and how they can be analyzed and tackled through\nmathematical modelling, data analytics, simulation and quantitative decision making. By working on a series of carefully curated problems, students gain an appreciation for the challenges faced when tackling large complex problems under uncertainty and the role that data can play in addressing them.", + "title": "Industrial & Systems Engrg Principles & Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE1111R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 107, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 38, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces first year engineering students to what engineers do and to the engineer's thought process. This is a two-part module: Industrial and Systems \nEngineering Principles and Practice (EPP) I and II. Real engineering systems will be used to show how engineers use different disciplines of engineering, and combine them to design, make and test systems. Through grasping engineering fundamentals, students learn how engineering systems work and fail (EPP I). Through learning of real systems, students learn how multi-disciplinary concepts are tied together (EPP II). The students will also learn basic design, experimentation and evaluation of engineering systems.", + "title": "ISE Principles and Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "IE1112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces first year engineering students to what engineers do and to the engineer's thought process in industrial, systems engineering and management. Real engineering systems will be used to show how engineers use different disciplines of engineering, and combine them to design, make and test systems. Through grasping engineering fundamentals, students learn how engineering systems work and fail. Through learning of real systems, students learn how multi-disciplinary concepts are tied together. The students will also learn basic design, experimentation and evaluation of engineering systems.", + "title": "Introduction to Systems Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE1113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces first year engineering students to what engineers do and to the engineer's thought process in industrial, systems engineering and management. Real engineering systems will be used to show how engineers use different disciplines of engineering, and combine them to design, make and test systems. Through grasping engineering fundamentals, students learn how engineering systems work and fail. Through learning of real systems, students learn how multi-disciplinary concepts are tied together. The students will also learn basic design, experimentation and evaluation of engineering systems.", + "title": "Introduction to Systems Thinking and Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE1114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the analytical methods used to support the operations of industrial systems that produce goods and services. It equips the students with the understanding of the fundamental processes necessary for this production and the tools and techniques commonly deployed to create effective and efficient systems. The topics covered include strategic purpose of an economic entity, forecasting of demand, planning for output levels, production control systems, scheduling, facilities layout, and quality assurance.", + "title": "Introduction to Industrial System", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE2010E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module builds upon the foundation in ST2334 and stresses on applications of stochastic modeling. Topics include Review of basic probability and random variables; Conditional probability and conditional expectation; Discrete time Markov chains; Poisson process; Continuous time Markov chains; Basics in queuing theory and Basics renewal processes. Students will eventually be conversant with the properties of these models and appreciate their roles in engineering applications.", + "title": "Probability Models With Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE2100", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundation module introduces students to some of the basic concepts of operations research. Topics include linear programming, network flow models, and nonlinear programming. Besides the basic concepts, students will also learn about the applications of these topics to complex engineering and management problems.", + "title": "Operations Research I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE2110", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the principles and practice of engineering economics and financial decision making faced by engineers. Students will learn how to deal with the financial and economic aspects in the design, evaluation and management of engineering systems involving capital investments and cash flows over time. Topics covered include principles and practice of cash flow analysis, decision making involving single and multiple alternatives, depreciation of capital assets and after-tax project cash-flow analysis, replacement analysis of capital assets, and dealing with risk & uncertainty. Case studies and computational tools will be used to model, analyze and solve complex problems effectively.", + "title": "Industrial & Systems Engrg Principles & Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE2111", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1A-05-19", + "day": "Friday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1A-05-19", + "day": "Friday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1A-05-19", + "day": "Friday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental concepts of quality and basic techniques in quality engineering. The topics covered are measures and interpretation of variation, control charts, process capability analysis, and acceptance sampling. The module will also deal with some related issues such as measurement systems analysis, PDCA, TQM, and industrial case studies. At the end of the module, students will be able to understand the basic concepts of quality and use the basic tools in quality analysis.", + "title": "Quality Engineering I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE2130", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental concepts of quality and basic techniques in quality engineering. The topics covered are measures and interpretation of variation, control charts, process capability analysis, and acceptance sampling. The module will also deal with some related issues such as, measurement systems analysis, PDCA, TQM, and industrial case studies.", + "title": "Quality Engineering I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE2130E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Monday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Monday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concept of \"the time-value of money\" and the effect that it has on economic decisions in engineering and business. It equips students with a conceptual framework for understanding and evaluating economic alternatives represented as a set of cash flows over time. Topics covered include cash flow analysis, choice among economic alternatives, effects of depreciation and taxation, replacement analysis, and dealing with risk and uncertainty.", + "title": "Engineering Economy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE2140", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to introduce students to the fundamental concepts and underlying principles of system thinking, design and dynamics. It will provide students with an understanding of systems thinking and applying systems dynamics modelling to describe and simulate real world problems. At the end of the course, students should have the necessary knowledge and abilities to define, analyse, design, and develop a system dynamics model that simulates a specific problem and recommend solutions for different scenarios.", + "title": "Systems Thinking and Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE2141", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "07", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with hands-on knowledge and understanding of the diverse socio-culturaleconomic-political-business environments of one of the fastest evolving regions of the world \u2013 North Asia. In addition, students will be exposed to issues such as the challenges and constraints companies face in setting up and running operations in specific areas within this region, and learn the key drivers and best practices the companies adopts in their business operations in these areas.", + "title": "A cross cultural industrial field trip program", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "IE2290", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is to give students the opportunity to apply concepts learnt to solving real world problems. In this module, each student is assigned to work on a company-sponsored problem that requires application of industrial and systems engineering concepts. The module provides the opportunity for students to identify key problems and craft an objective, scope and deliverable for a piece of work, collect and analyze the relevant data, and apply the appropriate tool to solve the problem. It also enables students to improve their communication skills through report writing and presentation to the various stakeholders.", + "title": "Systems Design Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IE3100E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Systems Design Project (SDP) allows students to achieve experiential learning outcomes based on industry-sponsored problems. In teams, students work with the industry and department advisors to study, formulate and analyze the problem to recommend, implement and validate a practical design solution with good results. Students learn how to apply their ISE and technical knowledge in the proper context. Various oral and written communication skills are improved for successful project management and delivery. Intangible attributes like working together, working with uncertainty and deadlines with professionalism are also inculcated.", + "title": "System Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "IE3100M", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Systems Design Project (SDP) allows students to achieve experiential learning outcomes based on industry-sponsored problems. In teams, students work with the industry and department advisors to study, formulate and analyze the problem to recommend, implement and validate a practical design solution with good results. Students learn how to apply their ISE and technical knowledge in the proper context. Various oral and written communication skills are improved for successful project management and delivery. Intangible attributes like working together, working with uncertainty and deadlines with professionalism are also inculcated.", + "title": "Systems Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IE3100R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module goes beyond the foundation and deals mainly with the applications of statistics in the engineering context. Topics include review of statistical decision making and hypothesis testing, ANOVA with homogeneity of variance tests, concepts of blocking, RCBD, fixed and random effects models with multiple comparison procedures, factorial experiments, nonparametric methods, an introduction to bootstrapping with IE-based case studies. Students will be able to appreciate the importance of good planning and also conduct and evaluate simple experiments.", + "title": "Statistics For Engineering Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This systems engineering project requires a student to study, formulate and analyze problems using systems engineering tools and methodologies. The student is also expected to develop alternate solutions based on requirements and tradeoffs and verify them in meeting the requirements through testing and evaluation. It provides an opportunity for students to gain practical experience for industry-type projects.\n\nThey will also develop communication skills in technical report writing, oral presentations and project management.", + "title": "Systems Engineering Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IE3102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This systems engineering project requires a student to study, formulate and analyze problems using systems engineering tools and methodologies. The student is also expected to develop alternate solutions based on requirements and tradeoffs and verify them in meeting the requirements through testing and evaluation. It provides an opportunity for students to gain practical experience for industry-type projects. They will also develop communication skills in technical report writing, oral presentations and project management.", + "title": "Systems Engineering Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE3102A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundation module aims to introduce students to the fundamental concepts and underlying principles of systems engineering, including systems thinking, as well as the design and management of complex systems. The topics in this module include introductory concepts like system structure and boundary, complexity and system archetypes, system design process and management, system dynamics and system economic evaluation. The instruction will be supplemented with case studies and also seminars by academic and industrial practitioners.", + "title": "Fundamentals of Systems Engineering and Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE3105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 49, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Friday", + "lessonType": "Laboratory", + "size": 49, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Monday", + "lessonType": "Lecture", + "size": 49, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the basic concepts of discrete-event simulation systems and application to problems that have no closed-form solutions. The course will cover modeling techniques, random number generators, discrete-event simulation approaches, simulated data analysis, simulation variance reduction techniques and state-of-the-art simulation software. At the end of this course, students will be able to analyze and develop simulation models of given problems.", + "title": "Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "IE3110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the basic concepts of discrete-event simulation systems and application to problems that have no closed-form solutions. The course will cover modeling techniques, random number generators, discrete-event simulation approaches, simulated data analysis, simulation variance reduction techniques and state-of-the-art simulation software. At the end of this course, students will be able to analyze and develop simulation models of given problems.", + "title": "Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE3110R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1A-05-19", + "day": "Friday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1A-05-19", + "day": "Friday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the basic concepts and techniques of planning, design and operation within a facility. The coverage will include enterprise resource planning, resource allocation models, forecasting techniques, basic factory dynamics, types of production systems and production scheduling. This course aims to convey the intuitions behind many manufacturing logistic concepts and to demonstrate the application of operations research techniques to this area.", + "title": "Manufacturing Logistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE3120", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces concepts in human factors engineering and ergonomics. The topics that will be covered include: Human factors and systems; Human factors research methodologies; Information input and processing; Visual and auditory displays; Human output and control; Motor skills and hand tools; Anthropometry and workplace design; Environmental conditions of illumination, and Climate and noise. The objectives are to provide students with a broad overview of the application areas and an appreciation of the need for human factors engineers.", + "title": "Human Factors Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE3250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "IE4068", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is to give students exposure to research. In this module, each student is assigned to a research project that requires application of industrial and systems engineering concepts. The module provides the opportunity for students to conduct self study by reviewing literature, defining a problem, analyzing the problem critically, conducting design of experiments, and recommending solutions. It also enables students to improve their communication skills through technical report writing and oral presentation.", + "title": "BTech Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "IE4100E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is to give students exposure to research. In this module, each student is assigned to a research project that requires application of industrial and systems engineering concepts. The module provides the opportunity for students to conduct self study by reviewing literature, defining a problem, analyzing the problem critically, conducting design of experiments, and recommending solutions. It also enables students to improve their communication skills through technical report writing and oral presentation.", + "title": "B.Eng.Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IE4100R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LT1", + "day": "Friday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2 + ], + "venue": "E1-06-07", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is to give students exposure to research. In this module, each student is assigned to a research project that requires application of industrial and systems engineering concepts. The module provides the opportunity for students to conduct self study by reviewing literature, defining a problem, analyzing the problem critically, conducting design of experiments, and recommending solutions. It also enables students to improve their communication skills through technical report writing and oral presentation.", + "title": "B.Tech. Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IE4101E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of IE4102 Independent Study is to promote self-study, critical thinking and independent research abilities. The project, which must be relevant to industrial and systems engineering, are proposed by the students and must be approved by the Department Coordinator identify a Department of Industrial and Systems Engineering staff member who is willing to oversee the projects and obtain their approval before submitting the proposal for consideration.", + "title": "Independent Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LT1", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2 + ], + "venue": "E1-06-07", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds upon IE2110 to introduce students to more basic concepts of operations research. Topics include integer programming, mixed integer programming, dynamic programming, and heuristic methods. Besides the basic concepts, students will also learn how to use MATLAB CVX or Python CVXPY toolbox integer and mixed integer programmes encountered in complex real-world problems.", + "title": "Operations Research II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the concept of modelling, optimization and data analytics for Industrial and Systems Engineering. As systems become more complex and with readily available data, the course will impart students with the skill to conduct modelling, data analysis and optimization. It will show how to model a problem, analyse the data to obtain the insight and optimize the model to make effective decision. Selected use cases in areas such as in supply chain, health care, and service industries will be drawn to provide applications. Python would be primally used as the programming language.", + "title": "Modelling & Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students data analytics and machine learning techniques for solving large scale engineering problems. The module covers statistics and machine learning concepts and algorithms such as linear regression, support vector machine, decision trees, feature engineering, deep learning, and reinforcement learning. How these algorithms are scaled up and incorporated in data engineering pipelines to tackle large scale problems will be covered. Students will be exposed to practical case studies of engineering problems with realistic datasets or streaming data, and perform data engineering operations using software tools.", + "title": "Learning from Data", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to expose students to modelling and optimization applied to optimizing the revenue of a company. Revenue management is about how to sell \u201cthe right product to the right customer at the right time for the right price\u201d. This course will introduce different customer\u2019s choice behaviours under different scenarios, building on which we will introduce different pricing models and how to solve them. Other decisions that might affect the company\u2019s revenue will also be discussed.", + "title": "Revenue Management and Pricing Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4214", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers machine learning models beyond the introductory level and provides depth in machine learning for industrial engineering (IE) applications. The module contains three parts. The first part introduces machine learning models such as supervised/unsupervised learning, decision tree, neural networks, and reinforcement learning. The second part discusses optimization techniques for machine learning and IE, such as (stochastic) gradient descent, power method, EM algorithm, and the reformulations of models into linear/nonlinear programming. In the third part, students will study and solve IE applications using their machine learning knowledge. Moreover, the module also exposes students to open-source/commercial software in the industry.", + "title": "Machine Learning for Industrial Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the fundamentals of supply chain concepts. It covers issues and basic techniques of distribution strategies, transportation logistics, and supply chain network optimization models. Students are equipped with fundamental concepts and quantitative tools that are essential to solving logistic and supply chain problems.", + "title": "Supply Chain Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4220", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an exploration of economic problems\nof moving goods and people in transportation industry.\nThis module introduces the basic economic concepts and\nprinciples as useful tools in the engineering context to\nformulate and analyze the decision-making of stakeholders\n(e.g., travelers, public sectors, shippers and operators).\nSpecial characteristics of transportation problems, such as\nthe derived demand, mobile supply, cost structure, pricing\nmechanism and government intervention and regulation\nwill be emphasized and some classic transportation\nmodels, such as user equilibrium model and discrete\nchoice model, will be introduced.", + "title": "Transportation Demand Modeling and Economics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics in logistics or specialised topics. Students will learn and understand evolving concepts in logistics and supply chain. This module will enable students to keep abreast with current developments in the logistics field and broaden their exposure to various specialised topics.", + "title": "Selected Topics In Logistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to advanced topics in quality engineering. Topics covered are: design-in quality, quality function deployment, failure mode and effects analysis, fractional factorial designs, confounding, and robust design. The module also deals with basic tools in reliability analysis and testing. It will enable students to use more advanced techniques in process studies and learn to deal with quality problems from a proactive point of view in terms of process improvement and optimization.", + "title": "Quality Engineering II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics in quality engineering or specialised topics. Students will learn and understand concepts in quality management and quality technology. This module will enable them to keep abreast with current developments in quality engineering and broaden their exposure to various specialised topics.", + "title": "Selected Topics In Quality Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the basic concepts in project management. The process encompasses project planning, project scheduling, cost estimation and budgeting, resource allocation, monitoring and control, and risk assessment and management. The principles behind the process and the approaches to their execution will be covered. This module enables students to define and plan a project within the constraints of the environment. The plan will serve as a blueprint for the implementation and control of a project.", + "title": "Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4240", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the interplay of technology and work in organizations. The essential processes within an organization together with the modalities of executing these processes within the social and political setting of the organization are introduced. The core of the module then examines the interplay of technologies and organizational milieu in driving the development and adoption of new work practices. The module enables students to analyze how emerging technologies affect the extent of work processes within an organization. The insight should lead to the design of more appropriate work practices to create an effective organization.", + "title": "Work, Technology And Organization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the basics of cost management. Concepts relating component items and process steps to value-added functions are introduced as a precursor to the analysis of system cost over the entire life cycle of products and services. It also deals with tools and approaches to select equipment, materials for cost-effective operations. This module enables students to cost out a system and recommend approaches to develop strategies for increasing the cost effectiveness of the system.", + "title": "Cost Analysis And Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4242", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental prescriptive decision theory, modelling and risk analysis for rational making decisions under both certainty and uncertainty. It covers applications in but not limited to economic, medical & healthcare decisions and technical decision making where decision analytics and systems thinking are helpful for many personal & daily decisions. Topics covered include foundation of decision theory, structuring of decision problems, generating objectives and alternatives, decision under certainty with multiple objectives, Bayesian statistical approaches, and decision under risk.", + "title": "Decision Modeling & Risk Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamentals of energy from a systems viewpoint. It covers issues on energy demand, supply, resources and policies. These issues are looked into in a holistic manner taking into account the need to balance among three competing ends: energy security, economic competitiveness, and environmental sustainability, i.e. the energy trilemma. Relevant cases will be used to show the complexity of energy problems and the trade-offs involved. The module also deals with the latest global energy scene and future outlook, including issues of direct relevance to Singapore.", + "title": "Energy: Security, Competitiveness and Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A green economy is one that is low carbon, resource efficient and sustainable. This module focuses on the role of energy in green economy transition. Fundamentals of the energy system and its expected transformation, deep decarbonisation and net zero emissions, together with the commonly adopted or proposed strategies to achieve these transformations, are studied. The analytical tools and skill sets used are those in the systems engineering and management domain, including systems thinking and design, scenario analysis, systems modelling and techno-economic analysis. Relevant cases on the latest developments in energy and/or green economy are developed and presented.", + "title": "Energy and Green Economy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4248", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-06-20", + "end": "2023-07-04" + }, + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-06-22", + "end": "2023-07-06" + }, + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-03" + }, + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-05" + }, + "venue": "E1-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics in engineering management or specialised topics. Students will learn and understand evolving concepts affecting the management of engineering activities. This module will enable them to keep abreast with current developments in the engineering management field and broaden their exposure to various specialised topics.", + "title": "Selected Topics In Engineering Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces to students the system dynamics modelling method, based on the foundations of systems thinking. System dynamics is a powerful methodology to support the inquiry of complex large-scale dynamic sociotechnical systems through computer simulation models. Central topics include feedback mechanisms, nonlinear\nrelationship, time delay models, causal loop diagramming stock-flow models, decision behaviour modelling, testing and validation of models. Instruction is supplemented with\ncase studies from supply chains, population and environmental modelling. Group projects are used facilitate hands-on model building and learning in and outside the classroom.", + "title": "System Dynamics Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Process Analysis and Redesign is a systematic approach to helping an organization analyze and improve its processes. In this course the term \u2018redesign\u2019 includes \u2018reengineering\u2019. All systems are designed and developed to support business processes. Therefore, an understanding of the business processes is crucial to choosing how to build and manage systems, re-skill personnel and retool the infrastructure. A business process is a collection of activities that creates an output that is of value to some customer. Business processes can be improved at any level of an organization or can be improved across multiple organizations. Typically, Business Process\nRedesign/Reengineering (BPR) uses information technology to enable business process change in order to reduce costs, improve service, and reduce cycle times.\nSeveral BPR methodologies exist. Most methodologies require the construction of an \u201cAs-Is\u201d and \u201cTo-Be\u201d model.\n\nThis course will discuss the role of BPR in managing technology and the operational functions. The course will cover the strategic, operational and technological\ndimensions of BPR in the context of quality improvement, Information Technology and business operations. Case studies will provide real-world context for the concepts discussed in class. The course is designed to teach students BPR methodologies and modeling techniques that accompany the methodology. Students will identify an\norganization (or part of an organization) that needs improvement. Next, they will analyze the current system, investigate possible Information Technology and operational solutions, redesign the current system and propose a plan to move from the \u201cAs-Is\u201d system to the \u201cTo-Be\u201d system.", + "title": "Process Analysis and Redesign", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will present selected topics in applied human factors engineering to extend the theories and methods discussed in IE2150, such as anthropometry,\nbiomechanics, work physiology, human information processing, workplace and interface design, environmental analysis, social and affective factors. The course will be introduced with a review of human factors engineering purpose, scope and methods. Next, a series of case studies will be presented on aviation, control rooms,\nmanufacturing, transportation, office work, environmental safety, ageing, accident investigation and system design. Each module will include the case study, a description of the human factors methods and group based exercises related to the topic.", + "title": "Human Factors Engineering: Cases and Tools", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics in systems engineering or specialised topics. Students will learn and understand evolving concepts affecting the engineering large-scale or complex systems. This module will enable them to keep abreast with current developments in the systems engineering field and broaden their exposure to various specialised topics.", + "title": "Selected Topics in Systems Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics\nin economics and service systems. Students will learn to\nanalyse and understand the economic implications of trends\nin service setting. This module will enable them to keep\nabreast with current developments in the economic and\nservice system area and broaden their exposure to various\nspecialised topics.", + "title": "Selected Topics in Economics and Service Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics in industrial engineering or specialised topics. Students will learn and understand evolving concepts in operation research and industrial engineering. This module will enable them to keep abreast with current developments in the industrial engineering field and broaden their exposure to various specialised topics.", + "title": "Selected Topics In Industrial Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE4299", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-30", + "end": "2023-06-13" + }, + "venue": "EA-06-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-31", + "end": "2023-06-14" + }, + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-29", + "end": "2023-06-12" + }, + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-06-01", + "end": "2023-06-15" + }, + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces some of the basic concepts of operations research that are applicable to decision making in the industry. The topics include linear programming, network models, nonlinear programming, inventory control models and queueing theory. The emphasis is on the applications of these operations research models and methods for solving real-world decision problems.", + "title": "Operations Research for Decision Making", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Linear programming and network models are some of the\nbasic and important topics in operations research. This\nmodule introduces the fundamental concepts, modelling\ntechniques and solution methods for these two topics. It\nwill also illustrate how these two topics can be applied to\nsolve many decision making problems encountered in the\nindustry.", + "title": "Linear Programming and Network Models", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "IE5001A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces some of the advanced models and\ntechniques of operations research. These include\nmodeling techniques in integer programming and\nnonlinear programming, as well as basic inventory control\nand queuing models. This module also illustrates how\nthese models and techniques can be applied to solve\nmany decision making problems encountered in the\nindustry.", + "title": "Advanced Models and Techniques", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "IE5001B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Statistical analysis and experimentation techniques for engineers. Topics include statistical inference principles, comparative studies, empirical modelling, factorial and fractional factorial designs, sequential experimentation, response surface methodology, and statistical robust design. The module is application oriented and examples drawn from industrial applications rather than mathematical development will be used wherever possible to introduce a topic.", + "title": "Applied Engineering Statistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Friday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cost and engineering economic analysis with special emphasis on a unified approach based upon cost accounting, operations research, economics and other quantitative methods. Topics include cost accounting and cost analysis, cost estimation, methods of engineering economic analysis, analyses for government projects and public utilities, effects of income taxes in economy studies, depreciation methods, risk and uncertainty in engineering economy studies, replacement studies and models, capital budgeting and computer applications.", + "title": "Cost Analysis and Engineering Economy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide engineers with a practical treatment of probability. Apart from the fundamental framework, examples showing how various concepts and techniques can be adapted to solve practical problems will be discussed. An introduction to simulation techniques such as the Monte Carlo method together with stochastic modeling are also included.", + "title": "Stochastic Models and Their Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces basic concepts in descriptive, predictive and prescriptive analytics with a focus on applications that industrial engineers commonly deal with (e.g., inventory control, replacement and maintenance, process improvement, project management and resource scheduling etc.). Topics include descriptive modelling, predictive modeling, error quantification, model training, model selection and data-based decision making.", + "title": "Data Analytics for Industrial Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Monday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module deals mainly with the complex decision-making process in the planning, design, operation and maintenance of large scale systems. Case studies of systems that have been implemented in Singapore or being planned are used to illustrate the practical aspects of systems engineering methodologies.", + "title": "Large Scale System Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamentals of Supply Chain Systems. It covers topics related to the Modelling of Supply Chain Systems so as to provide the best flow of products through the Supply Chain Systems.", + "title": "Modelling for Supply Chain Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the supply chain drivers and\ninventory strategies. The drivers are the building blocks for\nsupply chain design. Inventory is one of the drivers that\nplays an important role in supply chain to address the\nmismatch between demand and supply. Topics covered\ninclude supply chain performance and driver, inventory\npolicy, supply chain coordination and risk pooling\nconcepts.", + "title": "Supply Chain: Performance Drivers and Inventory", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "IE5105A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Distribution and Transportation are two of the important\ndrivers for supply chain. This module focuses on the the\nbasic concepts, modelling technologies and solution\nmethods for these two drivers. It will also introduce how\nthe decision making for these two drivers will impact the\nefficiency and the effectiveness of the supply chain\nsystem.", + "title": "Supply Chain: Distribution and Transportation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "IE5105B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers principles, models and tools for analyzing and managing manufacturing processes, service operations and supply chains. Topics covered include inventory management and control, queueing models of operational dynamics (e.g., cycle time, work-in-process inventory, throughput, variability) and process improvement methodologies.", + "title": "Operations Analysis and Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5107", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an analytical treatment of the subject of facility layout and location. The layout design process consists of problem formulation, analysis of the problem, search for layout designs, selection of the preferred design, and specification of the layout design to be installed. It also considers the problem of locating one or several new facilities with respect to existing facilities. The objective considered is the minimization of a cost function of travel distances. Students will be required to do a project to apply the knowledge acquired from this module.", + "title": "Facility Layout And Location", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5108", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The subject matter is of prime importance to the leadership, management, and operation of various industrial and business systems. The meaning of Quality is first probed from the perspectives of both the producer and consumer, before concepts for its planning and management are considered. Classic principles of Quality Planning, Quality Control and Quality Improvement are discussed, followed by ideas and principles necessitated by more recent developments of technology, international operations, and intensified competition across corporate and consumer levels. More recent developments, for example Robust Design, Six Sigma and extensions such as Design for Six Sigma and their implications are also discussed.", + "title": "Quality Planning And Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5121", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT421", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the practice of statistical quality control and provides a comprehensive coverage of SQC from basic principles to state-of-the-art concepts and applications. The objective is to give a sound understanding of SQC principles and the basis of applying these principles in the industrial environment. The main topics are basic problem-solving methodology and tools, basic and advanced statistical process control techniques, statistical assessment of process capability, and acceptance sampling.", + "title": "Statistical Quality Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the basic concepts and methods in reliability and maintenance engineering. It treats both components and systems reliability, failure data analysis and reliability testing. Topics related to reliability improvement are also dealt with. The maintenance aspect of this module includes maintenance management from a systems viewpoint, optimization of equipment availability, optimal replacement policies and warranty analysis.", + "title": "Reliability Engineering and Asset Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5123", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Software Quality Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5125", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Major techniques of statistical time series analysis and forecasting. Topics include principles of model building, advanced regression analysis, smoothing and moving average models, Box-Jenkins methodology and the use of statistical packages.", + "title": "Applied Forecasting Methods", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the necessary analytical knowledge and practical skills for improving decision-making processes in engineering and business environments. This is achieved by providing a paradigm based on normative decision theory and a set of prescriptive tools and computational techniques using state-of-the art software with which a stake holder can systematically analyze a complex and uncertain decision situation leading to clarity of action. Topics from utility theory and influence diagrams modeling to multi-attribute utility theory and analytic hierarchy process are covered.", + "title": "Decision Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-08-09", + "end": "2022-11-08" + }, + "venue": "LT2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 135, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-20", + "end": "2022-09-20" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 135, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an overview of healthcare systems and how healthcare delivery is achieved, including an understanding of the roles of analysts in healthcare, healthcare data concepts and management. Data analytics, modelling and the use of statistics and operations research methods to support operations management, planning and decision making in healthcare are also introduced.", + "title": "Healthcare System and Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module deals with energy and sustainability at systems and policy levels. It covers energy and carbon emission accounting, global and national energy systems, drivers of energy consumption and emissions, energy transition and decarbonization, climate change and energy security. Global and Singapore\u2019s energy outlook, and actions in energy systems transformation and decarbonization are discussed. The issues are analyzed at international, national, sector and corporate levels. Cases with a focus on systems engineering and management concept and tools in problem formulation, analysis and solving form an integral part of the module.", + "title": "Energy and Sustainability A Systems Approach", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines energy and climate issues from the system modelling and market-based mechanisms perspectives. Topics covered include energy system modelling principles and their applications, energyeconomic system flows, energy demand modelling and related policy issues, interactions of market-based mechanisms with the national energy-economic systems, scenario analysis and strategies for net zero emissions. The module will help students to understand the challenges and opportunities in energy transitions and deep decarbonisation in the coming decades. Relevant examples and cases based on the latest global developments will be presented.", + "title": "Energy Systems Modelling and Market Mechanisms", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 32, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents ideas of systems analysis and project management in a manner which demonstrates their essential unity. It uses the systems development cycle as a framework to discuss management of engineering and business projects from conception to termination. The module is divided into three interrelated parts: systems analysis and project management, project selection and organizational behavior, and systems and procedures in project planning and control.", + "title": "Systems Approach To Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to new, emerging concepts in the management of new product development. The entire new product development process, from the initial idea generation and screening phase to the final commercialization and monitoring phase, is examined. Project selection models, project organization, interdepartmental interface, technical and marketing issues are included in the topics discussed. Materials will be drawn from real-life industrial practices and state-of-the-art research findings. Lectures, case study readings and discussions will be used.", + "title": "New Product Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "MANAGEMENT OF TECHNOLOGICAL INNOVATION", + "title": "Management of Technological Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces service management, with a focus on innovation, to students with an engineering/technology background. The topics covered include the concept of service, value creation and alignment, new service design, service blueprinting, the role of technology such as AI and social media, the physical service environment, balancing demand and supply, and service quality. Upon\ncompleting the module, students are expected to be able to analyze service-related problems and propose practical solutions.", + "title": "Service Innovation And Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Infocomm Systems Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an exploration of economic problems of moving goods and people in transportation industry. It introduces the basic economic concepts and principles as useful tools in the engineering context to formulate and analyze the decision-making of stakeholders (e.g., travelers, public sectors, shippers and operators). Special characteristics of transportation problems, such as the derived demand, mobile supply, cost structure, pricing mechanism and government intervention and regulation will be emphasized and some classic transportation models, such as user equilibrium model and discrete choice model, will be introduced.", + "title": "Transportation Modeling and Economics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental concepts of process design and quality control in engineering system. The topics covered are measures and interpretation of process performance, design and analysis of experiments, process optimization, quality control, anomaly detection, and basic tools in reliability analysis and testing. It will enable students to use statistical techniques in process studies and learn to deal with problems from a proactive point of view.", + "title": "Statistical Methods for Process Design & Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comprehensive introduction to the basic theory and algorithms for nonlinear optimization problems with polyhedral and non-polyhedral constraints. Major topics to be covered include: smooth optimization,\nconstraint qualifications, second order necessary and sufficient conditions, composite nonsmooth optimization, first and second order methods for large scale problems.", + "title": "Theory and algorithms for nonlinear optimization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in Engineering Management. Specific topics are selected on the basis of current teaching and research needs. Lectures will be given by both department staff and visiting specialists.", + "title": "Topics in Engineering Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the interaction dynamics between the human operator and the machine/system in a human-machine system. We shall begin by defining the areas of concern in human factors engineering (e.g. the human-machine interface, the displays to be perceived, and the controls to be actuated). We shall discuss also the tools and methodologies used by a human factors engineer. The latter portion of the subject will discuss issues of capabilities and limitations of the human operator.", + "title": "Human Factors In Engineering And Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in Human Factors Engineering. Specific topics are selected on the basis of current teaching and research needs. Lectures will be given by both department staff and visiting specialists.", + "title": "Topics in Human Factors Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a sound basis for understanding the fundamental nature and functional areas of logistic systems, and the activities concerned with the efficient management of industrial logistics. Topics covered are fundamentals of industrial logistics, components of logistic systems, logistics policy, and transport network systems.", + "title": "Industrial Logistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Introduction to Systems Engineering and Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an opportunity for students to do an independent study of how a complex system is designed, commissioned and managed. Students will select their own project, conduct the study under an appointed supervisor, present their findings in a seminar, and submit a written report.", + "title": "Systems Engineering Case Studies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module deals mainly with the complex decision-making process in the planning, design, operation and maintenance of large scale systems. Case studies of systems that have been implemented in Singapore or being planned are used to illustrate the practical aspects of systems engineering methodologies.", + "title": "Large Scale Systems Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces inventory theory and its application to the management of inventory systems. Many of the models developed will be for the single item, single stage inventory system, considering both stationary and time-varying conditions. There will be some coverage of multistage inventory systems and multiple-item problems under constraints.", + "title": "Inventory Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The lifecycle performance of complex systems is affected by uncertainty in environments, markets, regulations, and technology. Designing for flexibility has potentials to improve lifecycle performance and value compared to standard design approaches. It enables systems to change and adapt pro-actively in the face of uncertainty. This course covers cutting-edge techniques and recent\nresearch to model uncertainty (decision trees, binomial lattice, simulations), identify/generate valuable flexibility in design (design structure matrix, prompting), and explore the design space efficiently for the best flexible designs (dynamic programming, real options and financial analyses, screening models). Possible case studies involve aerospace, defence, energy, mining, oil, real estate, transportation, and water systems.", + "title": "Flexibility in Engineering Systems Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5407", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Systems modelling and simulation are important tools in operations research. This subject covers the major aspects of modelling and techniques of computer simulation, model definition, construction of digital simulation models, design of simulation experiments, statistical verification of input data and results, simulation languages and advanced simulation concepts.", + "title": "Systems Modelling And Advanced Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5504", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "L1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1A-05-19", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Computer-Based Decision Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5506", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to train students to develop a solid competency of the Python programming language through a rigorous and continuous exercise-based approach. Topics covered include fundamental programming concepts (IO, variables and value assignment, conditional statements, flow control, methods), data structures (lists, tuples, sets, dictionaries), objects and classes, recursion, code debugging and efficiency. The course syllabus will also emphasize on various data engineering tools from the NumPy and Pandas modules relevant to implementing industrial systems.", + "title": "Applied Programming for Industrial Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5600", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "5", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1A-05-19", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-07-24", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1A-05-19", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-07-24", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1A-05-19", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-07-24", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data visualisation is important for effective communication and analysis of large datasets, and is a sought-after skill with the advent in big data technology and interactive web services. Students will learn from this course about various processes, methods and tools involved in visualising and interpreting big data from various domains, including basic visualisation principles, data management and transformation techniques, to create different forms of visualisation. By the end of the course, students are expected to be proficient in using software to generate interactive reports and dashboards that can efficiently convey their data insights and findings.", + "title": "Communicating Industrial Analytics Solutions", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5601", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the first of two introductory modules focusing on supervised machine learning algorithms and techniques. Students will be taught to analyse datasets, perform necessary transformations, build machine learning models to derive insights, and evaluate and subsequently make adjustments to fine-tune models appropriately. Topics include regression & gradient descent, theory of generalisation and VC dimensions, kernel models and Support Vector Machines, decision trees, and time series forecasting, with discussion on application into various engineering use cases.", + "title": "Statistical Learning in Engineering I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5602", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second of two introductory modules focusing on unsupervised machine learning algorithms and techniques. Students will be taught to analyse datasets, perform necessary transformations, build machine learning models to derive insights, and evaluate and subsequently make adjustments to fine-tune models appropriately. Topics include clustering, dimensionality reduction, generative models, feature selection and generation, recommender systems, and neural networks and deep learning algorithms, with discussion on application into various engineering use cases.", + "title": "Statistical Learning in Engineering II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5603", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide tools and training to recognize and formulate models for optimisation purposes subjected to constraints in manufacturing, engineering, finance, supply chain etc. It focus to equip students with the confidence and capability to recognise a problem that can be formulated as a linear programming model, thereafter formulating an appropriate objective function subjected to fitting constraints. For simple problems, a global optimum can be found using CPLEX but for complex problems, metaheuristics will be introduced to search for an optimum solution. Emphasis will be placed on implementation and deliverables while theory will be taught as a supplement.", + "title": "Optimisation Modelling and Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5604", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept of simulation allows one to visualize a system with all dimensions without having to incur associated risks and costs. The module aims to equip students with the necessary skillsets required to construct simulation models to draw meaningful evaluations. Through practical experiments and industry relevant case studies, the module aims to utilize advanced simulation analytics in real-life industrial scenarios to accentuate the importance and applicability of simulation in the industry.", + "title": "Simulation-driven Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5605", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the application of various industrial analytics concepts and techniques learnt to tackle up to three actual company problems chosen from six industry verticals. Students are required to practice problem solving methodologies by analysing real-world data related to the problem, defining objectives and scope of the work, to design, develop and implement systems that effectively address critical pain points to solve the problem.", + "title": "Problem Solving in Industrial Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "IE5611", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This practicum module is a 28-week compulsory internship practicum in an overseas or Singapore-based company. Building upon experience in Practicum I, this module aims to provide students with the opportunity to deepen their proficiency in applying industrial analytics knowledge and skills learnt to help tackle problems faced by global technology companies and multi-national corporations while contributing to the organisation.", + "title": "Industrial Analytics Practicum", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "IE5612", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with\nwork attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "IE5666", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this 4 months attachment module, students will be working on core and emerging topics related to Industrial & Systems Engineering in a Singapore-based organization. It allows students to be exposed to the latest practices in the industries, as well as to enhance their knowledge application abilities and skill development. Students can apply for the internships publicised by the department/faculty/university, or seek approval for self-initiated internships. Students will be jointly supervised by a team comprising of NUS academic staff and the organization\u2019s appointed manager. Assessments will be performed periodically, leading to a project report and presentation at the end.", + "title": "Industrial & Systems Engineering Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "IE5766", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this 6 months internship module, students will be working on core and emerging topics related to Industrial & Systems Engineering in a Singapore-based organization. It allows students to be exposed to the latest practices in the industries, as well as to enhance their knowledge application abilities and skill development. Students can apply for the internships publicised by the department/faculty/university, or seek approval for self-initiated internships. Students will be jointly supervised by a team comprising of NUS academic staff and the organization\u2019s appointed manager. Assessments will be performed periodically, leading to a project report and presentation at the end.", + "title": "Industrial & Systems Engineering Internship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "IE5866", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in Supply Chain Systems. Specific topics are selected on the basis of current teaching and research needs. Lectures will be given by both department staff and/or visiting specialists.", + "title": "Topics in Supply Chain Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The topics covered will be in the area of Industrial Engineering, with a focus or based on more recent developments in this area and/or topics that are specialized in nature.", + "title": "Selected Topics in Industrial Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a supervised self study over one semester to work on a topic approved by the department in logistics and operations research. The work may include a comprehensive literature survey, model building and problem solving, and solution implementation. This module is offered as an elective module to fulfill the requirements for the Specialization in Logistics and Operations Research.", + "title": "Independent Study in L&OR", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5901", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a research project over two semesters to work on a topic approved by the department in logistics and operations research. The work may include a comprehensive literature survey, problem definition, model building, solution method development, and recommendation. This module is offered as an elective module to fulfill the requirements for the Specialization in Logistics and\nOperations Research.", + "title": "Research Project in L&OR", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IE5902", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a supervised self-study over one semester to work on a topic approved by the department in project management. The work may include a comprehensive literature survey, model building and problem solving, and solution\nimplementation. This module is offered as an elective module to fulfill the requirements for the Specialization in Project Management.", + "title": "Independent Study in PM", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5903", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a research project over two semesters to work on a topic approved by the department in project management. The work may include a comprehensive literature survey, problem definition, model building, solution method development, and recommendation. This module is offered as an elective module to fulfill the requirements for the Specialization in Project Management.", + "title": "Research Project in PM", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IE5904", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a research project to work on a topic in project management approved by the department. \nThe work may include a comprehensive literature survey, problem definition, model building, development and implementation of solution method, discussion of solutions and recommendation. \nThis module is offered as an elective module to fulfill the requirements for the Specialization in Project Management. The module is to be completed in 1 semester.", + "title": "Research Project in Project Management I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5904A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a research project built upon the project that he/she has undertaken under IE5904A. The student must first define the further development work beyond the project under IE5904A that needs to be done. \nWhere appropriate, the work may include a comprehensive literature survey, problem definition, model building, development and implementation of solution method, discussion of solutions and recommendation. \nThis module is offered as an elective module to fulfill the requirements for the Specialization in Project Management. The module is to be completed in 1 semester.", + "title": "Research Project in Project Management II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5904B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a supervised self study over one semester to work on a topic in systems engineering to be approved by the department. The work may include a comprehensive literature survey, model building and problem solving, and solution implementation. This module is offered as an elective module to fulfill the requirements for the Specialization in systems engineering. The project must be completed in 1 semester.", + "title": "Independent Study In Systems Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5905", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 6, + 11 + ], + "venue": "E1-06-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a research project to work on a topic in systems engineering approved by the department. The work may include a comprehensive literature survey, problem definition, model building, development and implementation of solution method, discussion of solutions and recommendation. This module is offered as an elective module to fulfill the requirements for the Specialization in Systems Engineering. The module is to be completed in 1 semester.", + "title": "Research Project in Systems Engineering I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5906A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a research project built upon the project that he/she has undertaken under IE5906A. The student must first define the further development work beyond the project under IE5906A that needs to be done. Where appropriate, the work may include a comprehensive literature survey, problem definition, model building, development and implementation of solution method, discussion of solutions and recommendation. This module is offered as an elective module to fulfill the requirements for the Specialization in Systems Engineering. The module is to be completed in 1 semester", + "title": "Research Project in Systems Engineering II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5906B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a supervised self study over one semester to work on a topic in operations research to be approved by the department. \nThe work may include a comprehensive literature survey, model building and problem solving, and solution implementation. \nThis module is offered as an elective module to fulfill the requirements for the Specialization in Operations Research. The project must be completed in 1 semester.", + "title": "Independent Study in Operations Research", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5907", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a research project to work on a topic in operations research approved by the department. \nThe work may include a comprehensive literature survey, problem definition, model building, development and implementation of solution method, discussion of solutions and recommendation. \nThis module is offered as an elective module to fulfill the requirements for the Specialization in Operations Research. The module is to be completed in 1 semester.", + "title": "Research Project in Operations Research I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5908A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a research project built upon the project that he/she has undertaken under IE5908A. The student must first define the further development work beyond the project under IE5908A that needs to be done. \nWhere appropriate, the work may include a comprehensive literature survey, problem definition, model building, development and implementation of solution method, discussion of solutions and recommendation. \nThis module is offered as an elective module to fulfill the requirements for the Specialization in Operations Research. The module is to be completed in 1 semester.", + "title": "Research Project in Operations Research II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5908B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a supervised self study over one semester to work on research project in Industrial and System Engineering to be approved by the department. \nThe work may include a comprehensive literature survey, model building and problem solving, and solution implementation. \nThis module is offered as an elective module to fulfill the requirements for the Specialization. The project must be completed in 1 semester.", + "title": "Research Project in Industrial & System Engineering I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5909A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student will undertake a research project built upon the project that he/she has undertaken under IE5909A. The student must first define the further development work beyond the project under IE5909A that needs to be done. Where appropriate, the work may include a comprehensive literature survey, problem definition, model building, development and implementation of solution method, discussion of solutions and recommendation. This module is offered as an elective module to fulfill the requirements for the Specialization. The module is to be completed in 1 semester.", + "title": "Research Project in Industrial & System Engineering II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE5909B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "IE5999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Foundations of Optimization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced version of IE5002 ? Applied Engineering Statistics. This module aims to provide statistical analysis and experimentation techniques for engineers. Topics include analysis of variance, regression analysis, factorial and fractional factorial designs, response surface methodology and non-parametric methods. The module is application oriented and examples drawn from industrial applications rather than mathematical development will be used wherever possible to introduce a topic. Besides evening lectures on the above topic, seminars on fundamental aspects of the subject matters will be conducted. Research papers will be reviewed during the seminars.", + "title": "Advanced Engineering Statistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide first-year PhD students with a rigorous introduction to the fundamentals of probability and stochastic processes. Topics include probability space and expectation, conditioning, Poisson process, and Markov chains.", + "title": "Stochastic Processes I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Stochastic Models and Optimization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Ise Research Methodology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6099", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced version of IE5107 - Material Flow Systems. This module covers the activities required to manage materials flow from supplier through manufacturing activities to the final use of the materials or delivery to customer. Emphasis is given on the movement of materials within the manufacturing processes and storage systems. Methodologies useful to the analysis of material flow systems, in both the manufacturing and warehousing systems, are introduced. Besides evening lectures on the above topic, seminars on fundamental aspects of the subject matters will be conducted. Research papers will be reviewed during the seminars.", + "title": "Advanced Material Flow Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced version of IE5108 ? Facility Layout and Location. An analytical treatment of the subject of facility layout and location. The layout design process consists of problem formulation, analysis of the problem, search for layout designs, selection of the preferred design, and specification of the layout design to be installed. This module also considers the problem of locating one or several new facilities with respect to existing facilities. The objective considered is the minimization of a cost function of travel distances. Problems with rectilinear and Euclidean distances are considered. Students will be assigned a computer project and a case study. Besides evening lectures on the above topics, seminars on fundamental aspects of the subject matters will be conducted. Research papers will be reviewed during the seminars.", + "title": "Advanced Facility Layout and Location", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced version of IE5123 ? Reliability and Maintenance Engineering. This module introduces the basic concepts and methods in reliability and maintenance engineering. It treats both components and systems reliability, failure data analysis and reliability testing. Topics related to reliability improvement are also dealt with. The maintenance aspect of this module includes maintenance management from a systems viewpoint, optimization of equipment availability, optimal replacement policies and warranty analysis. Besides evening lectures on the above topic, seminars on fundamental aspects of the subject matters will be conducted. Research papers will be reviewed during the seminars.", + "title": "Advanced Reliability Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6123", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Software Quality Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6125", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced version of IE5203 ? Decision Analysis. An applications oriented module in which the process and techniques of decision-making are analyzed with the aim of improving the decision-maker's performance. The mathematical theory underlying different decision-making processes will be covered wherever necessary. An integral part of the module will be discussion and analysis of some real-world applications. Topics from classical minimax techniques to multiattribute utility theory are covered. Besides evening lectures on the above topic, seminars on fundamental aspects of the subject matters will be conducted. Research papers will be reviewed during the seminars.", + "title": "Advanced Decision Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This PhD module explores how Bayesian rational people behave under uncertainty, largely in dynamic matching, learning environments, and dynamic contracting.", + "title": "Bayesian Modeling and Decision-Making", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Discrete optimization is the study of problems where the goal is to find an optimal arrangement from among a finite set of possible arrangements. Discrete problems are also called combinatorial optimization problems. Many applications in business, industry, and computer science lead to such problems, and we will touch on the theory behind these applications. The course takes a modern view of discrete optimization and covers the main areas of application and the main optimization algorithms. It covers the following topics (tentative) \u2022 integer and combinatorial optimization introduction and basic definitions \u2022 alternative formulations \u2022 optimality, relaxation and bounds \u2022 Graph Theory and Network Flow \u2022 integral polyhedral, including matching problems, matroid and the Matroid Greedy algorithm \u2022 polyhedral approaches theory of valid inequalities, cutting-plane algorithms The course also discusses how these approaches can be used to tackle problems arising in modern service system, including static and dynamic matching markets, ad words allocation, pricing and assortment optimization etc.", + "title": "Discrete Optimization and Algorithms", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover the necessary theoretical foundations of modern robust optimization and its applications.", + "title": "Robust modelling and optimization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide operation researchers a holistic introduction of classic statistics theories and modern statistical learning toolbox. It also lays the necessary foundations for more advanced machine learning courses.", + "title": "Introduction to Data Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced version of IE 5401 ? Industrial Logistics. It provides a sound basis for understanding the fundamental and advanced nature and functional areas of logistic systems, and the activities concerned with the efficient management of industrial logistics. Topics covered are components of logistic systems, logistics policy, and transport network systems. Research seminars on the above topics will be conducted.", + "title": "Advanced Topics in Industrial Logistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced version of IE5405 ? Inventory Systems. This module introduces inventory theory and its application to the management of inventory systems. Many of the models developed will be for the single item, single stage inventory system, considering both stationary and time-varying conditions. There will be some coverage of multistage inventory systems and multiple-item problems under constraints. Besides evening lectures on the above topic, seminars on fundamental aspects of the subject matters will be conducted. Research papers will be reviewed during the seminars.", + "title": "Advanced Inventory Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course describes a variety of Metaheuristic search methods including simulated annealing, tabu search, genetic algorithms, dynamically dimensioned search, particle swarm, differential evolution and multi-objective methods. The course also describes the use of sophisticated surrogate optimization algorithms for\ncomputationally expensive functions (including objective functions that are computed from a complex computer code.) The algorithms can be used to find values of discrete and/or continuous variables that optimize system performance, improve model forecast ability, and improve system reliability. All methods search for the global optimium and are derivative-free.", + "title": "Adv Topics in SE: Metaheuristic & Surrogate Optimization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6499A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide the first-year PhD students with\na rigorous introduction to the fundamentals of stochastic\nprocesses. Topics include (i) Continuous-time Markov\nchains, (ii) Renewal processes, (iii) Brownian motions, and\n(iv) Stochastic orders", + "title": "Stochastic Processes II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6505", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the theoretic foundations, models,\nand analytical techniques of queueing theory. Topics\ninclude continuous-time Markov chains, Little\u2019s law and\nPASTA property, Markovian queues and Jackson networks,\nfluid models, heavy-traffic analysis, and diffusion\napproximations.", + "title": "Queues and Stochastic Networks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6507", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental models, theory, and\nalgorithms for dynamic programming with an emphasis on\nMarkov decision processes (MDPs). We give particular\nattention to overcoming the \u2018curse of dimensionality\u2019 and\nfocus on modern techniques for solving large-scale\ndynamic programs.", + "title": "Theory and Algorithms for Dynamic Programming", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6509", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module describes sophisticated surrogate global optimization algorithms (for continuous and/or integer variables) for computationally expensive functions\n(including objective functions that are computed from a multimodal complex computer code.) with optional parallel algorithms. Metaheuristic search methods including simulated annealing, tabu search, genetic algorithms,\ndynamically dimensioned search, and particle swarm. Both single objective and multi-objective methods are discussed. A theory section covers convergence of surrogate global optimization, simulated annealing, genetic\nalgorithms, and the proof of the No Free Lunch Theorem. Statistical analysis for comparing algorithm performance is presented. Students will utilize existing software packages in Matlab or Python for surrogate optimization and for\nsome metaheuristics.", + "title": "Surrogate and Metaheuristic Global Optimization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6511", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers contemplary topics in Online Learning, a discipline that lies in the intersection of achine Learning and Operations Research. Online Learning concerns optimization under uncertainty, using sequentially arriving data. It has applications in online resource allocations, dynamic pricing, online routing control, etc. The module focuses on the algorithm design and analysis in a variety of Online Learning models, with a strong emphasis on the rigorous derivations of the performance guarantees for the presented algorithms. The module is designed for students with research interest in Data-driven\nOptimization and/or Machine Learning.", + "title": "Theory and Algorithms for Online Learning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6520", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The topics covered will be in the area of Operations Reseach, with a focus or bias on more recent developments in this area and/or topics that are specialized in nature.", + "title": "Topics in Operations Research 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "IE6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The topics covered will be in the area of Data Science, with a focus or bias on more recent developments in this area and/or topics that are specialized in nature.", + "title": "Topics in Data Science 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IE6881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Doctoral Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "IE6999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the European Studies Programme, have relevance to the major, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the programme.", + "title": "Extended Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IEU3550", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with a first exposure to working in industry with theories, methods and applications of information security learnt during the first year of university education. Their progress on internship projects\nwill be monitored during internship period, and their performance will be assessed through a Completed Satisfactory/Completed Unsatisfactory (CS/CU) grade at the end of the internship. The internship duration will be\napproximately 12 weeks full-time.", + "title": "Information Security Immersion Programme", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "IFS2200", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the laws relating to information security. The issues and considerations concerning information security have greatly shaped many laws, in particular, the laws relating to cybercrimes, electronic commerce, electronic evidence, document discovery, information management and data protection. These areas of the law have in turn altered the development and practice of information security in the industry. The objective of this module is to provide information security professionals with a working knowledge of these legal issues in information security, so that they are better placed to represent and protect the legal interests of their employers and their institutions.", + "title": "Legal Aspects of Information Security", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IFS4101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital forensics encompasses the recovery and investigation of material found in digital devices in relation to cyber crime and other crimes where digital evidence is relevant. This module gives an introduction to principles, techniques, and tools to perform digital forensics. Students will gain a good understanding of the fundamentals of digital forensics; key techniques for performing evidence extraction and analysis on UNIX/Linux systems, Windows\nsystems, networks, Web applications, and mobile devices; and gain exposure to available tools. Some legal aspects of digital forensics will also be discussed.", + "title": "Digital Forensics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IFS4102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Friday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a practice-oriented and project-based module that provides a hands-on experience of performing penetration testing on a collaborating organisation\u2019s system. It aims to provide students with a realistic platform for applying offensive-based vulnerability assessment and analysis techniques on designated target systems. Students will be part of a penetration testing team, and be guided to apply the methodology, techniques, and tools of assessing the security of the target systems. This module contains a mix of technical-review seminars, testing-scoping meetings, and penetration testing exercises, analysis, as well as reporting.", + "title": "Penetration Testing Practice", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IFS4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with a final exposure to working in industry with theories, methods and applications of information security. Students put their knowledge into practice solving security related problems to a specific,\nsizable industry project. Students will also sharpen communication skills through close team interactions, consultations, and formal presentations. Students will be jointly guided by supervisors from both the companies/organisations and the school. Their progress will be monitored during the internship period, and their performance will be assessed through letter grades at the end of internship. The project duration is expected to be\napproximately 16 weeks (full-time).", + "title": "Information Security Industry Capstone Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IFS4201", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with a final exposure to working in industry with theories, methods and applications of information security learnt. Students put their knowledge into practice solving security related problems to a specific,\nsizable industry project. Students will also sharpen communication skills through close team interactions, consultations, and formal presentations. Students will be jointly guided by supervisors from both the companies/organisations and the school. Their progress will be monitored during the internship period, and their performance will be assessed through letter grades at the end of internship. The internship duration will be approximately 12 weeks full-time.", + "title": "Information Security Practicum Programme", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "IFS4202", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students an active learning opportunity to work independently in a group on significant information security-related projects. Project activities can include analyzing the security requirements, designing and implementing security systems, and attacking and defending a system. Students get to apply what they learn in the classroom and gain hands-on experience on solving significant information security problems.", + "title": "Information Security Capstone Project.", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IFS4205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the Convenor of the Global Studies Programme, have relevance to the major in Global Studies, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. In exceptional cases, internships proposed by students may be approved by the department.", + "title": "Extended Global Studies Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IGL3550", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the department, have relevance to the major in JS, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the department.", + "title": "Extended Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IJS3550", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The 4th Industrial Revolution is characterized by\na confluence of different technologies coming\ntogether, and massive amounts of data being\ngenerated. Companies are incorporating\nIndustry 4.0 technologies into their operations,\nand creating new business models through\ndigitalizing and transforming their products and\nservices. This has consequences for how\ncompanies think about their business.\nThe course is a core module to understand\nabout business operations and processes, and\nhow the Industry 4.0 technologies can be\napplied. We will also look innovation frameworks\nand how these technologies fit into strategic\ntechnology transformation roadmaps.", + "title": "Introduction to Industry 4.0 and Applications", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "IND5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0201", + "day": "Monday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the key recent technological developments that enable cyber-physical systems, which in turn will define Industry 4.0. Topics will be organized under additive manufacturing, robotics and automation, Internet of Things and 5G, especially in the context of advanced manufacturing and services. This is a core module in the MSc in Industry 4.0 and provides a common technology foundation for students in that programme.", + "title": "Digital-Physical Integration in Industry 4.0", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IND5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 79, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Technological advancements such as cyberphysical systems and the Internet of Things are\nenabling connected machines which collect a\ntremendous volume of structured and\nunstructured data. This module covers essential\nanalytics tools and techniques for performing\nsupervised and unsupervised learning on that\ndata. It focuses on applications in such domains\nas consumer, human resource, manufacturing,\nmedical and retail to identify patterns and\ninsights for process improvements and decisionmaking. These tools include the Python\nprogramming language; the techniques include\nfrequently used time series models and\npredictive models such as regression, random\nforests, neural networks and deep learning.", + "title": "Data Analytics for Sense-making", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IND5003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module brings the students through the\njourney of digitalization in transforming\norganizations, include how they operate,\nmanufacture products and deliver services.\n\nThis module covers two major aspects, namely\n- strategizing organizations for digital\ntransformation, and\n- transforming the organization\u2019s digital\ninfrastructure.\nThe first aspect covers\n- fundamentals of digitisation, digitalization,\nand digital transformation\n- digital transformation dimensions,\napproaches, and readiness indices\n- stakeholder analysis and change\nmanagement\n- digital culture and organizational culture\ntransformation, and\n- workforce and skillset upgrading.\n\nThe second aspect covers the technology\nbuilding blocks (e.g., cloud computing) and\ncybersecurity measures and approaches.", + "title": "Digital Infrastructure and Transformation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IND5004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will be the last core module of the MSc programme to be taken just prior to graduation, with a view to applying learnings in the programme to actual application of one or more Industry 4.0 technology areas in a company, students will form teams of 3 to 4 people to work on a project implementation in a company, under the supervision of one or more\nfaculty with the appropriate expertise for the project. The outcome will be a prototype or minimum viable product, as well as a report and presentation.", + "title": "Industry Consulting and Application Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IND5005", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Equip MSc (i4.0) postgraduates with the essential career management skills and advisory so that they are more effective in managing workplace transitions and in developing strategies to capitalise on new opportunities.\n\nParticipants will:\n(i) Enhance their personal brand through effective resumes and online presence\n(ii) Gain industry insights and hiring trends from an industry professional\n(iii) Develop professional communication strategies and skills for building networks.", + "title": "Professional Career Development", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": ".5", + "moduleCode": "IND5005A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 8 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will be the last core module of the MSc programme to be taken just prior to graduation, with a view to applying learnings in the programme to actual application of one or more Industry 4.0 technology areas in a company, students will form teams of 3 to 4 people to work on a project implementation in a company, under the supervision of one or more faculty with the appropriate expertise for the project. The outcome will be a prototype or minimum viable product, as well as a report and presentation.", + "title": "Industry Consulting and Application Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "3.5", + "moduleCode": "IND5005B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Supply chain management has become a key aspect of competitive strategy in coordinating with customers and suppliers to deliver value. The integration of operations, information flow, and technology, is the next step in creating responsive and agile supply chains. This course will bring together the strategic, operational, and technology aspects of supply chain management, and look at how technology developments will impact manufacturing, distribution, and logistics.", + "title": "Managing the Digital Supply Chain", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "IND5021", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "S01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The big data evolution provides an opportunity for managing significantly larger amounts of information and acting on it with analytics for improved diagnostics and prognostics. Understanding data science and data analytics is allowing managers to remain competitive and relevant in the rapidly changing landscape. Through industry case studies, this module will introduce the analytics approaches that can help participants understand and approach to real world issues, from processing and exploring data to provide insights, developing a data product, and communicating a data story in a capstone project. Participants will also learn\nessential knowledge and skills for managing successful data analytics projects. It dives into analytical tools, scoping data analytics problems and best practices in the setup of a data analytics project. The course will provide extensive hands-on\nexercises on solving business problems using supervised and unsupervised learning.", + "title": "Data Analytics for Smart Manufacturing", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "IND5022", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 54, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Procurement and supply management within the\nsupply chain has become strategic, with an\nemphasis on creating solutions, collaboration\nand resilience, Procurement has shifted from\njust cost cutting to being a revenue and profit\ndriver. With the advent of IT, data, and new\ntechnologies, procurement processes and\npractices have continued to evolve.\nThe course aims to provide participants with the\nknowledge of how strategic sourcing is critical\nfor successful procurement outcomes, and\nunderstanding the elements that go into a\nsituation analysis for strategic product\npurchases. Through hands on exercises and\ncase studies, participants will learn how to apply\nthese concepts in a sourcing cycle.", + "title": "Strategic Procurement in a Digital World", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "IND5024", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "S01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "BIZ1-0201", + "day": "Saturday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the Communications and New Media Programme, have relevance to the major in NM, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships for each semester will be advertised at the beginning of the semester before. Internships proposed by students will require the approval of the department. Student must apply for and be accepted to work in the company/organization offering the internship for a duration of 6 months (together with NM3550), on full time basis.", + "title": "Extended Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "INM3550", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to present and discuss the fundamental principles of interpreting, featuring hands-on interpreting exercises using real-world examples. This module follows a progression, starting with inclass activities to develop students\u2019 basic interpreting abilities such as listening, rephrasing and speaking, with complementary practice in simple sight translation. Students will be introduced to the history of interpreting, a range of basic interpreting strategies, different types of interpreting and different communicative risks in various interpreting scenarios.", + "title": "Basic Interpreting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "INT2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides componential-progressive guidance for sight interpreting training. By going through various delineated sight interpreting tasks \u2013 including speech comprehension, shadowing, fast reading, respeaking, paraphrasing, anticipation, earvoice span lagging (EVS) exercises and basic simultaneous interpreting with text \u2013 students will gain a solid foundation for their study of interpreting. Based on the practice of thematic real-life sight interpreting tasks, students will acquire text analysis, comprehension and production skills, as well as learn how to coordinate their cognitive efforts efficiently. This module also will help enhance students\u2019 English and Chinese proficiency, as well as their public speaking skills.", + "title": "Sight Interpreting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "INT3201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fundamental concepts of consecutive interpreting and helps students develop key consecutive interpreting techniques, such as listening, text analysis, speech comprehension, shortterm memory storage, note-taking and public speaking skills. By using authentic speech across different contexts, students are expected to address various communicative risks effectively and develop an awareness of the variations in interpreting speech genre, density and style found in real-life discourse. This module also guides and facilitates the development of students\u2019 interpreting competence and progressive integration into all-round operational expertise.", + "title": "Consecutive Interpreting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "INT3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide a foundation in the practice of community interpreting. By reviewing various types of community interpreting in situated interactions (e.g. police and courts, hospitals and social services), students will gain an in-depth understanding of the controversy over the concepts of faithfulness, accuracy and equivalence. Key strategies employed in different community settings will be introduced. By practising real-life interpreting examples, students will discuss and analyse the consequences of the suggested roles of the community interpreter, particularly in medical and legal settings. This module will also help enhance students\u2019 English/Chinese language competence as well as their public speaking skills.", + "title": "Community Interpreting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "INT3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an advanced exploration of the professional practice of interpreting through close examination of different modes (consecutive vs simultaneous and community vs conference), with a focus on providing advanced interpreting skill set. Students will gain in-depth understanding of interpreting as a social, interactive, intercultural activity performed in specific conditions and environments. Through using the real-world interpreting examples as learning materials, students will learn how to make appropriate judgments in various communicative situations, based on an understanding of the norms and conventions of professional practice, and of the ethical principles that must govern the role of a professional interpreter.", + "title": "Advanced Interpreting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "INT3204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles of law in Singapore. Topics include the Singapore legal system; legal system and method including statutory interpretation; basic principles of the law of contract and the tort of negligence. These principles will be applied to and explained with examples from infrastructure and project management and the built environment.", + "title": "Infrastructure and Project Management Law", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM1102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide an overview of the concepts and applications of digital construction. The concepts of computational thinking will form the theoretical basis of this module and will be incorporated to teach how computation can be used to accomplish a variety of goals. It will also provide students with a brief introduction to programming skills with applications to digital construction. The major topics include basics of computational thinking, basic coding, and applications in digital construction such as Building Information Modelling (BIM).", + "title": "Digital Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM1103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers aspects of building performance in relation to technical and human requirements. Major topics include external and climatic effects including pollution, humidity, solar radiation sky illuminance, and noise; role and performance of building elements; passive and active control; air-conditioning and natural ventilation, artificial and daylighting; indoor air quality; building acoustics; human requirements.", + "title": "Introduction to Building Performance", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the evaluation, selection and performance of specialised advanced construction technology for tall buildings with emphasis on the integration of construction systems. The major topics are deep foundation systems, proprietary wall and floor systems, advanced formwork and scaffolding technology, precast and prestressed concrete construction, envelope systems, and roof construction. Also covered are the basic principles relating to the selection, operation and integration of specialised equipment for construction work, and the fundamentals of site surveying, setting out and alignment systems for high-rise buildings.", + "title": "Construction Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 6, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles for the measurement of work items on projects with special focus on building works. It also covers the writing of specifications for such items. It develops students' skills in conventional and e-measurement of building works covering foundations, frame, building envelope, fenestration and architectural finishes.", + "title": "Measurement (Building Works)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM2103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "2000", + "endTime": "2200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the basic principles relating to estimating of items of the work to be undertaken on projects, and tendering. Major topics are quantitative techniques in cost analysis, cost planning, approximate estimating and tendering procedures. The principles governing the pricing of items and building up rates for items of work are also covered.", + "title": "Project Cost Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM2104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the pre-development stage of a project. Major topics include the real estate development cycle; market study and site selection; site control; due diligence; sketch of scheme; preliminary cost estimate; financial analysis; financial close; site acquisition; development of Project Brief; project programming; and design development. A basic understanding of cost-benefit analysis is required for public infrastructure projects.", + "title": "Project Feasibility", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental concepts of facilities management for different types of real assets. It explores the principles that underpin sustainable facilities management and the perspectives of stakeholders. Topics include FM activities, FM strategy, outsourcing, maintenance management, performance management and safety, resource management, FM technology, financial management, and procurement.", + "title": "Infrastructure and Facilities Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM3102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students demonstrate their research, analytical and communication skills by investigating a topic of interest to them, and of relevance to the programme. The student is expected to demonstrate an ability to pursue unaided investigations relevant to the topic chose, to communicate the findings clearly, concisely and with detachment, to draw relevant conclusions, and to offer suitable recommendations.", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IPM4101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the execution of project baseline plans. Major topics include managing stakeholders; project control for time, cost, quality, safety, risk, health, and the environment; scope changes; variation orders; submittals and shop drawings; claims and disputes; progress payments; status reports; documentation; and use of logs, diaries, images and other control forms.", + "title": "Project Execution", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM4102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles of administering projects from the client\u2019s perspective by developing further, and applying, students\u2019 knowledge of project management law. Major topics are procurement systems, valuation of work done based on the Security of Payment Act, valuation of variations and financial control of projects. Students are recommended to take PF1107 Infrastructure and Project Management Law and PF3207 Project Management Law before taking this module.", + "title": "Contract and Procurement Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM4103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamentals of 5G-enabled digital robotics for intelligent buildings, digital-twin construction and smart facility management. Major topics include 5G connectivity, digital twins, robotic components, controls and deployment techniques for FM applications. The module includes practical hands-on robotics trials.", + "title": "Smart Facility Management Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPM4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within an organisation, are vetted and approved by the Department\u2019s internship advisor, have relevance to the major in Political Science, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships (if any) will be advertised at the beginning of each semester. In exceptional cases, internships proposed by students may be approved by the Department.", + "title": "Extended Political Science Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IPS3550", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Module is designed to introduce students to the issues of digital ethics and data privacy faced by individuals and organizations. It covers the ethical principles governing the behaviors and beliefs about how we use technology, and how we collect and process personal information in a manner that aligns with individual and organizational expectations for security and confidentiality. It will address challenges in balancing technological desirability with social desirability while developing digital products and services, including Professional Ethics, Computing for Social Good, Digital Ethics by Design, Digital Intellectual Property Rights, Automation and Autonomous Systems, and Artificial Intelligence Ethics and Governance.", + "title": "Digital Ethics and Data Privacy", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS1108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "19", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 349, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 349, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 349, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "19", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 349, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to information technologies (IT) in organisations and the interplay between IT, work, management, and organisations. Specifically, the module will examine the impacts of modern IT and the related artificial intelligence (AI) technologies on knowledge workers, teamwork, work design, management practices and the organization. Students will learn about the multifaceted roles that IT can play to support communication, collaboration and organizational improvements in operations, planning and decision making. They will also learn to apply strategic thinking to identify opportunities for IT-enabled innovations and issues involving information systems (IS) adoption and deployment.", + "title": "IT, Management and Organisation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS1128", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 232, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "IS2101 (Business and Technical Communication) a customized core module for the School of Computing, aims to give its students a professional edge in the competitive and interconnected job market by preparing and enhancing their professional communication skills in IT related work settings. This is a 48-hour module taught over 12 weeks with a three-hour tutorial and a one-hour online lecture + related activities per week.", + "title": "Business and Technical Communication", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G06", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0211", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G13", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0208", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G14", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0210", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to train students to be proficient in architecting and designing modern large-scale Enterprise Systems that are complex, scalable, distributed, component-based and mission-critical. Students will develop an in-depth understanding of high-level concepts such as enterprise architecture and software architecture. They will then move on to acquire fundamental systems analysis and design techniques such as object-oriented requirements analysis and design using the Unified Modelling Language as well as software design patterns. Essential systems engineering skillsets such as software testing and software configuration management will also be covered.", + "title": "Enterprise Systems Architecture and Design", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to train students to be conversant in backend or server-side development for Enterprise Systems. It complements IS3106, which focuses on front-end development aspects for Enterprise Systems. Students will learn modern development techniques such as component-based development, service-oriented development and object-relational mapping. One or more established development platforms would be carefully chosen to allow students to put into practice the various concepts that are taught in the module. An emphasis would also be placed on Enterprise Systems security.", + "title": "Enterprise Systems Server-side Design and Development", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS2103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital platforms underlie nearly all modern industries and businesses. Their interconnected ecosystems radically transform the way we work, shop, transact, socialize and travel. This module aims to introduce the phenomena of digital platforms for businesses and the associated business fundamentals, concepts and models that underlie and support the business and value propositions of these platforms. Specifically, students will learn about different digital marketing and retailing platforms (e.g., Google, Amazon), fintech platforms (e.g., Binance, Alipay), and logistics/delivery platforms (e.g., NinjaVan, Deliveroo), as well as basic marketing, finance and operations management concepts.", + "title": "Digital Platforms for Business", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS2218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Monday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Businesses have been revolutionized with the introduction of new information technologies (IT) and artificial intelligence (AI). The purpose of this module is to provide students with an understanding of the key economic concepts to operate and be a successful IT-enabled and/or AI-driven business and to impart an appreciation of the economic impacts of IT and AI at the firm, market, and societal levels. Students will learn about competitive market analysis, IT-related economic issues of pricing and bundling, information asymmetry and uncertainty, as well as AI-related topics of automated decision, and economic impacts of AI technologies.", + "title": "Economics of IT and AI", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS2238", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Monday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Friday", + "lessonType": "Lecture", + "size": 232, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Today\u2019s technology leaders need to have a deep understanding of business fundamentals, recognize the key drivers of innovation, and develop effective leadership to align and integrate novel technologies and business processes for successful products and services. The course will not only cover major topics relating strategic, tactical and operational facets of thought leadership in propelling IT implementations, adoptions and changes in organization but also equip students with industry-relevant communication skillsets. The strategic facet will explore the various contexts, complex issues and dynamic paths that evoke leadership in information systems, including technology championship, disruptive technology, and IT ecosystem. The tactical facet", + "title": "Information Systems Leadership and Communication", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS3103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G06", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G12", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "G14", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Friday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G15", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Friday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Monday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Monday", + "lessonType": "Recitation", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "06", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "G01", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Monday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Monday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G04", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G07", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "G10", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Friday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G11", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Friday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G05", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Tuesday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G08", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G09", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "G06", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Wednesday", + "lessonType": "Recitation", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to train students to be conversant in front-end development for Enterprise Systems. It complements IS2103 which focuses on backend development aspects for Enterprise Systems. Topics covered include web development scripting languages, web templating design and component design, integrating with backend application, and basic mobile application development.", + "title": "Enterprise Systems Interface Design and Development", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS3106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RMI-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the main concepts of data engineering, which covers data pipeline, data organization, efficient analysis of large data volumes, distributed data storage (depending on the system architecture, e.g., multi-core systems, multiprocessor systems, clusters), distributed and parallel data analysis, and map / reduce techniques and their generalization to distributed query processing.", + "title": "Data Engineering", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS3107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students with a foundational understanding of marketing through digital media and technologies. Students will learn how marketing concepts, market analysis and consumers\u2019 behavior are impacted by shifting technology and media landscape. The course will cover fundamental concepts in innovation, branding, customer development, search engine, social media, storytelling, display, retargeting, customer journey, lifetime value, public relation and other related areas. Case studies and hands on experience will be provided. At the end of the course, students will be better equipped to deliver coherent digital marketing strategies.", + "title": "Digital Media Marketing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS3150", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Business resources include employees, business processes, procedures, organisational structure, and computer systems. The efficiency and effectiveness of an organisation in carrying out its business can be enhanced if managers and employees are given the support to plan, monitor and control the business. Enterprise Resource Planning (ERP) supports the use of all resources in an organisation. This course provides an overview of the rationale for having ERP, ERP functionality (such as manufacturing, finance, distribution and human resource management), ERP systems and ERP implementation (planning, product selection, implementation and optimization), and business analytic features on integrated transactional and analytics platforms.", + "title": "ERP Systems with Analytics Solutions", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS3221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital business platforms are a successful foundation on which organisations are reinventing their businesses. In this module, students will learn both theoretical and practical insights into the dynamics of creating, implementing and competing with digital platforms, focused on three pillars. The course will first examine the strategic and economic foundations of digital platforms (Pillar 1), and their prominent rise in the digital transformation of industries, business models, products and services. The course will then explore the business architecture and strategy (Pillar 2) and IT/data architecture and strategies (Pillar 3) that enable platforms and their successful evolution. Topics include platform principles", + "title": "Digital Platform Strategy and Architecture", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS3240", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to the concepts and principles of technology entrepreneurship. Students will learn about the current developments in entrepreneurship, worldwide and in Singapore and be taught to use a variety of tools, techniques and frameworks for the development and analysis of entrepreneurial businesses. Students taking the module should have an interest in entrepreneurship and a desire to be an entrepreneur at some stage in their lives.", + "title": "Principles of Technology Entrepreneurship", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS3251", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The proliferation of mobile phones offers unprecedented opportunities for enterprise to empower their employees with computing and communicating capabilities on the \nmove. It also offers a rich interactive experience for customers. Programming skills for mobile apps in enterprise environment is therefore an increasingly important asset for the IT workforce. This course will teach mobile phone programming in a client-server setting. In addition to developing user interface, the students will also learn how to write mobile apps to communicate with servers via HTTP, making synchronous and asynchronous requests, as well as dealing with common payload formats such as JSON and HTML.", + "title": "Mobile Apps Development for Enterprise", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS3261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module enables students to apply the computing knowledge and skills that they have acquired in class to industry internships in companies/organizations. Students in industry internships will be jointly guided by supervisors from both the companies/organizations and the school Their progress on internship projects will be monitored during internship period, and their performance will be assessed through letter grades at the end of the internship. The internship duration will be 6 months, consisting of both a full-time and part-time component. Full-time internship attachment will last for 3 months during the NUS vacation period, and will continue on a part-time basis", + "title": "Industry Internship Programme", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "IS4010", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the management of IS projects. Various managerial issues pertaining to the evaluation and selection of information systems projects, choice of project organization, planning, scheduling and budgeting of project activities and basic principles in control and project auditing will be covered. The students will also learn how to use practical techniques and tools, such as network models (PERT/CPM), simulation, and state-of-the-art project management software, in scheduling project activities. This module serves as a good introduction to information systems project management for students who may participate in coordinating and managing large-scale information systems projects.", + "title": "IT Project Management", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4100", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students are required to work (in groups) through a complete Systems Development Life Cycle to develop a business information system based on techniques and tools taught in IS2102, IS2103 and IS3106. They will also sharpen their communication skills through closer team interactions, consultations, and formal presentations. Emphasis will be placed on architecture design and implementation, requirement analysis, system design, user interface design, database design and implementation efficiency. Students will be assessed based on their understanding and ability to apply software engineering knowledge on a real-life application system, as well as their communication skill.", + "title": "Information Systems Capstone Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "IS4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "AIoT (Artificial Intelligence of Things) is the integration of Artificial Intelligence (AI) technologies with Internet of Things (IoT) infrastructure. AIoT aims to create systems that can complete a set of tasks or make decisions autonomously and intelligently through learning from data. Such smart systems can drive efficiency, effectiveness and innovation across a wide range of industries such as retail, logistics and transportation. Students will learn how to build IoT infrastructure with edge computing and cloud computing architectures for collecting sensor data and to apply basic machine learning algorithms to these data to train models that power smart systems.", + "title": "AIoT Solutions and Development", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4151", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad introduction to the field of affective computing, focusing on the integration of psychological theories of emotion with the latest technologies. Students can look forward to learning about contemporary theories of emotion, empathy, emotion regulation; automated emotion recognition from video, speech, and text; automated affect generation in human-computer interaction; commercial affective computing technologies, including potential interaction with local startups. Students will work in groups on a semester-long project that may take several forms, such as the incorporation of emotion recognition into a prototype system, or critical evaluation of commercial affective computing technologies.", + "title": "Affective Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4152", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the governance in the use and deployment of Information Technology in an organisation. It covers the process of strategic planning to align IT strategies with business strategies. The elements of governance include Security Policy, Quality Management, Business Continuity Management, Risk Management, Project and Program Management, Returns on Investment of IT and Operational Management.", + "title": "IT Governance", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to provide students with the fundamentals of financial market systematic trading. It covers the difference between discretionary and systematic systems, and the advantages and the need for systematic systems. The module will emphasize the design and development of both the trading strategies and the trading systems with the help of technical analysis and programming languages. It will focus on rule-based systematic trading, both manual and through algorithms. It will also cover investor biases and how to overcome those biases through data and systems to make better trading decisions and to have proper risk management.", + "title": "Systematic Trading Strategies and Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this course is to educate the students on how and to what extent can information technologies (IT) support the financial services industry, in order for a student to seek a career in this industry sector. It is designed to\nprovide the students with a broad overview and thematic case studies of how each major business segment of the financial services industry employs IT to maintain a competitive edge, and to comply with laws and regulations.", + "title": "Information Technologies in Financial Services", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main focus of this module is on the managerial aspects of information security. This module prepares the students for their future roles as IS managers or IS security professionals. Through this module, students will appreciate the challenges of managing information security in the modern business organization. Topics include risk management, security policies and programmes, managing the security function, and planning for continuity.", + "title": "Information Security Management", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4231", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies important legal issues relevant to professionals in IT-intensive industries or organizations. Among the topics to be addressed are freedom of speech online; intellectual property of digital products and content; data privacy, IT service contracts, and regulation on e-commerce and intermediary, such as online marketplace and platform. The goal of the course is to provide basic background in these issues for non-lawyers. The course enables IT professionals to better handle their legal resources and better understand their commercial opportunities and challenges. Real-world cases will be used to demonstrate the applicability of the law in IT industries.", + "title": "Legal Aspects of Information Technology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Monday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Organisations today need to ensure that they are aware of and ensure that they comply with relevant laws and regulations. Technology is also utilised to automate and enhance the regulatory monitoring and reporting of compliance. This module provides an opportunity for students to have a comprehensive understanding of the frameworks and standards relating to regulatory compliance and also a good understanding of how technology is applied, for example in financial sector, for compliance.", + "title": "Compliance and Regulation Technology", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the knowledge and skills to manage the modern hybrid multi-cloud IT infrastructure as the backbone of the systems and processes that supports a company\u2019s business strategy, technological innovation ability, and digital capabilities. Students will also learn the key components and needs of the modern cloud infrastructure so as to be able to design, deploy and manage cloud services and enterprise solutions on it.", + "title": "Cloud Services and Infrastructure Management", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Friday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cybersecurity threat is the shadow of information technology advancement and can penetrate any digital business sectors and processes. This course equips students with the cross-disciplinary knowledge base and capabilities to make strategic decisions in managing cybersecurity risks in various organizational and business contexts where they will play a role as IT professional, program manager, executive officer, or policy maker, etc. Topics include cybersecurity investment, outsourcing, and information sharing; cybersecurity vulnerability management; cybersecurity enforcement and intermediary liability. Case studies cover digital ecosystems including e-commerce, banking, healthcare, internet and cloud service providers, and software industry.", + "title": "Strategic Cybersecurity", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Business Intelligence (BI) is the application of data base and machine learning technologies in business. It enables organisations to improve decision making, enhance strategic position, and maintain competitive advantage. This module will introduce students to the essentials of BI, placing emphasis on database and machine learning technologies for building effective BI Systems. Students will learn about data warehousing and data visualisation, as well as the various tools that can be employed for intelligent business decision making. BI cases will be used to highlight the issues and problems encountered by organisations as they developed and implemented BI systems.", + "title": "Business Intelligence Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The world of online social media is of much interest for academic, social and e-commerce studies. This module is about the analysis of social media networks. The module will cover the characteristics of social media networks, the analysis software and methods, case studies and projects of network analysis.", + "title": "Social Media Network Analysis", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad coverage of intelligent systems in various industries (through examples of real world applications) and the tools and techniques used to design such intelligent systems (e.g. data warehousing, data mining and optimization). Applications from several domains such as finance, healthcare, transportation, web and retail are discussed. The use of technology to solve business problems (such as real-time optimization, personalization, trend discovery and unstructured data analysis) are described. Software tools to apply these techniques are introduced. The emphasis of the course is on modelling, conceptual understanding of techniques, and applications to business problems.", + "title": "Intelligent Systems and Techniques", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4242", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aims and objectives are: (1) to provide an overview of Information Systems (IS) consulting and to develop a more specific understanding of the practice; (2) to provide students with the knowledge of management and IS consulting practices; and (3) to give students the opportunity to be involved in a field consulting project.", + "title": "Information Systems Consulting", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for students who want to design and manage smart systems that use Artificial Intelligence (AI) and Machine Learning (ML) to improve product and service offerings in enterprises and businesses across different industries. It covers the use of an AI governance framework to ensure the design and deployment of intelligent systems protect individual and organisational interests such as transparency, safety, well-being, fairness, privacy and security. Application areas include AI/ML in smart hospitals, autonomous vehicles, intelligent energy management with edge AI for business and homes, and many more.", + "title": "Smart Systems and AI Governance", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Metaverse consists of many different building blocks from vastly different domains of computing technologies. As such, building business innovations for the metaverse requires innovators to understand how to bring out the best of each domain and synergize them into a cohesive and sustainable venture. This module will focus on six key areas of Artificial Intelligence, Blockchain, Augmented and Virtual Reality, User Experience Design, Cloud and Sensor technologies to create the Metaverse. Students will gain a deep understanding of the essential pieces from each domain to be well-positioned to innovate in this exciting new universe of metaverse business opportunities.", + "title": "Digital Business and the Metaverse", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4248", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module to provide students with hands-on, problem-based experience in Information Technology (IT) design to tackle real-world healthcare challenges. Healthcare systems worldwide are in the midst of changing their core strategies, financing and operational care processes. For instance, reactive sick care is replaced by proactive efforts to keep people healthy and out of the hospital. Large-scale healthcare systems are also being redesigned to promote continuity of care. In this module, students can learn how to provide workable IT solutions to address contemporary healthcare issues and challenges.", + "title": "IT-enabled Healthcare Solutioning", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4250", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will teach students how to create and design innovation-driven business models through both process innovation and product innovation. The focus is on businesses that are enabled and driven by digital innovations. The module contents will cover disruptive technologies, cross-channel business model development, mobilization of networked business, canvas drawing, social media-based product and marketing innovation, etc. In particular, students will learn how to identify technology innovation opportunities and manage innovation process , enabling them to appreciate the value of IT ecosystems and platform-based business operations.", + "title": "Designing IT-enabled Business Innovations", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4261", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for students who wants to learn the skills and techniques to manage effectively digital products from cradle to grave. It covers the core aspects of digital product management, from product strategy, planning and development to product launch and support. It will address issues of managing an evolving digital product over its life cycle, and using data from customer insights and competitive analysis for ongoing product iterations. Case studies and hands on experience will be provided. At the end of the course, students will be able to effectively execute the product manager\u2019s role in managing digital products.", + "title": "Digital Product Management", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4262", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Acceleration of the pace of digital transformation and adaption to business changes have caused IT organizations to integrate Agile methods and DevOps with traditional IT development and operations. This module introduces students with essential concepts of Agile IT and DevOps for participation in agile IT business transformations. Topics covered shall include waterfall\nvs. agile, integrated agile methods (Xtreme Programming, Scrum), DevOps, hybrid-IT, Platform as a service, monolithic vs. microservice architecture, containerization, toolchains, open innovations and case studies. Banking industry services will be used to enable students to practise concepts taught in this course.", + "title": "Agile IT with DevOps", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Friday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital currencies like Bitcoins have created a different, faster and potentially cheaper way of monetary transfers. The technology behind Bitcoins, namely Blockchain or more broadly the distributed ledger system, has brought big impact on financial services. A blockchain is a distributed database of ownership records (public ledger) of all transactions. A blockchain is irrevocable once it is committed into the system. Through this module, students will learn about blockchain and distributed ledger technologies among others.", + "title": "Blockchain and Distributed Ledger Technologies", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-MPH", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to new platforms in the financial industry to meet existing needs, or to reach out to new markets. There will be an emphasis on platforms to help end consumers through transactions, payment systems, and loans. Students will get an appreciation for innovation in FinTech, and understand the changing landscape. They will also have practice using Big Data-based credit scoring.", + "title": "IT-mediated financial solutions and platforms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS4303", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What steps should enterprises take so as to manage and capitalize on them to drive enterprise\ntransformation? Is it possible to continuously transform enterprises with the latest technologies\nwithout wreaking havoc to the business operations? This module first goes through the foundational\nconcepts of digital transformation. Using these concepts, students then extrapolate on existing\ntechnological and business trends and needs for an enterprise (real or fictional), eventually producing\nboth short and long term plans of some duration (say, three to five years) for the enterprise's\nmanagement and utilization of digital systems.", + "title": "Digital Transformation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital platforms have disruptively transformed the way\nwe live, operate, and interact. Commercially, digital\nplatform companies have gained legendary success with\ntheir new business models in various industries. The\nmodule consists of four broad aspects, namely, (a) the\nfoundational theories in platform economics, (b) how to\nstrategize for and measure successful digital platform\nventure, (c) industry-level platforms and how businesses\ncan develop complementary technologies within a platform\necosystem, and (d) API management.", + "title": "Platform Design and Economy", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Enterprise architecture is a necessary element in business\nplanning, strategy and execution. It is a conceptual\nblueprint that defines the IT structure and operation of\nbusiness. This module provides a broad yet in-depth\nunderstanding of enterprise architecture design and\nimplementation. The module covers a comprehensive\ntopics of enterprise architecture, including methods and\nframeworks, governance, description language, modelling,\nviewpoints and visualisations, and analysis of architecture.", + "title": "Enterprise Architecture", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth understanding of how\ncompanies could engage with various stakeholders on\ndigital platforms. It goes beyond merely the use of various\ndigital tools to reach and connect to stakeholders but\nquestioning how an enduring digital engagement could be\nestablished with them. Students can expect to gain a very\ngood understanding of how digital tools could be utilized\neffectively for various business and organisation purposes.\nTopics covered in this module include digital engagement\nstrategy, digital branding, digital user journal, identity\nmanagement and personalization, digital crisis\nmanagement, privacy and ethical issues among others.", + "title": "Digital Engagement", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers intelligent systems solutioning with human-centred machine learning frameworks and human interactions with AI technologies. Intelligent systems have the capacity to gather and analyse data, learn from experience, and adapt according to external stimuli. The module applies human-centred machine learning frameworks to develop novel solutions that synergise human needs with AI capabilities. Students will get hands-on experience in prototyping solutions with a human-centred AI approach. The module will also cover how human-centred AI can be used to solve existing business needs, shape business strategy or create new business opportunities.", + "title": "Human-Centred Intelligent Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-23", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding and practical tips\non how companies could venture into the global markets.\nStudents would learn how a typical High-tech\nmultinational organises itself, conducts its R&D, formulate\nthe global product launch, and build its business globally.\nThis would be followed by how a Singapore/Asian\ncompany, could expand its business globally. Case studies\nwould cover both high-tech and non-technology sectors\nwith IT as enabler. Students can expect to gain an\nunderstanding on highly-matrix organisational structures,\nbasics of global product launch, as well as practical tips on\nhow their own future entrepreneurial start-ups could\npenetrate the global markets.", + "title": "Strategising for Global IT-enabled Business Success", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Enterprise today needs to be able to identify and assess the impact of the technology risk on the resilience of the enterprise to allow them to respond to these issues in a cost-efficient, effective and sustainable way. The module\nconsists of three broad aspects, namely, (a) identification and understanding of the drivers of technology risk & resilience, (b) the foundational elements of technology risk & resilience framework, and (c) how enterprises implement technology risk and cyber resilience framework in the real world.", + "title": "Technology Risk & Cyber Resilience", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5008", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Focusing on the financial sector and with the technological solutioning in mind, students can look forward to learning contemporary issues in the financial technology space. The module will investigate the integration of financial domain knowhow and advanced technologies, such as the algorithmic trading for the financial market. Students are advised to look into content detail for specific\noffering during the year.", + "title": "Topics in Financial Technology Solutions", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5009", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the challenges, risks and issues of managing today\u2019s software projects with\nthe objective of identifying the most relevant set of tactics and strategies. Students will read selected\npapers from journals that provide evidence of tested approaches that have and have not worked.\nTopics covered include managing trade-offs between time, costs, scope and quality, managing\nmultiple levels of users from the senior managers and sponsors to the operational and IT users, issues\narising from distributed e.g. distribution of work, insourced and outsourced projects e.g. vendor\ncommunication and managing iterative and agile projects e.g. cost management.", + "title": "Software Project Management", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines C-level perspectives of IT-relevant strategy and corporate governance. It\ncovers the importance of IT as a tool for business competitiveness and transformation. As IT is an\ninvestment, the deployment and governance of its use has to be an important management activity.\nThe module will focus on the development of business-centric IT strategy, management of\ninnovation and disruption and the evolving role of the CIO.", + "title": "IT Strategy and Governance", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the high level CEO/CIO perspectives of global IT project and vendor\nmanagement. It covers concepts, framework, and approaches to global project management. Global\nproject management is used broadly to cover activities related to global product development, global\nproject launch, global sourcing and outsourcing vendor management. Topics on global project organisation structure and governance, contract management, service level agreements, transition and\ntransformation management, relationship management, dispute resolution, performance monitoring,\nrisk management, and human resource implications will be covered.", + "title": "Global IT Project and Vendor Management", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The key concepts of entrepreneurship are first covered, giving students the necessary background\nknowledge and an opportunity to develop a tech startup venture as a team project. Following that,\nsessions are set aside for students to learn a wide range of issues about entrepreneurship by asking\nquestions and hearing first hand from people who are active in the startup eco-system as entrepreneurs or investors. The student would understand what is involved in building a high tech\nstart-up company and know how to develop an entrepreneurial venture. He would also be familiar\nwith the entrepreneurship eco-system in Singapore.", + "title": "Digital Entrepreneurship", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5116", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of the module is to provide a deep understanding of key digital government concepts and issues such as: digital policies, integration and whole-of-government approach, management of digital government projects, public-private partnerships, public sector innovation, security and privacy, open government data, social media in government, digital democracy, and smart cities. The module also covers emerging trends in digital government such as the application of cloud, IoT, artificial intelligence, and blockchain technologies.", + "title": "Digital Government", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5117", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of the course is to bridge the divide between technical skills and business applications. Through learning-by-doing, students will engage in a series of guided group projects, and a final semester project of their own design. Lectures will cover practical skills using the latest tools and techniques, as well as discuss business cases and applications. The course will emphasize on the applied nature of data analytics by covering a breath of techniques including predictions, unsupervised, supervised, and semi-supervised learning, social media analytics, text mining, web mining, and image processing.", + "title": "Hands-on with Applied Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5126", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to enable students to understand the interplay between organisational culture,\nstructure, people, strategy, and technology in the innovation process. Students will learn how to use\nsystems dynamics concepts to perform modelling and simulation of complex digital innovation\nsystems. They will also learn how to apply design thinking tools and innovation frameworks to\ndevelop and manage digital innovations. The role of IT in enabling innovations will be emphasized\nthroughout the course. Numerous case studies of successful digital innovations will also be\ndiscussed.", + "title": "Digital Innovation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5128", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advances in information technology (IT) are driving the transformation and success of modern organisations. Along with these advances, we see increasing cyber threats and risks that must be appropriately managed by the organisation. This course will prepare IT leaders to manage these challenges through understanding how to build a cybersecurity strategy and program that not only implements technical safeguards, but also employs effective policy, other controls and risk management practices to make the organisation resilient to threats and disruption.", + "title": "Information Security Policy and Management", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5151", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data driven decision making improves productivity and profitability of businesses. This module teaches students decision making techniques based on data analysis. Various Machine Learning (ML) techniques for data analysis will be presented. The module also discusses aspects related to building an effective model for decision making such as: (i) methods for data preparation such as feature selection, data reduction and sample selection, (ii) metrics for determining a good model, (iii) visualization of model performance, (iv) overfitting and its avoidance. Examples of practical business decision making problems will be used to illustrate the merits of the ML techniques presented.", + "title": "Data-Driven Decision Making", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5152", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "AIoT (Artificial Intelligence of Things) is the integration of Artificial Intelligence (AI) technologies with Internet of Things (IoT) infrastructure. AIoT aims to create systems that can complete a set of tasks or make decisions autonomously and intelligently through learning from data. Such smart systems can drive efficiency, effectiveness and innovation across a wide range of industries such as retail, logistics and transportation. Students will learn how to build IoT infrastructure with edge computing and cloud computing architectures for collecting sensor data and to apply basic machine learning algorithms to these data to train models that power smart systems.", + "title": "AIoT Solutions and Development", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5451", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Monday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0337", + "day": "Friday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad introduction to the field of affective computing, focusing on the integration of psychological theories of emotion with the latest technologies. Students can look forward to learning about contemporary theories of emotion, empathy, emotion regulation; automated emotion recognition from video, speech, and text; automated affect generation in human-computer interaction; commercial affective computing technologies, including potential interaction with local startups. Students will work in groups on a semester-long project that may take several forms, such as the incorporation of emotion recognition into a prototype system, or critical evaluation of commercial affective computing technologies", + "title": "Affective Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS5452", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will consist of a series of research seminars on current research in the information systems and analytics area. These seminars serve to introduce the students to the discipline and its latest research topics, such as computational social science. The module is conducted fortnightly during the semester. Students can expect to get an insightly understanding of the information systems and analytics research area.", + "title": "Topics in Information Systems and Analytics Research", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "IS6000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a practical course in applying the theories of case study research methodology. Lectures will cover in-depth the advantages and pitfalls of conducting research with the case study approach. Along with theoretical discussions, students have to put theory to practice by conducting a sizable case study research project, with intensive work over a 3-month period, in groups of 3 to 4 members. Each team will have a chance to present the research questions, to revise these questions and present a research plan of how evidence will be collected and analysed, and to prepare the final report.", + "title": "Qualitative Methods for IS Research", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS6001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the essential methods in quantitative IS research. It will start with a discussion of measures and data collection. It will then go more in-depth into the experimental methods, design, and analysis using ANOVA and variants. Subsequently, survey design and analysis including regression, moderation, mediation, factor analysis, and structural equation modeling will be covered. Secondary data analysis using discriminant analysis, logistic \nregression, Bayesian network, clustering, and basic text processing will also be discussed. The course will conclude with discussion on review and critiquing of quantitative research.", + "title": "Quantitative Methods for IS Research", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS6002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide students with in-depth treatment of theoretical pursuits pertaining to several streams of IS research. These may include media richness theory, group support systems, adoption/diffusion of technology, decision support systems, Internet commerce, IT and education. It will lay the foundation and visit important concepts relating to theoretical models, examine the roles of theoretical models and frameworks in guiding empirical studies, review empirical studies in light of the construction, improvement, and adaptation of theoretical models and frameworks, and discuss links between theories and research methods.", + "title": "Contemporary Theories for IS Research", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS6003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Ever since the beginning of research into information systems, economics has been recognized as one of the most important reference disciplines. Economics has made useful contributions to the understanding of information systems research and applications. Some examples include the theory of information, decision analysis, game theory, and econometric methodologies. The objective of this course is to equip graduate students with econometrics research methodologies pertaining to the analysis of IT/IS, and to help students understand emerging IS-economics and econometric issues.\nSpecific learning objectives of this course are as follows:\n\udbc0\udc83 Understand economic issues and theories associated with decision makers, goals, choices and relationship between choices and outcomes of IS/IT artifacts\n\udbc0\udc83 Understand econometrics modeling and estimation methods, including ordinary least squares, generalized least squares, maximum likelihood estimation, instrumental variables estimation simultaneous equation models, fixed and random effects models, discrete choice models, hierarchical Bayes models, etc.", + "title": "Econometrics for IS Research", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS6004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will consist of a series of research seminars on current and on-going research in the information systems area. These seminars can be given by graduate students, faculty members and visitors. Through active discussions at the seminars, students will become familiar with current research topics as well as other research issues, such as methodologies and methods. Students will also acquire research presentation and discussion skills. Students must attend and participate to pass the module.", + "title": "Seminars in Information Systems I", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "IS6005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is designed to equip research candidates with the knowledge and expertise to conduct high quality research in Information Systems. Through lectures, seminars, and project work, students will develop both conceptual and methodological skills that are critical to performing excellent IS research. Major topics covered include planning and measurement issues, qualitative approaches such as case study, ethnography, action research, and quantitative approaches such as survey, experiment, and experimental economics. Students are expected to submit a term paper at the end of the course.", + "title": "Information Systems Research", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS6100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers advanced topics in Machine Learning and Optimization that have been used in recent research in various areas within computing. Details of the techniques and multiple applications shall be covered in the course. It aims to equip students with working knowledge of the techniques to enable them to apply them in their own research, for example in computational social science.", + "title": "Topics in Machine Learning and Optimization", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS6101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 36, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics will be of an advanced information systems nature and will be selected by the Department.", + "title": "Topics in Information Systems Ii", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS6102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The information systems field has been energised by a flurry of recent activity that centers on the use of design research as an important research paradigm. This has been widely adopted in the IS (Information Systems) community as Design Science Research (DSR). In this research oriented class, we will introduce students to the\nDSR area, including its foundation, techniques and exemplars. Various techniques and methods will be discussed and debated.", + "title": "Design Science Research in Information Systems", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IS6103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The internship provides students with an opportunity to apply sociological knowledge to the workplace. In particular, students learn about the challenges of\nworkplace situations, and reflect upon how practising sociology may provide clarity to problems encountered. Internships must take place in organizations or companies, be relevant to sociology, consist at least 120 hours for SC3550 (or 240 hours for ISC3550), and be approved by the Department to be considered for credit. This module is not compulsory and will be credited as a Major Elective or a\ncombination of Major Elective and Unrestricted Elective.", + "title": "Extended Sociology Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ISC3550", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops skills and mindsets for integrative thinking. Students will be organised into multidisciplinary teams and assigned a design brief for a mid-sized building in tropical or subtropical conditions. Assessment will be based on the degree to which performance targets, set by the group at the start of the process, are achieved and supported.", + "title": "Integrated Studio Project 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ISD5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1759", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1759", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops skills and mindsets for integrative thinking. Students will be organised into multidisciplinary teams and assigned a design brief for a mid-sized neighbourhood or precinct in tropical or subtropical conditions. Assessment will be based on the degree to which performance targets, set by the group at the beginning of the process, are achieved and supported.", + "title": "Integrated Studio Project 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ISD5102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks out issues and metrics of sustainability relevant to tropical and subtropical conditions. Underlying this is the question of performance; who defines it and what it means at local and global levels. Of these, vernacular solutions and indigenous knowledge speak of climate and context, shaping demand for resources and occupant well being. Technology and system-driven approaches dwell on the efficacies of resource and waste management. Integration of the two, selectively and critically, is critical to the future Green buildings in Asia. This module will examine from first principles the constituents of Green performance; it will contextualise these for tropical and subtropical conditions, addressing urban, suburban and rural typologies that are important to Asia.", + "title": "Green Buildings in the Tropics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ISD5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2 + ], + "venue": "TP-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2 + ], + "venue": "TP-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2 + ], + "venue": "TP-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2 + ], + "venue": "TP-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 2 + ], + "venue": "TP-GLR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2 + ], + "venue": "TP-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2 + ], + "venue": "TP-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Energy produced from the burning of fossil fuels, resulting in greenhouse gas emissions (GHG), is recognised as one of the primary causes of global warming. Energy, viewed as tonnes of GHG emissions, fundamentally alters the way in which we conceptualise buildings and cities. It demands a shift from quest for systemic energy efficiency to questions of how energy is produced, transmitted, utilised and reutilised. It extends beyond management of operational energy on-site to include energy consumed off-site; for instance, the sourcing of products, the assembly and disassembly of materials and building systems. This module paints the broad picture of energy in its various forms and guises, as it pertains to global warming, in the context of drawing-board decisions on buildings and neighbourhoods.", + "title": "Energy and Ecology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ISD5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 3 + ], + "venue": "TP-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 3 + ], + "venue": "TP-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 3 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 3 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 3 + ], + "venue": "TP-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 3 + ], + "venue": "TP-GLR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 3 + ], + "venue": "TP-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 3 + ], + "venue": "TP-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 3 + ], + "venue": "TP-GLR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 3 + ], + "venue": "TP-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The accelerated, often rampant, growth of cities in Asia alters the quality of their inhabitant\u2019s lives, their ecological footprints and community bonds. Coping with urban growth affects not only those in the city; it affects also those in agricultural belts in rural peri-urban areas which are increasingly threatened by urban sprawl. \nThis module investigates various historical and economic forces shaping urban developments, identifies the elements of urbanism that have a direct impact on the environment (such as transport infrastructure) and offers insights into how sustainability principles can lead to new paradigms for urban rejuvenation and growth.", + "title": "Principles of Sustainable Urbanism", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ISD5105", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4 + ], + "venue": "UTSRC-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4 + ], + "venue": "UT22-07-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4 + ], + "venue": "UTSRC-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4 + ], + "venue": "UTSRC-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4 + ], + "venue": "UT22-07-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4 + ], + "venue": "ERC-SR9CAM", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4 + ], + "venue": "UTSRC-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4 + ], + "venue": "UT22-07-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4 + ], + "venue": "ERC-SR9CAM", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4 + ], + "venue": "TP-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Singapore experience over four decades \u2013 in managing resources, waste and infrastructure, balancing environment, economy and community \u2013 has been much reported and discussed. It is generally acknowledged that there is much to learn from Singapore\u2019s success and that lessons learnt here might be a development model for parts of Asia. This module covers the many facets of the Singapore experience, probing its success and scalability. Also covered here will be other models, relevant to rural conditions that are prevalent in much of Asia, situations where the challenges of social equity drive the process.", + "title": "Sustainability Models and Blueprints", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ISD5106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1 + ], + "venue": "UT22-07-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "SDE2_ER4-5", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1802", + "weeks": [ + 1 + ], + "venue": "SDE1-CL3", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1 + ], + "venue": "SDE2_ER4-5", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1802", + "weeks": [ + 1 + ], + "venue": "SDE4-EXR1-2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1 + ], + "venue": "SDE1-SR5-6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1 + ], + "venue": "ERC-SR10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "UT22-07-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1 + ], + "venue": "SDE2_ER4-5", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "UT22-07-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length and take place within organisations or companies located in Singapore or Southeast Asian countries. Internships with organisations or companies in Southeast Asian countries will occur during the semester-in-SEA programme at the SEASP. \n\n\n\nAll internships are vetted and approved by the SEASP, have relevance to the major in Southeast Asian Studies, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the department.", + "title": "Extended Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ISE3550", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the South Asian Studies Programme, have relevance to\nthe major in South Asian Studies, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited nternships will be advertised at the beginning of each semester. In exceptional cases, internships proposed by students may be approved by the department.", + "title": "Extended South Asian Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ISN3550", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches how to build Intelligent Systems that solve problems by reasoning using captured knowledge and data. Example applications include, question answering systems such as IBM Watson, personal assistants such as Amazon\u2019s Alexa and Game-playing systems such as AlphaGo Zero.", + "title": "Intelligent Reasoning Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "11", + "moduleCode": "ISY5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Lavendar", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Innovation_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Innovation_II", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Lavendar", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3, + 4 + ], + "venue": "Innovation_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Innovation_I", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Lavendar", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Inspire_Theatre", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Innovation_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8, + 9, + 10, + 11 + ], + "venue": "Integrity", + "day": "Saturday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-28", + "end": "2023-05-06", + "weeks": [ + 1, + 2, + 3, + 4, + 12, + 14, + 15 + ] + }, + "venue": "Horizon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 7 + ], + "venue": "Integrity", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 7 + ], + "venue": "Integrity", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches how to build Intelligent Systems that solve problems by reasoning using captured knowledge and data. Example applications include, question answering systems such as IBM Watson, personal assistants such as Amazon\u2019s Alexa and Game-playing systems such as AlphaGo Zero.", + "title": "Intelligent Reasoning Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "11", + "moduleCode": "ISY5001G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1130", + "weeks": [ + 6 + ], + "venue": "Lavendar", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-06", + "end": "2023-05-06" + }, + "venue": "Horizon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches how to design and build systems that make decisions by recognising complex patterns in data. Examples are robotic systems and smart city applications that take as input diverse sensor data streams. These systems will utilise the latest pattern recognition, machine learning and sensor signal\nprocessing techniques.", + "title": "Pattern Recognition Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "13", + "moduleCode": "ISY5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-02", + "end": "2022-09-17", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12 + ] + }, + "venue": "Horizon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-13", + "end": "2022-09-27" + }, + "venue": "Innovation_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-14", + "end": "2022-09-28" + }, + "venue": "Innovation_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-15", + "end": "2022-09-29" + }, + "venue": "Innovation_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-12", + "end": "2022-09-26" + }, + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-24", + "end": "2022-10-22", + "weeks": [ + 1, + 3, + 4, + 5 + ] + }, + "venue": "Momemtum", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-16", + "end": "2022-09-23" + }, + "venue": "Innovation_I", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches how to design and build systems that make decisions by recognising complex patterns in data. Examples are robotic systems and smart city applications that take as input diverse sensor data streams. These systems will utilise the latest pattern recognition, machine learning and sensor signal\nprocessing techniques.", + "title": "Pattern Recognition Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "13", + "moduleCode": "ISY5002G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-19" + }, + "venue": "Integrity", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the skills required to build Intelligent Systems that will help control the advanced robotic systems, autonomous vehicles and industrial automation that will be central to Industry 4.0.", + "title": "Intelligent Robotic Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "13", + "moduleCode": "ISY5003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7, + 8, + 9, + 10 + ], + "venue": "Integrity", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-02", + "end": "2022-09-17", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12 + ] + }, + "venue": "Momemtum", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-08", + "end": "2023-02-22" + }, + "venue": "Integrity", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-06", + "end": "2023-02-20" + }, + "venue": "Integrity", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5, + 6 + ], + "venue": "Integrity", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-07", + "end": "2023-02-21" + }, + "venue": "Integrity", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-09", + "end": "2023-02-23" + }, + "venue": "Integrity", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the skills required to build Intelligent Systems that will help control the advanced robotic systems, autonomous vehicles and industrial automation that will be central to Industry 4.0.", + "title": "Intelligent Robotic Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "13", + "moduleCode": "ISY5003G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "Integrity", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the skills and techniques required to build Intelligent Sensing Systems that are able to make decisions based on visual and audio sensory signals, including human speech. Example systems include crowd monitoring, facial recognition, medical sensing, robot and vehicle control.", + "title": "Intelligent Sensing Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "ISY5004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Innovation_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7, + 9 + ], + "venue": "Innovation_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Ambition_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7, + 9 + ], + "venue": "Innovation_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Ambition_II", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Innovation_II", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Ambition_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7, + 9 + ], + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Ambition_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Beacon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-05-06", + "weeks": [ + 1, + 2, + 5, + 6, + 7, + 8, + 9, + 14, + 15, + 17, + 18 + ] + }, + "venue": "Integrity", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Horizon", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Integrity", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Horizon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Horizon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Ambition_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Integrity", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Horizon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Integrity", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Integrity", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Horizon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the skills and techniques required to build Intelligent Sensing Systems that are able to make decisions based on visual and audio sensory signals, including human speech. Example systems include crowd monitoring, facial recognition, medical sensing, robot and vehicle control.", + "title": "Intelligent Sensing Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "ISY5004G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Integrity", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Integrity", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will teach how to build intelligent software agents that can act on behalf of, and replicate the actions of, humans in commercial and business transactions as well as automate business processes. Example systems include intelligent personal assistants, intelligent shopping agents as well as intelligent agents performing robotic process automation.", + "title": "Intelligent Software Agents", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "ISY5005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 13 + ], + "venue": "Innovation_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Horizon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Horizon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "Frontier", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 13 + ], + "venue": "Innovation_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 12 + ], + "venue": "Momemtum", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "Frontier", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Horizon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 13 + ], + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 12 + ], + "venue": "Momemtum", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 13 + ], + "venue": "Innovation_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Blue_Ocean", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 4 + ], + "venue": "Momemtum", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-04-08", + "end": "2023-05-06", + "weeks": [ + 1, + 2, + 4, + 5 + ] + }, + "venue": "Ambition_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Horizon", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Integration", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-05", + "end": "2023-01-05" + }, + "venue": "Integrity", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-14" + }, + "venue": "Momemtum", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Horizon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8, + 9 + ], + "venue": "Interaction", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Integration", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Influence", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-06", + "end": "2023-01-06" + }, + "venue": "Integrity", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-25", + "end": "2023-02-25" + }, + "venue": "Integrity", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 4 + ], + "venue": "Momemtum", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Horizon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Horizon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-04", + "end": "2023-01-04" + }, + "venue": "Integrity", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Influence", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will teach how to build intelligent software agents that can act on behalf of, and replicate the actions of, humans in commercial and business transactions as well as automate business processes. Example systems include intelligent personal assistants, intelligent shopping agents as well as intelligent agents performing robotic process automation.", + "title": "Intelligent Software Agents", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "ISY5005G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Horizon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-01", + "end": "2023-05-01" + }, + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-06", + "end": "2023-05-06" + }, + "venue": "Ambition_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will enable the students to put into practice the skills learned during their Masters studies. They will gain valuable hands-on experience designing and bulding an Intelligent System to solve a real business or engineering problem.", + "title": "Capstone Project in Intelligent Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "ISY5007", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "0959", + "weeks": [ + 1 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "0959", + "weeks": [ + 2 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the skills and techniques required to build Intelligent Sensing Systems that are able to make decisions based on visual and audio sensory signals, including human speech. Example systems include crowd monitoring, facial recognition, medical sensing, robot and vehicle control.", + "title": "Intelligent Sensing Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "ISY5400G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide basic IT understanding for students who have no or little knowledge of computing. It is structured to be the course for students who either plans to take only one course in computing in her entire undergraduate studies or wants to equip herself to do further more specialised computing studies. The module tries to be broad by touching on most aspects of computing. However, there will also be some technical depth in standard introductory computing topics. The lectures will be intensely complemented by Web exploring activities.", + "title": "Introduction to Computing", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT1001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental concepts of programming using scripting and compiled programming languages in Python and C, with emphasis on electrical engineering applications. It lays the foundation of\ncomputing in electrical engineering. Topics include problem solving by computing, writing pseudo-codes, problem formulation and problem solving, program development, coding, testing and debugging, fundamental\nprogramming constructs (variables, types, expressions, assignments, functions, control structures, etc.), fundamental data structures: arrays, strings and structures, simple file processing, visualization, and basic graphical\nuser interfaces.", + "title": "Introduction to Programming with Python and C", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT1007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to artificial intelligence, which is becoming a general purpose technology with impact in multiple areas in society, including in the sciences, arts, and business. Topics covered include a conceptual understanding of how artificial intelligence works, current strengths and weaknesses of artificial intelligence relative to humans, and the risks in deploying AIs. Students are expected to implement a simple AI proof-of-concept, and to analyse its potential benefits as well as its risks. \n\nStudents taking this course are expected to have prior exposure to programming and to be familiar with variables, types, operators, arrays, conditionals, loops, and functions.", + "title": "Artificial Intelligence: Technology and Impact", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT1244", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 600, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0426", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 600, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is to provide technological background in telecommunications, data communication and Internet technology to non-computer science students. It covers the basic concepts in communication and networking, and looks at Internet and telecommunication in detail. It also deals with some common applications in all these areas and looks at the possible convergence of various communication technologies. The impact on social and business areas as a result of the wide spread use of the fast changing communication technologies are also addressed.", + "title": "Network Technology and Applications", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to provide students with practical knowledge and understanding of basic issues and techniques in data management, with sufficient theory to understand the reasons for these techniques. Topics include conceptual (entity relationship model) and logical design (relational model) of database models, relational database management (data definition, data manipulation, SQL, visual interactive query interfaces), and their use in application development (in particular, data extraction from DBMS to spreadsheets application and data extraction to Web applications). Projects in developing a database within an application form an essential component of this module.", + "title": "Database Technology and Management", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT2002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s complex and rapidly evolving business landscape, technical leaders require both leadership and soft skills to deliver high-quality product and drive\ninnovation. In this module, students will be introduced to foundational theories of leadership and management. Students will develop self-awareness, emotional\nintelligence, resilience, perspective-taking, empathy and conflict management skills. They will also learn about the importance of psychological safety in teams. Students can expect readings, class presentations, interactions with guest speakers as well as participate in facilitated discussions and self-reflection exercises.", + "title": "Technical Management and Leadership", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "IT2900", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0203", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-VCRM", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is highly applied in nature with two important database topics, namely, traditional relational databases and SQL as well as non-traditional databases and NoSQL queries, to students outside School of Computing. Students are expected to know basic programming using Python.", + "title": "Data Management for Business Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT3010", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "9", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 16, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "04", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a broad understanding of the concepts, limitations, and applications of machine learning. Students will be exposed to the fundamental concepts of machine learning, including supervised learning (regression and classification), clustering, and methods such as SVM, neural networks, decision trees, and ensemble methods. Pitfalls and limitations such as overfitting, data leakage, bias, and ethical issues will be covered. This module also emphasizes on the applications of machine learning to problems in different domains (such as medicine, finance, engineering, science, business, social science) and is suitable for noncomputing students.", + "title": "Introduction to Machine Learning and Applications", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT3011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce non-computing students to the principles and concepts of software development at an accelerated pace. Students will be introduced to the basics of programming (control flow, code and data abstraction, recursion, types, OO), development methodology (ensuring correctness, testing, debugging), simple data structures and algorithms (lists, maps, sorting), and software engineering principles. Through hands on assignments and projects, students will learn good software development practices (documentation, style) and experience a typical software engineering cycle.", + "title": "Software Development Fundamentals", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": { + "start": "2022-08-12", + "end": "2022-09-30" + }, + "venue": "COM1-0206", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": { + "start": "2022-08-13", + "end": "2022-10-01" + }, + "venue": "COM1-0206", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2C", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2022-08-15", + "end": "2022-10-03" + }, + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "3B", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2022-08-19", + "end": "2022-10-07" + }, + "venue": "AS6-0426", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2022-08-10", + "end": "2022-09-28" + }, + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": { + "start": "2022-08-12", + "end": "2022-09-30" + }, + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1C", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-10-01" + }, + "venue": "COM1-B110", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1E", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-10-01" + }, + "venue": "AS6-0426", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1D", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-10-01" + }, + "venue": "AS6-0421", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "2B", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2022-08-15", + "end": "2022-10-03" + }, + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "2D", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2022-08-15", + "end": "2022-10-03" + }, + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "3D", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2022-08-19", + "end": "2022-10-07" + }, + "venue": "AS6-0426", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "2A", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2022-08-15", + "end": "2022-10-03" + }, + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "3A", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2022-08-19", + "end": "2022-10-07" + }, + "venue": "AS6-0421", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "3C", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2022-08-19", + "end": "2022-10-07" + }, + "venue": "AS6-0421", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": { + "start": "2022-08-10", + "end": "2022-09-28" + }, + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2022-08-10", + "end": "2022-09-28" + }, + "venue": "I3-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1A", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-10-01" + }, + "venue": "COM1-B112", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1B", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-08-13", + "end": "2022-10-01" + }, + "venue": "COM1-0120", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": { + "start": "2023-01-14", + "end": "2023-02-25" + }, + "venue": "COM1-0206", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": { + "start": "2023-01-13", + "end": "2023-02-24" + }, + "venue": "COM1-0206", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": { + "start": "2023-01-11", + "end": "2023-02-22" + }, + "venue": "COM1-0206", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2023-01-16", + "end": "2023-02-27" + }, + "venue": "COM1-0120", + "day": "Monday", + "lessonType": "Laboratory", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "1B", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-01-14", + "end": "2023-02-25" + }, + "venue": "COM1-0120", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "1C", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-01-14", + "end": "2023-02-25" + }, + "venue": "AS6-0421", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2023-01-11", + "end": "2023-02-22" + }, + "venue": "LT15", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1A", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-01-14", + "end": "2023-02-25" + }, + "venue": "COM1-B110", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-01-16", + "end": "2023-02-27" + }, + "venue": "COM1-0120", + "day": "Monday", + "lessonType": "Laboratory", + "size": 31, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce non-computing students to (a) the common principles and concepts in computer systems: abstraction, layering, indirection, caching, hierarchical naming, prefetching, pipelining, locking, concurrency; (b) the inner workings of a computing device, including hardware (CPU, memory, disks), operating systems (kernels, processes and threads, virtual memory, files), and applications (Web, databases).", + "title": "Computer Systems and Applications", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Laboratory", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": { + "start": "2022-08-12", + "end": "2022-11-18", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + }, + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 240, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces non-computing students to efficient computational problem solving in an accelerated pace. Students will learn to formulate a computational problem, identify the data required and come up with appropriate data structures to represent them, and apply known strategies to design an algorithm to solve the problem. Students will also learn to quantify the space and time complexity of an algorithm, prove the correctness of an algorithm, and the limits of computation. Topics include common data structures and their algorithms (lists, hash tables, heap, trees, graphs), algorithmic problem solving paradigms (greedy, divide and conquer, dynamic programming), and NP-completeness.", + "title": "Data Structures and Algorithms", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT5003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2022-10-14", + "end": "2022-12-02" + }, + "venue": "I3-AUD", + "day": "Friday", + "lessonType": "Recitation", + "size": 242, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-10-08", + "end": "2022-11-26" + }, + "venue": "E-Learn_C", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-10-08", + "end": "2022-11-26" + }, + "venue": "E-Learn_C", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-10-08", + "end": "2022-11-26" + }, + "venue": "COM1-B112", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": { + "start": "2022-10-05", + "end": "2022-11-23" + }, + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 242, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2022-11-14", + "end": "2022-11-28" + }, + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2022-10-10", + "end": "2022-11-28" + }, + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-10-08", + "end": "2022-11-26" + }, + "venue": "E-Learn_C", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2022-10-10", + "end": "2022-11-28" + }, + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": { + "start": "2022-10-08", + "end": "2022-11-26" + }, + "venue": "I3-AUD", + "day": "Saturday", + "lessonType": "Lecture", + "size": 242, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2022-11-14", + "end": "2022-11-28" + }, + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2022-10-10", + "end": "2022-11-28" + }, + "venue": "COM1-B111", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2022-10-10", + "end": "2022-11-28" + }, + "venue": "COM1-B111", + "day": "Monday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-11-19", + "end": "2022-11-26" + }, + "venue": "SR_LT19", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-12-03T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": { + "start": "2023-03-04", + "end": "2023-04-22" + }, + "venue": "COM1-0206", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-03-04", + "end": "2023-04-22" + }, + "venue": "COM3-B1-10", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-03-11", + "end": "2023-04-22" + }, + "venue": "COM2-0108", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-03-06", + "end": "2023-04-24" + }, + "venue": "COM1-B112", + "day": "Monday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-03-04", + "end": "2023-04-22" + }, + "venue": "SR_LT19", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2023-03-06", + "end": "2023-04-24" + }, + "venue": "COM1-B112", + "day": "Monday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-03-03", + "end": "2023-04-21" + }, + "venue": "COM1-0206", + "day": "Friday", + "lessonType": "Recitation", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": { + "start": "2023-03-01", + "end": "2023-04-19" + }, + "venue": "COM1-0206", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-04-17", + "end": "2023-04-24" + }, + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2023-04-17", + "end": "2023-04-24" + }, + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip non-computing students with fundamental knowledge in architecting and designing modern Enterprise Systems in organisations that can be reasonably complex, scalable, distributed, component-based and missioncritical. Students will develop an understanding of high-level concepts such as enterprise architecture and software architecture. They will them move on to acquire fundamental systems analysis and design techniques such as object-oriented requirements analysis and design using the Unified Modelling Language.", + "title": "Enterprise Systems Architecture Fundamentals", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT5004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Thursday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The study of artificial intelligence, or AI, aims to make machines achieve human-level intelligence. This module provides a comprehensive introduction to the fundamental components of AI, including how problem-solving, knowledge representation and reasoning, planning and decision making, and learning. The module prepares students without any AI background to pursue advanced\nmodules in AI.", + "title": "Artificial Intelligence", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT5005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0113", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental concepts in business analytics. They can learn how to apply basic business analytics tools (such as R), and how\nto effectively use and interpret analytic models and results for making informed business decisions. The module prepares students without any analytics background to pursue advanced modules in business and data analytics.", + "title": "Fundamentals of Data Analytics", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT5006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To meet changing business needs, this course focuses on flexible and agile software development on modern application architecture. Students learn to design and develop modern applications that support multiple clients across different platforms such as desktop, mobile devices and cloud. The course covers designing (1) website-based front-end software and (2) mobile app front-end that interacts with a common cloud-based backend. The final part involves engineering software for higher-level objectives such as security and performance. Tools and techniques for writing modern software, such as, HTML5, CSS3, React.js, Node.js, MySQL/MongoDB, and Git will be taught.", + "title": "Software Engineering on Application Architecture", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT5007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Typed functional programming are becoming more widely adopted in industry, as can be seen in the success of a number of advanced programming languages, such as OCaml, Haskell and Scala 3. These advanced languages offer a range of expressive features to allow robust, reusable and high-performing software codes to be safely and rapidly developed. \n\nThis module will cover key programming techniques of typed functional programming that are becoming widely adopted, such as strong typing, code composition and abstraction, effect handlers, and safe techniques for asynchronous and concurrent programming.", + "title": "Typed Functional Programming in Practice", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "IT5100A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-01-11", + "end": "2023-02-22" + }, + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The global availability of data has reached a level where aggregating data into generic, general-purpose \u201cstores\u201d is no longer feasible. Having data collections statically available for querying by interested parties on demand is increasingly becoming the way of the past. Instead, a new paradigm, called Data Streaming, has emerged recently. In this paradigm, data is bundled into high-throughput \u201cstreams'' that are sharded efficiently across a large number of network nodes. Consumers, sometimes counted in hundreds of thousands, or millions, \u201csubscribe\u201d to data subsets and are notified when new data becomes available, being under the obligation to process it immediately, or lose it. Consequently, data storage is no longer centralized, but rather distributed into many smaller-sized abstract collections. \n\nThis new approach to \u201cBig Data\u201d requires a new set of tools, platforms, and solution patterns. In this course we propose to explore several facets of this new paradigm: \n\u2022 The Stream paradigm introduced in Java 8. \n\u2022 Platforms that implement Data Streaming, such as Kafka, and the Java bindings in the library KafkaConnect. \n\u2022 Computing paradigms for stream processing, such as Reactive Programming, and the library RxJava. \n\u2022 High-performance stream computing platforms, such as Flink. \n\nThe course will be using Java as the main vehicle for introducing concepts and showcasing examples.", + "title": "High-Throughput Stream Programming", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "IT5100B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to cover the essence of database modelling and programming. The module will cover database modelling using both relational and ER models \nwith a focus on both good database design and application deployment. The module will also provide intensive coverage on programming with SQL data definition and manipulation sub-languages. Database application \ndevelopment will also be included as a case study project in this module.", + "title": "Database Modelling and Programming", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "IT5100C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2022-08-12", + "end": "2022-09-23" + }, + "venue": "COM1-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental concepts of problem solving by computing and programming using an imperative programming language. Topics covered include problem solving by writing pseudo-codes, basic problem formulation and problem solving, program development, coding, testing and debugging, fundamental programming constructs (variables, types, expressions, assignments, functions, control structures, etc.), fundamental data structures arrays, strings and structures, and basic recursion.", + "title": "Programming Methodology I", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT5501", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces non-computing students to efficient computational problem solving in an accelerated pace. Students will learn to formulate a computational problem, identify the data required and come up with appropriate data structures to represent them, and apply known strategies to design an algorithm to solve the problem. Students will also learn to quantify the space and time complexity of an algorithm, prove the correctness of an algorithm, and the limits of computation. Topics include common data structures and their algorithms (lists, hash tables, heap, trees, graphs), algorithmic problem solving paradigms (greedy, divide and conquer, dynamic programming), and NP-completeness.", + "title": "Programming Methodology II", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "IT5502", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "IY4000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to the subject of Japanese studies from a multi-disciplinary approach. It has three main components. The first component is humanities, covering art, philosophy, history and literature. The second component is social sciences, which includes sociology,anthropology, politics and economics. The third component is linguistics and language development. Students will learn about the methods and theories the various disciplines contribute to the study of Japan. Audio-visual materials, fieldwork, guest lectures, study tours, projects and debates will supplement lecture and tutorials.", + "title": "Introduction to Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a practical skill base for further studies of Japan. We focus on developing three core skills : (1) Knowledge and use of Japanese studies source materials; (2) Knowledge and understanding of major debates within Japanese studies; and (3) Application of critical reading, writing, and research skills. The module is for those majoring or intending to major in the field of Japanese studies.", + "title": "Approaches to Japanese Studies I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory Japanese linguistics module which teaches how the language is analysed in terms of its sound, grammar and meaning. In order to develop a deeper understanding of the language, students will be asked to do frequent exercises that will help develop analytical skills. Topics such as pronunciation, accent patterns, word-formation, sentence analysis, complex sentences, functions of language, comparison with other Asian languages, and literal and pragmatic meanings will also be taught.", + "title": "Sound, Grammar and Meaning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with modern and contemporary literary works. It aims to develop an awareness not only of the different literary genres and literary theories, but also of the aspirations and frustrations of post-war writers as they struggled to reconcile the Japanese tradition with the Western impact. Both important authors and literary movements will be considered. Writings of contemporary women writers will also be read.", + "title": "Introduction to Japanese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to visual analysis of popular culture media in postwar Japan, specifically film, television, manga and anime. As we approach each medium, we will be using film theory and formal analysis to discuss them. In analysing issues specific to each of these media and across genres, our discussion will be framed by some key questions: How do form and genre affect content? How do texts address specific audiences, such as teenagers, boys or girls? What is the role of fan culture?", + "title": "Visual Analysis of Japanese Popular Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Images are as important as ideas in defining and transmitting cultural patterns, and neither can be understood without exploring the other. This module attempts to look into the core of Japanese culture to understand the ideas that have been used to define Japanese culture and the connections these ideas have with images. Topics covered include Japanese aesthetic ideals, ethical paradigms, festivals, and visual arts. Through project work students will be encouraged to engage themselves creatively in exploring a specific aspect of Japanese culture, art, aesthetics or design that they find interesting.", + "title": "Ideas and Images in Japanese Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0306", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module uses postwar Japanese films and animation (anime) as the principal texts and investigates their relationship with contemporary Japanese culture, society and politics. Students will be introduced to the various genre and representative film and anime, together with specific critical writings on these works. Focus of the module will be on the relationship between the films and the audience, the impact of the dominance of films and anime in present day Japan and worldwide, and the various social and cultural issues such as violence and globalization that are closely related to the movie industry.", + "title": "Postwar Japanese Film and Anime", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the organization of Japanese business and industries. To do so, the module looks at the various players in the Japanese economy and their relationships. In exploring the organization of Japanese business, the module employs a problem-based learning approach. Students will work in teams and will look at the Japanese economy from a variety of perspectives, i.e. those of the Japanese and foreign governments, domestic and foreign businesses, small and large enterprises, or enterprises from different industries such as manufacturing, retailing, and finance. The modules focuses on students interested in Japan, but also on those wanting to actively bring together interdisciplinary knowledge through the study of Japanese business.", + "title": "Organisation of Japanese Business", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended to help students gain a basic understanding of society and values in contemporary Japanese society. We will examine the wider social patterns and developments characterizing contemporary Japan through different segments of society and life-course of the Japanese. Topics to be covered include socialization, family, education, women, community development, aging and death.", + "title": "Japanese Society and Social Institutions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students understand fundamental issues and problems of contemporary Japanese politics and policy-making. Major topics include the formation and collapse of the one-party dominant system, electoral reforms, party and factional competition with a focus on the Liberal Democratic Party, coalition politics, roles of the Prime Minister, systems in the Cabinet and the Diet, central bureaucracy, and features of the policy-making system. It will also review the implications of domestic politics for Japan's foreign economic policy. Readings can be utilized as basic backgrounds for the topics, while the lectures will focus on the current political issues and reforms.", + "title": "Government and Politics of Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Today's Japan is one of the most highly developed consumer markets. For its people shopping has presumably become the most important leisure and social activity and companies try to attract customers with continuous product and sales innovations. The module investigates this intricate relationship between business and consumer, economics and society, by looking at various case studies, for each critically identifying and discussing patterns of consumption and marketing from a multidisciplinary perspective. These case studies may include department stores, vending machines, electronic gadgets, branded merchandise, food, gift giving, and fashion goods.", + "title": "Marketing and Consumer Culture in Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Tokyo is arguably the representative city of modern Japan. This module will examine how Tokyo copes with issues facing a modern metropolis, especially its response to the challenge of globalization. Moreover, by analyzing Tokyo's history of development, this module will discuss the extraordinary pace and intensity of urbanization as a result of globalization as well as common problems faced by \"global cities\" around the world. This module will be of particular interest to Singaporean students not only because of the close ties between Japan and Singapore but also because of the many comparisons that can be made between Tokyo and the city-state.", + "title": "Global City Tokyo", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deepens the understanding of Sino\u2010Japanese relations from a multi\u2010disciplinary perspective. It examines the ways in which the Japanese and Chinese nations have interacted with each other from the mid\u201019th century to the present. Students learn how both a sense of cultural affinity as well as a deep\u2010seated mistrust have shaped relations between the two powers. This module also examines the transformation of the Sino\u2010Japanese political and economic relationship in a changing international environment.", + "title": "Japan and China: Rivals and Partners", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to basic gender and feminist theories through a comparative examination of Japanese and other cultures. We begin by interrogating the ways that the terms \"male\" and \"female\" have been defined variously using biological, social, legal and political criteria. Using selected historical, literary and ethnographic examples as case studies, we examine the discourses pertaining to the use of these categories as both the process and consequence of unequal distribution of power within society. Through debate and discussion, students will gain a deeper understanding of the variation and mutability of gender and sexual discourse as a social, rather than purely ontological, construct.", + "title": "Gender and Sexuality in Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys the fascinating development of Japanese civilization from prehistoric times to be present. Throughout our journey we will investigate and answer key questions about this intriguing civilisation. Where did the Japanese come from? What forces shaped Japanese society? How has Japan changed and interacted with the world? Rather than simple facts, the module will focus on processes and problems throughout Japanese history. Our aim will be to answer critical questions about the country. The module is for students of all disciplinary backgrounds who are interested in thinking about Japan.", + "title": "The Japanese Experience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module exposes students to country and culture of Japan using food as its analytic focal point. In the section on historical, political and economic perspectives, students will uncover the ways that food in Japan influences state policies, creates international conflicts and contributes to the formation of national identity. In the section on socio-cultural perspectives, students will learn to evaluate the ways that food creates meaning in such realms as language, education, media programming, and religious practices. Concepts covered in this course will be applicable to a broad range of phenomenon outside of Japan and outside the topic of food.", + "title": "Itadakimasu - Food In Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2230", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Monday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Japan and Southeast Asia share a complex history of interactions. Looking at issues such as early migration and trade relationships, the occupation during the Pacific War, production networks, development aid and free trade agreements, or the enthusiastic reception of Japanese products including anime, television drama and food allow us to build an understanding of the dynamics of relationships in Asia. This will be done by first introducing the key issues and then focusing on either popular culture, international business, international relations, or Japanese migration to different regions of Southeast\nAsia. The module will be complemented by a fieldtrip to Southeast Asia.", + "title": "Japan in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Past encounters between Japan and Korea continue to shape the two countries relations. This module examines the relationship between Japan and Korea, with a particular focus on the impact of Japan\u2019s colonization of Korea and its postcolonial legacies. Through this module students will gain greater insights into how the multifaceted intersections between both countries mutually impacts the shaping \nof their modernities, national identities, cultural politics, and globalisation. Students will study various official and popular cultural forms such as museum exhibits, expositions, art, film, anime, TV drama, and international events to analyse the intertwined histories of these two important powers.", + "title": "Japan and Korea", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the idol phenomenon in Japan\nand Korea through an interdisciplinary approach. The\nmodule will introduce students to key concepts in the\nstudy of idols and celebrities, and address the\nproduction, representation, circulation and\nconsumption of idols and celebrities in contemporary\nJapan and Korea (and beyond) within their historical,\nsocial, political and economic contexts. By the end of\nthe module, students will not only gain a deeper\nunderstanding of Japanese and Korean society, they\nwill also gain conceptual and analytical tools for\nunderstanding today\u2019s global media landscape.", + "title": "Idols and Celebrities in Japan and Korea", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the fascinating relationship between humans and environment in Japan. We will use Japan to think about how we humans should interact with and treat the precious environment that sustains us. We will consider the topic from a variety of disciplinary perspectives including myths, literature and thought, popular culture, architecture and art, politics, economy, law, environmentalism, and social movements. The module will be of value to any students who have an interest in the environment, Japan, or both. Students will leave the module not only with knowledge about Japan, but hopefully, greater sensitivity to the challenges facing humankind today.", + "title": "Japan: The Green Nation?", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS2234", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module exposes students to a specific topic\nrelated to Japan through intensive study in Japan or\nanother country where Japan can be studied. The\nother country will have a deep engagement with\nJapan in the specific area or field of study which is the\nfocus of the module. The module combines\norientation sessions at NUS with a 5 to 10 days\nintensive field study experience. The focus of the\nmodule will differ based on the expertise of the\nfaculty member teaching the module.", + "title": "Field Exposure Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "JS2880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module exposes students to Japan\u2019s Fashion Business through field studies in Tokyo. Over a period of 8 days students will conduct fieldwork, participate in company visits and expert lectures and engage in discussions and debates. Activities will be conducted together with students from the Japanese partner institution. Through a period of intensive study in Japan, participants will not only learn about Japan\u2019s fashion business through first hand experiences but will also learn how to conduct small field studies projects by themselves in a Japanese setting and together with Japanese students.", + "title": "Field Exposure Japan: Fashion Business", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "JS2880A", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module guides students towards using source materials in the Japanese language for their research. Based on their disciplinary interests, students will develop a research question and write a substantial paper based on Japanese language sources. Catering to\nstudents with different levels of Japanese language ability, this can be a review paper based on academic work in Japanese or a research paper using primary materials of different levels of difficulties, for example newspaper articles, government committee protocols, NGO publications, websites, or Japanese advertisements.", + "title": "Approaches to Japanese Studies II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As this is an intermediate level Japanese linguistics module, students who wish to read it should have done an introductory module on linguistics offered by the Department of Japanese Studies (for example, JS2203 Sound, Grammar and Meaning) or other departments, apart from meeting the Japanese language pre-requisite. Emphasising the different approaches to Japanese linguistics, this module will cover the phonological, morphological, syntactic and semantic analysis of the language. In order to enhance students' understanding of the analytical skills/tools, students will do frequent exercises on the language from many different points of view. Topics such as lexicography, pragmatics, socio-linguistics and historical linguistics may also be introduced.", + "title": "Approaches to Japanese Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since the Sino\u2010Japanese War of 1894\u201095, Japan has grown into a major international power with one of the world\u2019s largest economies. This module surveys the immense changes in Japanese politics, society and culture that have occurred in that period, and also looks at the milestones in the development of the Japanese economy. Topics discussed include the struggle between autocratic and democratic political forces, the formation of a national culture and national identity, and the attempts by intellectuals to define the essence of Japanese culture.", + "title": "Japan in the Twentieth Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the complex, dynamic and sometimes controversial world of religious belief and practice in modern Japan. The importance and continual relevance of religion in contemporary Japanese society will be examined with reference to pre-modern developments as well as modern-day cultural, social, and political trends. In addition to learning about Japanese religion, students will be encouraged to critically reflect on such general problems as the definition of religion, religion-state relations, the interpretation of religious experience, the meaning of ritual, and the phenomenon of syncretism.", + "title": "Modern Japanese Religion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What does it mean to be different in Japan today? What kind of difference matters in Japan? How do certain people come to be treated differently? This module answers these important questions by shining a spotlight on the biographies of individuals intimately connected to Japan who through choice\nand circumstance have come to lead extraordinary lives. The module, through analysis of numerous life histories and a range of theories that help us understand them, offers insights into the nature of cultural homogenization and social differentiation and the particular ways these processes are defined and\nreinforced in the Japanese context.", + "title": "Alternative Lives in Contemporary Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the modern Japanese sense of cultural, social and national identity, as analysed by social scientists, cultural historians, and scholars of Japanese thought. Some famous studies of the Japanese self by psychologists, anthropologists, sociologists and socio-linguists will be discussed, supplemented by a historical perspective focusing on the samurai heritage and the ideas behind the Meiji Restoration. No knowledge of the Japanese language or of specialised scholarly vocabulary is required or expected.", + "title": "Japanese Philosophy and Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Many Japanese literary writings have been adapted into films, inevitably with new interpretations and perspectives. This module examines important Japanese literary writings, which are loosely defined to include all printed-texts, and their film adaptations. As a re-creation of the literary writings chosen from a variety of sources and traditions, the films that are produced from these literary works are studied as both related to and independent from the source texts. This module examines both the printed texts and visual texts to gain new perspectives on both texts as well as on Japan and Japanese culture.", + "title": "Japanese Film and Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to familiarise students with the rich world of Japanese art, utilising the excellent collection of Japanese art books in the Japanese Resources Section of the library. Slide photographs of selected works will be shown and discussed in class. Approximately equal time will be spent on (1) ancient and medieval art and sculpture, (2) arts of the early modern period, and (3) modern artistic trends since the Meiji Restoration. The aim is to deepen students' appreciation of Japanese art by considering historical contexts, discussing the ideas and feelings conveyed by the art, and probing the aesthetic and philosophical concepts behind the art.", + "title": "Japanese Art and Aesthetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3217", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the ongoing stagnation of the Japanese economy in the 1990s, the very Japanese management which has been hailed in the past as a cornerstone of Japan's economic success has today become an issue of much debate. This module takes up this debate with an emphasis on the core area of Japanese management, the management of human resources. After outlining the features of management in Japan the module critically assesses these features over time and from different perspectives. Besides targeting students interested in Japan the module also welcomes students that are interested in critically discussing national differences in management systems in general.", + "title": "Japanese Business Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop students\u2019 understanding of Japan's external relations with other nations in Asia and the Pacific. Students will learn about the most contemporary issues in Japanese external relations, place them in a modern historical context, and analyze them with theoretical frameworks and\npolitical concepts. The topics include the Japan\u2010U.S. security alliance, historical problems related to Yasukuni Shrine and history textbooks, ODA and PKO, territorial disputes, as well as Japan\u2019s commitment to regional institutions in the Asia\u2010Pacific.", + "title": "Japan and the Asia-Pacific Region", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to deepen student's knowledge of Japanese society and history through a study of its mass media. It will cover the rise of the major media industries in postwar Japan, trace the development of particular TV and news genres in response to societal changes; identify broad cultural and linguistic patterns in media texts; and interrogate notions of transnational cultural flow using Japan's popular media as a case study. Lectures will draw on materials from TV archives, magazines, comics, news articles and film footage, and other media-related sources. Tutorials will be conducted in \"workshop\" style in which students will be expected to work with first hand Japanese media materials.", + "title": "Japanese Mass Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Entrepreneurship is one of the main factors determining the dynamics of a country's economy. However, Japan has been described as a collectivist society where individual initiative is not appreciated and where it was often the government that led economic development. Yet, Japan has produced a number of extraordinary individuals who played an important role in shaping its economy. Through a series of case studies of dynamic and colourful entrepreneurship the module aims to identify the forces underlying entrepreneurship in Japan, thereby creating a general understanding of the interaction between the individual and its economic, political and social environment.", + "title": "Entrepreneurship : Self-Made in Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module analyzes the movement of people in Japan for both work and play from a range of disciplines. Major topics include domestic and international labour migration; the impacts of gender, class, ethnicity, and nationality on mobility; the politics and economics of mobility vs. native place; transnational mobility; transportation networks; and domestic and international tourism. The module\nintroduces students to a range of historical and contemporary issues through the theoretical lens of mobility, providing them with not only a comprehensive understanding of the importance of human mobility within Japan, but also the theoretical background to apply their knowledge beyond Japan.", + "title": "Japan on the Move", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3228", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to build upon and test knowledge learned at NUS through field study in Japan. The module combines a period of intensive\ncoursework and/or independent research on the NUS campus with a 10\u201020 day field study experience in Japan. The focus will differ based on the expertise of\nthe faculty member teaching the module. The module may centre on the environment, tourism, urban and rural development, traditional performance or\npopular culture.", + "title": "Field Studies in Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3229", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will look at constructions of gender in modern Japanese literature by both female and male authors. Readings will cover some of the major\nauthors, genres, and literary movements of modern Japanese literature, as well as secondary readings in gender theory.", + "title": "Men and Women in Modern Japanese Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the department, have relevance to the major in JS, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the department.", + "title": "Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS3550", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop a reasonable level of fluency in reading such contemporary Japanese materials as academic writings, dialogues involving colloquial speech, and relatively sophisticated analyses of Japanese culture, society, current affairs and business affairs. Attention will also be given to developing accurate translation skills and to some of the subtler points of Japanese and English grammar. The module will also involve practice in using computers for Japanese word processing and for making use of the Japanese Internet.", + "title": "Readings in Modern Japanese", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an opportunity for staff and students to explore a diversity of topics in Japanese linguistics. The topics covered each year will vary depending on staff expertise and students' interest. Issues and themes to be considered include formal/morphosyntactic and semantic analysis; pragmatic and discourse analysis; and phonetic and phonological analysis. Emphasis will be placed on linguistic exercises and practices and critical analysis of data.", + "title": "Selected Topics in Japanese Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module traces the historical development of Japan from the mid 19th century to the present. It focuses on close reading and discussion of important English-language works with particular emphasis on historical and theoretical controversies in the field. Students will be encouraged to think about both the modern history of Japan as well as the historians who have claimed to reconstruct and narrate it. The module is aimed at students interested in the intersection between Japanese history, the practice of historiography, and the application of theoretical models to the past.", + "title": "Approaches to Modern Japanese History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the modern Japanese sense of cultural, social and national identity as analysed by social scientists, cultural historians and scholars of Japanese thought. Some famous studies of the Japanese self by psychologists, anthropologists, sociologists and socio-linguists will be discussed, supplemented by a historical perspective focusing on the samurai heritage and the ideas behind the Meiji Restoration. No knowledge of the Japanese language or of specialised scholarly vocabulary is required or expected.", + "title": "Ideas, Values and Identity in Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Starting with an introduction of poetry, an important component in the literary scene especially in the realm of court literature, various other genres, including tales (monogatari), memoirs, noh and kabuki, will be examined in this module. With reference to critical works of contemporary scholars both in Japan and the West, different issues and concerns pertaining to these categories of works will be identified and discussed in the seminars. Topics include the relationship among these genres and poetry, the significance of women's writings in the Heian court, and the metamorphosis of performance genre through the ages and its implications. Various forms of texts, such as scroll paintings, films, documentaries and music will be used. The aim of the course is twofold: firstly, to expose students to some representative literary works in the canon; and secondly, to situate these texts in a post-modern framework so as to provide a more relevant and interesting reading.", + "title": "Tales and Performance in Premodern Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an opportunity for staff to explore a diversity of issues and themes in Japanese Studies from a multidisciplinary perspective. The topics covered each year will vary depending on staff expertise and interest. Issues and themes to be considered include Japanese ideology and intellectual trends; science and technology; war and peace; self-identity and behaviour; health, welfare and medicine; leisure, entertainment and communication; and regionalism, internationalism and globalism.", + "title": "Selected Topics in Japanese Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will analyse the structure and processes of Japanese public administration. It will examine the forms of administration in the pre-Meiji period, the administrative changes and reforms during the Meiji period and after World War II, as well as personnel management practices and the process of policy formulation and implementation.", + "title": "Japanese Public Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to promote the better understanding about Japan's foreign policy and international relations. The module consists of three analytical focuses: defence and security policies, foreign economic policy and regional and multilateral institutions. The first section highlights major features of Japan's defence and security policies including the recent changes in Japan's security environment in the Asia Pacific region and their impact on Japan's defence policy approaches. The second section focuses on the characteristics of Japan's policies of international trade and foreign aid. This section also discusses the domestic system in the context of Japan's foreign economic policy and highlights how the Western critics regarded the issue as problematic. The third section examines Japan's approaches to regional institutions such as APEC, ARF, ASEAN+3, and the G-8 Summit Meeting and United Nations, with focuses on its approaches and diplomatic activities in each case. Although this module highlights more empirical cases of Japanese foreign policy, it also introduces some theoretical debates as well.", + "title": "Japanese International Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar investigates the construction of identity in modern Japan. Using anthropological and sociological readings, we will identify and critique the main theoretical models which have been used to explain self and society in Japan. Topics include family, national identity, gender, class, ethnicity, and ideologies of individualism.", + "title": "Social Dynamics in Modern Japan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4225", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to promote students' understanding of some of the salient features of Japan's political economy, especially the roles of politicians and bureaucrats in the conduct of industrial and foreign economic policy. The module will review major research on Japan's political economy written from historical, theoretical and comparative perspectives. By exploring the changing international images of Japan in the field of political economy, the module aims to highlight: the role of the government in Japan's high postwar economic growth and features of its industrial policy-making processes; the relevance of high growth in other East Asian economies in comparison to the Japanese case; the different schools of thought on Japan's economic policy and the evolution of US-Japan trade friction in the 1980s; and Japan's approaches to and initiatives in deregulation in the 1990s.", + "title": "Japanese Political Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to basic translation theory while simultaneously engaging them in actual translation exercises. Various texts will be used in these exercises, including literary and academic texts, writings in businesses and popular culture, newspaper articles, etc. The objective of this course is twofold to deepen students' understanding of cultural differences manifested in Japanese and English writings, and to train students' translation skills.", + "title": "Japanese Translation - Theory & Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4229", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will read theoretical and practical approaches to the study of popular culture from a variety of disciplines, including cultural studies, media studies, sociology, anthropology, psychology, and anime/manga studies. Students will then use those theories and methods in analyzing primary materials from Japan, including manga, anime, music, television and film.", + "title": "Advanced Readings in Popular Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Technologies, from lighting to digital installation, play critical roles in theatre performance, while also an integral part of research and pedagogy. This module focuses on the roles of technologies in traditional Japanese theatre from premodern to contemporary times and from pre- to post-performance. We examine the roles of technologies in traditional Japanese theatre within and outside of Japan, and ask how can we make better use of technologies, both hardware and software, in learning more about traditional Japanese theatre. We will also learn to build digital resources on Japanese theatre as a practical way to engage with technologies.", + "title": "Technologies and Traditional Japanese Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Japanese companies have a long history of selling, producing and investing in Asia. Here they worked closely together with local policy makers and businesses, the particular business models and practices of Japanese companies either being regarded as something to learn from or as standing in the way of proper integration into host countries. This module investigates the activities of Japanese companies in Asia from the home country as well as the host country perspectives. Besides looking at the theoretical underpinnings of the international business activities of Japanese companies, students will work on company and country specific case studies.", + "title": "FDI and Local Development: Japanese Firms in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4232", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "International migration is currently one of the most difficult challenges facing policymakers in advanced democracies. This seminar will explore how this global\nchallenge has been addressed in Japan \u2013 a \u201cnew\u201d country of immigration. Through comparative lenses, we will review the state-of-the-art theoretical and empirical literature that explores the following themes: the question of borders, policy actors,\neconomic and forced migration, migration and security, the ethics of immigration control, citizenship, diaspora politics, and immigrant integration and multiculturalism, among others.", + "title": "Japan\u2019s Immigration Politics in Global Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students are required to write an academic thesis on an approved topic under the guidance of a supervisor. The HT will be equivalent to two modules of study.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "JS4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a coverage of the secondary literature on the humanities component of Japanese studies. Students will be exposed to the latest advances in the field focusing on selected themes. They are also expected to gain a firm grasp of the development of the field through the examination of major methodological and theoretical debates.", + "title": "Readings in Japanese Studies I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a coverage of the secondary literature on the humanities component of Japanese studies. Students will be exposed to the latest advances in the field focusing on selected themes. They are also expected to gain a firm grasp of the development of the field through the examination of major methodological and theoretical debates.", + "title": "Readings in Japanese Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS5201R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a coverage of the secondary literature on the social sciences component of Japanese studies. Students will be exposed to the latest advances in the field focusing on selected themes. They are also expected to gain a firm grasp of the development of the field through the examination of major methodological and theoretical debates.", + "title": "Reading in Japanese Studies Ii", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a coverage of the secondary literature on the social sciences component of Japanese studies. Students will be exposed to the latest advances in the field focusing on selected themes. They are also expected to gain a firm grasp of the development of the field through the examination of major methodological and theoretical debates.", + "title": "Reading in Japanese Studies Ii", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS5202R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module uses selected texts (including literary writings, historical documents, film and paintings) to examine the Japanese literary and performance discourse in both modern and pre-modern times. Texts produced outside Japan will also be included in order to gain a wider perspective. The extensive scope of texts use and the rigorous critical reading trainings students will undertake will provide them with an in-depth understanding of the practice of literary and performance studies in Japan.", + "title": "Japanese Literary & Performance Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module uses selected texts (including literary writings, historical documents, film and paintings) to examine the Japanese literary and performance discourse in both modern and pre-modern times. Texts produced outside Japan will also be included in order to gain a wider perspective. The extensive scope of texts use and the rigorous critical reading trainings students will undertake will provide them with an in-depth understanding of the practice of literary and performance studies in Japan.", + "title": "Japanese Literary & Performance Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS5203R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines important social issues in contemporary Japan from the socio-anthropological perspective. It aims to develop students' critical thinking and to provide them with an advanced knowledge of the theories and methods in the socio-anthropological study of such important and current topics as aging, poverty, gender inequality, education, and the environment in Japan.", + "title": "Contemporary Japanese Social Issues", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS5204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines important social issues in contemporary Japan from the socio-anthropological perspective. It aims to develop students' critical thinking and to provide them with an advanced knowledge of the theories and methods in the socio-anthropological study of such important and current topics as aging, poverty, gender inequality, education, and the environment in Japan.", + "title": "Contemporary Japanese Social Issues", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS5204R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Reading of Japanese Historical Sources", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Digital technologies have become a critical presence in both the creation and consumption of theatrical performances. Students will study contemporary performances derived from traditional theatrical genres and other theatrical forms using printed and multimedia texts. They will analyze theoretical writings on technologies and performance to establish a closer relationship between theory and practice within the field of Japanese theatrical studies. By building digital projects, students will have the opportunity to experience firsthand the ecology of digital technologies and theatrical performance.", + "title": "Digital Technologies and Japanese Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Japanese Studies in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS5660", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Japanese Studies in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "JS5660R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Readings in Japanese History & Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS6201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the theoretical and methodological issues of research on Japanese Politics and Economics. Major contributions to both fields from in and outside of Japan are to be critically reviewed under methodological criteria as well as in regard to their impact on general theory advancement, policy making and popular understanding of Japan. Participants will pursue a research project advancing their ability to devise a project and to utilize sources in Japanese and other relevant languages.", + "title": "Readings in Japanese Politics & Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS6202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Readings in Japanese Literature & Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS6203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module requires students to critically examine current methodological and theoretical debates in the field of Japanese linguistics by means of a comprehensive review of representative works in English and Japanese. A solid foundation in linguistics and proficiency in Japanese language (JLPT level 1 or equivalent) is essential.", + "title": "Readings in Japanese Linguistics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS6204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "JS6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "JS6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Human inhabitation and intervention on the landscape is traced from prehistoric times to the present. In particular, the relationship between humans and landscape as presented in particular traditions and cultures is highlighted. The coverage is broad, including both Eastern and Western traditions and ancient and modern practices. Emphasis is on comparative studies between different cultures and traditions rather than on detail and depth of any particular practice of landscape intervention.", + "title": "History and Theory of Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LA3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces design principles in terms of plant design characteristics and responses to environment and seasonal changes. There is an emphasis on plants as unique elements of landscape design. Both aesthetic and functional uses of plants will be covered. Design that favours natural distribution and ecological considerations will be explored.", + "title": "Planting Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA4202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1101", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Human inhabitation and intervention on the landscape is traced from prehistoric times to the present. In particular, the relationship between humans and landscape as presented in particular traditions and cultures is highlighted. The coverage is broad, including both Eastern and Western traditions and ancient and modern practices. Emphasis is on comparative studies between different cultures and traditions rather than on detail and depth of any particular practice of landscape intervention.", + "title": "History and Theory of Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA4203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module follows from Tropical Plant Identification 1. Matching plants to site will be one of the topics covered. Because of the tropical context the focus will be on trees. The course will leverage on the experience gained through establishing Singapore as a \u201cGarden City\u201d. The creation of a forest within a city, an \"urban forest\u201d, is one of its aims. The course will start with an appreciation of the immense biodiversity of plants in our region. The irreplaceable values that natural primary forests have will be emphasized. The case of the need to extend these forests by recreating them in the urban context will be discussed. The appropriate use of non-indigenous plants will also be covered. The need to be ecological-minded when selecting plants will be emphasized with particular attention being placed on conservation; the beautification of place should not be done at the expense of making another landscape look less attractive. Lectures will be augmented with field trips which serve illustrate the application of the principles discussed to the ground. The business implications to matching the right plant to site, using quality plants and then being able to care for them professionally will be covered.", + "title": "Topics in Tropical Forest Ecology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding of materials as they pertain to landscape design. Outdoor designs require robust materials that tolerate extreme weather conditions, planned and unplanned forms of use and urban characteristics like highest intensities of usage and vandalism. The discourse on materials is integrated with their design process and application on site. Contemporary urban\nlandscape design bases upon a minimized choice of appropriate materials and high quality of implementation.", + "title": "Material and Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA4301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops higher level skills in landscape design and marks the first of four subsequent master-level core studios in landscape design. Projects of city quarter scale are undertaken to explore issues of context, programme and socio-economic considerations. Projects will cover sites with different functions, e.g. residential, commercial, industrial, educational, health\nand recreation. Civic spaces like roadsides, highways, plazas, parks and city squares will also be tackled. There is an emphasis on sustainability and tropical design.", + "title": "MLA Studio: Quarter", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LA4701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "SDE1-CL3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "SDE1-CL3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "SDE1-CL3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "SDE1-CL3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "SDE1-CL3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops an appreciation for design skills in tropical landscape design as applied on a large city scale and marks the second of four subsequent master-level core studios in landscape design. Interdisciplinary requirements from planning guidelines, architecture design, engineering limitations; as well as understanding existing natural land and urban systems will be introduced into the design process. Project sites will be larger in scale with more complex urban design issues, with projects ranging from peripheral nature conservation sites to mix-use urban centres. There will be an emphasis on deriving innovative design solutions using ecological and sustainability principles.", + "title": "MLA Studio: City", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LA4702", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "T1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "T2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "T4", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "T3", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Landscape architecture is not shaped just by environmental and aesthetic considerations, but also by the process of social engagement, social hierarchies, and power structures in society. This module introduces students to key concepts and frameworks of political ecology, which is a broad field of study and research that focuses on socio-environmental conflicts and their origins. Through a variety of teaching and learning modes, students examine landscape case studies representing different contexts, scales, and histories to uncover diverse human\u2010environment interactions. There is an emphasis on applying different tools and methods to conduct and communicate political ecology research.", + "title": "Political Ecology and Landscapes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Urban Ecology is the study of ecosystems that include humans living in cities and urbanizing landscapes. It is an emerging, interdisciplinary field that aims to understand how human and ecological processes can coexist in human-dominated systems and help societies with their efforts to become more sustainable. It has deep roots in many disciplines including sociology, geography, urban planning, landscape architecture, engineering, economics, anthropology, climatology, public health, and ecology", + "title": "Urban Ecology and Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA5222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is consist of two parts.\nThe first part emphasizes landscape engineering techniques focused on designing landscape elements for urban stormwater management (water sensitive urban design, WSUD). These WSUD elements include design of bioswales, bioretention systems and constructed wetland constructions. The course will cover fundamentals in hydrology and hydraulics, application of the knowledge for design of WSUD, including sizing, material specifications and construction and design considerations, and proficiency in production of construction drawings. \nThe second part provide informative knowledge on how design proposals are developed as professional drawings, how they are constructed, and operated in professional landscape architecture practice. It will give an overview of the nature of a professionalism that requires the active integration of related design fields. The course will clarify the responsibilities of landscape architects within the design team, as well as among different stakeholder groups, including clients, users, landscape contractors, managers, and policy makers. It will also cover office and project management, contract procedures, construction administration, ethics, and different types of oral and written communication skills for professional practice.", + "title": "Landscape Construction II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA5302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the different contemporary and emerging technologies and techniques that have become essential components of urban greening design and practices. It traces the origins of such technologies and techniques as responses to challenges in creating a green and ecologically-balanced urban environment, explains their scientific underpinnings, and provides examples of real-life applications. It emphasizes the role of R&D in a continual process to improve the performance of greening in areas of sustainability, ecological health, and liveability of the built envirobment. Topics covered include metrics used to measure greenery, technologies used to integrate greenery with the grey (buildings and infrastructure), blue (waterways and waterbodies) and brown (road infrastructure) elements of the built environment, and plants as the basic building blocks of functional landscapes. The module will be conducted through lectures, class discussion and site visits demonstrating\nreal-life applications as well as R&D in progress.", + "title": "Urban Greening: Technologies and Techniques", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA5303", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module conveys to the student the requisite knowledge encompassing professional practice as it pertains to the practice of landscape architecture in Singapore. Major topics covered are the Singapore legal system, organisation of the landscape industry, role of the landscape architect, statutory requirements, specification writing, cost control and contract administration.", + "title": "Professional Practice", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA5402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The proseminar introduces MLA students to a range of key issues for urban environments in the anthropocene epoch and their implications for practice and research in landscape architecture. The focus is on developing critical perspectives that come from a deeper understanding of landscape architectural knowledge, methods, and speculation. Classes consist of a series of roundtables by landscape architecture faculty members and/or guest speakers followed by a discussion of assigned readings and a discourse on research questions, specific skills, and applicability in practice.", + "title": "Proseminar in Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA5500", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From the invention of the axe to surveying tools like the graphometre, technological advancements have always influenced how we document, understand, design and modify our landscapes. Perhaps the most influential was Geographic Information System (GIS) technology which allowed the convergence of topological, ecological and even social data into the discourse of landscape architecture. However, unlike the two dimensional nature of GIS, landscapes are inherently three dimensional. The course thus explores the various advances that allow landscape architects to operate within a 3D environment with data collected from reality, studied and modified through computational thinking and enriched through information modelling.", + "title": "Digital Techniques In Landscap", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA5511", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This studio based module marks the last of four subsequent master-level core studios in landscape design. The final MLA studio is regarded as opportunity for the graduating students to deliver their personal 'master piece'. The students will undertake projects in one of the countries of South East Asia, tackling landscape design issues in the fast growing urban agglomerations of this region. The\nstudio integrates ecological, social and economic thinking in the course of generation of designs that shall be realistic and workable.", + "title": "MLA Studio: Region", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LA5702", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "T2", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 75, + "covidZone": "Unknown" + }, + { + "classNo": "T1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The research dissertation engages the student in a short research project related to the research interests of the department. The student will be exposed to previous and current research in the department and will then frame a research project of his own that utilizes the research methodology and issues adopted by his supervisor and his team. The research will culminate in a written report not exceeding 5000 words.", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LA5742", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "LA5742A prepares students for LA5742 (Dissertation) which is run in Semester 2 of the second year of MLA. LA5742 is a research-based module in which students undertake a research project on a topic of their choice under the supervision which culminates in a written dissertation report. LA5742A prepares students for this research undertaking by introducing students to research process, research methods and basic statistics. It is run in Semester 1 of the second year and culminates in the submission of a written dissertation proposal that students will execute for LA5742 in Semester 2.", + "title": "Dissertation Preparation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA5742A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The practice of landscape architecture requires a working knowledge of ecology. The ecological understanding of practitioners is particularly challenging in the tropics, which feature some of the world\u2019s most diverse and complex ecosystems. This module aims to equip students with the foundational knowledge (ecological principles; vegetation types; habitats) and basic skills (plant identification, literature reviews) to recognise habitat types, interpret ecological properties of a site, and to be able to design and critique landscapes from an ecological perspective. The module is conducted through lectures and field trips.", + "title": "Special Topics in Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LA5901", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop language proficiency in an integrated approach. Students will acquire language skills through participation in various communicative tasks. Through the exposure to the language, students will develop a general understanding of the cultures, the sociolinguistic and pragmatic aspects of the language. By the end of the module, students will acquire basic skills of speaking, listening, reading, and writing to maintain communication on common topics.", + "title": "Bahasa Indonesia 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAB1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to further enhance students' proficiency in the four basic skills of speaking, listening, reading, and writing. Students will be exposed to more language functions and a wider range of topics. Through reading formulaic authentic texts, students will be introduced to the language in written form as it appears in daily communicative situations to achieve further understanding of the country, its culture and its people. At the end of this course, students will be equipped with a sound foundation of the language to maintain communication on topics relating to their personal and immediate environment.", + "title": "Bahasa Indonesia 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAB2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "T4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "T3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "T5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0101", + "day": "Friday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0101", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Bahasa Indonesia 2. Emphasis continues to be on proficiency in all four skills, within selected range of vocabulary and grammar. Students will master language relating to a wider range of daily life situations and will gain flexibility in their language use. Reading will no longer be strictly limited to what is contained in the textbook specially prepared for the class. Gradually, short selection from media and literature sources such as short stories, poems, announcements, reports and other short, topic-specific pieces will be introduced to begin to familiarize students with actual usage while not overwhelming them with new vocabulary and grammatical forms.", + "title": "Bahasa Indonesia 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAB3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "T1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "T2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "T1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Bahasa Indonesia 3. In this module, students will read, analyse, and discuss texts from literature, non-fiction, and academic sources covering a wide range of subjects related to the culture and society of the target language. Selection will include text and passage from short stories, journals, magazines, and newspapers, as well as audio-visual materials such as TV programs, feature films, etc. The range of readings is intended, firstly, to broaden students' vocabulary and familiarize them with terms relating to many fields of endeavor. Secondly, the objective is to introduce students to various aspects of the society and culture as expressed by Indonesian writers. Through exposure to the language as it appears in books and in the media, students will be able to hone their own language skills to be more applicable and practical in a workplace, academic, or business setting.", + "title": "Bahasa Indonesia 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAB3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "T1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Bahasa Indonesia 4. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and business Indonesian. Students will progressively comprehend texts, not only from background and subject matter knowledge, but also from increasing control of language. They will also learn to handle conversation involving complication, in the form of connected discourse, and to make choices of diction, as well as manipulate grammatical features reflecting formal and informal registers.\n\nLearners autonomy will be enhanced in the teaching-learning process. Students will take an active role in selecting materials and leading discussions.", + "title": "Bahasa Indonesia 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAB4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "T1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "T1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Bahasa Indonesia 4. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and business Indonesian. Students will progressively comprehend texts, not only from background and subject matter knowledge, but also from increasing control of language. They will also learn to handle conversation involving complication, in the form of connected discourse, and to make choices of diction, as well as manipulate grammatical features reflecting formal and informal registers.\n\nLearners autonomy will be enhanced in the teaching-learning process. Students will take an active role in selecting materials and leading discussions.", + "title": "Bahasa Indonesia 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAB4201HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "T1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Bahasa Indonesia 5. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and business Indonesian. The most important objective is to improve students' language commands in employing discourse strategies. Learner's autonomy will be enhanced in the teaching-learning process. Students will take an active role in selecting materials, leading discussions, and developing projects.", + "title": "Bahasa Indonesia 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAB4202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Bahasa Indonesia 5. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and business Indonesian. The most important objective is to improve students' language commands in employing discourse strategies. Learner's autonomy will be enhanced in the teaching-learning process. Students will take an active role in selecting materials, leading discussions, and developing projects.", + "title": "Bahasa Indonesia 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAB4202HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "T1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a beginners' module consisting three main components: conversation, grammar and Chinese characters learning. Vocabulary items, sentence patterns and short texts will be taught. Students will acquire basic communicative skills to deal with simple daily situations after reading this module. Approximately 180 Chinese characters and 150 phrases will be introduced.", + "title": "Chinese 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAC1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Chinese 1. It consists of three main components, conversation, grammar and Chinese characters learning. Another 200 Chinese characters and 500 phrases will be introduced. Emphasis is placed on listening, speaking, reading and the writing of Chinese characters. Students are required to give short speeches and to conduct projects in tutorials.", + "title": "Chinese 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAC2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For students with limited proficiency in spoken and written Chinese. It consists of two main components, Chinese characters writing to form grammatically correct sentences and composition writing. Students will also be introduced to texts reading to develop their reading and writing skills. This module serves as a good preparation module for higher level Chinese.", + "title": "Chinese Characters Writing & Composition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAC2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an intermediate Chinese module which is a continuation of Chinese 2. It consists of three main components: conversation, grammar and Chinese character learning. Another 160 Chinese characters and 260 phrases will be introduced. Students are also required to give short speeches and project presentations in the tutorials. Students' language skills in listening, speaking, reading and writing are further strengthened.", + "title": "Chinese 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAC3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Chinese 3 (LAC3201). Based on the 600 Chinese characters they have already learned from Chinese 1 to 3, students will be taught another 300 new characters and phrases at this stage. New words, phrases and idioms will be strengthening for the usage of the language. Short stories and articles will be used in the teaching of this module. The students will also be trained in listening to broadcast materials, speech skills as well as short essay writing.", + "title": "Chinese 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAC3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Chinese for Science & Technology is a special module for students who plan to do an exchange semester at Chinese universities. It focuses on an understanding of the forms of Chinese and Chinese usage appropriate to the fields of science, technology and computing. The course aims to enhance students\u2019 Chinese proficiency in the academic context of science, engineering, and related fields.", + "title": "Chinese for Science and Technology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAC3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Chinese for Business & Social Sciences is a module designed for students to understand the forms of Chinese and Chinese usage appropriate to business, law, the social sciences, public relations and industrial relations. Students will be trained in writing business correspondence, legal writing and business report. Public relations techniques such as advocacy, presentation and debating will be taught. Student's mother-tongue should be Chinese.", + "title": "Chinese for Business & Social Sciences", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAC3204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Chinese 4. Based on the 750 Chinese characters and 960 phrases they have learned, students will acquire new words, phrases and idioms to strengthen the usage of the language. Short stories and articles will be taught in this module. Students will also do projects related to Chinese culture and history. Essay writing skills will be strengthened.", + "title": "Chinese 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAC4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Lecture", + "size": 13, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Chinese 4. Based on the 750 Chinese characters and 960 phrases they have learned, students will acquire new words, phrases and idioms to strengthen the usage of the language. Short stories and articles will be taught in this module. Students will also do projects related to Chinese culture and history. Essay writing skills will be strengthened.", + "title": "Chinese 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAC4201HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Lecture", + "size": 7, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 7, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Chinese 5. It will emphasize the communicative function and the training of the four language skills (speaking, listening, reading & writing). A systematic way of introducing drills and exercises will allow students to master the necessary grammatical knowledge and rules for word and sentence formation. The students will also be involved in doing projects related to Chinese culture and history. Essay writing skills will be strengthened in this module.", + "title": "Chinese 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAC4202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Chinese 5. It will emphasize the communicative function and the training of the four language skills (speaking, listening, reading & writing). A systematic way of introducing drills and exercises will allow students to master the necessary grammatical knowledge and rules for word and sentence formation. The students will also be involved in doing projects related to Chinese culture and history. Essay writing skills will be strengthened in this module.", + "title": "Chinese 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAC4202HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops fundamental skills in landscape design and marks the first of two bachelor-level core studios in landscape design. The module introduces basic design principles used by all design disciplines with primary design language dealing with space, form, and materials through sequential exercises. Besides common design principles, the course will emphasize the unique role of landscape architecture to modify, design, and manage ecosystems. The module will facilitate an in-depth understanding of patterns and characteristics in nature by having students read, observe, describe, and interpret urban landscape elements in creative conceptualizations and sophisticated drawings.", + "title": "Design 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD1001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-02-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As the second of two bachelor-level core studios in landscape design, the module introduces basic design principles commonly used in design disciplines, notably the interface between people and environment. The course will also emphasize environmental responsibility in field landscape architecture as a discipline and show how urban development reshapes the relationship between humans and landscapes. The module will deal with basic environmental issues caused by urbanization and explain how these can be mitigated by landscape architectural design interventions using a interdisciplinary lens.", + "title": "Design 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD1002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1500", + "weeks": { + "start": "2022-08-08", + "end": "2022-11-07", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1500", + "weeks": { + "start": "2022-08-08", + "end": "2022-11-07", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1500", + "weeks": { + "start": "2022-08-08", + "end": "2022-11-07", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the profession of landscape architecture. It presents a survey of the development of the profession and how the profession responds to societal needs in providing services to various public and private clients. Emphasis is placed on understanding the significance of environmental, socio/cultural, physical/visual, and aesthetic factors in developing intervention strategies and designs. Contemporary landscape architectural issues, practitioners and work are presented. Beside lectures and in-class discussion, students will engage in active learning through field trips that involve a variety of exploratory activities including walking, observing, sketching, photographing, and writing.", + "title": "Introduction to Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD1003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1201", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2_ER4-5", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course surveys the histories and theories of landscape and landscape architecture in their various cultural forms, exploring their role in different societies and locations across time. It is organized around definitions and classifications that continue to exert profound influence landscape thinking and design. It examines the history of the discipline of landscape architecture and its precursors as intimately tied to changing notions of landscape, nature and environment, their forms, functions and meanings, as well as how conceptions of \u2018landscape\u2019 respond to and shape cultural values. The course will consider approaches from Asian landscape traditions and Western histories of landscape thinking.", + "title": "History and Theory of Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD1004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As the second of two bachelor-level core studios in landscape design, the module introduces basic design principles commonly used in design disciplines, notably the interface between people and environment. The course will also emphasize environmental responsibility in field landscape architecture as a discipline and show how urban development reshapes the relationship between humans and landscapes. The module will deal with basic environmental issues caused by urbanization and explain how these can be mitigated by landscape architectural design interventions using interdisciplinary lens.", + "title": "Design 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD1005", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course applies principles of landscape design that respond to a site-specific project. Work in the studio introduces to students the core design processes including site analysis, design strategies, design development, and visualization. The assigned project will require botanical knowledge, as well as knowledge of topics related to tropicality (extreme heat, hot & humid) and tropical ecology (high level of heterogeneity, dynamic growth of plants). The module will also introduce problem-solving techniques using a systemic thinking process. The module will simultaneously include hands-on gardening activities on the university campus.", + "title": "Design 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD2001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course applies principles of landscape design responding to a site specific project. Designing a meso-scale urban greenery (e.g. urban park) will be the task of this module. The project will require students to fulfil multi-layered functions of urban parks, including ecological and biophysical considerations, passive & active recreational programmes, visible & invisible circulation of human and animals, and park management. The module will also introduce an overview of problem-solving techniques (e.g. SWOT analysis of strategy, iterative design process) that will guide the students towards logical and comprehensive design outputs.", + "title": "Design 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD2002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops students\u2019 technical ability to effectively steward land and water resources in the context of land development. Landscape architects hold stewardship of the land as a key responsibility of the profession. This module focuses on design as a first step of stewardship. Understanding design implementation standards and technology is an essential part of the design process because it ensures successful installation and provides opportunity to steward land, vegetation and water resources. Through exercises and project work, this module allows students to apply basic concepts and skills that requires them to make judgements as to best approaches to stewardship.", + "title": "Landscape Construction I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD2003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The urban environment presents very different conditions from which plants have evolved in their natural environment. For plants to in urban areas, two specific general conditions need to be fulfilled: creating favourable growing conditions and use of appropriate landscape design for plants to thrive. This module focuses on (1) understanding unique growing urban conditions, covering aspects such as urban temperatures, water, nutrients, light and soil, (2) design of planting areas to satisfy growth needs, (3) understanding the large diversity of plants suitable for different urban conditions, (4) planting design to ensure plants can thrive in urban areas.", + "title": "Planting Design and Horticulture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD2004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-SR6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding of the basic concepts and uses of Geographic Information Systems (GIS) technology and spatial analysis. GIS is a combination of software and hardware with capabilities for manipulating, analyzing and displaying spatially-referenced information-information which is referenced by its location on the earth's surface. By linking data to maps, GIS reveals relationships not apparent with traditional item-referenced information systems and database management products, and by displaying information in a graphic form, it unpacks complex spatial patterns. The course emphasizes the concepts needed to use GIS correctly and effectively for manipulating, querying, analyzing, and visualizing spatial data.", + "title": "Introductory GIS for Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD2005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course applies principles of landscape design that respond to a site-specific project. Work in the studio introduces to students the core design processes including site analysis, design strategies, design development, and visualization. The assigned project will require botanical knowledge, as well as knowledge of topics related to tropicality (extreme heat, hot & humid) and tropical ecology (high level of heterogeneity, dynamic growth of plants). The module will also introduce problem-solving techniques using a systemic thinking process. The module will simultaneously include hands-on gardening activities on the university campus.", + "title": "Design 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD2006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 5, + 6, + 6, + 7, + 7, + 8, + 8, + 9, + 9, + 10, + 10, + 11, + 11, + 12, + 12, + 13, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course applies principles of landscape design responding to a site specific project. Designing a meso-scale urban greenery (e.g. urban park) will be the task of this module. The project will require students to fulfil multi-layered functions of urban parks, including ecological and biophysical considerations, passive & active recreational programmes, visible & invisible circulation of human and animals, and park management. The module will also introduce an overview of problem-solving techniques (e.g. SWOT analysis of strategy, iterative design process) that will guide the students towards logical and comprehensive design outputs.", + "title": "Design 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD2007", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course continues to develop a level of competence in design skills and critical thinking through a design task that increases the scale and complexity of considerations. Focusing on a high-dense urban context, students will be asked to retrofit existing neighbourhood landscapes in residential blocks/towns. The emphasis will be liveability and sustainability and will involve the integration of required spaces/facilities and innovative landscape elements within a high-dense urban context. They will work across a range of representational modes including technical diagrams and three dimensional physical/digital modelling to develop relative certainty in the functional and aesthetic aspects of their design proposal.", + "title": "Design 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD3001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 5, + 6, + 6, + 7, + 7, + 8, + 8, + 9, + 9, + 10, + 10, + 11, + 11, + 12, + 12, + 13, + 13 + ], + "venue": "SDE1-CL3", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course continues to develop a level of competence in design skills and critical thinking by applying landscape architectural design techniques and knowledge students have gained in previous studios. Students will be asked to retrofit existing infrastructure on a planning scale that increases the scale and complexity of considerations. The emphasis will be to develop a multifunctional landscape infrastructure that serves ecosystem functions. This will involve the integration of required engineering parameters and innovative landscape interventions towards resilient and sustainable cities. Students will use a range of representational modes to develop relative certainty in multi-functional aspects of their design proposal.", + "title": "Design 6", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD3002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide informative knowledge on how design proposals are developed as professional drawings, how they are constructed, and operated in professional landscape architecture practice. It will give an overview of the nature of a professionalism that requires the active integration of related design fields. The course will clarify the responsibilities of landscape architects within the design team, as well as among different stakeholder groups, including clients, users, landscape contractors, managers, and policy makers. It will also cover office and project management, contract procedures, construction administration, ethics, and different types of oral and written communication skills for professional practice.", + "title": "Professional Practice", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD3003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to develop advanced representational skills that make connections between software, technology and analogue modes, such as scripted algorithms, digital parametric tools, the media of film, animation, advanced fabrication and prototyping. The emphasis is not only on developing the students\u2019 operational knowledge of the software and representation tools, but also on enhancing their ability to customize analysis and representational methodologies for a dynamic landscape. The module will introduce emerging technologies while being relevant to legislation and emerging industry practice, such as Building Information Modelling (BIM).", + "title": "Landscape Representation Techniques", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD3004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The internship programme aims to provide opportunities for third year undergraduates to work in landscape architecture or allied firms or organisations with design centric focus to gain the exposure and experience and apply the knowledge learnt in school in the professional setting.\n\nStudents are required to perform a structured and supervised internship in a company/organization for a minimum of 12 weeks. Weekly logbook as well as internship reports will be used a part of the evaluation of their internship experience.", + "title": "Landscape Architecture Internship Programme", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LAD3005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to basic ecological principles which underlie the practice of ecological landscape design. It will provide students with a fundamental understanding of the composition, structure and dynamics of ecological systems such as forests, lakes, streams, wetlands and cities. It will also provide students with a working knowledge of several ecological concepts such as stability, complexity, diversity, equilibrium, conservation, restoration, sustainability and resilience. A mixture of lectures, reading materials, field trips and discussions will assist students in providing insights on how to fill the knowledge gaps between the science of ecology and the practice of landscape architecture.", + "title": "Basics of Ecology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD3006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-SR4", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops higher level skills in landscape design and marks the first of four subsequent master-level core studios in landscape design. Projects of city quarter scale are undertaken to explore issues of context, programme and socio-ecological considerations. Projects will cover sites with different functions, e.g. residential, commercial, industrial, educational, health and recreation. Civic spaces like roadsides, highways, plazas, parks and city squares will also be tackled. The emphasis is on urban ecology and tropical design.", + "title": "Design 7", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD4001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops an appreciation for design skills in landscape design as applied on a large city. Interdisciplinary requirements from planning guidelines, architecture design, engineering limitations; as well as understanding existing natural land and urban systems will be introduced into the design process. The project site addresses complex urban design issues. There is an emphasis on deriving innovative design solutions using ecological and sustainability principles.", + "title": "Design 8", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD4002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is consisting of two parts.\nThe first part emphasizes landscape engineering techniques focused on designing landscape elements for urban stormwater management (water sensitive urban design, WSUD). These WSUD elements include design of bioswales, bioretention systems and constructed wetland constructions. The course will cover fundamentals in hydrology and hydraulics, application of the knowledge for\ndesign of WSUD, including sizing, material specifications and construction and design considerations, and proficiency in production of construction drawings.\nThe second part provide informative knowledge on how design proposals are developed as professional drawings, how they are constructed, and operated in professional landscape architecture practice. It will give an overview of the nature of a professionalism that requires the active integration of related design fields. The course will clarify the responsibilities of landscape architects within the design team, as well as among different stakeholder groups, including clients, users, landscape contractors, managers, and policy makers. It will also cover office and project management, contract procedures, construction administration, ethics, and different types of oral and written communication skills for professional practice.", + "title": "Landscape Construction II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD4003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Geodesign is a design and planning method which tightly couples the creation of design proposals with impact simulations informed by geographic contexts. This module focuses specifically on developing the knowledge and techniques of site analysis and planning that are essential for sustainable landscape architecture. Topics include site inventory, site and landscape assessment, landscape and vegetation modeling, scenario techniques, and interactive 3D visualization. Geographic information system (GIS) software is used as the platform for the development of advanced techniques in analyzing, evaluating, managing, and modeling.", + "title": "GeoDesign", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD4004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve a critical and thorough discussion of specific topics in Urban Landscape Architecture. Examples of topics that may be discussed are: Tropical Urban Landscape Design, Urban Landscape Architecture in Megacities, Sustainable Urban Landscape Architecture, Landscape Architecture in the Informal City, Landscape Visualisation. This module may also take the form of an independent study, in which a designated supervisor guides the student to undertake a guided research project with a pre-determined study plan.", + "title": "Topics in Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD4005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From the invention of the axe to surveying tools like the graphometre, technological advancements have always influenced how we document, understand, design and modify our landscapes. Perhaps the most influential was Geographic Information System (GIS) technology which allowed the convergence of topological, ecological and even social data into the discourse of landscape architecture. However, unlike the two-dimensional nature of GIS, landscapes are inherently three dimensional. The course thus explores the various advances that allow landscape architects to operate within a 3D environment with data collected from reality, studied and modified through computational thinking and enriched through information modelling.", + "title": "Digital Techniques In Landscape Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD4006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Landscape architecture is not shaped just by environmental and aesthetic considerations, but also by the process of social engagement, social hierarchies, and power structures in society. This module introduces students to key concepts and frameworks of political ecology, which is a broad field of study and research that focuses on socio-environmental conflicts and their origins. Through a variety of teaching and learning modes, students examine landscape case studies representing different contexts, scales, and histories to uncover diverse human\u2010environment interactions. There is an emphasis on applying different tools and methods to conduct and communicate political ecology research.", + "title": "Political Eco and Land", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD4007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops higher level skills in landscape design and marks the first of four subsequent master-level core studios in landscape design. Projects of city quarter scale are undertaken to explore issues of tropical urban context, programme and socio-ecological considerations.\nThe studio applies fundamental knowledge in urban ecology, socio cultural studies, and relevant sciences as a core design approach. It aims to translate acquired data and information (through literature reviews and experts\u2019 inputs, community surveys, GIS analysis, etc.) into spatial forms. It requires systemic design development processes with technically competency and ecological aesthetics.", + "title": "Design 7 (Emphasies on Ecological Design)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD4008", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Design Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops higher level skills in landscape design and marks the first of four subsequent master-level core studios in landscape design. Projects of city quarter scale are undertaken to explore issues of context, programme and socio-ecological considerations. The studio advances the application and understanding of various digital techniques within a design studio framework and covers a range of topics from reality capture, digital and parametric modeling, information modelling and digital representational techniques. It aims to leverage the plethora of technological advancements that have been made to prepare the incoming digital wave sweeping through the construction industry.", + "title": "Design 7 (Emphasis on Landscape Technology)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD4009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops an appreciation for design skills in landscape design as applied on a large city. Interdisciplinary requirements from planning guidelines, architecture design, engineering limitations, understanding existing natural land and urban systems will be introduced into the design process. The project site addresses complex urban design issues.\nThe studio aims to develop novel landscape typologies towards ecological resilience and sustainability. Students are expected to understand geopolitical dynamics and characterize socio-ecological functions of sites at multiple scales. Application of various quantitative and qualitative methods through interdisciplinary approaches will contribute to determine configuration, sizing and functions of design projects.", + "title": "Design 8 (Emphasis on Ecological Design)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD4010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This studio-based module develops an appreciation for design skills in landscape design as applied on a large city. Interdisciplinary requirements from planning guidelines, architecture design, engineering limitations, understanding existing natural land and urban systems will be introduced into the design process.\nThe studio deals with large scale performative testing through the digitisation of landscapes and advanced computer simulations that allow for a deeper understanding of the complexities in outdoor environments. An appreciation of the intersection between design, planning and engineering disciplines will allow students to be more effective in communicating in multi-disciplinary teams in future.", + "title": "Design 8 (Emphasis on Landscape Technology)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LAD4011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the different contemporary and emerging technologies and techniques that have become essential components of urban greening design and practices. It traces the origins of such technologies and techniques as responses to challenges in creating a green and ecologically-balanced urban environment, explains their scientific underpinnings, and provides examples of real-life applications. Topics covered include metrics used to measure greenery, technologies used to integrate greenery with the grey (buildings and infrastructure), blue (waterways and waterbodies) and brown (road infrastructure) elements of the built environment and plants as the basic building blocks of functional landscapes.", + "title": "Urban Greening: Technologies and Techniques", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAD4012", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on basic linguistic and communicative structures of the French language. By developing the four skills of listening, speaking, reading and writing as well as teaching basic grammar and vocabulary, it aims at helping students achieve communicative competence in simple everyday situations and personal interaction. The module will also attempt to help students optimise their learning by teaching them vital strategies for language learning and language use. The assessment for this module is 100% Continuous Assessment.", + "title": "French 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAF1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to further enhance students' proficiency in the four basic skills of listening, speaking, reading and writing as well as increase their knowledge of the syntactical, morphological, phonetic and lexical aspects of the French language. Students will also acquire a better grasp of learning and communicative strategies (e.g. skimming, selective reading, reading for details, inferencing and mnemonic techniques etc.). Authentic texts from daily communicative situations (such as letters, dialogues, brochures, TV and radio interviews, signs etc.) will serve as the main source of learning materials. The assessment for this module is 100% Continuous Assessment.", + "title": "French 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAF2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building upon the foundation of the French 2 module, this module focuses on the development of students' ability to communicate on fairly complex topics of general interests. It will continue to adopt an integrated approach to language learning and cultivate students' proficiency in all areas of language learning, including their learning competence. Strategies to be developed include writing and speaking strategies such as brainstorming, arranging ideas and collecting linguistic expressions prior to the writing or speaking tasks. The assessment for this module is 100% Continuous Assessment.", + "title": "French 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAF3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be taught to comprehend longer listening and reading texts on more complex topics of general interest as well as on aspects of French culture, society and life. They will also acquire the ability to express their views and communicate meaningfully on the same topics at greater length, both in writing and orally. In the area of grammar and vocabulary, the focus will shift more towards textlinguistic and pragmatic features. Language learning skills and strategies will include recognising and applying common linguistic and sociolinguistic norms in the use of the French language. The assessment for this module is 100% Continuous Assessment.", + "title": "French 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAF3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "French for Academic Purposes is designed for Student Exchange Programme students who plan to study in France and already have an intermediate level in French. The aims of the module are to understand longer texts, to write structured essays, and to present ideas in a logical and confident way. The students also work on their listening and speaking skills. To be able to adapt well to the French environment, they study various aspects of French culture (the education system, family life, national identity). The assessment for this module is 100% Continuous Assessment.", + "title": "French for Academic Purposes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAF3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module seeks to develop the student's ability to understand French language and culture through the study of various materials: newspapers, magazines, extracts of films and books, web sites. Students will be introduced to complex documents and will learn different approaches for text and discourse analysis.", + "title": "French 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAF4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Friday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module seeks to develop the student's ability to understand French language and culture through the study of various materials: newspapers, magazines, extracts of films and books, web sites. Students will be introduced to complex documents and will learn different approaches for text and discourse analysis.", + "title": "French 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAF4201HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on the foundations of French 5, this module helps the students to develop and put in practical use the knowledge acquired in various specific fields, such as commercial French, contemporary culture, advanced conversation and writing skills.", + "title": "French 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAF4202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on the foundations of French 5, this module helps the students to develop and put in practical use the knowledge acquired in various specific fields, such as commercial French, contemporary culture, advanced conversation and writing skills.", + "title": "French 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAF4202HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced-level French module explores in depth current affairs topics in the French society using on a range of authentic and current written and multimedia materials. Emphasis will be on the further development students' ability to communicate on fairly complex topics of general interest through an enhanced knowledge of the French language, culture, society, literature and/or linguistics.", + "title": "French Language and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAF4203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced-level French module explores in depth current affairs topics in the French society using on a range of authentic and current written and multimedia materials. Emphasis will be on the further development students' ability to communicate on fairly complex topics of general interest through an enhanced knowledge of the French language, culture, society, literature and/or linguistics.", + "title": "French Language and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAF4203HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced-level French module explores in depth topics in the Francophone world using on a range of authentic and current written and multimedia materials. Emphasis will be on the further development of oral and written skills \u2013 and more generally the expansion of communicative competency \u2013 through an enhanced knowledge of the Francophone culture, society, literature and/or linguistics.", + "title": "Francophone Studies in Context", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAF4204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced-level French module explores in depth topics in the Francophone world using on a range of authentic and current written and multimedia materials. Emphasis will be on the further development of oral and written skills \u2013 and more generally the expansion of communicative competency \u2013 through an enhanced knowledge of the Francophone culture, society, literature and/or linguistics.", + "title": "Francophone Studies in Context", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAF4204HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the basic linguistic and communicative structures of the German language. By developing the four skills of listening, speaking, reading and writing as well as teaching basic grammar and vocabulary, it aims at helping students achieve communicative competence in simple everyday situations and personal interaction. The module will also attempt to help students optimise their learning by teaching them vital strategies for language learning and language use.", + "title": "German 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAG1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0211", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to further enhance students' proficiency in the four basic skills of listening, speaking, reading and writing as well as increase their knowledge of the syntactical, morphological, phonetic and lexical aspects of the German language. Students will also acquire a better grasp of learning and communicative strategies. Authentic texts from daily communicative situations will serve as the main source of learning materials.", + "title": "German 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAG2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building upon the foundation of the German 2 module, this module focuses on the development of students' ability to communicate on fairly complex topics of general interests. It will continue to adopt an integrated approach and cultivate students' proficiency in all areas of language learning, including their learning competence. Strategies to be developed focus on writing and speaking.", + "title": "German 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAG3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be taught to comprehend longer listening and reading texts on more complex topics of general interest as well as on aspects of German culture, society and life. They will also acquire the ability to express their views and communicate meaningfully on the same topics at greater length. In the area of grammar and vocabulary, the focus will shift more towards textlinguistic and pragmatic features. Language learning skills and strategies will include recognising and applying common sociolinguistic norms in the use of the language.", + "title": "German 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAG3202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is specially aimed at teaching students who are interested in studying in a German-speaking country. They will be taught to comprehend longer listening and reading texts on more complex topics of academic interest as well as on aspects of German culture, society and life.", + "title": "German for Academic Purposes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAG3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with adequate skills and strategies to engage in serious discourse with native or other foreign speakers or write argumentative pieces on complex social, political, cultural and environmental topics. Such skills will encompass learning how to summarise long and difficult texts, structuring essays, collating linguistic means of expressions for language production and improving text cohesion.", + "title": "German 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAG4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with adequate skills and strategies to engage in serious discourse with native or other foreign speakers or write argumentative pieces on complex social, political, cultural and environmental topics. Such skills will encompass learning how to summarise long and difficult texts, structuring essays, collating linguistic means of expressions for language production and improving text cohesion.", + "title": "German 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAG4201HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with further training in skills and strategies to engage in authentic discourse and more complex argumentative writing. Topics of social, historical and cultural interest will be introduced through authentic materials such as selected works of literature, texts from newspapers and magazines, and audio or video recordings.", + "title": "German 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAG4202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with further training in skills and strategies to engage in authentic discourse and more complex argumentative writing. Topics of social, historical and cultural interest will be introduced through authentic materials such as selected works of literature, texts from newspapers and magazines, and audio or video recordings.", + "title": "German 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAG4202HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to further develop the students' ability to comprehend texts as well as to effectively communicate their views on highly complex social, political, cultural and environmental topics. Students will be introduced to rhetorically more demanding text types such as argumentative texts or commentaries (e.g. newspaper and magazine articles, television documentaries etc.). This module will be conducted in German.", + "title": "German Studies 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAG4203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to further develop the students' ability to comprehend texts as well as to effectively communicate their views on highly complex social, political, cultural and environmental topics. Students will be introduced to rhetorically more demanding text types such as argumentative texts or commentaries (e.g. newspaper and magazine articles, television documentaries etc.). This module will be conducted in German.", + "title": "German Studies 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAG4203HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce advanced students to various themes and topics in German culture and society. The texts for this module will be drawn from German literature, the press, and visual and computer media. The module will be conducted in German. It will offer students a further insight into major issues in German culture, society and history.", + "title": "German Studies 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAG4204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce advanced students to various themes and topics in German culture and society. The texts for this module will be drawn from German literature, the press, and visual and computer media. The module will be conducted in German. It will offer students a further insight into major issues in German culture, society and history.", + "title": "German Studies 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAG4204HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Hindi 1 is a beginners' module. This is an integrated course which will help students gain basic proficiency in the four skills (listening, speaking, reading, and writing), grammar, vocabulary (including Devanagari, the Hindi alphabet), for personal interaction and communication in authentic situations.", + "title": "Hindi 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAH1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Hindi 2 is a beginners\u2019 module, and is a continuation of Hindi 1. It is an integrated course which will help students gain higher basic proficiency in the four skills (listening, speaking, reading, and writing), grammar, vocabulary (including Devanagari, the Hindi alphabet), for personal interaction and communication in authentic situations.", + "title": "Hindi 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAH2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0312", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Hindi 3 is a continuation of Hindi 2. It is an\n\nintegrated module which will help students gain\n\nintermediate proficiency in the four skills\n\n(listening, speaking, reading, and writing),\n\ngrammar, and vocabulary, for personal\n\ninteraction and communication in authentic\n\nsituations.", + "title": "Hindi 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAH3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "\"Hindi 4 is a continuation of Hindi 3. It is an integrated module which will help students gain higher intermediate proficiency in the four skills (listening, speaking, reading, and writing), grammar, and vocabulary, for personal interaction and communication in authentic situations.\"", + "title": "Hindi 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAH3202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the skills attained through studying Hindi 4. The aim is to introduce students to a range of typical forms of Hindi language likely to be encountered in authentic texts such as fiction, news media, broadcast media and cinema. Issues addressed in the module will include: strategies for the development of higher level vocabulary and the study of advanced Hindi grammar and usage.", + "title": "Hindi 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAH4201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the skills attained through studying Hindi 4. The aim is to introduce students to a range of typical forms of Hindi language likely to be encountered in authentic texts such as fiction, news media, broadcast media and cinema. Issues addressed in the module will include: strategies for the development of higher level vocabulary and the study of advanced Hindi grammar and usage.", + "title": "Hindi 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAH4201HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students build on the skills attained through studying Hindi 5. Students will be able to gain higher proficiency in the Hindi language for personal interaction in an authentic environment with native or foreign speakers of Hindi. Students will be taught to improve upon their skills of listening, speaking, reading and writing by being exposed to topics of social, historical and cultural interest.", + "title": "Hindi 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAH4202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students build on the skills attained through studying Hindi 5. Students will be able to gain higher proficiency in the Hindi language for personal interaction in an authentic environment with native or foreign speakers of Hindi. Students will be taught to improve upon their skills of listening, speaking, reading and writing by being exposed to topics of social, historical and cultural interest.", + "title": "Hindi 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAH4202HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for students with no prior knowledge of Japanese. We aim to develop Japanese competence through handling various language tasks in daily life situations using basic linguistic and socio-cultural knowledge. Students will also learn how to read and write Hiragana and Katakana (Japanese scripts), as well as approximately 60 kanji (Chinese characters). Students with prior knowledge must contact the Centre for Language Studies to take a placement test.", + "title": "Japanese 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A17", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A18", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B9", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B10", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Monday", + "lessonType": "Lecture", + "size": 96, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 96, + "covidZone": "B" + }, + { + "classNo": "A7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 96, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B18", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A9", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A17", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 81, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B8", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B9", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B17", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "B15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds upon the basis of Japanese 1 and aims to develop basic linguistic and socio-cultural skills and expand the repertoire of the daily topics and situations with simple structures. While more emphasis is placed on the development of oral communication skills, students will also learn how to read short passages and write short compositions. Approximately 100 new kanji characters will be introduced.", + "title": "Japanese 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B6", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 116, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A12", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B6", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Friday", + "lessonType": "Lecture", + "size": 64, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 64, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Friday", + "lessonType": "Lecture", + "size": 64, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building upon the basis of Japanese 2, this module develops students' linguistic knowledge and sociocultural skills and expands the repertoire of daily topic and situations for students to have better communication. Complex structures such as noun modification, transitive/intransitive verb sentences and conditional forms are introduced. Approximately 140 new kanji will be introduced. With this knowledge of characters, students will be able to understand and write simple and short essays.", + "title": "Japanese 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ2202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 64, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Friday", + "lessonType": "Lecture", + "size": 58, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0314", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B8", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 72, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 56, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building upon the basis of Japanese 3, this module aims to further develop students' communication skills on daily topics of general interests. It enhances students' socio-cultural awareness and enables them to communicate meaningfully in appropriate manner using more complex grammar structures including passive forms, embedded questions, and a limited set of polite expressions. Approximately 150 kanji will be introduced, and students will be able to write short coherent texts and understand various types of texts including some formal ones.", + "title": "Japanese 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ2203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 88, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0316", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building upon the basis of Japanese 4, this module aims to equip students with skills and strategies to discuss fairly complex topics such as current social and cultural issues. Students will also learn how to express their thoughts in writing with supporting evidence in a convincing and organised manner. By the end of this module, students will be familiar with the language to the extent of being comfortable in using it as a medium of communication (oral, written, listening, and reading) with native speakers in various situations.", + "title": "Japanese 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Thursday", + "lessonType": "Lecture", + "size": 64, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Wednesday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Friday", + "lessonType": "Lecture", + "size": 64, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building upon the basis of Japanese 5, this module further enhances skills and strategies to discuss complex topics such as social, cultural, and historical issues based on authentic materials. Students will also learn how to summarize long and complex texts, how to structure essays and skills to understand media materials. By the end of this module, students will attain good all-round proficiency in the four skills (listening, speaking, reading and writing) and will be able to communicate with others in Japanese while handling more elaborate situations.", + "title": "Japanese 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 54, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0413", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Friday", + "lessonType": "Lecture", + "size": 36, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be taught the specialised vocabulary and communication styles found in the Japanese business world, including both the written and the oral forms of communication. The ability to read, understand and write minutes will be emphasised. Students will also be introduced to the language-related work style found in the Japanese business environment.", + "title": "Business Japanese 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is for students who wish to use their Japanese knowledge in their future careers. The aim of this module is to cultivate students\u2019 general comprehension of Business Japanese and to provide them with practical communication skills and strategies, which they can use to communicate effectively and appropriately in a variety of business-related settings including job interviews. Students will also become familiar with knowledge and skills essential for global business such as business documents, emails, reports as well as business manners and etiquette.", + "title": "Business Japanese 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ3204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0209", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with further training in language skills and communication strategies to engage in authentic discourse involving various\ngenres and media materials such as newspapers, films, TV programs and the Internet. Students will be taught to comprehend media texts such as newspaper articles, blog entries, and drama, etc. They will also engage in project work. Topics cover a wide variety of social and cultural issues in Japan, including popular culture and current affairs.", + "title": "Media Japanese", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ3205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with advanced skills and strategies to critically read, understand, and analyse authentic discourse materials published in print and/or via online media. Topics range social and cultural issues in Japan including popular culture and current affairs. Students learn how information is delivered through each media and then create their own media to express their original materials in Japanese. Through this module, students\u2019 ability to express in Japanese, media literacy, and critical thinking skills will be enhanced.", + "title": "Media Japanese 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ4203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with advanced skills and strategies to critically read, understand, and analyse authentic discourse materials published in print and/or via online media. Topics range social and cultural issues in Japan including popular culture and current affairs. Students learn how information is delivered through each media and then create their own media to express their original materials in Japanese. Through this module, students\u2019 ability to express in Japanese, media literacy, and critical thinking skills will be enhanced.", + "title": "Media Japanese 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAJ4203HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students are to read a wide variety of Japanese texts written by people living in the contemporary society in Japan and to discuss the topics brought up in those texts solely in Japanese. Students also learn how to give presentations and write short essays in Japanese on the topics related to their own majoring fields through project work in which they exchange their ideas and opinions with not only classmates but also Japanese university students. Having acquired such advanced skills, students are expected to be graduates who can make a positive contribution to contemporary society.", + "title": "Japanese for Contemporary Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAJ4205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students are to read a wide variety of Japanese texts written by people living in the contemporary society in Japan and to discuss the topics brought up in those texts solely in Japanese. Students also learn how to give presentations and write short essays in Japanese on the topics related to their own majoring fields through project work in which they exchange their ideas and opinions with not only classmates but also Japanese university students. Having acquired such advanced skills, students are expected to be graduates who can make a positive contribution to contemporary society.", + "title": "Japanese for Contemporary Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAJ4205HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Korean 1 is a beginners module. This is an integrated course which will help students gain basic proficiency in the four skills (listening, speaking, reading and writing), grammar and vocabulary (including Hanguel, the Korean alphabet) for personal interaction and communication in authentic situations.", + "title": "Korean 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAK1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Thursday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Korean 2 is the continuation of Korean 1. This is also an integrated course which will help students gain higher basic proficiency in the four skills (listening, speaking, reading and writing), grammar and vocabulary (including Hanguel, the Korean alphabet) for personal interaction and communication in authentic situations.", + "title": "Korean 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAK2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Korean 3 is a continuation of Korean 2. It is an\n\nintegrated module which will help students gain\n\nintermediate proficiency in the four skills\n\n(listening, speaking, reading, and writing),\n\ngrammar, and vocabulary, for personal\n\ninteraction and communication in authentic\n\nsituations.", + "title": "Korean 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAK3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Korean 4 is a continuation of Korean 3. It is an integrated module which will help students gain higher intermediate proficiency in the four skills (listening, speaking, reading, and writing), grammar, and vocabulary, for personal interaction and communication in authentic situations.", + "title": "Korean 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAK3202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module Korean for Academic Purposes is specially designed for students who are interested in studying in Korea. Its primary focus will be on the preparation of students for essential communicative situations and interactions in a Korean university environment. Students will be taught to comprehend longer listening and reading texts on more complex topics of academic interest.", + "title": "Korean for Academic Purposes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAK3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Korean 5 is a continuation of Korean 4. In this module. a wide variety of interesting, informative, authentic and culturally significant reading materials will be introduced\nto help students achieve high levels of proficiency not only in interpersonal but also in interpretive and presentational communication. This module aims to equip students with adequate skills and strategies to engage in serious discourse with native or other foreign speakers and write argumentative pieces on complex social, political, cultural and environmental topics.", + "title": "Korean 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAK4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Korean 5 is a continuation of Korean 4. In this module. a wide variety of interesting, informative, authentic and culturally significant reading materials will be introduced\nto help students achieve high levels of proficiency not only in interpersonal but also in interpretive and presentational communication. This module aims to equip students with adequate skills and strategies to engage in serious discourse with native or other foreign speakers and write argumentative pieces on complex social, political, cultural and environmental topics.", + "title": "Korean 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAK4201HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Lecture", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Korean 6 is a continuation of Korean 5. It is an integrated module which will help students gain higher proficiency in the four skills (listening, speaking, reading and writing), grammar and vocabulary, for personal interaction and communication in authentic situation. This module aims to provide students with further training in skills and strategies to engage in authentic discourse and more complex argumentative writing. Topics of social , historical and cultural interest will be introduced through authentic materials such as selected works of literature , text from news papers and magazines and audio and video recordings.", + "title": "Korean 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAK4202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Korean 6 is a continuation of Korean 5. It is an integrated module which will help students gain higher proficiency in the four skills (listening, speaking, reading and writing), grammar and vocabulary, for personal interaction and communication in authentic situation. This module aims to provide students with further training in skills and strategies to engage in authentic discourse and more complex argumentative writing. Topics of social , historical and cultural interest will be introduced through authentic materials such as selected works of literature , text from news papers and magazines and audio and video recordings.", + "title": "Korean 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAK4202HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Korean 7 is a continuation of Korean 6. It is an integrated module which will help students gain advance proficiency in the four skills (listening, speaking, reading, and writing), grammar, and vocabulary, for a better understanding of Korean social issues and more formal setting situation.", + "title": "Korean 7", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAK4203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Korean 7 is a continuation of Korean 6. It is an integrated module which will help students gain advance proficiency in the four skills (listening, speaking, reading, and writing), grammar, and vocabulary, for a better understanding of Korean social issues and more formal setting situation.", + "title": "Korean 7", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAK4203HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Lecture", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Korean 8 is a continuation of Korean 7. It is an integrated module which will help students gain advanced proficiency in the four skills (listening, speaking, reading, and writing), grammar, and vocabulary, for a better understanding of Korean issues and more formal setting situation.", + "title": "Korean 8", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAK4204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Korean 8 is a continuation of Korean 7. It is an integrated module which will help students gain advanced proficiency in the four skills (listening, speaking, reading, and writing), grammar, and vocabulary, for a better understanding of Korean issues and more formal setting situation.", + "title": "Korean 8", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAK4204HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims at enabling non-Tamil-speaking beginners to achieve competence in understanding and using basic Tamil, both its spoken and written forms. The emphasis is mainly on conversational Tamil and its practical use at the level of everyday discourse and on written Tamil and its use at the beginners' level. To facilitate immersion into the Tamil language, students will be taught the necessary skills of listening, reading, writing and speaking initially through a Romanised script; during the semester the students will learn the orthographic system of the Tamil language. The essential aspects of Tamil grammar will also be taught. By the end of module, students will be able to write and read small texts by using the Tamil orthographic system and possess listening and speaking skills in Tamil language.", + "title": "Tamil 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAL1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "T1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "T1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a follow up to and continuation of the module Tamil 1. By the end of the module, students are expected to have a good grammatical understanding of the Tamil language and to have a vocabulary which makes it possible for them to handle all four aspects in Tamil language learning (speaking, listening, reading and writing) with ease and effectiveness. There will be an introduction to features of idiomatic Tamil and to everyday usages. Students will be able to write short compositions and letters and to read newspaper articles, stories and short poems.", + "title": "Tamil 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAL2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at guiding the beginner to achieve competence in understanding and using basic Malay. The emphasis is mainly on conversational Malay and its practical use at the level of everyday discourse. To facilitate immersion into the language students would be taught the necessary skills of listening, reading, writing and conversing in basic conversational Malay. The rudiments of Malay grammar would be taught where relevant or necessary.", + "title": "Malay 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAM1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a progression from Malay 1 and it seeks to build upon the standard attained by students in that module. This follow-up module introduces students by gradation to the use of standard Malay in relation to administration, commerce and the modern professions. The overriding aim of the module is for students to attain a functional competency in the Malay language for formal and practical purposes where necessary and relevant, aspects of Malay grammar would be taught.", + "title": "Malay 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAM2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "LAM2731", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a progression from Malay 2 and it aims to help students become more competent in the Malay language so that they will be confident and capable of effective communication with speakers of the target language and at the same time be aware of the sociolinguistic dimension of the target culture. Malay 3 will focus on the continuous mastery and development of language skills that will help students converse accurately and more fluently. This module is also aimed at enhancing students' communicative and social competence for effective communication in the Malay language.", + "title": "Malay 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAM3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Malay 4 is intended for students who wish to learn the Malay Language and have completed elementary Malay and Intermediate Malay 3. It is also for those who have equivalent knowledge of the Malay language to continue their study here. The course is intended for students who have already acquired a fairly proficient level of competency in the Malay language but wish to acquire the Malay language at a higher level and be able to use the target language for work related purposes within the context of the community in this region.", + "title": "Malay 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAM3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with adequate skills and strategies to engage in discourse with native or other foreign speakers on complex social, political, cultural and environmental topics. The course will enable students to participate in meaningful conversation involving complex and practical issues pertaining to socio-cultural and professional issues.", + "title": "Malay 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAM4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with adequate skills and strategies to engage in discourse with native or other foreign speakers on complex social, political, cultural and environmental topics. The course will enable students to participate in meaningful conversation involving complex and practical issues pertaining to socio-cultural and professional issues.", + "title": "Malay 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAM4201HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with adequate skills and strategies to engage the native or other foreign speakers on more complex social and cultural issues. Students will learn to summarise texts of higher order thinking skills, structuring essays, collating linguistic means of expressions for improved language production and text cohesion. The module is intended to make students proficient language users.", + "title": "Malay 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAM4202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Monday", + "lessonType": "Lecture", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with adequate skills and strategies to engage the native or other foreign speakers on more complex social and cultural issues. Students will learn to summarise texts of higher order thinking skills, structuring essays, collating linguistic means of expressions for improved language production and text cohesion. The module is intended to make students proficient language users.", + "title": "Malay 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAM4202HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Monday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Arabic 1 is a beginners\u2019 module. This is an\n\nintegrated course which will help students\n\ngain basic proficiency in the four skills\n\n(listening, speaking, reading, and writing),\n\ngrammar, vocabulary (including the Arabic\n\nalphabet), for personal interaction and\n\ncommunication in authentic situations.", + "title": "Arabic 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAR1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Arabic 2 is a beginners\u2019 module, and is a\n\ncontinuation of Arabic 1. It is an integrated\n\ncourse which will help students gain higher\n\nbasic proficiency in the four skills (listening,\n\nspeaking, reading, and writing), grammar,\n\nvocabulary (including the Arabic alphabet), for\n\npersonal interaction and communication in\n\nauthentic situations.", + "title": "Arabic 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAR2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Arabic 3 is a continuation of Arabic 2. Its focus is to improve upon the students\u2019 ability to interact in the language, augment their active vocabulary, and build upon their structural knowledge. An inductive/communicative approach is employed with all\nskills; the students are given real\u2010life situations so that they can put into practice their acquired vocabulary and newly learnt grammar points. Also, students are exposed\nto a good amount of comprehensible input, such as real conversations between native speakers, audios of newscasts, and parts of movies. They are also asked to\nwrite short compositions using newly taught structures and vocabulary.", + "title": "Arabic 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAR3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Arabic 4 is a continuation of Arabic 3. In this module, all skills of the language are equally dealt with. Further emphasis is placed on students\u2019 ability to communicate more fluently. More authentic language situations are brought into the classroom and used as language models. Students are asked to personalize these situations, putting into practice newly acquired vocabulary and structures. To consolidate the students\u2019 learning of new vocabulary and structures, they are asked to write compositions on a variety of topics in a way that match their linguistic ability.", + "title": "Arabic 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAR3202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "LAR4201 Arabic 5 is an advanced module and a continuation of LAR3201 Arabic 4. In this module, students will achieve better oral fluency, considerable ability in listening and reading comprehension, and better writing proficiency. Oral activities in form of group work, pair work, role\u2010plays, and presentations will be conducted regularly in both lectures and tutorials. Students will listen to authentic listening\ncomprehension materials, such as lectures, newscasts, and talk shows. In addition to readings on a variety of topics the students will read stories. Using\nthe vocabulary learned in lectures and tutorials, students will write compositions on different topics.", + "title": "Arabic 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAR4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "LAR4201 Arabic 5 is an advanced module and a continuation of LAR3201 Arabic 4. In this module, students will achieve better oral fluency, considerable ability in listening and reading comprehension, and better writing proficiency. Oral activities in form of group work, pair work, role\u2010plays, and presentations will be conducted regularly in both lectures and tutorials. Students will listen to authentic listening\ncomprehension materials, such as lectures, newscasts, and talk shows. In addition to readings on a variety of topics the students will read stories. Using\nthe vocabulary learned in lectures and tutorials, students will write compositions on different topics.", + "title": "Arabic 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAR4201HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "LAR4202 Arabic 6 is an upper advanced Arabic module and a continuation of LAR4201 Arabic 5. It is intended to make students proficient language users. The\nstudents will better their speaking skill through group discussions, pair work, and oral presentations. They will listen to advanced listening comprehension materials, such as newscasts, talk shows and movies. In addition to the textbook readings, students will read stories and newspaper articles. They will learn to write\nnew types of essays, such as descriptive, narrative and argumentative ones, using more selective language and complex structures. Higher level word\u2010formation\nprocesses and sentence structures will be taught.", + "title": "Arabic 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAR4202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "LAR4202 Arabic 6 is an upper advanced Arabic module and a continuation of LAR4201 Arabic 5. It is intended to make students proficient language users. The\nstudents will better their speaking skill through group discussions, pair work, and oral presentations. They will listen to advanced listening comprehension materials, such as newscasts, talk shows and movies. In addition to the textbook readings, students will read stories and newspaper articles. They will learn to write\nnew types of essays, such as descriptive, narrative and argumentative ones, using more selective language and complex structures. Higher level word\u2010formation\nprocesses and sentence structures will be taught.", + "title": "Arabic 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAR4202HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Spanish 1 is the introductory module to the language and culture of the Hispanic world. This course is designed to help students develop the four linguistic skills in Spanish as well as to expand their cultural competency. The module will focus on the acquisition of basic structures, which will be developed and reinforced in subsequent modules.", + "title": "Spanish 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAS1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "13", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Spanish 1. Spanish 2 pays close attention to aural/oral practice while strengthening basic grammar skills, writing, and reading comprehension. Students will continue to learn about the Hispanic world via readings and a variety of audiovisual materials. The module covers the second half of the textbook used in Spanish 1.", + "title": "Spanish 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAS2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module targets students who have completed the elementary Spanish modules (LAS1201 and LAS2201). It offers a combination of listening and speaking practice with a review of key concepts of Spanish grammar via targeted reading and writing activities. This module continues to incorporate Hispanic cultural elements through representative texts and audiovisual materials from the Spanish-speaking world.", + "title": "Spanish 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAS3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Spanish 3. Students taking this module will build upon what was covered in the first half and continue to expand their command of written and spoken Spanish. Spanish 4 pays close attention to aural/oral practice while strengthening more complex grammar skills (e.g., the subjunctive, passive voice), writing, and reading comprehension.", + "title": "Spanish 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAS3202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "LAS3732", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students taking this module will build upon what was covered at the Elementary and Intermediate levels to expand their command of written and spoken Spanish. Advanced Spanish will focus on readings and discussions of Spanish and Spanish American culture to continue developing students\u2019 vocabulary while reinforcing complex grammar and syntax. This module will also focus on accurate written production with attention paid to stylistics, genre, voice, while reviewing more advanced and nuance grammatical points.", + "title": "Spanish 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAS4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 4, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Lecture", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Lecture", + "size": 4, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Friday", + "lessonType": "Lecture", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students taking this module will build upon what was covered at the Elementary and Intermediate levels to expand their command of written and spoken Spanish. Advanced Spanish will focus on readings and discussions of Spanish and Spanish American culture to continue developing students\u2019 vocabulary while reinforcing complex grammar and syntax. This module will also focus on accurate written production with attention paid to stylistics, genre, voice, while reviewing more advanced and nuance grammatical points.", + "title": "Spanish 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAS4201HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Lecture", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Lecture", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Friday", + "lessonType": "Lecture", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is the culmination of the Spanish language programme and serves as a bridge to further study of Spanish language and culture. Students will work on refining their writing and speaking skills by engaging in a variety of tasks (e.g. analysing short stories by a variety of authors, reviewing current films, discussing current events). Students will read texts on cultural and literary analysis with the aim of refining their linguistics and critical thinking skills.", + "title": "Spanish 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAS4202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Friday", + "lessonType": "Lecture", + "size": 4, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is the culmination of the Spanish language programme and serves as a bridge to further study of Spanish language and culture. Students will work on refining their writing and speaking skills by engaging in a variety of tasks (e.g. analysing short stories by a variety of authors, reviewing current films, discussing current events). Students will read texts on cultural and literary analysis with the aim of refining their linguistics and critical thinking skills.", + "title": "Spanish 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAS4202HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Friday", + "lessonType": "Lecture", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Level of instruction will be B2.1, according to the\nCERF. This module aims to broaden the students\u2019\nunderstanding and knowledge of the society, culture\nand history of the Spanish-speaking countries. Along\nwith the proposed textbook, authentic source materials\nwill be used to convey an updated and comprehensive\nview of current issues in the Hispanic world, and to\nprovide students with the tools necessary to\ncomprehend the relationship between language and\nculture. This module is designed from a communicative\napproach, prioritising the active use of the language and\nencouraging interaction in Spanish at an\nintermediate/advanced level.", + "title": "Spanish 7", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAS4203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Level of instruction will be B2.1, according to the\nCERF. This module aims to broaden the students\u2019\nunderstanding and knowledge of the society, culture\nand history of the Spanish-speaking countries. Along\nwith the proposed textbook, authentic source materials\nwill be used to convey an updated and comprehensive\nview of current issues in the Hispanic world, and to\nprovide students with the tools necessary to\ncomprehend the relationship between language and\nculture. This module is designed from a communicative\napproach, prioritising the active use of the language and\nencouraging interaction in Spanish at an\nintermediate/advanced level.", + "title": "Spanish 7", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAS4203HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Level of instruction will be B2.2, according to the\nCERF. This module aims to broaden the students\u2019\nunderstanding and knowledge of the society, culture\nand history of the Spanish-speaking countries. Along\nwith the proposed textbook, authentic source materials\nwill be used to convey an updated and comprehensive\nview of current issues in the Hispanic world, and to\nprovide students with the tools necessary to\ncomprehend the relationship between language and\nculture. This module is designed from a communicative\napproach, prioritising the active use of the language and\nencouraging interaction in Spanish at an\nintermediate/advanced level.", + "title": "Spanish 8", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAS4204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Level of instruction will be B2.2, according to the\nCERF. This module aims to broaden the students\u2019\nunderstanding and knowledge of the society, culture\nand history of the Spanish-speaking countries. Along\nwith the proposed textbook, authentic source materials\nwill be used to convey an updated and comprehensive\nview of current issues in the Hispanic world, and to\nprovide students with the tools necessary to\ncomprehend the relationship between language and\nculture. This module is designed from a communicative\napproach, prioritising the active use of the language and\nencouraging interaction in Spanish at an\nintermediate/advanced level.", + "title": "Spanish 8", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAS4204HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop language proficiency in an integrated approach. Students will acquire language skills through participation in various communicative tasks. Through the exposure to the language, students will develop a general understanding of the cultures, the sociolinguistic and pragmatic aspects of the language. By the end of the module, students will acquire basic skills of speaking, listening, reading, and writing to maintain communication on common topics.", + "title": "Thai 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAT1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to further enhance students' proficiency in the four basic skills of speaking, listening, reading, and writing. Students will be exposed to more language functions and a wider range of topics. Through reading formulaic authentic texts, students will be introduced to the language in written form as it appears in daily communicative situations to achieve further understanding of the country, its culture and its people. At the end of this course, students will be equipped with a sound foundation of the language to maintain communication on topics relating to their personal and immediate environment.", + "title": "Thai 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAT2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5 + ], + "venue": "UTSRC-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-SR3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Thai 2. In this module, students will read, analyse, and discuss texts from literature, non-fiction, and academic sources covering a wide range of subjects related to the culture and society of the target language. Selection will include text and passage from short stories, journals, magazines, and newspapers, as well as audio-visual materials such as TV programs, feature films, etc. The range of readings is intended, firstly, to broaden students' vocabulary and familiarize them with terms relating to many fields of endeavor. Secondly, the objective is to introduce students to various aspects of the society and culture as expressed by Thai writers. Through exposure to the language as it appears in books and in the media, students will be able to hone their own language skills to be more applicable and practical in a workplace, academic, or business setting.", + "title": "Thai 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAT3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0101", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Thai 3. In this module, students will read, analyse, and discuss texts from literature, non-fiction, and academic sources covering a wide range of subjects related to the culture and society of the target language. Selection will include text and passage from short stories, journals, magazines, and newspapers, as well as audio-visual materials such as TV programs, feature films, etc. The range of readings is intended, firstly, to broaden students' vocabulary and familiarize them with terms relating to many fields of endeavor. Secondly, the objective is to introduce students to various aspects of the society and culture as expressed by Thai writers. Through exposure to the language as it appears in books and in the media, students will be able to hone their own language skills to be more applicable and practical in a workplace, academic, or business setting.", + "title": "Thai 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAT3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0101", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Thai 4. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and Thai. Students will progressively comprehend texts, not only from background and subject matter knowledge, but also from increasing control of language. They will also learn to handle conversation involving complication, in the form of connected discourse, and to make choices of diction, as well as manipulate grammatical features reflecting formal and informal registers.", + "title": "Thai 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAT4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0101", + "day": "Monday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Thai 4. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and Thai. Students will progressively comprehend texts, not only from background and subject matter knowledge, but also from increasing control of language. They will also learn to handle conversation involving complication, in the form of connected discourse, and to make choices of diction, as well as manipulate grammatical features reflecting formal and informal registers.", + "title": "Thai 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAT4201HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0101", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Thai 5. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and Thai. The most important objective is to improve students' language commands in employing discourse strategies. Learner's autonomy will be enhanced in the teaching-learning process. Students will take an active role in selecting materials, leading discussions, and developing projects.", + "title": "Thai 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAT4202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Thai 5. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and Thai. The most important objective is to improve students' language commands in employing discourse strategies. Learner's autonomy will be enhanced in the teaching-learning process. Students will take an active role in selecting materials, leading discussions, and developing projects.", + "title": "Thai 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAT4202HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with skills and strategies to read, understand and analyse articles in Thai media. By the end of this module, students will be familiarized with a wide range of advanced and authentic reading materials that are relevant to current social, economic and political developments. Further, students\u2019 communication and presentation skills on complex topics will be developed.", + "title": "Analysing Thai Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAT4203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with skills and strategies to read, understand and analyse articles in Thai media. By the end of this module, students will be familiarized with a wide range of advanced and authentic reading materials that are relevant to current social, economic and political developments. Further, students\u2019 communication and presentation skills on complex topics will be developed.", + "title": "Analysing Thai Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAT4203HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is multi-disciplinary and learner-centred, designed to meet specific needs of the learners in relation to ones\u2019 disciplines and career-oriented activities. It will equip the learners with integrated language skills and intercultural communicative competence which will be appropriately applied to contextualised situations, academics and professions.", + "title": "Thai for Academic Purposes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAT4204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is multi-disciplinary and learner-centred, designed to meet specific needs of the learners in relation to ones\u2019 disciplines and career-oriented activities. It will equip the learners with integrated language skills and intercultural communicative competence which will be appropriately applied to contextualised situations, academics and professions.", + "title": "Thai for Academic Purposes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAT4204HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop language proficiency in an integrated approach. Students will acquire language skills through participation in various communicative tasks. Through the exposure to the language, students will develop a general understanding of the cultures, the sociolinguistic and pragmatic aspects of the language. By the end of the module, students will acquire basic skills of speaking, listening, reading, and writing to maintain communication on common topics.", + "title": "Vietnamese 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAV1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to further enhance students' proficiency in the four basic skills of speaking, listening, reading, and writing. Students will be exposed to more language functions and a wider range of topics. Through reading formulaic authentic texts, students will be introduced to the language in written form as it appears in daily communicative situations to achieve further understanding of the country, its culture and its people. At the end of this course, students will be equipped with a sound foundation of the language to maintain communication on topics relating to their personal and immediate environment.", + "title": "Vietnamese 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAV2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Vietnamese 2. Emphasis continues to be on proficiency in all four skills, within selected range of vocabulary and grammar. Students will master language relating to a wider range of daily life situations and will gain flexibility in their language use. Reading will no longer be strictly limited to what is contained in the textbook specially prepared for the class. Gradually, short selection from media and literature sources such as short stories, poems, announcements, reports and other short, topic-specific pieces will be introduced to begin to familiarize students with actual usage.", + "title": "Vietnamese 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAV3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0208", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Vietnamese 3. In this module, students will read, analyse, and discuss texts from literature, non-fiction, and academic sources covering a wide range of subjects related to the culture and society of the target language. Selection will include text and passage from short stories, journals, magazines, and newspapers, as well as audio-visual materials such as TV programs, feature films, etc. The range of readings is intended, firstly, to broaden students' vocabulary and familiarize them with terms relating to many fields of endeavor. Secondly, the objective is to introduce students to various aspects of the society and culture as expressed by Vietnamese writers. Through exposure to the language as it appears in books and in the media, students will be able to hone their own language skills to be more applicable and practical in a workplace, academic, or business setting.", + "title": "Vietnamese 4", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAV3202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Vietnamese 4. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and business Vietnamese. Students will progressively comprehend texts, not only from background and subject matter knowledge, but also from increasing control of language. They will also learn to handle conversation involving complication, in the form of connected discourse, and to make choices of diction, as well as manipulate grammatical features reflecting formal and informal registers.", + "title": "Vietnamese 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAV4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Vietnamese 4. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and business Vietnamese. Students will progressively comprehend texts, not only from background and subject matter knowledge, but also from increasing control of language. They will also learn to handle conversation involving complication, in the form of connected discourse, and to make choices of diction, as well as manipulate grammatical features reflecting formal and informal registers.", + "title": "Vietnamese 5", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAV4201HM", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Vietnamese 5. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and business Vietnamese. The most important objective is to improve students' language commands in employing discourse strategies. Learner's autonomy will be enhanced in the teaching-learning process. Students will take an active role in selecting materials, leading discussions, and developing projects.", + "title": "Vietnamese 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAV4202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will build on the skills developed in Vietnamese 5. Students will progress from reading selections from passages to a more sustained and systematic encounter with the nature of the language used in novels, newspapers, Internet and other forms of popular publications, official public discourse, academic writings and business Vietnamese. The most important objective is to improve students' language commands in employing discourse strategies. Learner's autonomy will be enhanced in the teaching-learning process. Students will take an active role in selecting materials, leading discussions, and developing projects.", + "title": "Vietnamese 6", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LAV4202HM", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LAX2743", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Criminal Law (A)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1001A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Criminal Law (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1001B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Criminal Law (C)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1001C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Criminal Law (D)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1001D", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Criminal Law (E)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1001E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is meant to introduce students to the basic principles of criminal liability, mainly through the use of the homicide offences found in the Penal Code. The general defences found in the Penal Code as well as inchoate and\njoint liability of offenders will be covered in detail. During the course, reference may be made to offences found in other statutes and the law reform proposals from other jurisdictions. Students will also be encouraged to consider why certain forms of conduct are subject to criminal penalties and to critically assess these objectives", + "title": "Criminal Law (F)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1001F", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1630", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is meant to introduce students to the basic principles of criminal liability, mainly through the use of the homicide offences found in the Penal Code. The general defences found in the Penal Code as well as inchoate and joint liability of offenders will be covered in detail. During the course, reference may be made to offences found in other statutes and the law reform proposals from other jurisdictions. Students will also be encouraged to consider why certain forms of conduct are subject to criminal penalties and to critically assess these objectives", + "title": "Criminal Law (G)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1001G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is meant to introduce students to the basic principles of criminal liability, mainly through the use of the homicide offences found in the Penal Code. The general defences found in the Penal Code as well as inchoate and joint liability of offenders will be covered in detail. During the course, reference may be made to offences found in other statutes and the law reform proposals from other jurisdictions. Students will also be encouraged to consider why certain forms of conduct are subject to criminal penalties and to critically assess these objectives", + "title": "Criminal Law (H)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1001H", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is meant to introduce students to the basic principles of criminal liability, mainly through the use of the homicide offences found in the Penal Code. The general defences found in the Penal Code as well as inchoate and joint liability of offenders will be covered in detail. During the course, reference may be made to offences found in other statutes and the law reform proposals from other jurisdictions. Students will also be encouraged to consider why certain forms of conduct are subject to criminal penalties and to critically assess these objectives", + "title": "Criminal Law (I)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1001I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to provide students with a basic introduction to basic concepts, issues, and controversies of legal theory. The course will examine some or all of these topics: utilitarian and deontological moral theories; the relationship between morality and law; natural law and positivism; Critical Legal Studies (CLS); gender and the law; Asian values and jurisprudence, culture and the law; and law and economics. These approaches to law will be examined both in their own right and as perspectives from which positive law might be understood and critically assessed.", + "title": "Introduction To Legal Theory (A)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1002A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to provide students with a basic introduction to basic concepts, issues, and controversies of legal theory. The course will examine some or all of these topics: utilitarian and deontological moral theories; the relationship between morality and law; natural law and positivism; Critical Legal Studies (CLS); gender and the law; Asian values and jurisprudence, culture and the law; and law and economics. These approaches to law will be examined both in their own right and as perspectives from which positive law might be understood and critically assessed.", + "title": "Introduction To Legal Theory (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1002B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to provide students with a basic introduction to basic concepts, issues, and controversies of legal theory. The course will examine some or all of these topics: utilitarian and deontological moral theories; the relationship between morality and law; natural law and positivism; Critical Legal Studies (CLS); gender and the law; Asian values and jurisprudence, culture and the law; and law and economics. These approaches to law will be examined both in their own right and as perspectives from which positive law might be understood and critically assessed.", + "title": "Introduction to Legal Theory (C)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1002C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 52, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to provide students with a basic introduction to basic concepts, issues, and controversies of legal theory. The course will examine some or all of these topics: utilitarian and deontological moral theories; the relationship between morality and law; natural law and positivism; Critical Legal Studies (CLS); gender and the law; Asian values and jurisprudence, culture and the law; and law and economics. These approaches to law will be examined both in their own right and as perspectives from which positive law might be understood and critically assessed.", + "title": "Introduction to Legal Theory (D)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1002D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to provide students with a basic introduction to basic concepts, issues, and controversies of legal theory. The course will examine some or all of these topics: utilitarian and deontological moral theories; the relationship between morality and law; natural law and positivism; Critical Legal Studies (CLS); gender and the law; Asian values and jurisprudence, culture and the law; and law and economics. These approaches to law will be examined both in their own right and as perspectives from which positive law might be understood and critically assessed.", + "title": "Introduction to Legal Theory (E)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1002E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to provide students with a basic introduction to basic concepts, issues, and controversies of legal theory. The course will examine some or all of these topics: utilitarian and deontological moral theories; the relationship between morality and law; natural law and positivism; Critical Legal Studies (CLS); gender and the law; Asian values and jurisprudence, culture and the law; and law and economics. These approaches to law will be examined both in their own right and as perspectives from which positive law might be understood and critically assessed.", + "title": "Introduction to Legal Theory (F)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1002F", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 52, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to provide students with a basic introduction to basic concepts, issues, and controversies of legal theory. The course will examine some or all of these topics: utilitarian and deontological moral theories; the relationship between morality and law; natural law and positivism; Critical Legal Studies (CLS); gender and the law; Asian values and jurisprudence, culture and the law; and law and economics. These approaches to law will be examined both in their own right and as perspectives from which positive law might be understood and critically assessed.", + "title": "Introduction to Legal Theory (G)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1002G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Introduction to Legal Theory (H)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1002H", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to Legal Theory introduces the student to theoretical perspectives on law. The sort of topics addressed by legal theory include competing views of the nature of law; different understandings of the social role and social impact of law; attempts to provide a basis for the authority of law; inquiries on the relationship between law and other normative orders, such as morality, ethics, culture and religion; the relationships law as a practice and law as a discipline have with politics, sociology, economics, and the humanities. Legal theory also investigates at an abstract level the way law operates considering how to better understand legal materials, the process of legal reasoning, the judicial role, and legal rights - and in the case of some approaches, produces a radical challenge to the way lawyers conventionally regard the law.", + "title": "Introduction to Legal Theory (I)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1002I", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to Legal Theory introduces the student to theoretical perspectives on law. The sort of topics addressed by legal theory include competing views of the nature of law; different understandings of the social role and social impact of law; attempts to provide a basis for the authority of law; inquiries on the relationship between law and other normative orders, such as morality, ethics, culture and religion; the relationships law as a practice and law as a discipline have with politics, sociology, economics, and the humanities. Legal theory also investigates at an abstract level the way law operates considering how to better understand legal materials, the process of legal reasoning, the judicial role, and legal rights - and in the case of some approaches, produces a radical challenge to the way lawyers conventionally regard the law.", + "title": "Introduction to Legal Theory (J)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1002J", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundational course examines the basic doctrines and issues of contract law, including the creation of rights and obligations from voluntary undertakings, the doctrines which circumscribe the circumstances under which the law permits a dissolution of the contract, and the remedies that the law provides for the breach of contractual obligations. In exploring the constituent components of contracts - formation, privity, frustration, breach, remedies, terms and vitiating factors - the course also examines challenges to the traditional model of contract law, tensions arising from the pulls of certainty and fairness, and other broader issues.", + "title": "Law Of Contract", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "05", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "21", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a foundation course introducing basic concepts in the law of torts, which deals with the rights and obligations of private parties arising out of civil wrongs. The course will include an in-depth study of the modern tort of negligence, as well as considering the related tort of nuisance. It will also cover the intentional torts and the tort of breach of statutory duty, and will conclude with a brief examination of remedies and vicarious liability.", + "title": "Law Of Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Thursday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide students with a broad overview of Singapore's legal system, including its historical origins and its relationship with the international legal system. Topics examined will include: Singapore legal history; the principal sources of law; the major legal institutions in Singapore; structure and functions of the courts, alternative dispute resolution; and legal education and practice in Singapore. The course will also focus on the relationship between Singapore's legal system and the international legal system, including how the sovereignty and jurisdiction of Singapore is defined, limited and restricted by rules of international law.", + "title": "Singapore Legal System", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course (together with companion course Legal Writing II) is to develop written/oral communication skills, research skills and analytical skills in first year students. In Legal Writing I, the focus will be on developing objective communication skills. Students will learn to (i) analyse legal authorities and principles and to apply them effectively in problem-solving for internal and external clients; (ii) communicate their positions clearly; and (iii) craft their communications for multiple audiences (lay clients, law firm partners). The research component will focus on basic research strategy, and how to find and use primary and secondary legal sources.", + "title": "Legal Analysis, Writing And Research I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course (together with companion course Legal Writing I) is to develop written/oral communication skills, research skills and analytical skills in first year students. In Legal Writing 2, we will focus on developing persuasive communication skills. Students will learn to: (i) formulate cogent arguments for their clients' positions; and (ii) convincingly present legal support for such positions. They will be expected to exercise these persuasive skills in multiple media (written, oral) and contexts (in simulated negotiations and courtroom presentations). These exercises will culminate in a hypothetical case or \"moot\" problem. Research assignments will cover statutoryand factual research.", + "title": "Legal Analysis, Writing And Research II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce the history of the common law and Singapore legal institutions (including Islamic law), as well as briefly situate Singapore\u2019s law and institutions in relation to other approaches, notably the civil law approach adopted in most Asian jurisdictions. The module may be complemented by\nfield trips to court, a prison, and/or parliament. It should also include an examination of ADR mechanisms in Singapore and an introduction to professional ethics.", + "title": "Singapore Law in Context", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LC1015", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this year\u2010long course is to develop analytical skills, research skills and communication skills (written and oral) in first year students. In Semester 1, we focus on objective analysis and communication and also introduce students to basic research skills. In Semester 2, we focus on independent research and advocacy.\n\nExercises and assignments will employ real\u2010life tasks, like office\nmemoranda, court pleadings and client meetings, as means for\nstudents to try out their legal skills. However, the primary focus will be on helping students to hone foundational legal skills that are transferable across subjects and contexts.", + "title": "Legal Analysis, Research & Communication", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC1016", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "09", + "startTime": "1130", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TB-07-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TB-07-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1130", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1530", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_BBCR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1530", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "15", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1130", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1530", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1530", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1130", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce the history of the common law and Singapore legal institutions (including Islamic law), as well as briefly situate Singapore\u2019s law and institutions in relation to other approaches, notably the civil law approach adopted in most Asian jurisdictions. The module may be complemented by\nfield trips to court, a prison, and/or parliament. It should also include an examination of ADR mechanisms in Singapore and an introduction to professional ethics.", + "title": "Singapore Law in Context", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC1025", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "05", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1130", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1230", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1230", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1330", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Legal Traditions (A)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2001A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Legal Traditions (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2001B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Legal Traditions (C)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2001C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the students to the wide variety of legal cultures and traditions present in the Asia-Pacific Region. It will better enable the students to be active participants in an increasingly globalised economy and to become more aware of the legal traditions of South East Asia. The following topics are among those that could be discussed: the concepts of legal culture and tradition, comparative law and method, indigenous law (including adat law), Islamic law, Chinese law, the impact of colonialism, civil law, common law, legal pluralism, laws in transition from a socialist to a market economy, the impact of globalisation on the law.", + "title": "Comparative Legal Traditions (D)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2001D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this course are to: introduce students to basic trial techniques and skills, including the basics of presentations in Court, modes of address, examination in chief and cross examination and submissions on facts. It will also introduce students to witness preparation for trial. The practical skills learned in this will complement those learned in first year Legal Writing. This course will also give students an opportunity to interact with and learn from practicing litigation lawyers, and thereby give them a taste of the \"real world\" litigation practice.", + "title": "Introduction To Trial Advocacy", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "LC2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This problem-oriented course will be centered on a complex commercial transaction that raises issues in several subject areas, some of which the student will not have studied. It is designed to teach students how to: (a) analyse complex hypothetical problems containing multiple legal issues from different areas of the law; (b) analyse and research issued in areas of law they have not studied; and (c) understand how the legal issues are linked to the transactional goals of the parties. It will also expose students to transactional documentation (drafting and review), client service skills and a baisc understanding of business.", + "title": "Legal Case Studies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will impart to students the basic principles of law and equity in the law of property,with particular reference to land. It will explore the meaning of ownership of land viz the doctrine of estates, past and present interests and co-ownership of land. The manner in which land can be dealt with both at law and in equity, eg., transfer, leases, mortgages, licences, easements and restrictive convenants will be considered. It will also examine issues with respect to registered titles to land as well as the system of caveats for the protection of unregistered interests in land.", + "title": "Principles Of Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 260, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 260, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The trust is a distinctive and unique combination of proprietary rights and obligations and the objective of this course is to introduce students to the law of trusts and the principles of equity which have been influential in shaping that law. At the end of the course, students should be able to demonstrate a deeper understanding of the notion of an equitable proprietary interest under a trust and of the manner in which the trust strikes a balance between the respective interests and rights of settlor, trustee and beneficiary. Students should also be able to demonstrate an appreciation of the importance and flexibility of constructive trusts as well as related equitable doctrines and remedies in the modern law. The course will be taught in two sections. Each section will have its own syllabus and methods of assessment which may not coincide.", + "title": "Equity & Trusts (A)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2006A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The trust is a distinctive and unique combination of proprietary rights and obligations and the objective of this course is to introduce students to the law of trusts and the principles of equity which have been influential in shaping that law. At the end of the course, students should be able to demonstrate a deeper understanding of the notion of an equitable proprietary interest under a trust and of the manner in which the trust strikes a balance between the respective interests and rights of settlor, trustee and beneficiary. Students should also be able to demonstrate an appreciation of the importance and flexibility of constructive trusts as well as related equitable doctrines and remedies in the modern law. The course will be taught in two sections. Each section will have its own syllabus and methods of assessment which may not coincide.", + "title": "Equity & Trusts (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2006B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Equity & Trusts (C)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2006C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1530", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Equity & Trusts (D)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2006D", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Equity & Trusts (E)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2006E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Equity & Trusts (F)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2006F", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1530", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Equity & Trusts (G)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2006G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1530", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the basic principles of constitutional law and administrative law. Public law relates primarily to the inter-relationship between government bodies established by the Constitution and the regulation of relationships between the State, communities and individuals. It is concerned with the extent to which law can promote 'good governance', how political power is legitimated, how abuses of public power are prevented, and the degree of autonomy from state interference individuals should enjoy. Topics will include the nature of and separation of powers between executives, legislature and judiciary; protection of fundamental libertiesl; judicial review of administrative action.", + "title": "Constitutional & Administrative Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2007", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 260, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1700", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 260, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the main principles governing the operation of companies. Students are to appreciate, inter alia, the rules governing the incorporation of companies, how this corporate personality operates, how this business vehicle fits in with the broader framework of the outside world, questions of funding and what comprises good corporate governance. Topics include the following: incorporation; relations between the company and the outside world, including ultra vires and agency; relations within the company, including the effect of the memorandum and articles, member's rights, director's duties, and enforcement of corporate rights; corporate finance; corporate insolvency and winding up.", + "title": "Company Law (A)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2008A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Company Law (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2008B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Company Law (C)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2008C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Company Law (D)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2008D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Company Law (E)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2008E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Company Law (F)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2008F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the main principles governing the operation of companies. Students are to appreciate, inter alia, the rules governing the incorporation of companies, how this corporate personality operates, how this business vehicle fits in with the broader framework of the outside world, questions of funding and what comprises good corporate governance. Topics include the following: incorporation; relations between the company and the outside world, including ultra vires and agency; relations within the company, including the effect of the memorandum and articles, member's rights, director's duties, and enforcement of corporate rights; corporate finance; corporate insolvency and winding up.", + "title": "Company Law (G)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2008G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the main principles governing the operation of companies. Students are to appreciate, inter alia, the rules governing the incorporation of companies, how this corporate personality operates, how this business vehicle fits in with the broader framework of the outside world, questions of funding and what comprises good corporate governance. Topics include the following: incorporation; relations between the company and the outside world, including ultra vires and agency; relations within the company, including the effect of the memorandum and articles, member's rights, director's duties, and enforcement of corporate rights; corporate finance; corporate insolvency and winding up.", + "title": "Company Law (H)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC2008H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "NUS Law has a rich tradition of pro bono work among staff and students. Engaging in pro bono provides an opportunity to gain \u201creal world\u201d experience - to see firsthand the important role law plays in the life of an individual. Law is a privileged profession, one that assists in upholding and promoting justice, morality and the rule of law. This module sets a baseline for pro bono service at NUS, aimed at helping students develop professional skills, and exposing students to the non\u2010pecuniary aspects \nof the profession that will sustain a long and satisfying career.", + "title": "Pro Bono Service", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "LC2009", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the most important legal systems in the world, with a particular emphasis on Asia. Systems that are explored include the civil law in particular, as well as Islamic law, Chinese law, the law of Southeast Asian jurisdictions and transnational law. Exploration focuses largely on the institutional and intellectual structure of these systems both individually and in comparison, and will also use examples and case studies to illustrate aspects of the systems discussed. The course gives students sufficient insight into these systems to facilitate effective autonomous research and a basic familiarity with the systems that should prove useful in\nlater professional life.", + "title": "Legal Systems of Asia (A)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2010A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the most important legal systems in the world, with a particular emphasis on Asia. Systems that are explored include the civil law in particular, as well as Islamic law, Chinese law, the law of Southeast Asian jurisdictions and transnational law. Exploration focuses largely on the institutional and intellectual structure of these systems both individually and in comparison, and will also use examples and case studies to illustrate aspects of the systems discussed. The course gives students sufficient insight into these systems to facilitate effective autonomous research and a basic familiarity with the systems that should prove useful in\nlater professional life.", + "title": "Legal Systems of Asia (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2010B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 26, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the most important legal systems in the world, with a particular emphasis on Asia. Systems that are explored include the civil law in particular, as well as Islamic law, Chinese law, the law of Southeast Asian jurisdictions and transnational law. Exploration focuses largely on the institutional and intellectual structure of these systems both individually and in comparison, and will also use examples and case studies to illustrate aspects of the systems discussed. The course gives students sufficient insight into these systems to facilitate effective autonomous research and a basic familiarity with the systems that should prove useful in\nlater professional life.", + "title": "Legal Systems of Asia (C)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2010C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1530", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the most important legal systems in the world, with a particular emphasis on Asia. Systems that are explored include the civil law in particular, as well as Islamic law, Chinese law, the law of Southeast Asian jurisdictions and transnational law. Exploration focuses largely on the institutional and intellectual structure of these systems both individually and in comparison, and will also use examples and case studies to illustrate aspects of the systems discussed. The course gives students sufficient insight into these systems to facilitate effective autonomous research and a basic familiarity with the systems that should prove useful in\nlater professional life.", + "title": "Legal Systems of Asia (D)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2010D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1530", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the most important legal systems in the world, with a particular emphasis on Asia. Systems that are explored include the civil law in particular, as well as Islamic law, Chinese law, the law of Southeast Asian jurisdictions and transnational law. Exploration focuses largely on the institutional and intellectual structure of these systems both individually and in comparison, and will also use examples and case studies to illustrate aspects of the systems discussed. The course gives students sufficient insight into these systems to facilitate effective autonomous research and a basic familiarity with the systems that should prove useful in\nlater professional life.", + "title": "Legal Systems of Asia (E)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2010E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the most important legal systems in the world, with a particular emphasis on Asia. Systems that are explored include the civil law in particular, as well as Islamic law, Chinese law, the law of Southeast Asian jurisdictions and transnational law. Exploration focuses largely on the institutional and intellectual structure of these systems both individually and in comparison, and will also use examples and case studies to illustrate aspects of the systems discussed. The course gives students sufficient insight into these systems to facilitate effective autonomous research and a basic familiarity with the systems that should prove useful in\nlater professional life.", + "title": "Legal Systems of Asia (F)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2010F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the most important legal systems in the world, with a particular emphasis on Asia. Systems that are explored include the civil law in particular, as well as Islamic law, Chinese law, the law of Southeast Asian jurisdictions and transnational law. Exploration focuses largely on the institutional and intellectual structure of these systems both individually and in comparison, and will also use examples and case studies to illustrate aspects of the systems discussed. The course gives students sufficient insight into these systems to facilitate effective autonomous research and a basic familiarity with the systems that should prove useful in later professional life.", + "title": "Legal Systems of Asia (G)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2010G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the most important legal systems in the world, with a particular emphasis on Asia. Systems that are explored include the civil law in particular, as well as Islamic law, Chinese law, the law of Southeast Asian jurisdictions and transnational law. Exploration focuses largely on the institutional and intellectual structure of these systems both individually and in comparison, and will also use examples and case studies to illustrate aspects of the systems discussed. The course gives students sufficient insight into these systems to facilitate effective autonomous research and a basic familiarity with the systems that should prove useful in later professional life.", + "title": "Legal Systems of Asia (H)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2010H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1530", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this course are to: introduce students to basic trial techniques and skills, including the basics of presentations in Court, modes of address, examination in chief and cross examination and submissions on facts. It will also introduce students to witness preparation for trial. The practical skills learned in this will complement those learned in first year Legal Writing. This course will also give students an opportunity to interact with and learn from practicing litigation lawyers, and thereby give them a taste of the \"real world\" litigation practice.", + "title": "Trial Advocacy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2012", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This problem-oriented course provides an introduction to corporate transactions. The course will centre on a complex commercial transaction covering different areas of law. Working in teams, students will take instructions, render advice on structuring and other legal issues, and then draft, review and negotiate the documentation for the transaction. Targeted at students who have completed the first year of the compulsory modules at NUS Law, this course aims to further hone the skills covered in the first year. Substantial and active student participation is mandatory. Tutorials in small groups are conducted primarily by corporate and in-house lawyers.", + "title": "Corporate Deals", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC2013", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Evidence (A)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC3001A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "03", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "07", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 210, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "08", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Evidence (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC3001B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Legal Traditions in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will teach the legal methodology of the common law to students trained in the civil law. The course will teach how case law evolves in the common law (stare decisis, distinguishing cases, making arguments based on the facts of the case rather than its principle). It will also teach about statutory interpretation in the common law. It will also require a lot of drafting from the student to teach them how to analyse and argue in the common law and in English. This course is only open to graduate students and exchange students not trained in the common law.", + "title": "Common Law Reasoning & Writing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Singapore legal system comes within the common law family, like that of the UK and the rest of the Commonwealth and the US. This course seeks to introduce the fundamentals of civil obligations to lawyers trained in the civil law, like the People?s Republic of China, Europe, Japan and many of our ASEAN partners (apart from Malaysia). Besides the substance of the laws in contract, tort and the legal system of S?pore, it also aims to introduce the foreign lawyers to the methodology and reasoning within these areas of the common law.", + "title": "Common Law Legal System of Singapore", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Company Law (a)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC5008A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the most important legal systems in the world, with a particular emphasis on Asia. Systems that are explored include the civil law in particular, as well as Islamic law, Chinese law, the law of Southeast Asian jurisdictions and transnational law. Exploration focuses largely on the institutional and intellectual structure of these systems both individually and in comparison, and will also use examples and case studies to illustrate aspects of the systems discussed. The course gives students sufficient insight into these systems to facilitate effective autonomous research and a basic familiarity with the systems that should prove useful in\nlater professional life.", + "title": "Legal Systems of Asia (A)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5010A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5029", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5035", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5035A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5035B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LC5035V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5050", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundational course introduces the student to the nature, major principles, processes and institutions of the international legal system, the relationship between international and domestic law and the role of law in promoting world public order. Students will acquire an understanding of the conceptual issues underlying this discipline and a critical appreciation of how law inter-relates with contemporary world politics, its global, regional and domestic significance. Topics include the creation and status of international law, participation and competence in the international legal system, primary substantive norms such as the law regulating the use of force and enforcement procedures.", + "title": "Public International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LC5050V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Foundations of IP Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5070", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to introduce students to the general principles of intellectual property law in Singapore, as well as, major international IP conventions. It is aimed at students who have no knowledge of IP law but are interested in learning more about this challenging area of law. It will also be useful for students intending to pursue the advanced courses in IP/IT by providing them with the necessary foundation on IP law. Students will be assessed based on open book examination, 1 written assignment and 1 class presentation. (Class presentation is subject to change depending on student subscription).", + "title": "Foundations Of Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LC5070V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will begin with an evaluation of the business rationale for M&As and a discussion of the various types of transactions and related terminology. The regulatory \nissues surrounding these transactions will be analysed through an examination of the applicable laws and regulations. While the law in Singapore would be considered as the frame of reference, the course will contain an international comparative perspective including comparisons with the position in the U.K. and the U.S. While corporate and securities law issues form the thrust, incidental reference will be made to accounting, tax and competition law considerations. Finally, the transactional perspective will consider various structuring matters, planning aspects, transaction costs and impact on various stakeholders.", + "title": "Mergers & Acquisitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5074", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the major aspects of company law and securities regulation in China, including the formation of companies, corporate finance, corporate governance, shareholders' rights, issuing of stocks and \"going public\",\ncorporate mergers and acquisitions, as well as the regulation of the capital markets in China. The primary focus will be on providing students with a basic legal understanding of establishing business organizations in China and accessing China's capital markets for finance. Significant issues relating to corporate law and securities regulation will be discussed in the context of China's legal, business and policy environments in the reform period.", + "title": "Chinese Corporate & Securities Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5089", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5093", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Common Law of Obligations", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cross-Border Transactions & Transnational Commercial Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5115", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, students will act as lawyers advising an international investor in a mock transaction in a developing Asian jurisdiction. They must identify the legal risks for the investor in this developing environment and advise ways to mitigate such risks. Students will study relevant local laws, draft contractual documents, analyse legal issues, give advice, negotiate with local partners and bring the deal to closure. Through this, students are expected to form an overview of the risks for an international investor in these developing Asian systems and ways to mitigate such risks through negotiation and documentation. Furthermore, students will also research particular issues such as expropriation, change in law, currency conversion or performance by State owned companies for the purposes of the assignment. To do this, students will need to study the investment law, administrative law, conflict of laws, corporate law, contract law and arbitration law of some selected Asian jurisdictions.", + "title": "Foreign Direct Investment Law in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5118", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5126", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Common Law Reasoning & Writing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5127", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Banking and International Payments", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5168", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International & Commercial Trusts Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5186", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Carriage of Goods By Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5204A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on the different transport documents which are used in contracts for the carriage of goods by sea. This will include bills of lading, sea waybills, delivery orders. The course will examine the rights and liabilities of\nthe parties to such contracts, including the shipowner, the charterer, the cargo owner, the lawful holder of the bill of lading etc. Major international conventions on carriage of goods, such as the Hague and Hague-Visby Rules, the Hamburg Rules, and the Rotterdam Rules will also be examined. This course is of fundamental importance to those individuals contemplating a career in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Carriage of Goods By Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LC5204AV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Charterparties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5204B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on charterparties, which are contracts between the shipowner and the charterer for the hire of the vessel, either for a specific voyage (voyage charterparties) or over a period of time (time charterparties). There are in addition, other variants of these basic types, which will also be referred to. This\ncourse will examine the standard forms for each of the charterparties being studied and examine the main terms and legal relationship between shipowners and charterers. This dynamic and important aspect of the law of carriage of goods by sea is frequently the subject of arbitral proceedings and court decisions. This course will be of importance to individuals contemplating a carrier in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Charterparties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LC5204BV", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will consider the legal regime which applies to contracts for the carriage of goods by sea. The carriage of goods by sea forms an important component of a wider body of law which is called maritime (or shipping) law. The subject matter of this course also forms a part of the (private) law of international trade and will assist those students studying international sales of goods and bank payment mechanisms in international trade, and insurance\nand marine insurance. All these subjects are invaluable to anyone who aspires eventually to work in shipping or international trade, whether as a lawyer in a law firm, as a legal adviser in-house, in insurance in a P & I Club, or for a\nmarine insurer.\n\nCarriage of Goods by Sea is a core area of shipping law. The principal purpose which underlines this course is the carriage of cargo from one destination to another for profit. The seller/owner of goods who wishes to export them will\nhire a ship (particularly in the case of bulk commodities, such as oil) or space on a ship, depending on the quantity and type of goods to be transported. This course is therefore concerned with examining the legal relationships which arise between the shipper (or owner of the goods), the carrier (the shipowner), the charterer, and the receiver/consignee of the goods. The particular emphasis\nwill be the principal documents of carriage, such as bills of lading, sea waybills and ship\u2019s delivery orders, and the domestic legislation which governs these documents and also gives effect to international conventions. The coverage of international conventions will include the Rotterdam Rules, even though these Rules are not yet in force. A study will also be made of charterparties, specifically, voyage charters and time charters.", + "title": "Carriage of Goods by Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5225", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The company is one of the most important institutions in our society. The purpose of this course is to introduce students to the main conceptual apparatus of company law and to analyse some of the policy issues raised in facilitating and regulating this pervasive commercial form. Topics include the following: corporate personality and limited liability; corporate organs, constitution and meetings; corporate capacity and contracting; corporate finance; corporate governance; shareholders\u2019 rights and remedies. The course uses Singapore\u2019s Companies Act (Cap 50) as a sample legislation and draws on leading cases from the Commonwealth, in particular, UK, Australia and Singapore.", + "title": "Elements of Company Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the foundational principles underlying the operation of contemporary competition law frameworks. Examples will be drawn, where appropriate, from Singapore, Europe and the United States to illustrate the application of these principles in the areas of (i) anti-competitive agreements, (ii) unilateral abuses of market power and (iii) anti-competitive mergers and concentrations.", + "title": "Principles of Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5232", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5262", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LC5262AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LC5262BV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic understanding of the law of arbitration to enable them to advise and represent parties in the arbitral process confidence. Legal concepts peculiar to arbitration viz. separability, arbitrability and kompetenze-kompetenze will considered together with the procedural laws on the conduct of the arbitral process, the making of and the enforcement of awards. Students will examine the UNCITRAL Model Law and the New York Convention, 1958. This course is most suited for students with some knowledge of the law of commercial transactions, shipping, banking, international sale of goods or construction.", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LC5262V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We are witnessing an explosion of various forms of regional trade arrangements. Notably, major economies have shifted trade negotiation emphasis toward mega-regional trade agreements, such as CPTPP, TTIP and RCEP. This renewed trend of regionalism, often labelled \u201cthe new regionalism\u201d, emerged as a response to new risks in the global economy and as a strategy to achieve much broader economic, social and political objectives. This course will study on the most debated tension between regionalism and the established multilateralism under the WTO, and evaluate its potential implication to world development. These aspects are important not only for theoretical reasons, but for their practical relevance for shaping the future of international trading system.", + "title": "New Regionalism in International Trading System", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5264", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is composed of five parts:\n1. An Overview of Chinese Law\n2. Chinese Partnership Law\n3. Foreign Investment Enterprise Law\n4. Chinese Corporation Law\n5. Chinese Securities Law", + "title": "Chinese Business Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5265", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine two areas of law \u2013 (i) the law of partnership and agency law; (ii) trusts law. Topics to be covered generally include: the nature of partnerships and agency; how they are created; the relationship between partners and with third parties; partnership property; the undisclosed principal ;how partnerships and agency are terminated; the concept of trust; the creation of trusts; the powers and duties of trustees; mechanisms of control; and asset protection trust.", + "title": "Trusts, Agency and Partnership Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5266", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will explore key legal questions related to\ninternational dispute settlement with a view to providing a\nbroad overview of the field with respect to State-to-State,\nInvestor-State, and commercial disputes. This course will\ninclude a discussion of the various types of international\ndisputes and settlement mechanisms available for their\nresolution. It will explore the law pertaining to dispute\nsettlement before the ICJ, WTO, ITLOS, as well as\ninternational arbitration, both Investor-State arbitration and\ncommercial arbitration. The course will compare these\ndifferent legal processes on issues such as jurisdiction,\nprovisional remedies/measures, equal treatment,\nevidence, and enforcement.", + "title": "International Dispute Settlement", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LC5285V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will allow the students to visit dispute resolution institutions (courts, arbitral institutions, mediation centres etc.). In addition, some practitioners of international dispute resolution will also be invited to come speak to the students about different aspects of the course.", + "title": "Topics in Int'l Arbitration & Dispute Resolution", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "LC5336", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Singapore legal system resides in the common law family but has its own history and development. This course introduces civil law lawyers to the methodology and reasoning used in the common law in Singapore - using the lens of contract law, a part of private obligations relevant to commercial transactions as well as daily life. By exploring introductory-level aspects of contract law, such as formation and the creation of rights and obligations, interpretation, breach, and remedies, the course also examines how policy concerns of certainty and fairness, as well as aspects of common law, shape outcomes and legal rules.", + "title": "Singapore Common Law of Contract", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5337", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Singapore legal system resides in the common law family but has its own history and development. This course introduces civil law lawyers to the methodology and reasoning used in the common law in Singapore - using the lens of contract law, a part of private obligations relevant to commercial transactions as well as daily life. By exploring introductory-level aspects of contract law, such as formation and the creation of rights and obligations, interpretation, breach, and remedies, the course also examines how policy concerns of certainty and fairness, as well as aspects of common law, shape outcomes and legal rules.", + "title": "Singapore Common Law of Contract", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC5337S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will first be provided with an overview of what the various intellectual property (IP) rights in Singapore are. Thereafter, this module will launch into the specifics of the main IP rights including copyright, patents and trade marks. For each of these IP rights, selected issues relating to their subsistence (how does it arise; is registration needed; what are the registration criteria) and infringement (what exclusive rights the IP owner has; what defences are available) will be examined very closely. Students will also be encouraged to explore the inter-relationship between these IP rights on specific issues.", + "title": "Law of Intellectual Property (a)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC5405A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will first be provided with an overview of what the various intellectual property (IP) rights in Singapore are. Thereafter, this module will launch into the specifics of the main IP rights including copyright, patents and trade marks. For each of these IP rights, selected issues relating to their subsistence (how does it arise; is registration needed; what are the registration criteria) and infringement (what exclusive rights the IP owner has; what defences are available) will be examined very closely. Students will also be encouraged to explore the inter-relationship between these IP rights on specific issues.", + "title": "Law of Intellectual Property (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC5405B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Legal Traditions in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC6001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Common Law Reasoning & Writing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC6002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Common Law Legal System of Singapore", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LC6003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Company Law (A)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LC6008A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course, compulsory for PhD students, will encourage students to reflect on the nature of supervised research. It will then examine in depth issues concerning legal research and methodology; and consider how their research might be approached from a variety of perspectives (e.g. international, comparative, theoretical, empirical). This seminar will help students to understand the process of conceiving, structuring, and refining their argument and the sorts of challenges and difficulties involved in this process. The internal structure of the thesis as well as the structure of individual chapters will be considered in depth.", + "title": "Graduate Research Seminar II (Research Methods)", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LC6009GRSII", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "FED-01-02", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a forum for doctoral students in the second year of their PhD programme to develop their research proposals, establish and expand their research skills and test their findings and hypotheses. This will be realised by their presenting their ongoing doctoral research and receiving feedback from Faculty and other doctoral students and researchers. It will be conducted fortnightly over an academic year.", + "title": "Doctoral Workshop", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LC6378", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ETS-01-02", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ETS-01-02", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is part of the Graduate Certificate in Criminal Justice (GCCJ) which is a bespoke course designed specifically for Home Team officers. The module aims to impart the basics of two of the four legal pillars of the Singapore criminal justice system \u2013 criminal law and criminal procedure law. The module will also touch on some of the key legal controversies in these two areas of law, with the aim of helping participants gain increased ability to critically analyse and evaluate the law.", + "title": "Foundations of Common Law and Criminal Law & Procedure", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "LCC5365", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is part of the Graduate Certificate in Criminal Justice (GCCJ) which is a bespoke course designed specifically for Home Team officers. This module aims to impart the basics of two of the four legal pillars of the Singapore criminal justice system \u2013 evidence law, and sentencing law. The module will touch on some of the key legal controversies in these two areas of law, with the aim of helping participants gain increased ability to critically analyse and evaluate the law.", + "title": "Law of Evidence & Sentencing Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "LCC5366", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2022-08-04", + "end": "2022-09-22" + }, + "venue": "LAW_SR5-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is part of the Graduate Certificate in International Arbitration (GCIA), aimed at lawyers and non-lawyers seeking to practise as arbitrators. It introduces candidates to the basic principles of the law of Torts, Contract and Evidence. The main topics covered in Torts are negligence, nuisance, vicarious liability and general defences. The main topics covered in Contract are contractual formation, terms & termination of contract, and remedies. The main topics covered in Evidence are general concepts of evidence, admissibility and privilege.", + "title": "Contract, Tort & Evidence", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LCC5390", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is part of the Graduate Certificate in International Arbitration (GCIA), which is a course designed for both lawyers and non-lawyers who wish to be involved in the practice of arbitration as arbitrators. This module aims to equip students with a basic understanding of the law of arbitration to enable them to advise and represent parties in the arbitral process or act as arbitrator.", + "title": "Arbitration Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LCC5391", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is part of the Graduate Certificate in International Arbitration (GCIA), which is a course designed for both lawyers and non-lawyers who wish to be involved in the practice of arbitration as arbitrators. The module aims to equip students with practical knowledge and understanding of the industry\u2019s standards and requirements for drafting directions, orders and the arbitral award.", + "title": "Drafting & Award Writing", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LCC5392", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module, comprising of three seminars, is the first of five modules that make up a 9-month long course. This module introduces students to the relevant institutions in the legal system in Singapore such as the different levels of courts, civil vs criminal processes etc. The module also introduces students to the idea of legal reasoning in a common law system. Students will also be taught the basic methodology of statutory interpretation, in particular, the purposive approach. They will learn how to interpret basic to middle-complex statutory issues, including the plain and contextual approach, use of Hansard etc.", + "title": "Fundamentals of Legal Reasoning", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "LCC5466", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-18" + }, + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module, comprising of nine seminars (once per week over nine weeks), is the second of five modules that make up a 9-month long course. This module covers key topics in criminal law in Singapore. They include: elements of a criminal offence, strict liability, causation, concurrence, attempt liability, defences such as private defence, provocation, unsoundness of mind, diminished responsibility, abetment, and joint liability. Certain specialist crimes are also taught, such as homicide offences, sexual offences, property and commercial crimes, as well as technology crimes.", + "title": "Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "LCC5467", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2022-08-25", + "end": "2022-10-20" + }, + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module, comprising of four seminars (once per week over four weeks), is the third of five modules that make up a 9-month long course. This module covers key topics in sentencing law and practice in Singapore. They include: aims of punishments, main sentencing options, main aggravating and mitigating factors (eg. premeditation, antecedents, remorse, restitution, youthful offending, offending due to or contributed by mental health condition, concurrent vs consecutive sentencing, totality principle, guideline judgments, parity principle etc.", + "title": "Sentencing Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "LCC5468", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": { + "start": "2022-11-03", + "end": "2022-11-24" + }, + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module, comprising of six seminars (once per week over six weeks), is the fourth of five modules that make up a 9-month long course. This module covers key topics in criminal procedure in Singapore. They include: models of criminal justice, charges, powers of investigations, bail, right to counsel, prosecutorial discretion, Prosecution disclosure obligations, pre-trial processes, plead guilty mention processes, trial processes, criminal motions, criminal revisions, criminal references, criminal appeals, disposal and forfeiture issues, confiscation orders.", + "title": "Criminal Procedure", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "LCC5469", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module, comprising of six seminars (once per week over six weeks), is the last of five modules that make up a 9-month long course. This module covers key topics in criminal evidence law in Singapore. They include: history of evidence law in Singapore, facts-in-issue and relevant facts, main types of evidence, expert evidence, similar fact and character evidence, hearsay evidence, admissibility of accused person\u2019s statements, issues of voluntariness, procedural irregularity, wrongfully-obtained evidence, entrapment evidence, right of silence and drawing adverse inferences, corroboration, assessment of weight of evidence.", + "title": "Criminal Evidence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "LCC5470", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Company Law (a)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LCD5008A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Carriage of Goods By Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LCD5204A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on the different transport documents which are used in contracts for the carriage of goods by sea. This will include bills of lading, sea waybills, delivery orders. The course will examine the rights and liabilities of\nthe parties to such contracts, including the shipowner, the charterer, the cargo owner, the lawful holder of the bill of lading etc. Major international conventions on carriage of goods, such as the Hague and Hague-Visby Rules, the Hamburg Rules, and the Rotterdam Rules will also be examined. This course is of fundamental importance to those individuals contemplating a career in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Carriage of Goods By Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LCD5204AV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Charterparties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LCD5204B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on charterparties, which are contracts between the shipowner and the charterer for the hire of the vessel, either for a specific voyage (voyage charterparties) or over a period of time (time charterparties). There are in addition, other variants of these basic types, which will also be referred to. This\ncourse will examine the standard forms for each of the charterparties being studied and examine the main terms and legal relationship between shipowners and charterers. This dynamic and important aspect of the law of carriage of goods by sea is frequently the subject of arbitral proceedings and court decisions. This course will be of importance to individuals contemplating a carrier in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Charterparties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LCD5204BV", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LCJ5001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to provide students with a basic introduction to basic concepts, issues, and controversies of legal theory. The course will examine some or all of these topics: utilitarian and deontological moral theories; the relationship between morality and law; natural law and positivism; Critical Legal Studies (CLS); gender and the law; Asian values and jurisprudence, culture and the law; and law and economics. These approaches to law will be examined both in their own right and as perspectives from which positive law might be understood and critically assessed.", + "title": "Intro To Legal Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LCJ5002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundational course examines the basic doctrines and issues of contract law, including the creation of rights and obligations from voluntary undertakings, the doctrines which circumscribe the circumstances under which the law permits a dissolution of the contract, and the remedies that the law provides for the breach of contractual obligations. In exploring the constituent components of contracts - formation, privity, frustration, breach, remedies, terms and vitiating factors - the course also examines challenges to the traditional model of contract law, tensions arising from the pulls of certainty and fairness, and other broader issues.", + "title": "Law Of Contract", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LCJ5003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1530", + "endTime": "1730", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a foundation course introducing basic concepts in the law of torts, which deals with the rights and obligations of private parties arising out of civil wrongs. The course will include an in-depth study of the modern tort of negligence, as well as considering the related tort of nuisance. It will also cover the intentional torts and the tort of breach of statutory duty, and will conclude with a brief examination of remedies and vicarious liability.", + "title": "Law Of Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LCJ5004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The trust is a distinctive and unique combination of proprietary rights and obligations and the objective of this course is to introduce students to the law of trusts and the principles of equity which have been influential in shaping that law. At the end of the course, students should be able to demonstrate a deeper understanding of the notion of an equitable proprietary interest under a trust and of the manner in which the trust strikes a balance between the respective interests and rights of settlor, trustee and beneficiary. Students should also be able to demonstrate an appreciation of the importance and flexibility of constructive trusts as well as related equitable doctrines and remedies in the modern law. The course will be taught in two sections. Each section will have its own syllabus and methods of assessment which may not coincide.", + "title": "Equity & Trusts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LCJ5006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the basic principles of constitutional law and administrative law. Public law relates primarily to the inter-relationship between government bodies established by the Constitution and the regulation of relationships between the State, communities and individuals. It is concerned with the extent to which law can promote 'good governance', how political power is legitimated, how abuses of public power are prevented, and the degree of autonomy from state interference individuals should enjoy. Topics will include: the nature of and separation of powers between executives, legislature and judiciary; protection of fundamental libertiesl; judicial review of administrative action.", + "title": "Constitutional & Administrative Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LCJ5007", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the main principles governing the operation of companies. Students are to appreciate, inter alia, the rules governing the incorporation of companies, how this corporate personality operates, how this business vehicle fits in with the broader framework of the outside world, questions of funding and what comprises good corporate governance. Topics include the following: incorporation; relations between the company and the outside world, including ultra vires and agency; relations within the company, including the effect of the memorandum and articles, member's rights, director's duties, and enforcement of corporate rights; corporate finance; corporate insolvency and winding up.", + "title": "Company Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LCJ5008", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "NUS Law has a rich tradition of pro bono work among staff and students. Engaging in pro bono provides an opportunity to gain \u201creal world\u201d experience - to see firsthand the important role law plays in the life of an individual. Law is a privileged profession, one that assists in upholding and promoting justice, morality and the rule of law. This module sets a baseline for pro bono service at NUS, aimed at helping students develop professional skills, and exposing students to the non\u2010pecuniary aspects of the profession that will sustain a long and satisfying career.", + "title": "Pro Bono Service", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "LCJ5009", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the most important legal systems in the world, with a particular emphasis on Asia. Systems that are explored include the civil law in particular, as well as Islamic law, Chinese law, the law of Southeast Asian jurisdictions and transnational law. Exploration focuses largely on the institutional and intellectual structure of these systems both individually and in comparison, and will also use examples and case studies to illustrate aspects of the systems discussed. The course gives students sufficient insight into these systems to facilitate effective autonomous research and a basic familiarity with the systems that should prove useful in later professional life.", + "title": "Legal Systems of Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LCJ5010", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Evidence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LCJ5011", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 7, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 7, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this course are to: introduce students to basic trial techniques and skills, including the basics of presentations in Court, modes of address, examination in chief and cross examination and submissions on facts. It will also introduce students to witness preparation for trial. The practical skills learned in this will complement those learned in first year Legal Writing. This course will also give students an opportunity to interact with and learn from practicing litigation lawyers, and thereby give them a taste of the \"real world\" litigation practice.", + "title": "Trial Advocacy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LCJ5012", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This problem-oriented course provides an introduction to corporate transactions. The course will centre on a complex commercial transaction covering different areas of law. Working in teams, students will take instructions, render advice on structuring and other legal issues, and then draft, review and negotiate the documentation for the transaction. Targeted at students who have completed the first year of the compulsory modules at NUS Law, this course aims to further hone the skills covered in the first year. Substantial and active student participation is mandatory. Tutorials in small groups are conducted primarily by corporate and in-house lawyers.", + "title": "Corporate Deals", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LCJ5013", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will impart to students the basic principles of law and equity in the law of property,with particular reference to land. It will explore the meaning of ownership of land viz the doctrine of estates, past and present interests and co-ownership of land. The manner in which land can be dealt with both at law and in equity, eg., transfer, leases, mortgages, licences, easements and restrictive convenants will be considered. It will also examine issues with respect to registered titles to land as well as the system of caveats for the protection of unregistered interests in land.", + "title": "Principles Of Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LCJ5014", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this year\u2010long course is to develop analytical skills, research skills and communication skills (written and oral) in first year students. In Semester 1, we focus on objective analysis and communication and also introduce students to basic research skills. In Semester 2, we focus on independent research and advocacy. Exercises and assignments will employ real\u2010life tasks, like office memoranda, court pleadings and client meetings, as means for students to try out their legal skills. However, the primary focus will be on helping students to hone foundational legal skills that are transferable across subjects and contexts.", + "title": "Legal Analysis, Research & Communication", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LCJ5015", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this year\u2010long course is to develop analytical skills, research skills and communication skills (written and oral) in first year students. In Semester 1, we focus on objective analysis and communication and also introduce students to basic research skills. In Semester 2, we focus on independent research and advocacy.\n\nExercises and assignments will employ real\u2010life tasks, like office\nmemoranda, court pleadings and client meetings, as means for\nstudents to try out their legal skills. However, the primary focus will be on helping students to hone foundational legal skills that are transferable across subjects and contexts.", + "title": "Legal Analysis, Research & Communication", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LCJ5016", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "21", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_BBCR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "FED-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_BBCR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "22", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_BBCR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "FED-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "1830", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR2-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce the history of the common law and Singapore legal institutions (including Islamic law), as well as briefly situate Singapore\u2019s law and institutions in relation to other approaches, notably the civil law approach adopted in most Asian jurisdictions. The module may be complemented by\nfield trips to court, a prison, and/or parliament. It should also include an examination of ADR mechanisms in Singapore and an introduction to professional ethics.", + "title": "Singapore Law in Context", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LCJ5025", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "09", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "LE1001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "LE1002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "LE2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "LE3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "LE4000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "LE4000A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "LE4000B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "LE4000C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "LE4000D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "LE5000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "LE5000A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "LE5000B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "LE5000C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LE5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Civil Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LE5044", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LE5051", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LE5052", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LE5053", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Law Elective - Exchange", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LE5054", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Project", + "faculty": "Logistics Inst-Asia Pac", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LI5001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A good supply chain involves an integrated end-to-end management of material flows from sources of supply through plants to customers, as well as an efficient information system of monitoring the flows and improving operational efficiency. Given the global context in which supply chains are to be managed, there is also a need to appreciate the financial management and operations. The objective of the module is to lead students into developing correct perspectives and thinking skills\nneeded to manage a supply chain. The topics to be covered include evolution of supply chain thinking, components of a supply chain, principles and value of good SCM, SCM operation and coordination, different practices of SCM, technology in SCM.", + "title": "Supply Chain Mgt Thinking & Practice", + "faculty": "Logistics Inst-Asia Pac", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LI5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Logistics and Supply Chain industry is facing\nimmense changes. Emerging technologies, new markets\nand business models, and rising customer expectations\nbring both risks and opportunities for companies all over\nthe world. This module focuses on the emerging trends\nand challenges that companies have to face and the\nimpact on their logistics and supply chain management,\nand introduce transformational strategies to enhance their\ncompetitiveness.", + "title": "Transformational Strategies for Supply Chains", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "LI5101A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A good supply chain involves an integrated end-to-end\nmanagement of information, financial and material flows\nacross the whole supply chain, from sources of supply\nthrough plants to customers. Given the global context in\nwhich supply chains are to be managed, there is a need to\nappreciate good practice in logistics operations and supply\nchain management. The objective is to lead students into\ndeveloping correct perspectives and thinking skills\nneeded.\nThis module focuses on practices that aim at improving\noperational efficiency to enhance the competitiveness of\nthe business.", + "title": "Supply Chain Management Practice", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "LI5101B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Logistics", + "faculty": "Logistics Inst-Asia Pac", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LI5201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module enables students to learn a special area or application of supply chain management by an eminent visiting professor to TLIAP.", + "title": "Supply Chain Management Strategies and Case Studies", + "faculty": "Logistics Inst-Asia Pac", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LI5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Thursday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide a unique enriching experiential\nlearning opportunity to gain a broader understanding and\ninsight into global logistics and supply chains. It will be\ndelivered via an intensive two-week summer school\nprogramme at an international partner university, such as\nKuhne Logistics University or the Logistikum at University\nof Applied Sciences Upper Austria.\nAdopting a case-based learning approach, students will\nexperience challenging real business cases and workshops\ndesigned to combine sophisticated theory with hands-on\npractical experience in industry. Students will be exposed\nto educational content with high practical industrial\nrelevance and innovative solutions for companies with\nstate-of-the-art expertise.\n\nThe cases will follow the logic and lines of a global supply\nchain: starting with supplier evaluation, to usage of\nmultimodal transport, cold chain logistics, set-up of SCM\nfunction in a company from scratch down to customer\ndelivery, customer segmentation, and ending with the\nchallenges of e-commerce and last-mile delivery.", + "title": "Global Logistics and Supply Chain Management", + "faculty": "Logistics Inst-Asia Pac", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LI5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide a hands-on learning\nopportunity through the use of an easy-to-understand\ntool, such as AnyLogistix, for students to address a wide\nrange of supply chain management (SCM) problems. It\nallows students to focus on management decision\nanalysis and use KPIs for operational, customer and\nfinancial performance measurement and decisionmaking.\n\nThe course covers supply chain simulation and\noptimization examples via developing and building\nmodels and evaluating KPIs, and discusses how to use\nthese models and their simulation and optimization\nresults to improve management decision-making.", + "title": "Supply Chain Simulation and Optimization", + "faculty": "Logistics Inst-Asia Pac", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LI5204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the application of technology in\nlogistics and supply chains for optimization, simulation and\nmodelling to improve operational efficiency. Simulation\nmodelling enables logisticians and supply chain planners\nand managers to manage complexity, increase profitability\nand improve customer service to enhance\ncompetitiveness of the business. Topics covered include\nanalytics and simulation-based decision support systems\nfor logistics planning and supply chain management,\nstrategic supply chain network design, simulation and\noptimisation models for managing complexity, improving\nefficiency and increasing agility of the supply chain.", + "title": "Decision Support for Supply Chain", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "LI5204A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a hands-on learning\nopportunity through the use of an easy-to-understand tool\nfor students to address a wide range of supply chain\nmanagement (SCM) problems. The tool allows students to\nmodel and focus on management decision analysis and\nuse KPIs for operational, customer and financial\nperformance measurement and decision-making.\nThe module covers supply chain simulation and\noptimization examples via developing and building models\nand evaluating KPIs, and discusses how to use these\nmodels and their simulation and optimization results to\nimprove management decision-making.", + "title": "Modelling for Supply Chain Optimization", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "LI5204B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Administration Of Criminal Justice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the various concepts relating to the admiralty action in rem, which is the primary means by which a maritime claim is enforced. Topics will include: the nature of an action in rem; the subject matter of admiralty jurisdiction; the invocation of admiralty jurisdiction involving the arrest of offending and sister ships; the procedure for the arrest of ships; liens encountered in admiralty practice: statutory, maritime and possessory liens; the priorities governing maritime claims; and time bars and limitations. This course is essential to persons who intend to practice shipping law.", + "title": "Admiralty Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the various concepts relating to the admiralty action in rem, which is the primary means by which a maritime claim is enforced. Topics will include: the nature of an action in rem; the subject matter of admiralty jurisdiction; the invocation of admiralty jurisdiction involving the arrest of offending and sister ships; the procedure for the arrest of ships; liens encountered in admiralty practice: statutory, maritime and possessory liens; the priorities governing maritime claims; and time bars and limitations. This course is essential to persons who intend to practice shipping law.", + "title": "Admiralty Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4002V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the rise of China and India and it\u2019s impact on the international legal order. In particular, students will be led to discuss issues concerning (1) the origin and history of the relationship between developing\ncountries and international law; (2) the rise of China and India and its challenge to the existing international legal order and legal norms; (3) China, India, and the multilateral trading system; (4) China, India and international investment; (5) the international law aspects of domestic policies in China and India; and (6) the international law aspects of competition and disputes between China and \nIndia. The course will also concentrate on demonstrating the interaction between international relations and international law.", + "title": "China, India and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4003V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Aviation Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an insight into international civil aviation and the legal and regulatory issues facing airlines, governments and the common passenger. Issues raised include public air law and policy, aviation security in light of recent global developments and private air law. Emphasis will be placed on issues relevant to Singapore and Asia, given Singapore's status as a major aviation hub and the exponential growth of the industry in the Asia-Pacific. Topics to be discussed include the Chicago Convention on International Civil Aviation, bilateral services agreements, aircraft safety, terrorism and aviation security and carrier liability for death or injury to passengers. Competition among airlines will also be analysed, including business strategies such as code-sharing, frequent flier schemes and alliances. The severe competitive environment introduced by weakening economies, war and terrorism will also be discussed. This course will be relevant for individuals with a keen interest in air travel, and is designed for those interested in joining the aviation industry or large law firms with an aviation practice.", + "title": "Aviation Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4004V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bank Documentation is an advanced contract course situated in the banking context. Students will be introduced to key principles that govern banking transactions as well as a variety of contractual clauses used by banks in their standard-form documentation. The aim of the course is to promote an\nunderstanding of these terms, how they operate and their shortcomings. Some emphasis is placed on contractual techniques used by banks to maintain control over their contractual relationships and to allocate risk, as well as the common law and statutory limits on their effectiveness. Students are required to evaluate the fairness of typical banking terms by applying relevant law and guidelines. Those who successfully complete the module will be equipped to navigate their way around standard form agreements (banking as well as others), recognize and understand the operation of a range of contractual terms, and predict their effectiveness.", + "title": "Bank Documentation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4005V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to familiarise the student with the key principles relating to the modern law of banking. Four main areas will be covered: the law of negotiable instruments, the law of payment systems, the banker customer relationship and bank regulation. Students who wish to obtain a basic knowledge of banking law will benefit from this course. It is also recommended that those who wish to specialize in banking law take this course as a foundational course, prior to studying the more advanced banking courses.", + "title": "Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to familiarise the student with the key principles relating to the modern law of banking. Four main areas will be covered: the law of negotiable instruments, the law of payment systems, the banker customer relationship and bank regulation. Students who wish to obtain a basic knowledge of banking law will benefit from this course. It is also recommended that those who wish to specialize in banking law take this course as a foundational course, prior to studying the more advanced banking courses.", + "title": "Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4006V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will deal with the basic intellectual property, ethical, regulatory and policy issues in biotechnological innovations. It will focus mainly on patent issues including the patentability of biological materials, gene sequences, animals, plants and humans; infringement, ownership and licensing. Students will also be acquainted with genetic copyright, trade secrets protection and basic ethical and regulatory aspects including gene technology and ES cell research. Apart from Singapore law, a comparative analysis of the legal position in Europe and USA, as well as the major international conventions will be made. Students will also be introduced to the fundamentals of biology and genetics. (Class presentation is subject to change depending on student subscription).", + "title": "Biotechnology Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will deal with the basic intellectual property, ethical, regulatory and policy issues in biotechnological innovations. It will focus mainly on patent issues including the patentability of biological materials, gene sequences, animals, plants and humans; infringement, ownership and licensing. Students will also be acquainted with genetic copyright, trade secrets protection and basic ethical and regulatory aspects including gene technology and ES cell research. Apart from Singapore law, a comparative analysis of the legal position in Europe and USA, as well as the major international conventions will be made. Students will also be introduced to the fundamentals of biology and genetics. (Class presentation is subject to change depending on student subscription).", + "title": "Biotechnology Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4007V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on the different transport documents which are used in contracts for the carriage of goods by sea. This will include bills of lading, sea waybills, delivery orders. The course will examine the rights and liabilities of\nthe parties to such contracts, including the shipowner, the charterer, the cargo owner, the lawful holder of the bill of lading etc. Major international conventions on carriage of goods, such as the Hague and Hague-Visby Rules, the Hamburg Rules, and the Rotterdam Rules will also be examined. This course is of fundamental importance to those individuals contemplating a career in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Carriage of Goods By Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4008A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on the different transport documents which are used in contracts for the carriage of goods by sea. This will include bills of lading, sea waybills, delivery orders. The course will examine the rights and liabilities of\nthe parties to such contracts, including the shipowner, the charterer, the cargo owner, the lawful holder of the bill of lading etc. Major international conventions on carriage of goods, such as the Hague and Hague-Visby Rules, the Hamburg Rules, and the Rotterdam Rules will also be examined. This course is of fundamental importance to those individuals contemplating a career in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Carriage of Goods By Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4008AV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on charterparties, which are contracts between the shipowner and the charterer for the hire of the vessel, either for a specific voyage (voyage charterparties) or over a period of time (time charterparties). There are in addition, other variants of these basic types, which will also be referred to. This\ncourse will examine the standard forms for each of the charterparties being studied and examine the main terms and legal relationship between shipowners and charterers. This dynamic and important aspect of the law of carriage of goods by sea is frequently the subject of arbitral proceedings and court decisions. This course will be of importance to individuals contemplating a carrier in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Charterparties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4008B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on charterparties, which are contracts between the shipowner and the charterer for the hire of the vessel, either for a specific voyage (voyage charterparties) or over a period of time (time charterparties). There are in addition, other variants of these basic types, which will also be referred to. This\ncourse will examine the standard forms for each of the charterparties being studied and examine the main terms and legal relationship between shipowners and charterers. This dynamic and important aspect of the law of carriage of goods by sea is frequently the subject of arbitral proceedings and court decisions. This course will be of importance to individuals contemplating a carrier in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Charterparties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4008BV", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the latest legal developments and areas of significance in modern China. Topics covered include Chinese legal system, legal institutions, civil law, corporate law, finance law and dispute resolution. Through this module, students will benefit from learning substantive aspects of modern Chinese law and will be conversant with Mandarin in the legal context. This course is conducted primarily in Chinese (Mandarin) and is intended for students who possess a basic level of Chinese (Mandarin).", + "title": "Modern Chinese Law & Legal Chinese", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the latest legal developments and areas of significance in modern China. Topics covered include Chinese legal system, legal institutions, civil law, corporate law, finance law and dispute resolution. Through this module, students will benefit from learning substantive aspects of modern Chinese law and will be conversant with Mandarin in the legal context. This course is conducted primarily in Chinese (Mandarin) and is intended for students who possess a basic level of Chinese (Mandarin).", + "title": "Modern Chinese Law & Legal Chinese", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4009V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the civil law tradition, principally the French\ncivil law tradition (with occasional references to the German civil law tradition). The French civil law tradition has had a significant influence in a number of ASEAN countries (including Indonesia) and whenever possible the course will refer to provisions of the different ASEAN civil codes and laws. The course will give an overview of the tradition and will touch on a number of topics including private law topics. The approach will be systematic in the sense that the course will try to immerse the students in the civil law system as a whole and help them understand how the system works and is organized. The goal is to teach the students how to think like civilian lawyers, or at least to teach them how civil law jurist approach the law.", + "title": "Civil Law Tradition", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines advanced topics in the civil law tradition using a\ncomparative approach, examining in particular the similiarities and differences between the civil law and the common law (and possibly other traditions) in approaching specific legal problems. The precise topics covered and examples used will vary depending on the instructor teaching the module in a given year, but the topics typically discussed would include the methodological differences between civil and common law (use of legislation and codes, use of case law / jurisprudence, use of doctrine), the differences in policies and values, as well whether we should seek convergence and unification or respect for the mentalit\u00e9 and culture of each legal tradition through harmonization.", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4010A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines advanced topics in the civil law tradition using a\ncomparative approach, examining in particular the similiarities and differences between the civil law and the common law (and possibly other traditions) in approaching specific legal problems. The precise topics covered and examples used will vary depending on the instructor teaching the module in a given year, but the topics typically discussed would include the methodological differences between civil and common law (use of legislation and codes, use of case law / jurisprudence, use of doctrine), the differences in policies and values, as well whether we should seek convergence and unification or respect for the mentalit\u00e9 and culture of each legal tradition through harmonization.", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4010AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course has two primary objectives. The first is to introduce students to the fundamental elements of civil litigation. The second is to inculcate a sound understanding of the underlying principles and policies of civil justice. This will provide students with an analytical approach to litigation and set a foundation for practice. The Rules of Court and related sources of civil procedure will be examined as we go through the various stages of the lawsuit. Students will learn that the civil process is primarily characterised by a variety of initiatives which may be taken according to the circumstances of the case.", + "title": "Civil Justice & Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course has two primary objectives. The first is to introduce students to the fundamental elements of civil litigation. The second is to inculcate a sound understanding of the underlying principles and policies of civil justice. This will provide students with an analytical approach to litigation and set a foundation for practice. The Rules of Court and related sources of civil procedure will be examined as we go through the various stages of the lawsuit. Students will learn that the civil process is primarily characterised by a variety of initiatives which may be taken according to the circumstances of the case.", + "title": "Civil Justice & Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4011V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This discussion-based seminar will focus on issues of comparative constitutional adjudication in common law systems, with particular emphasis on the experiences of India, Singapore and South Africa. The course will therefore focus primarily on the institutional mechanisms of judicial review and the challenges for constitutionalism that are posed within this particular institutional setting.", + "title": "Comparative Constitutional Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4012V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is emerging as a distinct field of law in every nation and region. Legislatures establish environmental laws based upon the need to address perceived environmental problems in their territory or in a region of shared resources such as a river basin or coastal marine regions or the habitats for migratory species. In some instances, national legislation is stimulated by the negotiation and adherence to multilateral environmental agreements.", + "title": "Comparative Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4013V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the legal principles that form the foundation of construction law and to the common practical problems that arise in this field. Topics will include: (a) general principles of construction law, including completion, defects, retention and certification; (b) basic provisions of construction contracts; (c) claims procedure & dispute resolution, including arbitration procedure; and (d) relevant provisions of standard form building contracts. This course will be of interest to students interested in construction practice or a practical approach to the study of law. This course is taught by partners from the Construction Practice Group of Wong Partnership.", + "title": "Construction Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the legal principles that form the foundation of construction law and to the common practical problems that arise in this field. Topics will include: (a) general principles of construction law, including completion, defects, retention and certification; (b) basic provisions of construction contracts; (c) claims procedure & dispute resolution, including arbitration procedure; and (d) relevant provisions of standard form building contracts. This course will be of interest to students interested in construction practice or a practical approach to the study of law. This course is taught by partners from the Construction Practice Group of Wong Partnership.", + "title": "Construction Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4014V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "When the judges at the Nuremberg Tribunal handed down their decision against the German leaders in October 1946, they declared \u2018crimes against peace\u2019 \u2013 the initiation of aggressive wars \u2013 to be \u2018the supreme international\ncrime\u2019. At the time, the charge was heralded as a legal milestone, but subsequent events revealed it to be a postwar anomaly. This module traces the ebb and flow of the idea of criminalising aggression \u2013 from its origins after the\nFirst World War, through its high-water mark at the postwar tribunals and its abandonment during the Cold War, to its recent revival at the International Criminal Court.", + "title": "Topics in Int\u2019l Criminal Law (A): Aggression", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4016A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks mainly at contract law but also at some issues of commercial law in civil law jurisdictions in Asia using as examples a few Asian civil and commercial codes (for example the Indonesian codes which are similar to the\nFrench codes). It also looks at civil law in general as, unfortunately, more materials are available in English on European civil law than on Asian civil law. The course is\ncomparative in nature as it will compare civil and common law solutions. It would be a useful course for those who will works for firms with dealings across Asia.", + "title": "Contract and Commercial Law in Civil-Law Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Tax: Profits & Distributions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Tax: Profits & Distributions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4018V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the granting of credit and the taking of security by bank as well as aspects of bank supervision. The course starts with the Part on Bank Supervision and then turns to the discussion of unsecured lending and the Moneylenders' Act. It then focuses on secured credit. The discussion of the general regulation of the giving of security is followed by an examination of specific security devices, such as pledges, trust receipts, Romalpa clauses, factoring, stocks and shares as security, and guarantees and indemnities. The emphasis throughout is on the commercial effectiveness of the system.", + "title": "Credit & Security", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the granting of credit and the taking of security by bank as well as aspects of bank supervision. The course starts with the Part on Bank Supervision and then turns to the discussion of unsecured lending and the Moneylenders' Act. It then focuses on secured credit. The discussion of the general regulation of the giving of security is followed by an examination of specific security devices, such as pledges, trust receipts, Romalpa clauses, factoring, stocks and shares as security, and guarantees and indemnities. The emphasis throughout is on the commercial effectiveness of the system.", + "title": "Credit & Security", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4019V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is aimed at giving students an overview of environmental law and its development, including the legal and administrative structures for their implementation, from the international, regional and national perspectives. It will focus on hard laws (legal instruments, statutory laws, international and regional conventions) and soft laws (Declarations, Charters etc.). In particular, it will examine the basic elements of pollution laws relating to air, water, waste, hazardous substances and noise; as well as nature conservation laws and laws governing environmental impact assessments. Singapore's laws and the laws of selected ASEAN countries will be examined.", + "title": "Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4021V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Apart from the instruments of the World Trade Organization, there are other institutions and techniques which regulate international trade. The World Bank and the International Monetary Fund regulate certain aspects of trade. There are multilateral instruments which deal with issues such as corruption, ethical business standards, investment protection, competition and the regulation of financial services. The jurisdictional reach of large powers over international markets also provides means of self-interested regulation. The international regulation of new technologies such as internet and biotechnology pose novel problems. This course addresses the issues that arise in this area in the theoretical and political contect of globalization.", + "title": "Globalization And International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4022V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will initiate the student to the basics of Indonesian law (adat law, Islamic law, legal pluralism, constitutional law, administrative law, civil law, judicial process) as well as to others aspects that are of concern to foreigners (foreign investment laws and protections, regional autonomy, mining laws etc.). It will also address some of the problems relating to law enforcement in Indonesia", + "title": "Indonesian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4024", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will initiate the student to the basics of Indonesian law (adat law, Islamic law, legal pluralism, constitutional law, administrative law, civil law, judicial process) as well as to others aspects that are of concern to foreigners (foreign investment laws and protections, regional autonomy, mining laws etc.). It will also address some of the problems relating to law enforcement in Indonesia", + "title": "Indonesian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4024V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of rights. It begins with exposition of Wesley Hohfeld\u2019s analysis of the different legal positions often designated as \u201crights\u201d; then uses Hohfeld\u2019s framework to understand the debate between interest and will theorists of rights. It moves on to explicit consideration of moral rights. Finally, applications are considered - including human rights, and Asian perspectives on \u201crights\u201d discourse.", + "title": "Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of rights. It begins with exposition of Wesley Hohfeld\u2019s analysis of the different legal positions often designated as \u201crights\u201d; then uses Hohfeld\u2019s framework to understand the debate between interest and will theorists of rights. It moves on to explicit consideration of moral rights. Finally, applications are considered - including human rights, and Asian perspectives on \u201crights\u201d discourse.", + "title": "Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4025V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Infocoms Law: Competition & Convergence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4026V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on the UN Convention on Contracts for the International Sale of Goods, governing international commercial sales in the US and abroad. The objective of this course is to give participants an overview of the (different) ways in which this Convention has been applied by judges and arbitrators throughout the world, thus giving participants the tools to draft international import/export agreements favourable to their future clients. Participants will be given hypothetical cases and will be asked to critically examine the different substantive solutions proposed by courts and arbitrators. As the convention does not deal with all the problems that may arise out of international commercial sales, the course will also deal with the issue of how to fill the gaps left by this Convention.", + "title": "International & Comparative Law Of Sale", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic understanding of the law of arbitration to enable them to advise and represent parties in the arbitral process confidence. Legal concepts peculiar to arbitration viz. separability, arbitrability and kompetenze-kompetenze will considered together with the procedural laws on the conduct of the arbitral process, the making of and the enforcement of awards. Students will examine the UNCITRAL Model Law and the New York Convention, 1958. This course is most suited for students with some knowledge of the law of commercial transactions, shipping, banking, international sale of goods or construction.", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4029", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic understanding of the law of arbitration to enable them to advise and represent parties in the arbitral process confidence. Legal concepts peculiar to arbitration viz. separability, arbitrability and kompetenze-kompetenze will considered together with the procedural laws on the conduct of the arbitral process, the making of and the enforcement of awards. Students will examine the UNCITRAL Model Law and the New York Convention, 1958. This course is most suited for students with some knowledge of the law of commercial transactions, shipping, banking, international sale of goods or construction.", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4029AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic understanding of the law of arbitration to enable them to advise and represent parties in the arbitral process confidence. Legal concepts peculiar to arbitration viz. separability, arbitrability and kompetenze-kompetenze will considered together with the procedural laws on the conduct of the arbitral process, the making of and the enforcement of awards. Students will examine the UNCITRAL Model Law and the New York Convention, 1958. This course is most suited for students with some knowledge of the law of commercial transactions, shipping, banking, international sale of goods or construction.", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4029BV", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic understanding of the law of arbitration to enable them to advise and represent parties in the arbitral process confidence. Legal concepts peculiar to arbitration viz. separability, arbitrability and kompetenze-kompetenze will considered together with the procedural laws on the conduct of the arbitral process, the making of and the enforcement of awards. Students will examine the UNCITRAL Model Law and the New York Convention, 1958. This course is most suited for students with some knowledge of the law of commercial transactions, shipping, banking, international sale of goods or construction.", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4029V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Globalisation has made it more important for lawyers to be knowledgeable about the international aspects of litigation. This course focuses on the jurisdictional techniques most relevant to international commercial litigation: in personam jurisdiction, forum non conveniens, interim protective measures, recognition and enforcement of foreign judgments, public policy, and an outline of choice of law issues for commercial contracts. The course, taught from the perspective of Singapore law, based largely on the common law, is designed to give an insight into the world of international litigation. These skills are relevant to not only litigation lawyers, but also lawyers planning international transactions.", + "title": "International Commercial Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Globalisation has made it more important for lawyers to be knowledgeable about the international aspects of litigation. This course focuses on the jurisdictional techniques most relevant to international commercial litigation: in personam jurisdiction, forum non conveniens, interim protective measures, recognition and enforcement of foreign judgments, public policy, and an outline of choice of law issues for commercial contracts. The course, taught from the perspective of Singapore law, based largely on the common law, is designed to give an insight into the world of international litigation. These skills are relevant to not only litigation lawyers, but also lawyers planning international transactions.", + "title": "International Commercial Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4030V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International law traditionally concerns itself with the relations between states, yet environmental problems transcend borders. International environmental law demonstrates how international norms can affect national sovereignty on matters of common concern. The course surveys international treaties concerning the atmosphere and the conservation of nature, and connections to trade and economic development. Institutions and principles to promote compliance and cooperation are also examined. The course will assist students in their understanding of international law-making. It would be of use to those interested in careers involving international law, both for the government and public sector and those in international trade and investment.", + "title": "International Environmental Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International law traditionally concerns itself with the relations between states, yet environmental problems transcend borders. International environmental law demonstrates how international norms can affect national sovereignty on matters of common concern. The course surveys international treaties concerning the atmosphere and the conservation of nature, and connections to trade and economic development. Institutions and principles to promote compliance and cooperation are also examined. The course will assist students in their understanding of international law-making. It would be of use to those interested in careers involving international law, both for the government and public sector and those in international trade and investment.", + "title": "International Environmental Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4031V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Investment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4032", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the nature of risks to foreign investment and the elimination of those risks through legal means. As a prelude, it discusses the different economic theories on foreign investment, the formation of foreign investment contracts and the methods of eliminating potential risks through contractual provisions. It then examines the different types of interferences with foreign investment and looks at the nature of the treaty protection available against such interference. It concludes by examining the different methods of dispute settlement available in the area. The techniques of arbitration of investment disputes available are fully explored.", + "title": "International Investment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4032V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes a problem-oriented approach to public international law. Its primary objective is to provide students with an understanding of the basic principles of public international law and a framework for analysing international legal disputes. The focus will be a past problem from the Philip C. Jessup International Law Moot Court Competition. This will be used to illustrate the basic principles of public international law applicable in an international dispute. Its second objective is to teach students how to research points of international law and to construct persuasive arguments based on legal precedent, general principles, policy and facts.", + "title": "International Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes a problem-oriented approach to public international law. Its primary objective is to provide students with an understanding of the basic principles of public international law and a framework for analysing international legal disputes. The focus will be a past problem from the Philip C. Jessup International Law Moot Court Competition. This will be used to illustrate the basic principles of public international law applicable in an international dispute. Its second objective is to teach students how to research points of international law and to construct persuasive arguments based on legal precedent, general principles, policy and facts.", + "title": "International Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4033V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Regulation of Shipping", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4034", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the global regime governing the international regulation of commercial shipping. It will examine the relationship between the legal framework established in the 1982 UN Convention on the Law of the Sea and the work of the International Maritime Organization (IMO), the UN specialized agency responsible for the safety and security of international shipping and the prevention of pollution from ships. The course will focus on selected global conventions administered by the IMO, including those governing safety of life at sea (SOLAS), the prevention of pollution from ships (MARPOL) and the training, certification and watchkeeping for seafarers (STCW). It will also examine the liability and compensation schemes that have been developed for pollution damage caused by the carriage of oil and noxious substances by ships, as well as the conventions designed to ensure that States undertake contingency planning in order to combat spills of oil and other noxious and hazardous substances in their waters. In addition, the course will examine the schemes that have been developed to enhance the security of ships and ports in light of the threat of maritime terrorism. It will also examine the role of the IMO in the prevention of pollution of the marine environment from dumping waste at sea and from seabed activities subject to national jurisdiction. One of the themes of the course will be to consider how the IMO is responding to increased concern about the protection and preservation of the marine environment, including threats such as invasive species and climate change. Another theme will be to consider how the responsibility to enforce IMO Conventions is divided between flag States, coastal States, port States and the IMO. This course will be useful to persons who intend to practice shipping law or work in the private or public maritime sector.", + "title": "International Regulation of Shipping", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4034V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4035V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The sociology of law studies law as a social institution. We will explore the relationships among law, social actors and other social institutions. This is in contrast to the legal academy\u2019s formalist approaches that treat law as\nautonomous and impartial, and jurisprudential concerns about law\u2019s morality. We will consider both theoretical and empirical, and classic and contemporary works in sociology of law. Issues covered include: law and classic social theory; law and contemporary social theory; law and power; the social construction of disputes and dispute resolution; law and organizations; legal mobilization; law, collective action, and social change; legal consciousness; and, sociological perspectives on the legal profession.", + "title": "Sociology of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4037", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The sociology of law studies law as a social institution. We will explore the relationships among law, social actors and other social institutions. This is in contrast to the legal academy's formalist approaches that treat law as autonomous and impartial, and jurisprudential concerns about law's morality. We will consider both theoretical and empirical, and classic and contemporary works in sociology of law. Issues covered include: law and classic social theory; law and contemporary social theory; law and power; the social construction of disputes and dispute resolution; law and organizations; legal mobilization; law, collective action, and social change; legal consciousness; and, sociological perspectives on the legal profession.", + "title": "Sociology of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4037V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will consider the interaction of law and religion in three aspects: firstly, through a consideration of theoretical materials that discuss and debate religion\u2019s (possible) roles in public discourse and in the shaping of law, especially in multi-religious and multi-cultural environments; second, through an examination of a range of religio-legal traditions (e.g., Islamic law, Hindu Law etc); and, third, a consideration of specific instances \u2013 in cases, legislation and public issues etc -- where law and religion meet.", + "title": "Law and Religion", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4042V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to give students a firm foundation of existing law; a working understanding of standard form policies; and an understanding of the interaction between the Marine Insurance Act, case law and the Institute Clauses. Topics will include: types of marine insurance policies; insurable interest; principle of utmost good faith; marine insurance policies; warranties; causation; insured and excluded perils; proof of loss; types of losses; salvage, general average and particular charges; measure of indemnity and abandonment; mitigation of losses. This course will appeal to students who wish to specialise in either insurance law or maritime law.", + "title": "Law Of Marine Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4043", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to give students a firm foundation of existing law; a working understanding of standard form policies; and an understanding of the interaction between the Marine Insurance Act, case law and the Institute Clauses. Topics will include: types of marine insurance policies; insurable interest; principle of utmost good faith; marine insurance policies; warranties; causation; insured and excluded perils; proof of loss; types of losses; salvage, general average and particular charges; measure of indemnity and abandonment; mitigation of losses. This course will appeal to students who wish to specialise in either insurance law or maritime law.", + "title": "Law Of Marine Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4043V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a skills-based workshop and is designed to assist participants in learning about and attaining a basic level of competency as a mediator and mediation advocate. Topics covered include: Interest-based mediation vs Positions-based mediation; The Mediation Process; Opening Statements; Co-Mediation; Preparing a client for mediation; and Mediation advocacy. This workshop is targeted at self-motivated Year 3 & 4 students interested in learning and developing interpersonal and conflict resolution skills.", + "title": "Mediation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4044", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a skills-based workshop and is designed to assist participants in learning about and attaining a basic level of competency as a mediator and mediation advocate. Topics covered include: Interest-based mediation vs Positions-based mediation; The Mediation Process; Opening Statements; Co-Mediation; Preparing a client for mediation; and Mediation advocacy. This workshop is targeted at self-motivated Year 3 & 4 students interested in learning and developing interpersonal and conflict resolution skills.", + "title": "Mediation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4044V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_MC", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 19, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is a skills-based workshop and is designed to assist participants in learning about and attaining a basic level of competency as a negotiator. This is particularly important as lawyers commonly engage in negotiation as part of their practice. Topics covered include: Interest-based negotiation vs Position-based negotiation; Preparing for a negotiation; Creating and Claiming Value; and Overcoming Impasse. This workshop is targeted at self-motivated students interested in learning and developing interpersonal and negotiation skills.", + "title": "Negotiation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4045", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a skills-based workshop and is designed to assist participants in learning about and attaining a basic level of competency as a negotiator. This is particularly important as lawyers commonly engage in negotiation as part of their practice. Topics covered include: Interest-based negotiation vs Position-based negotiation; Preparing for a negotiation; Creating and Claiming Value; and Overcoming Impasse. This workshop is targeted at self-motivated students interested in learning and developing interpersonal and negotiation skills.", + "title": "Negotiation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4045V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_MC", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Conflict of Laws addresses three fundamental questions in international civil litigation: (1) Which country should hear the case? (2) Which law should be applied? (3) What is the effect of a foreign judgment? This course focuses on the second question, examining the theories, techniques and methods in choice of law, and issues in the exclusion of foreign law. Coverage includes problems in contract and torts, and other areas that may be selected from time to time. Coverage is primarily from the point of view of the common law which applies in Singapore, but references will be made from time to time to techniques used in other jurisdictions. This course is complementary to International Commercial Litigation (which focuses on Questions (1) and (3)), but it also stands on its own as an introduction to the conflict of laws.", + "title": "Principles Of Conflict Of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4049", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of conflict of laws addresses three questions: Which country should hear the case? What law should be applied? What is the effect of its adjudication in another country? This course includes an outline of jurisdiction and judgments techniques, but will focus on problems in choice of law, and issues in the exclusion of foreign law. Coverage includes problems in contract and torts, and other areas may be selected from time to time. This course is complementary to International Commercial Litigation, but it stands on its own as an introduction to theories and methodologies in the conflict of laws.", + "title": "Principles Of Conflict Of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4049V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundational course introduces the student to the nature, major principles, processes and institutions of the international legal system, the relationship between international and domestic law and the role of law in promoting world public order. Students will acquire an understanding of the conceptual issues underlying this discipline and a critical appreciation of how law inter-relates with contemporary world politics, its global, regional and domestic significance. Topics include the creation and status of international law, participation and competence in the international legal system, primary substantive norms such as the law regulating the use of force and enforcement procedures.", + "title": "Public International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4050", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundational course introduces the student to the nature, major principles, processes and institutions of the international legal system, the relationship between international and domestic law and the role of law in promoting world public order. Students will acquire an understanding of the conceptual issues underlying this discipline and a critical appreciation of how law inter-relates with contemporary world politics, its global, regional and domestic significance. Topics include the creation and status of international law, participation and competence in the international legal system, primary substantive norms such as the law regulating the use of force and enforcement procedures.", + "title": "Public International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4050V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the central concepts and disputes in the law of restitution, centring on unjust enrichment as an organising theme. The prevention of unjust enrichment as an independent legal principle, capable of founding causes of action, gained currency as an independent branch of the common law only as recently as in 1991. This course covers the operation of key restitutionary concepts in common law and equity, including their relationships to the law of contract, torts, and property, as well as to equitable principles. A selection of topics, which may vary from year to year, will be covered.", + "title": "Principles Of Restitution", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4051", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Domestic and International Sale of Goods", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4054", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of domestic and international sale of goods under the Singapore law. With regard to domestic sales, the course will focus on the Sale of Goods Act. Topics to\nbe studied will include the essential elements of the contract of sale; the passing of title and risk; the implied conditions of title, description, fitness and quality; delivery and payment, acceptance and termination, and the available remedies. With particular reference to a seller\u2019s delivery obligations, the course will also cover substantial aspects of the international sale of goods under the common law, such as FOB and CIF contracts and documentary sales. This course will be of interest to students intending to enter commercial practice.", + "title": "Domestic and International Sale of Goods", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4054V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide an overview of securities regulation, trusts, corporate governance and M & A, in Singapore and jurisdictions like US, China, UK, Australia, Taiwan and HK. Topics to be covered: use of alternative business entities and nature of shares; \"going public\" process; corporate governance of listed companies and trusts; insider trading and securities frauds; globalisation and technology; and the regulation of takeover activity. It also offers an introduction to the law of trusts, including custody arrangements and securitisation. Students are expected to search Internet for comparative materials but will also be provided with assigned readings.", + "title": "Securities Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4055", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation course seeks to acquaint participants with a basic working knowledge of income tax and goods and services tax issues faced by companies and individuals. It will illustrate the extent to which tax avoidance is acceptable under the rules for deductions, capital allowances and losses. In addition, the taxation of income from employment income, trade and investments will be highlighted. Tax planning opportunities arising from the differences in tax treatment of sole proprietors, partnerships and companies will be highlighted. On policy issues, concepts including economics of taxation, international trends and tax reform will be covered.", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4056A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation course seeks to acquaint participants with a basic working knowledge of income tax and goods and services tax issues faced by companies and individuals. It will illustrate the extent to which tax avoidance is acceptable under the rules for deductions, capital allowances and losses. In addition, the taxation of income from employment income, trade and investments will be highlighted. Tax planning opportunities arising from the differences in tax treatment of sole proprietors, partnerships and companies will be highlighted. On policy issues, concepts including economics of taxation, international trends and tax reform will be covered.", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4056AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation course seeks to acquaint participants with a basic working knowledge of income tax and goods and services tax issues faced by companies and individuals. It will illustrate the extent to which tax avoidance is acceptable under the rules for deductions, capital allowances and losses. In addition, the taxation of income from employment income, trade and investments will be highlighted. Tax planning opportunities arising from the differences in tax treatment of sole proprietors, partnerships and companies will be highlighted. On policy issues, concepts including economics of taxation, international trends and tax reform will be covered.", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4056B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation course seeks to acquaint participants with a basic working knowledge of income tax and goods and services tax issues faced by companies and individuals. It will illustrate the extent to which tax avoidance is acceptable under the rules for deductions, capital allowances and losses. In addition, the taxation of income from employment income, trade and investments will be highlighted. Tax planning opportunities arising from the differences in tax treatment of sole proprietors, partnerships and companies will be highlighted. On policy issues, concepts including economics of taxation, international trends and tax reform will be covered.", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4056BV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to examine and critique the philosophical assumptions that underlie the substantive criminal law. We begin with a survey of the various philosophical theories that purport to explain and justify the imposition of criminal liability. Once familiar with the fundamental concepts and issues, we then consider the relationship between moral responsibility and criminal liability by analyzing the theoretical assumptions behind the substantive principles and doctrine of criminal law. This is a seminar-style course aimed at students who already have grounding in criminal law, philosophy of law, or moral theory. Extensive class participation is expected.", + "title": "Theoretical Foundations Of Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4057V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "By examining primary materials focused on the normative context within which the United Nations functions, students will develop an understanding of the interaction between law and practice. This is essential to a proper understanding of the UN Organization, but also to the possibilities and limitations of multilateral institutions more generally. The course is organized in four parts. Part I, \"Relevance\", raises some preliminary questions about the legitimacy and effectiveness of the United Nations, particularly in the area of peace and security. Part II, \"Capacity\", brings together materials on the nature and status of the United Nations. Part III, \"Practice\", examines how the United Nations has exercised its various powers. Part IV, \"Accountability\", concludes with materials on responsibility and accountability of the United Nations and its agents. A background in public international law is strongly recommended.", + "title": "United Nations Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4059V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the impact of the emerging world trade disciplines on countries and prepare students for a legal landscape which will increasingly require an understanding and appreciation of world trade law. The course will introduce students to the regulatory framework of international trade and will cover the economics of trade, bilateral and multilateral trade agreements, the WTO, GATT and GATS, trade related investment issues, anti-dumping disciplines, the subsidies issue and the dispute settlement procedures. Subject to scheduling constraints, guest speakers from the government agencies and private practice may be invited to share their expertise and experiences.", + "title": "World Trade Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4060", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "World Trade Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4060B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be encouraged to reflect upon what is really involved in pursuing a life of intellectual work. To this end, students will undertake a philosophical exploration of research and scholarship as it is routinely conducted across the experimental and social sciences, the humanities, literature and philosophy. Drawing upon insights achieved by historians, scientists, legal thinkers, sociologists, philosophers and literary writers into their respective crafts, students will explore not only the practical techniques recommended by these practitioners, but more significantly, the habits and virtues that have been found to be most conducive to successful practice.", + "title": "Inquiry", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4061", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be encouraged to reflect upon what is really involved in pursuing a life of intellectual work. To this end, students will undertake a philosophical exploration of research and scholarship as it is routinely conducted across the experimental and social sciences, the humanities, literature and philosophy. Drawing upon insights achieved by historians, scientists, legal thinkers, sociologists, philosophers and literary writers into their respective crafts, students will explore not only the practical techniques recommended by these practitioners, but more significantly, the habits and virtues that have been found to be most conducive to successful practice.", + "title": "Inquiry", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4061V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of legal reasoning, and its relationship with broader questions in legal theory. The course will examine, inter alia, the nature of rules, precedent, authority, analogical reasoning, the common law, legal realism, statutory interpretation, judicial opinions, rules and standards, law and fact, and the burden of proof. The overarching questions to be addressed in this course include: In what way(s), if at all, is legal reasoning a distinctive form of reasoning? What is the relationship between legal reasoning and legal theory?", + "title": "Legal Reasoning & Legal Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4062", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of legal reasoning, and its relationship with broader questions in legal theory. The course will examine, inter alia, the nature of rules, precedent, authority, analogical reasoning, the common law, legal realism, statutory interpretation, judicial opinions, rules and standards, law and fact, and the burden of proof. The overarching questions to be addressed in this course include: In what way(s), if at all, is legal reasoning a distinctive form of reasoning? What is the relationship between legal reasoning and legal theory?", + "title": "Legal Reasoning & Legal Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4062V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To provide law students who intend to read commercial law electives with a foundation in accounting, finance and other related business concepts. It covers topics such as interpretation and analysis of standard financial statements, the types of players and instruments in the financial markets and the basic framework of a business investment market.The course will employ a hypothetical simulation where lawyers advise on several proposals involving the acquisition and disposal of assets by a client. The issues covered in the hypothetical will include asset valuation models, financing options and techniques, and compliance with accounting and regulatory frameworks.", + "title": "Business & Finance For Lawyers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4063", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To provide law students who intend to read commercial law electives with a foundation in accounting, finance and other related business concepts. It covers topics such as interpretation and analysis of standard financial statements, the types of players and instruments in the financial markets and the basic framework of a business investment market.The course will employ a hypothetical simulation where lawyers advise on several proposals involving the acquisition and disposal of assets by a client. The issues covered in the hypothetical will include asset valuation models, financing options and techniques, and compliance with accounting and regulatory frameworks.", + "title": "Business & Finance For Lawyers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4063V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the competition law and policy framework in Singapore and will introduce students to the three pillars of the legal and regulatory framework:\n(i) the prohibition against anti-competitive agreements, \n(ii) the prohibition against abuses of market dominance, and \n(iii) the regulation of mergers and concentrations.", + "title": "Competition Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4064", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the competition law and policy framework in Singapore and will introduce students to the three pillars of the legal and regulatory framework:\n(i) the prohibition against anti-competitive agreements, \n(ii) the prohibition against abuses of market dominance, and \n(iii) the regulation of mergers and concentrations.", + "title": "Competition Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4064V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the control of directors in large companies, principally those listed on a stock exchange.The module will address the law and regulation of this area of business activity in Singapore and will also draw on comparative perspectives from Australia, the UK and the US. The module will examine the structure, function and responsibilities of management in large companies. It will focus particularly on topics of special practical and theoretical relevance, such as directors? pay and the representation of interest groups in the company. It will consider regulation of management by shareholders, voluntary codes, market regulators and state agencies.The course is aimed at practitioners who advise companies about issues of corporate governance.", + "title": "Comparative Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4065", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4067", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "European Union Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4069", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "European Union Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4069V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to introduce students to the general principles of intellectual property law in Singapore, as well as, major international IP conventions. It is aimed at students who have no knowledge of IP law but are interested in learning more about this challenging area of law. It will also be useful for students intending to pursue the advanced courses in IP/IT by providing them with the necessary foundation on IP law. Students will be assessed based on open book examination, 1 written assignment and 1 class presentation. (Class presentation is subject to change depending on student subscription).", + "title": "Foundations Of Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4070", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to introduce students to the general principles of intellectual property law in Singapore, as well as, major international IP conventions. It is aimed at students who have no knowledge of IP law but are interested in learning more about this challenging area of law. It will also be useful for students intending to pursue the advanced courses in IP/IT by providing them with the necessary foundation on IP law. Students will be assessed based on open book examination, 1 written assignment and 1 class presentation. (Class presentation is subject to change depending on student subscription).", + "title": "Foundations Of Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4070V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The advent of new technologies in this scientific and technological age has led to a dramatic shift in business strategies and global economic development. IP rights (particularly patents) form an \"inexhaustible resource\" from which the fruits of research and innovation can be valued, commercially dealt with and shared. This course will analyse the international, regional and national patent laws, policies and practices including important aspects on successful technology licensing and knowledge transfer, as well as valuation and strategies for monetization of IP (patent) assets.", + "title": "International Patent Law, Policy and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4071", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The advent of new technologies in this scientific and technological age has led to a dramatic shift in business strategies and global economic development. IP rights (particularly patents) form an \"inexhaustible resource\" from which the fruits of research and innovation can be valued, commercially dealt with and shared. This course will analyse the international, regional and national patent laws, policies and practices including important aspects on successful technology licensing and knowledge transfer, as well as valuation and strategies for monetization of IP (patent) assets.", + "title": "International Patent Law, Policy and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4071V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in IP Law B: IP Valuation:Law & Prc", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4072B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4073", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce to students the substantive and procedural framework of international criminal law. We will study international criminal law's historical origins, evolution, and how it is implemented today through a variety of different institutional frameworks. Among others, we will study post-WWII tribunals, the ad hoc international tribunals of Yugoslavia and Rwanda, hybrid tribunals, military tribunals and the permanent International Criminal Court. We will also examine non-criminal law responses to international crimes such as truth and reconciliation commissions. Students will critically explore and question the pros and cons of international criminal justice in terms of its professed goals and objectives.", + "title": "International Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4073V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will begin with an evaluation of the business rationale for M&As and a discussion of the various types of transactions and related terminology. The regulatory issues surrounding these transactions will be analysed through examination of the applicable laws and regulations. The course adopts an nternational comparative perspective, with greater focus on the U.S., U.K. and Singapore. While corporate and securities law issues form the thrust, incidental reference will be made to accounting, tax and competition law considerations. inally, the transactional perspective will consider various\nstructuring matters, planning aspects, transaction costs\nand impact on various stakeholders.", + "title": "Mergers & Acquisitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4074", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will begin with an evaluation of the business rationale for M&As and a discussion of the various types of transactions and related terminology. The regulatory issues surrounding these transactions will be analysed through examination of the applicable laws and regulations. The course adopts an nternational comparative perspective, with greater focus on the U.S., U.K. and Singapore. While corporate and securities law issues form the thrust, incidental reference will be made to accounting, tax and competition law considerations. inally, the transactional perspective will consider various\nstructuring matters, planning aspects, transaction costs\nand impact on various stakeholders.", + "title": "Mergers & Acquisitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4074V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches the overlap between intellectual property and competition law. Students will be challenged to explore the intrinsic tensions that lie between the\nstatutory regimes that regulate market dominance, restrictive agreements and the monopolistic prerogatives and assertions by holders of intellectual property rights.", + "title": "IP and Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4075", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches the overlap between intellectual property and competition law. Students will be challenged to explore the intrinsic tensions that lie between the\nstatutory regimes that regulate market dominance, restrictive agreements and the monopolistic prerogatives and assertions by holders of intellectual property rights.", + "title": "IP and Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4075V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. Issues to be examined include the conduct of electronic commerce, cybercrimes, electronic evidence, privacy and data protection. (This course will not cover the intellectual property issues, which are addressed instead in \"IT Law: IP Issues\".) Students who are interested in the interface between law, technology and policy will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4076", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. Issues to be examined include the conduct of electronic commerce, cybercrimes, electronic evidence, privacy and data protection. (This course will not cover the intellectual property issues, which are addressed instead in \"IT Law IP Issues\".) Students who are interested in the interface between law, technology and policy will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4076V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. The focus of this course will be on the intellectual property issues such as copyright in software and electronic materials, software patents, electronic databases, trade marks, domain names and rights management information. Students who are interested in the interface between law, technology, policy and economic rights will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4077V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about a form of arbitration which is specific to disputes arising between international investors and host states \u2013 i.e. investor-state disputes \u2013 involving public, treaty rights. In contrast, international commercial arbitration typically deals with the resolution of disputes over private law rights between what are usually private parties.\n\nIt will be of interest to those interested in arbitration, and/or the law of foreign investment.", + "title": "Law & Practice of Investment Treaty Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4078", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the relationship between the public and private power through the historical lens of the East India Company (established in 1600), one of the first multinational corporations. In particular, it examines: the\nformation and evolution of the Company and the legal implications of its ambiguous status as a private or public entity; its transformation into a sovereign power in India against the backdrop of the rise of the modern state and modern constitutionalism in Europe and the United States of America; and the Company\u2019s role in the founding of modern Singapore; and the Company\u2019s demise in 1858.", + "title": "State and Company in Legal-Historical Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4079", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the modes and styles of advocacy used in a range of tribunals at the local, national, regional and international level. Students will evaluate how legal and professional cultures, accusatorial and inquisitorial rientation, degree of adversarialism, and level of formality influence legal argument. By examining different approaches to oral and written argument, students will develop the ability to conceptualise and present legal concepts in a manner appropriate to a variety of venues including administrative tribunals, egional and international bodies, and alternative dispute resolution vehicles, in a manner that will help prepare them for a global legal practice.", + "title": "Comparative Advocacy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4081", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a broad understanding of the relationship between law and social movements. Why do people mobilize collectively? We begin with this question, and then consider the different approaches of conceptualizing social movements. Next, we delve into questions intersecting social movements and sociology of law: the use of law as social control and repression, the role of lawyers in social movements, legal strategies involved in collective claim\u2010making, and the relationship between law and social change. After that, we examine a selection of case studies such as those concerning prodemocracy\nmovements, sexual rights movements, rightwing and counter movements, and transnational movements.", + "title": "Law & Social Movements", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4082", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the principles and practice concerning the use of international trusts as a vehicle for asset protection, tax and estate planning. It will examine the offshore financial industry, the modern uses of and the administration of off-shore trusts. It will include problem-based learning in which students will learn to plan and draft trust documents. The course is intended for persons intending to practice in the area of international trusts. They will also be able to qualify for the Foundation Certificate in International Trust Management organized by the Society of Trust and Estate Practitioners (STEP) in the UK.", + "title": "International Trusts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4085", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4088", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide students with a comparative perspective on selected issues in contract law. It will compare the main principles of contract at common law and that in Chinese law. It will also examine the Chinese\ncontract law perspectives on scope of application, judicial interpretation, formation, performance, modification and assignment of contracts as well as liability for breach of contract.\n\nAt the end of the course, students will be able to understand the Chinese contract law framework and appreciate the differences at common law and that in Chinese law.", + "title": "Chinese Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4088V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the laws and the relevant legislation governing the main forms of foreign direct investment (FDI) in China such as equity joint ventures, contractual joint ventures, wholly foreign-owned enterprises and limited liability companies.The aim is to provide students with a critical understanding of the FDI regime in China as well as an understanding of the relationship between the FDI governing laws and other general laws so as to provide updated and accurate information and enable proper legal advice to be given in this area.", + "title": "Chinese Corporate & Securities Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4089", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the laws and the relevant legislation governing the main forms of foreign direct investment (FDI) in China such as equity joint ventures, contractual joint ventures, wholly foreign-owned enterprises and limited liability companies.The aim is to provide students with a critical understanding of the FDI regime in China as well as an understanding of the relationship between the FDI governing laws and other general laws so as to provide updated and accurate information and enable proper legal advice to be given in this area.", + "title": "Chinese Corporate & Securities Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4089V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4093", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4093V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Legal aid aims to ensure that all member of society have access to justice, regardless of their financial means.\n\nThis clinic provides students with a unique experiential learning opportunity. Students will assist an experienced legal practitioner with a Legal Aid Bureau case. Cases will relate to family law matters, and may cover issues relating to divorce, child maintenance, estate division and mental capacity. \n\nUnder guided mentorship, students will experience a meaningful learning journey that will allow them to gain professional practice skills, substantive knowledge in the area of family law, and refine their research, analysis, and drafting skills.", + "title": "The Pro Bono Family Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4094", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic provides students with the opportunity to handle a corporate matter, for a partner organisation, under guided mentorship. Partner organisations presently include the National Gallery Singapore, Singapore Art Museum, The Arts House, Alzheimer's Disease Association, Singapore Hospice Council, Singapore Children\u2019s Society and Ernst & Young (Legal Corporate Social Responsibility Group).\n\nStudents will experience a meaningful learning journey, will gain valuable corporate practice skills, and increase their substantive knowledge in the areas of law that are relevant to the matters they are handling. Matters could cover areas such as personal data protection, contract formation and intellectual property issues.", + "title": "The Corporate Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4094AV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The State Courts Clerkship Programme is a judicial clinical legal education programme designed to provide top law students with the opportunity to be attached to senior District Court Judges and acquire experiential knowledge of law practice through direct exposure to judicial work. It is a unique course which allows law students to acquire a different perspective of legal work through personalised interaction with senior Judges, working on actual cases from a judicial perspective and experiencing legal practice in a real-life court setting.", + "title": "NUS-State Courts Judicial Clerkship Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4094B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The State Courts Clerkship Programme is a judicial clinical legal education programme designed to provide top law students with the opportunity to be attached to senior District Court Judges and acquire experiential knowledge of law practice through direct exposure to judicial work. It is a unique course which allows law students to acquire a different perspective of legal work through personalised interaction with senior Judges, working on actual cases from a judicial perspective and experiencing legal practice in a real-life court setting.", + "title": "NUS-State Courts Judicial Clerkship Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4094BV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1730", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Access to justice is a fundamental tenet of the rule of law. Many individuals of low means do not qualify for legal aid. Low bono seeks to fill this lacuna.\n\nThis legal clinic provides students with the experiential learning opportunity of assisting lawyers, from Covenant Chambers LLC, with low bono cases. These cases could cover the area of workplace, personal injury, employment, estate or probate law. Under guided mentorship students will gain valuable professional practice skills, further substantive legal knowledge, and refine their research, analysis, and drafting skills while helping those who otherwise may not have adequate access to justice.", + "title": "The Access to Justice Low Bono Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4094C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Access to justice is a fundamental tenet of the rule of law. Many individuals of low means do not qualify for legal aid. Low bono seeks to fill this lacuna.\n\nThis legal clinic provides students with the experiential learning opportunity of assisting lawyers, from Covenant Chambers LLC, with low bono cases. These cases could cover the area of workplace, personal injury, employment, estate or probate law. Under guided mentorship students will gain valuable professional practice skills, further substantive legal knowledge, and refine their research, analysis, and drafting skills while helping those who otherwise may not have adequate access to justice.", + "title": "The Access to Justice Low Bono Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4094CV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the opportunity of being heavily involved in assisting a seasoned practitioner with the handling of a Criminal Legal Aid Scheme (CLAS) case. \n\nUnder close mentorship students will embark upon a hands-on learning journey that will allow them to gain valuable professional practice skills, and deepen their substantive criminal law knowledge. Students could be dealing with cases involving offences under the Computer Misuse and Cybersecurity Act (Cap. 50A) or the Moneylenders Act (Cap. 188). Students will be involved in tasks such as attending client interviews, drafting pleadings and possibly attending court hearings.", + "title": "The Prof Bono Criminal Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4094D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the opportunity of being heavily involved in assisting a seasoned practitioner with the handling of a Criminal Legal Aid Scheme (CLAS) case. \n\nUnder close mentorship students will embark upon a hands-on learning journey that will allow them to gain valuable professional practice skills, and deepen their substantive criminal law knowledge. Students could be dealing with cases involving offences under the Computer Misuse and Cybersecurity Act (Cap. 50A) or the Moneylenders Act (Cap. 188). Students will be involved in tasks such as attending client interviews, drafting pleadings and possibly attending court hearings.", + "title": "The Pro Bono Criminal Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4094DV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the eye-opening experience of assisting a seasoned practitioner with the handling of a case under the Legal Assistance Scheme for Capital Offences (LASCO). \n\nUnder guided mentorship clinical students will experience a learning journey that will allow them to gain valuable professional practice skills, and increase their substantive criminal law knowledge. Students may be involved in tasks such as attending client meetings, drafting pleadings and attending court hearings.\n\nStudents will be able to help accused individuals when they need it most. The experience may cause students to question their own views on justice, and life!", + "title": "The Capital Offences Criminal Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4094E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the eye-opening experience of assisting a seasoned practitioner with the handling of a case under the Legal Assistance Scheme for Capital Offences (LASCO). \n\nUnder guided mentorship clinical students will experience a learning journey that will allow them to gain valuable professional practice skills, and increase their substantive criminal law knowledge. Students may be involved in tasks such as attending client meetings, drafting pleadings and attending court hearings.\n\nStudents will be able to help accused individuals when they need it most. The experience may cause students to question their own views on justice, and life!", + "title": "The Capital Offences Criminal Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4094EV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Clinical students will predominantly be required to develop a keen understanding of how the respective partner organisations (such as charities and social enterprises) run and assist partner organisations investigate the evolving legal and regulatory landscapes in which they operate, and where applicable, to consider best practices in other jurisdictions. Aside from this research element, clinical students will support the partner organisations on matters of a non-contentious / advisory nature (this could for example include any combination of drafting work, workshops and presentations and corporate secretarial work)", + "title": "The Evolving Legal Landscapes Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4094F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Clinical students will predominantly be required to develop a keen understanding of how the respective partner organisations (such as charities and social enterprises) run and assist partner organisations investigate the evolving legal and regulatory landscapes in which they operate, and where applicable, to consider best practices in other jurisdictions. Aside from this research element, clinical students will support the partner organisations on matters of a non-contentious / advisory nature (this could for example include any combination of drafting work, workshops and presentations and corporate secretarial work)", + "title": "The Evolving Legal Landscapes Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4094FV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This clinic is a collaboration between NUS Centre for Pro Bono and Clinical Legal Education and NUS Entrepreneurship Society (NES). \n\nClinical students will meet fellow student start-up founders taking part in a school-credited, student-run module on entrepreneurship, run via NUS Business School, and provide guidance to them on areas of law relevant to the start-up journey. Students will also have an opportunity to \"pitch\u201d their services to various student start-up founders and, where successful, to drafting legal documentation for specific start-up ideas to help turn the student\u2019s start-up ideas into reality. \n\nAdditionally, students will assist NES review contracts to facilitate NES\u2019s partnerships with external organisations \n\nNote: Students who participate in this clinic will record credit for this clinic in AY2021-22 Semester 2. However, due to the nature of the collaboration between NES and CPBCLE and the timeframe of the NES-run module, the work will be spread out over both Semester 1 and Semester 2.", + "title": "NUS Entrepreneurship Society Collaboration Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4094G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic is a collaboration between NUS Centre for Pro Bono and Clinical Legal Education and NUS Entrepreneurship Society (NES). \n\nClinical students will meet fellow student start-up founders taking part in a school-credited, student-run module on entrepreneurship, run via NUS Business School, and provide guidance to them on areas of law relevant to the start-up journey. Students will also have an opportunity to \"pitch\u201d their services to various student start-up founders and, where successful, to drafting legal documentation for specific start-up ideas to help turn the student\u2019s start-up ideas into reality. \n\nAdditionally, students will assist NES review contracts to facilitate NES\u2019s partnerships with external organisations \n\nNote: Students who participate in this clinic will record credit for this clinic in AY2021-22 Semester 2. However, due to the nature of the collaboration between NES and CPBCLE and the timeframe of the NES-run module, the work will be spread out over both Semester 1 and Semester 2.", + "title": "NUS Entrepreneurship Society Collaboration Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4094GV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Legal aid aims to ensure that all member of society have access to justice, regardless of their financial means.\n\nThis clinic provides students with a unique experiential learning opportunity. Students will assist an experienced legal practitioner with a Legal Aid Bureau case. Cases will relate to family law matters, and may cover issues relating to divorce, child maintenance, estate division and mental capacity. \n\nUnder guided mentorship, students will experience a meaningful learning journey that will allow them to gain professional practice skills, substantive knowledge in the area of family law, and refine their research, analysis, and drafting skills.", + "title": "The Pro Bono Family Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4094V", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Trademark Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4096", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The emphasis will be on the international and comparative aspects of the subject, including\n\nthe international treaties in this area (Paris Convention; TRIPS; Madrid etc) and regional developments (eg the Community trade mark system in Europe, the harmonization efforts in Asean);\n\ninter-relationship between trade mark law and the law of unfair competition in civil law jurisdictions;\n\ndifferent treatment by countries of topics such as parallel importation; protection of personality interests; dilution; protection of \"trade dress\" or \"get up\".", + "title": "International Trademark Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4096V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Course will introduce history and basic concepts of traditional Islamic law, followed by an account of reforms during the 19th and 20th centuries. The reform period will be covered topically, beginning with method and philosophical foundations, and moving to a variety of issues of positive and procedural law. Finally, some themes related to law and modernity will be explored.", + "title": "Islamic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4097", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Course will introduce history and basic concepts of traditional Islamic law, followed by an account of reforms during the 19th and 20th centuries. The reform period will be covered topically, beginning with method and philosophical foundations, and moving to a variety of issues of positive and procedural law. Finally, some themes related to law and modernity will be explored.", + "title": "Islamic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4097V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4099", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an understanding of the legal issues arising from casualties involving ships. It will examine aspects of the law relating to nationality and registration of ships, the law relating to the management of ships, ship sale and purchase, and the law of collisions, salvage, towage, wreck and general average. Students successfully completing the course will be familiar with the international conventions governing these issues, as well as the domestic law of Singapore.", + "title": "Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4099V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course takes students to the areas of significance in the field of dispute resolution in China, particularly with respect to the resolution of commercial disputes where arbitration plays a major role in today\u2019s China. Major methods of dispute resolution will be examined, such as arbitration, civil litigation, and mediation (as it combines with arbitration and litigation). Some topical issues pertinent to commercial disputes such as corporate litigation, securities enforcement, recognition and enforcement of foreign civil judgments, civil justice reform, and regional judicial assistance in the Greater China region will be looked into in the course as well.", + "title": "Arbitration and Dispute Resolution in China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes students to the areas of significance in the field of dispute resolution in China, particularly with respect to the resolution of commercial disputes where arbitration plays a major role in today\u2019s China. Major methods of dispute resolution will be examined, such as arbitration, civil litigation, and mediation (as it combines with arbitration and litigation). Some topical issues pertinent to commercial disputes such as corporate litigation, securities enforcement, recognition and enforcement of foreign civil judgments, civil justice reform, and regional judicial assistance in the Greater China region will be looked into in the course as well.", + "title": "Arbitration and Dispute Resolution in China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4100V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Torts is designed to build on and further your knowledge of tort law.\nThe course is divided into two parts. In Part One, we will examine some fundamental concepts and debates surrounding tort law. The objective is to understand what is distinctive about torts and how torts are important in a civilised system of law. In Part Two, we will examine torts not already covered in the first year course. This will include consideration of important torts such as defamation, conversion, deceit, conspiracy and breach of statutory duty. These torts will be examined by reference to the best of the literature and by a selection of representative cases.", + "title": "Advanced Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4102V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced-level course which provides an opportunity for rigorous study about the nature of law and broader issues in legal and political theory such as the nature of rights, the nature of justice, and questions about (fair) distribution. The course will examine a range of salient topics related to these issues and will be taught entirely through interactive, discussion-intensive seminars, that will rely heavily on active class participation.", + "title": "Jurisprudence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced-level course which provides an opportunity for rigorous study about the nature of law and broader issues in legal and political theory such as the nature of rights, the nature of justice, and questions about (fair) distribution. The course will examine a range of salient topics related to these issues and will be taught entirely through interactive, discussion-intensive seminars, that will rely heavily on active class participation.", + "title": "Jurisprudence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4104V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Partnership and Alternative Business Vehicles", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4107V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "International Law & Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does Asia relate to the international community and international law? The region's rich diversity of states and socieities challenges assumptions of universality and also affects cooperation between states on issues such as human rights violations, environmental harm and the facilitation of freer trade. Yet a sense of reguinalism within East Asia is growing, with new institutions and mechanisms to deal with these and other contemporary challenges in East Asia. The seminar will discuss key issues of law and legal approaches in Asia, such as sovereignty, as well as provide for presentations bt students on research subjects.", + "title": "International Law & Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4109V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Copyright Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4111V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "The Contemporary Indian Legal System", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "While serving as an introductory course to the Indian legal system, this discussion-based Seminar seeks to focus on topical, contemporary legal issues in India. It will focus primarily on the post-Independence legal system in India, and its important institutions of democratic governance.", + "title": "The Contemporary Indian Legal System", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4122V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The general aim of the course is to impart a critical analytical understanding of International Insolvency Law. There will be consideration of the main features of national insolvency regimes highlighting the similarities and differences followed by a detailed consideration of the scope for cooperation in respect of insolvency matters across national frontiers. The UNCITRAL Model Law on Cross-Border Insolvency and the European Insolvency Regulation will be addressed in detail.", + "title": "International Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4123", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law And Development In China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4125", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law And Development In China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4125V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4128", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The principal objective of this course is to provide an understanding and appreciation of the various legal issues and perspectives involved in carrying out business and corporate transactions in India. \n\nThe course will begin with a brief introduction to India\u2019s legal system, the Constitution and the judiciary so as to set the tone. This part will also contain an evaluation of the changes since 1991 to India\u2019s economic policies that have made it an emerging economic superpower. Thereafter, it will deal with the core through a discussion of the legal aspects involved in setting up business operations in India, the different types of business entities available, shareholders\u2019 rights, joint ventures, raising finance both privately and by accessing public capital markets, and the regimes relating to foreign direct investment, corporate governance, mergers and acquisitions \nand corporate bankruptcy. \n\nWhere applicable, the course will provide relevant comparisons with similar laws in other jurisdictions such as the U.S., the U.K. and Singapore. While the course is not intended to involve an exhaustive study of all applicable laws and regulations, it will highlight key legal considerations for business transactions in India and allow for deliberation on topical, contemporary issues with real-world examples.", + "title": "Indian Business Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4129", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The principal objective of this course is to provide an understanding and appreciation of the various legal issues and perspectives involved in carrying out business and corporate transactions in India.", + "title": "Indian Business Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4129V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law, Governance & Development in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the wake of Asia's striking economic progress issues of law and governance are now seen as critical for the developing, developed and post-conflict states of Asia. Legal reforms are embracing constitutional, representative government, good governance and accountability, and human rights, based on the rule of law. How and on what principles should Asian states build these new legal orders? Can they sustain economic progress and satisfy the demands for the control of corruption and abuses of powers, and the creation of new forms of accountability? This course examines on a broad comparative canvas the nature, fate and prospects for law and governance in developing democracies in Asia, using case studies drawn especially from SE Asian states. Coverage of the issues will be both theoretical, as we ask questions about the evolving nature of 'law and development'; and practical, as ask questions about the implementation of law and development projects across Asia.", + "title": "Law, Governance & Development in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4131V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Human Rights in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4133", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Firstly, to impart a solid grounding in the history, principles, norms, controversies and institutions of international human rights law. Secondly, to undertake a contextualized socio-legal study of human rights issues within Asian societies, through examining case law, international instruments, policy and state interactions with UN human rights bodies. 'Asia' alone has no regional human rights system; considering the universality and indivisibility of human rights, we consider how regional particularities affect or thwart human rights.

\nSubjects include: justiciability of socio-economic rights, right to development and self-determination, political freedoms, religious liberties, indigenous rights, national institutions, women's rights; MNC accountability for rights violations.", + "title": "Human Rights in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4133V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Migration is not a new phenomenon but the intensity, frequency and ease with which persons are crossing borders today, both voluntarily and involuntarily, is\nunprecedented.\n\nThis course examines the legal issues impacting a person\u2019s migration path into and in Singapore. We will examine the criteria for admission to Singapore on a temporary or permanent basis, the evolution of immigration and nationality laws, as well as the domestic responses to the growing global problem of human trafficking.\n\nTheoretical perspectives on migration and citizenship are examined with a view to a range of normative questions including: How should constitutional democracies respond to and balance rights claims by citizens, residents, and others within their borders?", + "title": "Crossing Borders: Law, Migration & Citizenship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4134", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Migration is not a new phenomenon but the intensity, frequency and ease with which persons are crossing borders today, both voluntarily and involuntarily, is\nunprecedented.\n\nThis course examines the legal issues impacting a person\u2019s migration path into and in Singapore. We will examine the criteria for admission to Singapore on a temporary or permanent basis, the evolution of immigration and nationality laws, as well as the domestic responses to the growing global problem of human trafficking.\n\nTheoretical perspectives on migration and citizenship are examined with a view to a range of normative questions including: How should constitutional democracies respond to and balance rights claims by citizens, residents, and others within their borders?", + "title": "Crossing Borders: Law, Migration & Citizenship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4134V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce patent law and policy in the United States, and how they relate to other systems of law, primarily U.S. trade secret and antitrust law. The course begins with central legal principles and policies, emphasizing the concepts and skills required of a new lawyer with a working knowledge of patent law. By the end of the course, students will understand the requirements for obtaining protection, the doctrinal elements of an infringement action as well as the various types of defences and remedies available. Students will also gain a practice-oriented perspective of \u201creal-world\u201d issues facing inventors and companies as well as how those issues are consistent with, or in tension with, other interests.", + "title": "Patent Law & Practice: Perspectives from the U.S", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4135", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Int'l & Comp Law of Sale in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4138", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to prepare students for regional and international trade in Asia by providing basic knowledge of domestic laws of sale in both civil and common law systems in Asia (including Singapore's) as well as international rules affecting the contract of sale. The course will cover: comparative private law of contract and of sale in Asia; international private law of sale; private International Law aspects of international sales. The course is meant for students interested in international trade and comparative law in Asia.", + "title": "Int'l & Comp Law of Sale in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4138V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Law of the Sea governs the conduct of States in the oceans. Given that the oceans covers five-seventh of the world\u2019s surface, it is a critical component of international law. It is also relevant for Singapore due to its extensive maritime interests. This course will examine the theoretical underpinnings and the practical implementation of Law of the Sea with the aim of examining how it addresses the ever-increasing challenges in the regulation of the oceans. The course will draw on a wide range of case studies from around the world, with a particular emphasis on Asia.", + "title": "Law of the Sea: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4140", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Law of the Sea governs the conduct of States in the oceans. Given that the oceans covers five-seventh of the world\u2019s surface, it is a critical component of international law. It is also relevant for Singapore due to its extensive maritime interests. This course will examine the theoretical underpinnings and the practical implementation of Law of the Sea with the aim of examining how it addresses the ever-increasing challenges in the regulation of the oceans. The course will draw on a wide range of case studies from around the world, with a particular emphasis on Asia.", + "title": "Law of the Sea: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4140V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is primarily concerned with the age-old dichotomy between law in the law books and law in action. Through the examination of the origin, function and pattern of law in primitive and modern societies from a historical, anthropological and sociological perspective, we will try to understand better, the constraints under which \u2018law\u2019 in modern society operates, and the limits on the use of law as an instrument of social change. \n\nIn the first part of the course, the student will be introduced to basic ideas in classical anthropology and the sociology of law. Questions such as - Are there any \u2018universal\u2019 patterns of human behaviour? To what extent is a society\u2019s perception of law influenced or controlled by environmental and econological factors? How are disputes resolved? Is aggression and warfare inherent in the human condition? - will be dealt with. In the second part of the course, these anthropological methods will be applied to a study of the concept of law in diverse societies from a sociological perspective, and to the actual function of law in \nsociety. Do patterns of human behaviour discernable in primitive societies hold true in more complex \u2018modern\u2019 societies? What are the attributes of a \u2018modern\u2019 legal system? Is the concept of \u2018law\u2019 in the western sense inevitable and universal in all kinds of societies. What happens to the concept of law in plural societies? \n\nTeaching will be by seminars which will include lectures and discussion of assigned readings. No previous knowledge of law anthropology or sociology is required or will be assumed of students.", + "title": "Law & Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4146", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is primarily concerned with the age-old dichotomy between law in the law books and law in action. Through the examination of the origin, function and pattern of law in primitive and modern societies from a historical, anthropological and sociological perspective, we will try to understand better, the constraints under which \u2018law\u2019 in modern society operates, and the limits on the use of law as an instrument of social change. \n\nIn the first part of the course, the student will be introduced to basic ideas in classical anthropology and the sociology of law. Questions such as - Are there any \u2018universal\u2019 patterns of human behaviour? To what extent is a society\u2019s perception of law influenced or controlled by environmental and econological factors? How are disputes resolved? Is aggression and warfare inherent in the human condition? - will be dealt with. In the second part of the course, these anthropological methods will be applied to a study of the concept of law in diverse societies from a sociological perspective, and to the actual function of law in society. Do patterns of human behaviour discernable in primitive societies hold true in more complex \u2018modern\u2019 societies? What are the attributes of a \u2018modern\u2019 legal system? Is the concept of \u2018law\u2019 in the western sense inevitable and universal in all kinds of societies. What happens to the concept of law in plural societies? Teaching will be by seminars which will include lectures and discussion of assigned readings. No previous knowledge of law anthropology or sociology is required or will be assumed of students.", + "title": "Law & Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4146V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative study of the law of secured transactions across the common law world. The first part covers the English law of security and title financing in depth. The second part looks at the notice filing model originally introduced in UCC Article 9 and now enacted as PPSAs in several other jurisdictions. The third part looks at reform of secured transactions law around the world, and, in particular, the Cape Town Convention and the UNCITRAL Legislative Guide and Model Law. This course will be of interest to anyone interested in the debt side of corporate finance, as well as those interested in transnational commercial law.", + "title": "Secured Transactions Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4148", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The settlement of disputes arising from foreign direct investment attracts global interest and attention. Foreign investors often arbitrate their disputes with host States via an arbitration clause contained in a contract. Additionally, investment treaties also empower foreign investors to bring claims in arbitration against host State. The distinct body of law that grew into international investment law, has become one of the most prominent and rapidly evolving branches of international law. The aim of this course is to study the key developments that have taken place in the area. It deals with questions of applicable law, jurisdiction, substantive obligations, as well as award challenge and enforcement, in both investment contract arbitration and investment treaty arbitration.", + "title": "International Investment Law and Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4150", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The settlement of disputes arising from foreign direct investment attracts global interest and attention. Foreign investors often arbitrate their disputes with host States via an arbitration clause contained in a contract. Additionally, investment treaties also empower foreign investors to bring claims in arbitration against host State. The distinct body of law that grew into international investment law, has become one of the most prominent and rapidly evolving branches of international law. The aim of this course is to study the key developments that have taken place in the area. It deals with questions of applicable law, jurisdiction, substantive obligations, as well as award challenge and enforcement, in both investment contract arbitration and investment treaty arbitration.", + "title": "International Investment Law and Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4150V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Int'l Police Enforcement Cooperation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4153", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will explore several key topics at the intersection of law and economics. It will commence with an exploration of the concept of rationality as employed in (positive) micro-economic theory. It will also explore the Coase theorem as a means of understanding the importance of legal rules and institutions. These theoretical tools will then be used as a lens for examining, amongst other topics, tort, contract and insolvency law; company law; financial regulation, and the role of law and legal institutions in economic development.", + "title": "Topics in Law and Economics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4155", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive overview of international climate change law as well as examines the legal and regulatory responses of selected Asian jurisdictions to climate change. The first part of the course will examine the UN Framework Convention on Climate Change legal regime.The second part will focus on climate change litigation. In the final part, we examine how selected Asian jurisdictions, including Singapore, have adopted laws and regulatory frameworks for climate change mitigation and adaptation.", + "title": "Climate Change Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4158", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive overview of international climate change law as well as examines the legal and regulatory responses of selected Asian jurisdictions to climate change. The first part of the course will examine the UN Framework Convention on Climate Change legal regime.The second part will focus on climate change litigation. In the final part, we examine how selected Asian jurisdictions, including Singapore, have adopted laws and regulatory frameworks for climate change mitigation and adaptation.", + "title": "Climate Change Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4158V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will look at the way economists analyze legal problems and how economics has contributed to our understanding of the legal system. In order to do that, we\u2019ll want to get a firm grounding on what an economist\u2019s lens looks like. We\u2019ll run through the main principles of economic thought. \n\nAfter this introduction to economic thinking, we\u2019ll look at how the principles of economics are applied in specific legal contexts. For these basic applications, we shall take examples from four courses (Property, Contracts, Torts, Criminal Law) to see how an economist might approach these problems.\n\nFollowing on from these basic applications, we\u2019ll look at various extensions to the basic model and special topics.", + "title": "The Economic Analysis of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4159", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will look at the way economists analyze legal problems and how economics has contributed to our understanding of the legal system. In order to do that, we\u2019ll want to get a firm grounding on what an economist\u2019s lens looks like. We\u2019ll run through the main principles of economic thought. \n\nAfter this introduction to economic thinking, we\u2019ll look at how the principles of economics are applied in specific legal contexts. For these basic applications, we shall take examples from four courses (Property, Contracts, Torts, Criminal Law) to see how an economist might approach these problems.\n\nFollowing on from these basic applications, we\u2019ll look at various extensions to the basic model and special topics.", + "title": "The Economic Analysis of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4159V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intelligence Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4161", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intelligence Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4161V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since Singapore\u2019s independence in 1965, its economic development has been remarkable. Singapore\u2019s unique system of corporate governance is one of the keys to its economic success. This course will begin by providing a historical and comparative overview of Singapore\u2019s system of corporate governance. It will then undertake an indepth and comparative analysis of the core aspects of Singapore corporate governance, highlighting the aspects which make it unique. The course will then examine the latest developments in Singapore corporate governance, with an emphasis on analysing the details, policy rationale, and implications of recent reforms. The course will conclude by considering what the future may hold for Singapore\u2019s system of corporate governance and what other jurisdictions may learn from it. (", + "title": "Singapore Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4162", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since Singapore\u2019s independence in 1965, its economic development has been remarkable. Singapore\u2019s unique system of corporate governance is one of the keys to its economic success. This course will begin by providing a historical and comparative overview of Singapore\u2019s system of corporate governance. It will then undertake an indepth and comparative analysis of the core aspects of Singapore corporate governance, highlighting the aspects which make it unique. The course will then examine the latest developments in Singapore corporate governance, with an emphasis on analysing the details, policy rationale, and implications of recent reforms. The course will conclude by considering what the future may hold for Singapore\u2019s system of corporate governance and what other jurisdictions may learn from it.", + "title": "Singapore Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4162V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Projects Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4164", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is intended to introduce students to the practice and law relating to international projects and infrastructure. The various methods of procurement and the construction process involved will be reviewed in conjunction with standard forms that are used internationally - such as the FIDIC, JCT and NEC forms, among others. Familiar issues such as defects, time and cost overruns and the implications therefrom (and how these matters are dealt with in an international context) will also be covered.\n\nThe course will provide students with an understanding of how international projects are procured, planned and administered as well as give an insight into how legal and commercial risks are identified, priced, managed and mitigated.", + "title": "International Projects Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4164V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course of private international law which offers a comparative perspective on the traditional issues addressed by rules of private international law, i.e. choice of law, international jurisdiction, and the recognition of foreign judgments. The focus will essentially be the United States and on the European Union, but other jurisdictions will also be considered from time to time.", + "title": "Comparative Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4170", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "ASEAN Environmental Law, Policy & Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4171", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the progressive development of environmental law, policy and governance in ASEAN. It also considers the role of ASEAN in supplementing and facilitating international environmental agreements (MEAs), such as the Convention on International Trade in Endangered Species, the Convention on Biological Diversity, UNESCO Man & Biosphere,etc. It will evaluate the extent of implementation of the ASEAN environmental instruments at national level - some case studies will be examined.", + "title": "ASEAN Environmental Law, Policy & Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4171V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Japanese Corporate Law & Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4172", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Corporate Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4173", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the core legal characteristics of the corporate form in five major jurisdictions: the U.S., the U.K., Japan, Germany and France. It explains the common agency problems that are inherent in the corporate form and compares the legal strategies that each jurisdiction uses to solve these common problems. The major topics that this comparative examination covers include: agency problems; legal personality and limited liability; basic governance structures; creditor protection; related party transactions; significant corporate actions; control transactions; issuer and investor protection; the convergence of corporate law; and, comparative corporate law in developing countries.", + "title": "Comparative Corporate Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4173V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the core legal characteristics of the corporate form in five major jurisdictions: the U.S., the U.K., Japan, Germany and France. It explains the common agency problems that are inherent in the corporate form and compares the legal strategies that each jurisdiction uses to solve these common problems. The major topics that this comparative examination covers include: agency problems; legal personality and limited liability; basic governance structures; creditor protection; related party transactions; significant corporate actions; control transactions; issuer and investor protection; the convergence of corporate law; and, comparative corporate law in developing countries.", + "title": "Comparative Corporate Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4173X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The development of new types of legal phenomena in the global arena has outgrown established understandings of law, and conventional classifications of legal materials. At the point of needing a theoretical underpinning for the novel concerns of academic law occasioned by globalization, fresh considerations of interdisciplinary perspectives on law are opened up, questioning the extent to which a distinctively legal approach to global issues is possible. This course engages with these challenges by exploring the global interconnectedness of law, morality, politics and economics, and considers what contribution legal theory might make to illuminating complex policy issues with a global reach.", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4175", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The development of new types of legal phenomena in the global arena has outgrown established understandings of law, and conventional classifications of legal materials. At the point of needing a theoretical underpinning for the novel concerns of academic law occasioned by globalization, fresh considerations of interdisciplinary perspectives on law are opened up, questioning the extent to which a distinctively legal approach to global issues is possible. This course engages with these challenges by exploring the global interconnectedness of law, morality, politics and economics, and considers what contribution legal theory might make to illuminating complex policy issues with a global reach.", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4175V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide you with an overview of the copyright, trademark and right of publicity issues confronting the entertainment industries of movies, music, books, video games, visual and performing arts, and new media. It provides a transnational perspective with an emphasis on cases from California, New York and the United Kingdom. This is not a course on entertainment law in Singapore, but the principles you learn could be relevant to Singapore law.\n\nWith case studies ranging from Roger Federer to Ariana Grande, Britney Spears to Tiger Woods, Avatar to Star Wars, Blurred Lines to Somebody To Love, this course will cover a number of prominent causes of action brought by celebrities and rights owners.", + "title": "Entertainment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4177", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide you with an overview of the copyright, trademark and right of publicity issues confronting the entertainment industries of movies, music, books, video games, visual and performing arts, and new media. It provides a transnational perspective with an emphasis on cases from California, New York and the United Kingdom. This is not a course on entertainment law in Singapore, but the principles you learn could be relevant to Singapore law.\n\nWith case studies ranging from Roger Federer to Ariana Grande, Britney Spears to Tiger Woods, Avatar to Star Wars, Blurred Lines to Somebody To Love, this course will cover a number of prominent causes of action brought by celebrities and rights owners.", + "title": "Entertainment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4177V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the treaties used by States to protect the interests of their investors when making investments abroad and to attract foreign investment into host economies. It will pay particular attention to investor-State arbitration under investment treaties, which is increasingly becoming widespread in Asia and a growing part of international legal practice. It will examine not only the legal and theoretical underpinnings of these treaties and this form of dispute settlement, but also their practical application to concrete cases and their utility as a tool of government policy.", + "title": "Law and Practice of Investment Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4178", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the treaties used by States to protect the interests of their investors when making investments abroad and to attract foreign investment into host economies. It will pay particular attention to investor-State arbitration under investment treaties, which is increasingly becoming widespread in Asia and a growing part of international legal practice. It will examine not only the legal and theoretical underpinnings of these treaties and this form of dispute settlement, but also their practical application to concrete cases and their utility as a tool of government policy.", + "title": "Law and Practice of Investment Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4178V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Alternative Dispute Resolution", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4179", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Starting by examining the theory and the need for choice of law and jurisdiction clauses, this course will examine various issues with these clauses by involving students in drafting, negotiating, concluding and eventually enforcing choice of law and jurisdiction clauses (in particular arbitration clauses) in international commercial contracts in Asia. This will be done through real life scenarios being introduced into the classroom in which students will act as lawyers advising and representing clients in drafting and negotiating choice of law and jurisdiction clauses as well as attacking or defending them before a tribunal in a dispute context. Accordingly, students will live through the life of various choice of law and jurisdiction clauses and see how they can be drafted, negotiated and enforced in Asian jurisdictions. \nUpon completion of the course, students will have learnt the theories behind choice of law and jurisdiction clauses as well as the practical skills and lessons in negotiating, finalizing and enforcing them.", + "title": "Choice of Law & Jurisdiction in Int\u2019l Commercial Contracts in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4180", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on law, policy and practice in three regulated areas in Singapore: (1) financial markets & sovereign wealth funds; (2) healthcare; and (3) real property. It adopts a cross-disciplinary and practice-related perspective in its examination of competing and overlapping interests and the relevant theories and principles of state regulation driving these fast-developing areas. It also examines the roles, rights and obligations of the Government as a regulator, the government-linked entities as market actors, businesses and individuals, and considers \"market inefficiencies\" relating to accountability, independence, legitimacy and transparency. Students are required to evaluate current substantive law and institutional norms and processes, review comparative models and approaches in other jurisdictions, and propose a model of optimal regulation in one selected area.", + "title": "Government Regulations: Law, Policy & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4185", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on law, policy and practice in three regulated areas in Singapore: (1) financial markets & sovereign wealth funds; (2) healthcare; and (3) real property. It adopts a cross-disciplinary and practice-related perspective in its examination of competing and overlapping interests and the relevant theories and principles of state regulation driving these fast-developing areas. It also examines the roles, rights and obligations of the Government as a regulator, the government-linked entities as market actors, businesses and individuals, and considers \"market inefficiencies\" relating to accountability, independence, legitimacy and transparency. Students are required to evaluate current substantive law and institutional norms and processes, review comparative models and approaches in other jurisdictions, and propose a model of optimal regulation in one selected area.", + "title": "Government Regulations: Law, Policy & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4185V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Philosophical Foundations of Contract Law invites students to critically examine (1) the theoretical underpinnings of contract law at the level of meta theory (e.g. autonomy, reliance, promise, economic, property), but also (2) at the level of foundational concepts such as \u2018autonomy\u2019, \u2018freedom\u2019, \u2018the intention of the parties\u2019, \u2018vitiation\u2019 and \u2018expectation interest\u2019; (3) how the theories help us to explain different aspects of contract law. Students should be able to engage in normative analysis of the law (how the law should be) with a view to desirable law reform. It complements the modules Advanced Contract Law and Property Theory.", + "title": "Philosophical Foundations of Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4187", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The elective course focuses on the legal aspects of corporate finance issues, i.e. raising of funds by a company from the domestic and international markets. Major topics covered include understanding financial statements and financial ratios, equity financing through listing on recognised exchanges (including reverse/backdoor listing and rights' issue) and debt financing such as syndication loans and bond issues. Advisory Note for students from Civil Law Jurisdiction Students who have not taken lessons in trust law, contract law and company law from the common law jurisdiction may have difficulty following the course.", + "title": "Corporate Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4188", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The elective course focuses on the legal aspects of corporate finance issues, i.e. raising of funds by a company from the domestic and international markets. Major topics covered include understanding financial statements and financial ratios, equity financing through listing on recognised exchanges (including reverse/backdoor listing and rights' issue) and debt financing such as syndication loans and bond issues. \nAdvisory Note for students from Civil Law Jurisdiction: Students who have not taken lessons in trust law, contract law and company law from the common law jurisdiction may have difficulty following the course.", + "title": "Corporate Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4188V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative and critical analysis of why and how six corporate mechanisms - (1) sustainability reporting; (2) board gender diversity; (3) constituency directors; (4) stewardship codes; (5) directors' duty to act in the company's best interests; and (6) liability on companies, shareholders and directors - have been or can be used to promote corporate social responsibility in the Asian and AngloAmercian jurisdictions. It equips students with useful, practical skillsets on how to advise clients on CSR issues and with a strong foundation to critically engage with sustainability matters that will be important to them in practice.", + "title": "Corporate Social Responsibility", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4189", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative and critical analysis of why and how six corporate mechanisms - (1) sustainability reporting; (2) board gender diversity; (3) constituency directors; (4) stewardship codes; (5) directors' duty to act in the company's best interests; and (6) liability on companies, shareholders and directors - have been or can be used to promote corporate social responsibility in the Asian and AngloAmercian jurisdictions. It equips students with useful, practical skillsets on how to advise clients on CSR issues and with a strong foundation to critically engage with sustainability matters that will be important to them in practice.", + "title": "Corporate Social Responsibility", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4189V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through examining the jurisprudence in three common law Western liberal democracies of the United States, United Kingdom and Australia, this course compares and critiques how the freedom of speech is construed in these\njurisdictions. By confronting the complexities of the US First Amendment, the interplay between Articles 8 and 10 of the European Convention on Human Rights, and the Australian implied constitutional guarantee, one is exposed to different theoretical, practical and often controversial approaches in the protection of free speech. Cases covered span the spectrum from flag burning to duck shooting, from the Gay Olympics to the Barbie Doll, from regulating the display of offensive art to protecting the privacy of a supermodel.\nMode of Assessment: 1 Research Paper (70%) - [to be handed in week 13]; Class Performance - 30%.", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4190", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through examining the jurisprudence in three common law Western liberal democracies of the United States, United Kingdom and Australia, this course compares and critiques how the freedom of speech is construed in these\njurisdictions. By confronting the complexities of the US First Amendment, the interplay between Articles 8 and 10 of the European Convention on Human Rights, and the Australian implied constitutional guarantee, one is exposed to different theoretical, practical and often controversial approaches in the protection of free speech. Cases covered span the spectrum from flag burning to duck shooting, from the Gay Olympics to the Barbie Doll, from regulating the display of offensive art to protecting the privacy of a supermodel.\nMode of Assessment: 1 Research Paper (70%) - [to be handed in week 13]; Class Performance - 30%.", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4190V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal principles and regulatory environment surrounding the wealth management services provided by banking institutions. Major topics that are likely to be covered on the course include the nature and regulation of wealth management services and providers, banks\u2019 potential liability for the provision of wealth management services (such as financial advisory services in general and in relation to complex financial products in particular, the provision of financial information and data, portfolio management services, and custodianship) and the effectiveness of banks\u2019 attempts to exclude or limit liability.", + "title": "Wealth Management Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4191", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Private International Law of IP", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4192", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4193", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a practical introduction to the essentials of negotiating and drafting commercial contracts in the Common Law tradition. \nThe course begins with a refresh of plain English writing skills. The second part then reviews key Common Law concepts and considers the Common Law's attitudes to the commercial world. The third looks at the fundamental shape, structure and organisation of commercial contracts. The fourth deals with aspects of law routinely encountered by the practitioner and technical drafting issues. The fifth focuses on technical drafting. The sixth and final part considers the approach of managing legal risk and the practicalities of negotiation.", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4193V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine in depth the law of partnerships. The basic framework is the same in most Commonwealth countries and based still on the UK Partnership Act of 1890. The topics to be covered in relation to general partnerships include the formation of partnerships, partnerships in the modern legal system, the relationship between partners and outsiders, the relationship of partners inter se and the dissolution of partnerships. The module will then examine the variants of limited partnerships, used mainly as investment vehicles, and limited liability partnerships. LLPs, a recent creation, are becoming increasingly popular for the professions especially. They are an amalgam of corporate and partnership concepts but are also developing their own specific legal issues which will only increase with time.", + "title": "Partnership and LLP Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4194", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international law and international relations dimensions of the current international economic systems and discuss the various possibilities for future reforms in light of the past and recent global economic crises. While the discussion will be based on the Bretton Woods System (the GATT/WTO, the IMF, and the World Bank), the course will focus mainly on the international regulatory framework of finance and investment. The purpose of the course is to let the students develop a bird\u2019s eye view of the legal aspects of the international economic architecture as well as the reasons \u2013 or the international political economy \u2013 behind its operation. Students will also be exposed certain fundamentals of international law and international relations concerning global economic affairs. Further, the course will examine the experiences of several countries\u2019 economic development and their use of international economic law to achieve economic growth.", + "title": "International Economic Law & Relations", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4195V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How do Southeast Asian constitutions accommodate religion? Is secularism necessary for democracy? Do public religions undermine religious freedom? These are some of the questions we will be engaging with in this course.\n\nThere are two segments to the course. In the first segment, we will examine general theories of statereligion relations, including liberal assumptions of the dominant theory of the separation of church and state (the \u201cdisestablishment theory\u201d), the rise and fall of the secularization thesis, and alternative theories.\n\nDuring the second segment, we will examine statereligion relations through topical issues in selected countries in Southeast Asia, including how legal systems in Singapore, Malaysia, and Indonesia accommodate Syariah Courts, and how separationist claims based on religious difference and identities are advanced in the Philippines and Thailand.", + "title": "Comparative State and Religion in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4197", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How do Southeast Asian constitutions accommodate religion? Is secularism necessary for democracy? Do public religions undermine religious freedom? These are some of the questions we will be engaging with in this course.", + "title": "Comparative State and Religion in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4197V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ASEAN leaders agreed to create a single market \u2013 the ASEAN Economic Community \u2013 by 2015. Due to sovereignty concerns, ASEAN leaders did not create a single supranational authority to regulate this market. This course examines how ASEAN member states and institutions are filling in the vacuum through formal and informal means. Students will understand how regional policymaking affects domestic laws and policies within ASEAN.", + "title": "ASEAN Economic Community Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ASEAN leaders agreed to create a single market \u2013 the ASEAN Economic Community \u2013 by 2015. Due to sovereignty concerns, ASEAN leaders did not create a single supranational authority to regulate this market. This course examines how ASEAN member states and institutions are filling in the vacuum through formal and informal means. Students will understand how regional policymaking affects domestic laws and policies within ASEAN.", + "title": "ASEAN Economic Community Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4202V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4203", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4203A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4203B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4203C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide students with an overview of the fundamental principles of Islamic commercial law and how they are applied in the modern context in connection with the practice of Islamic finance. The course will begin with \nhistorical doctrines, discuss modern transformations, review practical examples, and consider the treatment of Islamic financial contracts in secular courts.", + "title": "Islamic Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of conflict of laws issues in the context of maritime law and admiralty litigation. The course will provide an introduction to conflicts theory and concepts before focusing on conflict of jurisdictions, parallel proceedings and forum shopping in admiralty matters; role of foreign law in establishing admiralty jurisdiction; recognition and priority of foreign maritime liens and other claims; choice of law and maritime Conventions; conflicts of maritime Conventions; security for foreign maritime proceedings; and recognition and enforcement of oreign maritime judgments.", + "title": "Maritime Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of conflict of laws issues in the context of maritime law and admiralty litigation. The course will provide an introduction to conflicts theory and concepts before focusing on conflict of jurisdictions, parallel proceedings and forum shopping in admiralty matters; role of foreign law in establishing admiralty jurisdiction; recognition and priority of foreign maritime liens and other claims; choice of law and maritime Conventions; conflicts of maritime Conventions; security for foreign maritime proceedings; and recognition and enforcement of oreign maritime judgments.", + "title": "Maritime Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4205V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course encompasses the theoretical and practical concepts underpinning the entire criminal litigation process, from pre-trial to post-conviction. Coverage will include the role of the charge, drafting of charges, plea-bargains, guilty pleas, trials, consequential orders and appeals. Common evidential issues arising in trials will also be discussed. The aim is to provide both a holistic overview of the entire process as well as detailed examination of specific areas. The course will cover criminal procedure and evidence as well as include advocacy exercises in common criminal proceedings and a practical attachment at the Criminal Justice Division.", + "title": "Advanced Criminal Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course encompasses the theoretical and practical concepts underpinning the entire criminal litigation process, from pre-trial to post-conviction. Coverage will include the role of the charge, drafting of charges, plea-bargains, guilty pleas, trials, consequential orders and appeals. Common evidential issues arising in trials will also be discussed. The aim is to provide both a holistic overview of the entire process as well as detailed examination of specific areas. The course will cover criminal procedure and evidence as well as include advocacy exercises in common criminal proceedings and a practical attachment at the Criminal Justice Division.", + "title": "Advanced Criminal Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4208V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 22, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the advanced argumentative techniques possible with legal narrative, which refers to how information is selected and organised to construct a persuasive view of the facts. Fact construction plays a particularly prominent role in litigation, but it also appears in methods of alternative dispute resolution and justifications of policy positions. This module will analyze \nthe pervasive reach of fact construction in the law, examine why fact construction is such an effective tool of legal persuasion, and explore advanced techniques of fact\nconstruction.", + "title": "Legal Argument & Narrative", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the advanced argumentative techniques possible with legal narrative, which refers to how information is selected and organised to construct a persuasive view of the facts. Fact construction plays a particularly prominent role in litigation, but it also appears in methods of alternative dispute resolution and justifications of policy positions. This module will analyze \nthe pervasive reach of fact construction in the law, examine why fact construction is such an effective tool of legal persuasion, and explore advanced techniques of fact\nconstruction.", + "title": "Legal Argument & Narrative", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4209V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international intellectual property system and addresses the legal issues raised by the trade of products protected by intellectual property rights (patents, trademarks, and copyrights) across different jurisdictions. This course reviews the key international agreements and provisions in this area, as well as the different national policies, which have been adopted, to date, in several domestic jurisdictions or free trade areas, including the European Union, the U.S., China, Japan, and the ASEAN countries.", + "title": "Intellectual Property And International Trade", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international intellectual property system and addresses the legal issues raised by the trade of products protected by intellectual property rights (patents, trademarks, and copyrights) across different jurisdictions. This course reviews the key international agreements and provisions in this area, as well as the different national policies, which have been adopted, to date, in several domestic jurisdictions or free trade areas, including the European Union, the U.S., China, Japan, and the ASEAN countries.", + "title": "Intellectual Property And International Trade", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4210V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course addresses major regulatory legal aspects of money, payments, and clearing and settlement systems from international, comparative and global perspective. It addresses the design and structure of the monetary and\npayment systems; the infrastructure designed to accommodate the payment and settlement of commercial and financial transactions; sovereign debt; and the impact of sovereign risk on commercial and financial transactions. It covers domestic & international monetary systems; central banking; international retail and wholesale payments in major currencies; settlement of financial transactions; foreign exchange transactions; payment clearing & settlement: mechanisms and risks; systematically important payment systems; and global securities settlement systems.", + "title": "International Public Monetary and Payment Systems Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In an era of globalization marked by a dramatic increase in cross-border interactions and transactions, the legal norms regulating these cross-border phenomena \u2013 from terrorism to environmental protection to business law \u2013 and disputes arising from them are complex and uneven. This rise in transnational legality poses a challenge for the modern concept of law and for state and inter-state law as traditionally conceived. This course traces the emergence of the state and considers how state law has been shaped by and has adapted to globalization. It examines legal and non-legal responses to transnational problems, using examples from several areas of law.", + "title": "Transnational Law in Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module explores principles and rules relating to the exploration for, development and production of oil and gas (upstream operations). The main focus of the module is on the examination of different arrangements governing the\nlegal relationship between states and international oil companies, such as modern concessions, productionsharing agreements, joint ventures, service and hybrid contracts. The agreements governing the relationships between companies involved in upstream petroleum operations (joint operating and unitisation agreements) will also be examined. The module will further explore the\nissues of dispute settlement, expropriation, stability of contracts and a relevant international institutional and legal framework.", + "title": "International and Comparative Oil and Gas Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cyberspace is the online world of computer networks, especially the Internet. This module examines two major points of connection between the law and cyberspace: how communications in cyberspace are regulated; and how\n(intellectual) property rights in cyberspace are enforced. Specific topics include: governing the Internet; jurisdiction and dispute resolution in cyberspace; controlling online content; electronic privacy; trademarks on the Internet;\ncybersquatting; digital copyright; virtual worlds.", + "title": "Cyber Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the legal approach to curbing corruption in three jurisdictions namely: Singapore, US and UK. The focus will be on bribery of public officials both domestic and foreign. The applicable laws \u2013 domestic and\nextra-territorial - in the selected national jurisdictions will be examined to see how effective they are for curbing such corruption. The module will also examine regional and multi-regional laws enacted to curb corruption. Major topics to be coveredinclude: preventive measures; criminalization; corporate liability including criminal and non-criminal sanctions; and jurisdictional principles.", + "title": "Comparative & International Anti-Corruption Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module draws on research, programming and visiting speakers under the Centre for Asian Legal Studies, ASLI Fellows and NUS faculty, bringing students into discussion, interrogation and analysis of major current issues in Asian legal studies. The module will involve reading and analyzing recent work in the field, emphasising theoretical and methodological approaches in a comparative context. It will use current case studies as examples for analysis. These will vary from year to year according to CALS activity.", + "title": "Asian Legal Studies Colloquium", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4218V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Trial of Jesusis an excellent case for students to learn how to conduct non\u2010practical studies of legal and normative issues. It is, arguably, the most consequential\nlegal event in the evolution of Western Civilization. We will examine the historical, political, and legal background to the Trial, and, especially, the procedural propriety of\nthe Trial. Questions to be explored include: Were hisprocedural rights preserved during his trial before the Sanhedrin? Was histrial a miscarriage of justice? Through\nreflecting upon these and other questions, we will explore if and how thistrialshaped the Western culture. \n\nThis module is also concerned with the \u2018method\u2019 or \u2018process\u2019 of how students digest and integrate \u2019substance\u2019 or\u2018content\u2019. Thus,there is emphasis on the significance of understanding and clarifying, the complexity of each and every problem, and not only the importance of offering, or trying to offer, a clever solution to it.", + "title": "The Trial of Jesus in Western Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the legal issues \u2010 both from a conflict of laws perspective and a substantive law one \u2010 that may arise in connection with business contracts (such as contracts for the sale of goods, factoring contracts, leasing\ncontracts, transport contracts, etc.) that involve some element of internationality and examines those issues in light of some of the sets of rules specifically designed to address those issues when embedded in an international\nsetting (such as the United Nations Convention on Contracts for the International Sale of Goods, the International Factoring Convention, the Convention on International Financial Leasing, the Montreal Convention,\nthe Rome I Regulation, etc.). The course will also offer an overview of the basic features of litigation of those issues in state courts and before arbitral tribunals.", + "title": "International Business Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore legal and policy developments pertaining to climate change. Approaches considered will range in jurisdictional scale, temporal scope, policy orientation, regulatory target, and regulatory objective. Although course readings and discussion will focus on existing and actual proposed legal responses to climate change, the overarching aim of the course will be\nto anticipate how the climate change problem will affect our laws and our lives in the long run.", + "title": "Climate Change Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides students with profound knowledge relating to core issues of procedural law (including jurisdiction, admissibility, standing, provisional measures, \napplicable law, and the effect as well as enforcement of international decisions). It combines the discussion of these matters of law with international relations theory and issues of judicial policy. Against the background of a mounting stream of international judicial decisions, students will develop a solid analytical framework to \nappreciate the law and politics of international judicial institutions, focusing on the International Court of Justice, the International Tribunal for the Law of the Sea, the World Trade Organization, and adjudication in investment disputes.", + "title": "The Law & Politics of International Courts & Tribunals", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will analyze and discuss mergers which involve two or more entities which are located in different countries. \n\nAfter outlining the issues and conflicts created by the duality of corporate, control of foreign investment, regulatory and tax (for the latter in general terms) laws, the various solutions available will be discussed. \n\nEmphasis will be given to international treaties and European directives solutions as used in actual transactions. \n\nOther structures, in the absence of regulatory support, such as stock for stock offers and dual listing will be analyzed, also as used in actual transactions.", + "title": "Cross Border Mergers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cybercrime, cyberterrorism and cyberwars have been new threats developed in the interconnected age of the internet. In this Module we are looking at a range of \ncrimes committed through the use of computers, computer integrity offences where computers or networks are the target of the criminal activity and internet crimes \nrelated to the distribution of illegal content. This Module examines substantive criminal law in England, other European countries, the US, Canada and Singapore . It \nexplores the greater risks stemming from criminal activities due to the borderless nature of the internet and the limits of international co-operation. This module also aims to teach the key legal aspects and principles surrounding electronic data and systems security, identity management and authentication.", + "title": "Cybercrime & Information Security Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an overview of the basic economic theory that underlies competition law, an area of law that has expanded dramatically around the world in recent years. Various topics will be covered, including an economic analysis of efficiency and why competition matters from the perspective of social welfare, horizontal agreements, mergers, vertical restraints, and exclusion of competitors. While the course will not attempt to provide a comprehensive overview of antitrust law, relevant economic theory will be discussed in the context of legal cases taken from different jurisdictions around the world (most prominently the United States and Europe).", + "title": "Topics in the Law and Economics of Competition Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Other than the traditional unimodal contract of carriage, a multimodal contract of carriage requires more than one modality to perform the carriage. Think of a shipment of steel coils, traveling per train from Germany to the Netherlands, then by sea to Singapore where the last stretch to the end receiver is performed by truck. The course deals with all the legal aspects of such a multimodal contract of carriage.", + "title": "Multimodal Transport Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Other than the traditional unimodal contract of carriage, a multimodal contract of carriage requires more than one modality to perform the carriage. Think of a shipment of steel coils, raveling per train from Germany to the Netherlands, then by sea to Singapore where the last strech to the end receiver is performed by truck. The course deals with all the legal aspects of such a multimodal contract of carriage.", + "title": "Multimodal Transport Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4226V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the legal and policy framework for civil society, non-profit organizations, and philanthropy in Asia, the United Kingdom, the United States, Australia and other jurisdictions, including the formation and ac tivities of \norganizations, capital formation and fundraising, state restrictions on activities, governance, donations from domestic and foreign sources, and o ther key topics. In 2014 the instructor and students will undertake a publishing project on philanthropy, non-profit organizations and the law in Asia in collaboration with the International Center for Not-for-Profit Law (ICNL, which is based in Washington DC)", + "title": "Philanthropy, Non-profit Organizations, and the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the rules on the use of force in international law. It does so from an historical perspective with special emphasis on state practice so that students can understand how and why the law on the use \nof force has evolved in the way it has. The course sets out the general prohibition on the u se of fo rce in the UN Charter, and introduces students to key concepts such as self-defence, humanitarian intervention, and aggression. Students will be introduced to debates on pre-emption, the use of force in pursuit of self-determination, and terrorism.", + "title": "The Use of Force in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the rules on the use of force in international law. It does so from an historical perspective with special emphasis on state practice so that students can understand how and why the law on the use \nof force has evolved in the way it has. The course sets out the general prohibition on the u se of fo rce in the UN Charter, and introduces students to key concepts such as self-defence, humanitarian intervention, and aggression. Students will be introduced to debates on pre-emption, the use of force in pursuit of self-determination, and terrorism.", + "title": "The Use of Force in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4228V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course adopts a functional approach to Anglo-American company law and integrates company law with corporate governance. The course examines core Company Law and the regulatory framework and practice on corporate governance \u2013 the system (structure and process) by which companies are \ngoverned, and to what purpose. In light of their extraterritorial reach and partly because of th e relationship between their markets and legal systems, the course focusses on the similarities and variations by considering the structural \ndifferences and similarities, legal frameworks and market structure (the effect of retail and institutional investors) as drivers of corporate governance regulation in both jurisdictions.", + "title": "Corporate Governance in the US and UK", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject will provide an introduction to the modern legal system of Myanmar/Burma in social, political and historical context. It will consider the legal framework and institutions of Myanmar in light of the literature on rule of \nlaw reform in transitional and developing contexts. The subject will include a focus on constitutional law; the legislature; the courts; criminal justice; minority rights; \nforeign investment law and special economic zones; the military; and institutional reform. The mode of assessment for this course is 80% research essay, 10% class presentation and 10% class participation.", + "title": "Transition and the Rule of Law in Myanmar", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "European company law can be understood in two ways. It can indicate the EU\u2019s approach to company law and thereby lead to an analysis of the harmonized standards for 28 European nations. It can also be understood as a comparative approach to the different legal systems on the European continent. \n\nThis course includes both aspects. It will first concentrate on EU legislation and jurisdiction, followed by a comparison of the legal systems of the two most important continental European jursidictions, France and Germany. It will lead to an understanding of shared principles of civil law jurisdictions and emphasize important differences to common law systems.", + "title": "European Company Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "European company law can be understood in two ways. It can indicate the EU\u2019s approach to company law and thereby lead to an analysis of the harmonized standards for 28 European nations. It can also be understood as a comparative approach to the different legal systems on the European continent. \n\nThis course includes both aspects. It will first concentrate on EU legislation and jurisdiction, followed by a comparison of the legal systems of the two most important continental European jursidictions, France and Germany. It will lead to an understanding of shared principles of civil law jurisdictions and emphasize important differences to common law systems.", + "title": "European Company Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4233V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the way in which the concept of property has figured in political and legal theory. The module will first investigate the significance of property discourse in modern political theory, beginning with early modern authors such as Grotius and Locke, and then considering later political theorists such as Kant, Hume, Smith and Hegel, as well as utilitarian/economic treatments of property. The course will then draw upon this material to then focus on modern debates about the role of the concept of property in legal theory, covering such \nissues as economic/distributive justice, whether property is a \u2018bundle of rights\u2019, possession, ownership, and equitable property.", + "title": "Property Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the way in which the concept of property has figured in political and legal theory. The module will first investigate the significance of property discourse in modern political theory, beginning with early modern authors such as Grotius and Locke, and then considering later political theorists such as Kant, Hume, Smith and Hegel, as well as utilitarian/economic treatments of property. The course will then draw upon this material to then focus on modern debates about the role of the concept of property in legal theory, covering such issues as economic/distributive justice, whether property is a 'bundle of rights', possession, ownership, and equitable property.", + "title": "Property Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4234V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the onset of globalization, the study of contract law can no longer be confined to arrangements between private entities sharing the same nationality and operating in the same jurisdiction. The costliest and most complex contractual disputes involve States, State entities, or State-linked enterprises, and foreign nationals, as contracting parties. The introduction of States as permanent and powerful participants in economic life led to the emergence of a bespoke body of law \u2013 international contract law \u2013 to regulate these prominent contractual arrangements. This course is for students who have been targeted for regional and international legal practice, or who plan to gravitate towards transnational legal work in multinational corporations.", + "title": "International Contract Law: Principles and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the onset of globalization, the study of contract law can no longer be confined to arrangements between private entities sharing the same nationality and operating in the same jurisdiction. The costliest and most complex contractual disputes involve States, State entities, or State-linked enterprises, and foreign nationals, as contracting parties. The introduction of States as permanent and powerful participants in economic life led to the emergence of a bespoke body of law \u2013 international contract law \u2013 to regulate these prominent contractual arrangements. This course is for students who have been targeted for regional and international legal practice, or who plan to gravitate towards transnational legal work in multinational corporations.", + "title": "International Contract Law: Principles and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4235V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to explore the interaction between legal institutions and economic/business development in Greater China (i.e. China, Taiwan, HK), with focus on China. How has China been able to offset institutional weaknesses at home while achieving impressive economic results worldwide? Have China\u2019s experiences indicated an unorthodox model as captured in the term \u201cBeijing Consensus\u201d? To what extent is this model different from\nEast Asian models and conventional thinking in economic growth? This course reviews theories about market development in the context of Greater China, including securities, corporate regulations, capital markets, property, sovereign wealth funds, foreign investment, and anticorruption etc.", + "title": "Law, Institutions, and Business in Greater China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4237V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover the international, comparative and domestic aspects of corporate finance law and practice. The emphasis of the course will be on the actual application of corporate finance law in practice, the policies that have shaped the laws in Singapore and elsewhere, and the international conventions that have evolved in this area. Topics include: cash flow, value and risk; term loans and loan syndications; fund raising and capital markets; securitisations; derivatives; and financing mergers and acquisitions.", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover the international, comparative and domestic aspects of corporate finance law and practice. The emphasis of the course will be on the actual application of corporate finance law in practice, the policies that have shaped the laws in Singapore and elsewhere, and the international conventions that have evolved in this area. Topics include: cash flow, value and risk; term loans and loan syndications; fund raising and capital markets; securitisations; derivatives; and financing mergers and acquisitions.", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4238V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on contemporary legal and political institutions in the South Asian region, with particular emphasis on understanding the role and nature of law and constitutionalism. Although the primary focus will be on\nBangladesh, India, Pakistan and Sri Lanka, developments in Bhutan and Nepal will also be covered. The module will employ readings and perspectives from the disciplines of history, politics, sociology and economics to understand\nhow these affect the evolution of South Asian legal systems over time. It will also adopt comparative perspectives and analyse how individual legal systems in South Asia are influenced by other nations in the region.", + "title": "Law & Politics in South Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4239V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course begins with an analysis of the fragility of the business model of commercial and investment banks and the negative externalities of bank failure. It then focuses on three principal functions of bank regulation: (1) making banks more resilient to business shocks; (2) making it less likely that banks will suffer shocks; (3) and facilitating the resolution and recovery of banks which fail. The focus will be on the crucial policy choices involved in achieving these objectives; the trade-offs among the available legal strategies; and the problems of regulatory arbitrage (shadow banking).", + "title": "Financial Stability and the Regulation of Banks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will include various aspects of financial regulation. The focus will be on the regulation of credit institutions and the role of central banks. Other forms of regulation of financial intermediaries and financial markets will be discussed in less detail. Since the focus will be on credit institutions, it will be important that the students understand what distinguishes credit institutions from other providers of financial services and how the regulatory approaches differ.\n\nThe part on the regulation of credit institutions will include requirements for their\nauthorization, their permanent supervision and rescue scenarios in situations of insolvency and default. These aspects will be discussed from a comparative perspective with the Basel requirements at the core of the discussion, complemented by the implementing norms in important jurisdictions, above all in Singapore. For resolution and restructuring the European Union has taken on a leading role, and, as a consequence, these EU approaches will be analysed in detail.\n\nThe roles of central banks will remain a core part of the course. Their tasks and objectives will be discussed from a comparative perspective. Their essential role in crisis management, their co-operation with supervisory agencies and their monetary policy will remain essential components of the course.", + "title": "Financial Regulation and Central Banking", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4242V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar explores how different aspects of physicial and social space (ie, geography) influence the efficacy of different kinds of law and regulation. Such understanding is especially useful for explanding one\u2019s understanding of the relationship between law and economics, law and development, and law and society. It is also relevant to issues of public international law, transnational law, human rights law, public law, and comparative law. \n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Law, Economics, Development, and Geography", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar explores how different aspects of physicial and social space (ie, geography) influence the efficacy of different kinds of law and regulation. Such understanding is especially useful for explanding one\u2019s understanding of the relationship between law and economics, law and development, and law and society. It is also relevant to issues of public international law, transnational law, human rights law, public law, and comparative law. \n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Law, Economics, Development, and Geography", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4243V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The administration of criminal justice in Singapore relies on an ethical, professional and skilled disposition and management of criminal cases. A good criminal practitioner needs a sound grounding in criminal law and criminal procedure, and a strong base of written and oral advocacy and communication skills. This is an experiential course that takes students through a case from taking instructions all the way through to an appeal, using the structure of the criminal process to teach criminal law, procedure and advocacy skills. Taught primarily by criminal law practitioners, this course will give an insight into the realities of criminal practice.", + "title": "Criminal Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4244V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Course explores the various ways through which public law contributes to the regulatory construction of the state. Topics will include the ways public law contributes to the various purposes of the state; the tools that public law uses to contribute to these purposes; how public law evolves; and the future of public law in a post-Westphalian world\n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Regulatory Foundations of Public Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4245V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will give students a broad understanding of the law relating to the international carriage of passengers by sea. Topics to be covered include formation of contract, regulation of cruise ships, State jurisdiction over crimes\nagainst the person on board a ship, liability for accidents, limitation of liability, the Athens Convention 1974/1990, and conflict of laws/jurisdictional issues relating to passenger claims. This module will be useful for those who\nare intending to: practice law in a broadly focussed shipping practice; work within the cruise and ferry industry; or otherwise are likely to deal with passengers and/or their claims.", + "title": "International Carriage of Passengers by Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a survey course of topics that include: international sales contract; international trade law; and international investment law. It covers the basic principles of private and public international law that are fundamental\nto the creation of the framework within which business transactions take place. It will also cover the topic of the relationships among international business transactions, globalization and economic development.", + "title": "International Economic Law & Globalisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4247V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine at an advanced level the rights and duties of company shareholders. In doing so the course will critically examine, from a comparative\nperspective, the division of power between the various organs of the modern company and the underlying policy of the law with regard to shareholders rights. The course will also key in on topical issues such as the effectiveness\nof shareholders\u2019 rights, enabling v mandatory theories of shareholders\u2019 rights, the statutory derivative action and its effectiveness and the role of the company in shareholder litigation. Finally, it will look at international developments including institutional shareholder activism.", + "title": "Shareholders' Rights & Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course concentrates on the principles of equity financing in the private and public markets, including the relevant company law rules (eg pre-emption rules), capital market regulation as far as it affects the issues of raising equity finance for public companies, private equity and its regulation, and change of control transactions.", + "title": "Principles of Equity Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the jus in bello \u2013 the law which regulates the conduct of hostilities once the decision to resort to force has been taken. This course will deal with fundamental concepts of the jus in bello, focusing on customary international law. Basic legal concepts that will be discussed include State and individual responsibility, the distinction between combatants and civilians, and the principle of proportionality. The course will also examine topics such as weaponry, international and noninternational conflicts, and the enforcement of the law in situations of conflict.\n\nNote: This course does not deal with the jus ad bellum, or the rules relating to the general prohibition on the use of force in international law.", + "title": "International Humanitarian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Humanitarian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4251V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will develop your understanding of EU law and politics as well as your capacity critically to evaluate the institutional, substantive and constitutional dimensions of European integration. It will consider the nature of the EU as well as the challenges it presents to its Member States. \n\nThe course will provide an overview of the judicial architecture and political structures of the European Union, the authority of EU law, law-making procedures, and the most significant case law in free movement, citizenship, and fundamental rights. It will also introduce more complex questions about the dynamics and direction of the process of regional integration, particularly since the Euro crisis.", + "title": "The EU and its Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Treaties are a principal source of obligation in international law. In this era of globalization, many state and individual activities in many countries are direct results of treaty obligations. In this sense, treaties are the \u201coverworked workhorses\u201d of the global legal order.\n\nDespite this significant impact on our lives, few of us understand what treaties truly mean and what kinds of implications they bring to international relations, our businesses, and private lives. In order to understand the treaty mechanisms, this course covers various aspects of the law of treaties.", + "title": "The Law of Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4253V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the changing role of developing countries in a changing international order. It does so by adopting an approach that combines history, theory, and doctrine. The course will examine the historical origins of the contemporary international legal system, and the theoretical debates that have accompanied its evolution, focusing in particular on relations between the Western and non-Western worlds. It will then examine selected topics of international law that are of current significancethese may include international human rights law, the law relating to the use of force, the international law of trade and foreign investment.", + "title": "Developing States in a Changing World Order", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4254V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary focus of the course will be given to the multilateral rules and cases of trade remedies under WTO jurisprudence. In parallel, domestic trade remedy rules and regulations and policies of China, Korea and Japan will be examined to analyze application of WTO rules to domestic jurisprudence and policies. What are the common characteristics and differences among those rules and policies? Are they consistent with WTO jurisprudence? Which agencies are in charge of trade remedy system and policy making and implementations? What is the best strategy for enterprises to respond to such policies? Answers to these key questions are given through lectures, presentations, and discussions.", + "title": "Trade Remedy Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4255V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Constitutional government in the modern era has developed different organisational and functional models, that draw their inspiration from some main principles (eg. Separation of powers, checks and balances, limited government, democratic accountability) that are distinguishing features of the same type of state. The module will consequently highlight the different forms of (presidential, semi-presidential, parliamentary) government, as experienced by the states belonging to both the common law and the civil law legal traditions. Reference will be made also to forms of constitutional government based on territorial division of powers, such as federal systems and supranational organisations such as the Europe Union.", + "title": "Comparative Constitutional Government", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar deals with ongoing research in the area of financial intermediary supervision, corporate governance and capital markets regulation. Each participant will have to 1) read the discussed papers in advance; 2) write a 10 page commentary on one of the discussed papers and present it in class; 3) comment upon one presentation by a fellow student; and 4) actively participate in the discussion throughout the seminar.", + "title": "Law & Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of key personal property concepts. Topics to be studied will include: types of personal property; personal property entitlements recognised at common law, notably, possession, ownership, title and general and special property, with some reference also to equitable entitlements; the transfer of such entitlements; the conflict between competing entitlements; the protection given by law to such entitlements; the assignment of things in action; security interests over personal property.", + "title": "Personal Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4258V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in alternative investment from both a practical and theoretical perspective. The topics that will be covered include private equity, venture capital, hedge funds, crowdfunding and REITs. The course will discuss selected partnership and corporate issues of alternative investment vehicles. The course will focus on China and will provide relevant comparisons on alternative investment in Singapore, the U.K. and the U.S.", + "title": "Alternative Investments", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4259AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in alternative investment from both a practical and theoretical perspective. The topics that will be covered include private equity, venture capital, hedge funds, crowdfunding and REITs. The course will discuss selected partnership and corporate issues of alternative investment vehicles. The course will focus on China and will provide relevant comparisons on alternative investment in Singapore, the U.K. and the U.S.", + "title": "Alternative Investments", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4259V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the fundamental legal concepts and principles relating to Chinese commercial law. Topics to be covered include: basic principles of PRC civil and commercial law, contracts, business associations and investment vehicles, secured transaction, negotiable instruments, taxation and dispute resolution. It will highlight key legal considerations in carrying out commercial transactions in China. Where applicable, the course will provide relevant comparisons with similar laws in other jurisdictions such as the U.S., the U.K. and Singapore.", + "title": "Chinese Commercial Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4260V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Taken concurrently with \u201cCrossing Borders\u201d but with an emphasis on experiential learning, this module offers students the opportunity to explore the legal issues affecting migrant workers, both in the classroom and through externships and case work. Students will spend most of their time outside of class, gaining practical experience by first interning at the Ministry of Manpower over the holidays and then, during the semester, volunteering an average of 10 hours weekly with either Justice Without Borders (JWB) or the NUS-HOME Theft Project (\u201cTheft Project\u201d). In class, using peer learning, including roundtable case review, students will hone their legal skills while examining the legal framework governing Singapore\u2019s foreign workers. Analysing their externship experiences, students will explore the relationship between law on the books and law in action.", + "title": "Employment Law & Migrant Workers Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4261V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines in interaction between IPRs and competition policy\nfrom two broad perspectives: the endogenous operation of competition policy\nfrom within IPR frameworks (copyright, designs, trade marks and patents),\nand the exogenous limitations placed by competition law rules on an IP\nholder\u2019s freedom to exploit his IPRs. Students enrolled in this module are\nexpected to have completed a basic intellectual property module \u2013 an\nunderstanding of what IPRs protect, the nature of the exclusive rights they\nconfer and how they may be exploited will be presumed.", + "title": "Intellectual Property Rights and Competition Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4263V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the fundamentals of how lawyers \"architect\" deals. It is taught in two parts. \nThe first examines the unique role of the transactional lawyer and asks the questions: What is a \"deal\"? What do transactional or \"deal\" lawyers do? What is the perceived \u201cvalue\u201d of what transactional lawyers do? How can lawyers successfully design and structure a transaction? \nThe second explores in detail the elements of a theory or framework of \u201cprivate orderings\u201d. The framework covers the economic and business considerations that drive the analysis of which legal principles should apply and how risks and benefits are allocated between the parties. The course explores how the framework of private orderings can apply to guide the assessment of transactions and the choice of contracting constructs and regimes.", + "title": "Architecting Deals: A Framework of Private Orderings", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4267V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course facilitates an in-depth understanding of the structure, goals, and nature of private law remedies. An emphasis is placed on the role of remedies within the broader structure of private law, and the question of what, if anything, remedies tell us about the substantive law.\n\nThe course ranges across a variety of substantive private law fields, examining remedies arising from contracts, torts, equity, and other sources of obligations. It will introduce students to basic organising private law concepts such as rights, duties, wrongs, loss, and gain, and the various remedial goals of compensation, vindication, disgorgement, restitution, and punishment.", + "title": "Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course facilitates an in-depth understanding of the structure, goals, and nature of private law remedies. An emphasis is placed on the role of remedies within the broader structure of private law, and the question of what, if anything, remedies tell us about the substantive law.\n\nThe course ranges across a variety of substantive private law fields, examining remedies arising from contracts, torts, equity, and other sources of obligations. It will introduce students to basic organising private law concepts such as rights, duties, wrongs, loss, and gain, and the various remedial goals of compensation, vindication, disgorgement, restitution, and punishment.", + "title": "Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4268V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Privacy may in some cases conflict with intellectual property but in other cases the two may go hand in hand and in addition other rights in personal information may further blur and complexity the boundaries. This module will explore the relationships between privacy, intellectual property and other rights in personal information in a range of contexts across different jurisdictions in an effort to explain and evaluate the current legal position, the various debates and proposals for improvements in the law.", + "title": "Privacy and Intellectual Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course examines the international legal protection of women\u2019s human rights within a framework of international law and feminist legal theories. The course will focus upon the United Nations Convention on the Elimination of All Forms of Discrimination Against Women, 1979 to which Singapore became a party in 1995 and the work of the CEDAW Committee in monitoring and implementing the Convention. The impact of certain conceptual assumptions within international law, and human rights law in particular, that militates against the Adequate protection of women's rights will be considered. After an examination of the general framework, more detailed attention will be given to certain topics including health and reproductive rights, women\u2019s right to education violence against women, including in armed conflict, political participation and trafficking. The course will finally consider the question of whether international human rights law is an appropriate vehicle for the furtherance of women's interests.", + "title": "International Human Rights of Women", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores and contrasts the different methodologies inherent in the disciplinary approaches of legal and policy analysis. What are the biases and assumptions in each method of analysis? How does each method view the other? How is each approach relevant to the other in different practical situations, e.g. in legal advice, court arguments and judgments and in government policy formulation.", + "title": "Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the wake of the Global Financial Crisis (GFC) of 2008, the visibility of finance and financial regulation has increased dramatically. This subject will provide an overview of the global financial system and international efforts to build\nstructures to support its proper functioning. Taking an integrative approach, the subject will look at the evolution of the global financial system, its structure and regulation. In doing so, the subject will analyse financial crises, especially\nthe GFC, and responses thereto, the Basel Committee on Banking Supervision (BCBS), the Financial Stability Board (FSB) and the International Monetary Fund (IMF). The approach will be international and comparative, with a focus on major jurisdictions in the global financial system, and will not focus on any single jurisdiction.", + "title": "International Financial System: Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course deals on a comparative legal basis (US-, EU and Swiss law) with problems related to:\nI. How to coordinate economic activities?\nII. Implementation of a competition system\n1) Competition? Private restrictions to competition and what states can do against it?\n2) The substantive EU- and Swiss-provisions\n\u2013 against agreements restricting competition and abuse of market power\n\u2013 on merger control\n\u2013 on sanctions and leniency programs\n\u2013 Discussion of leading cases\n3) State aids; public and private enforcement\nIII. Correcting the competition system\nPlanned sectors, consumer protection, price controlling\nIV. Controversial questions, the \u201emore economic\napproach\u201c? Efficiency and individual freedom to compete? Global competition?", + "title": "European & International Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4273", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Worldwide, governments are increasingly relying on broad-based consumption taxes, such as the GSTs in Singapore, Malaysia, New Zealand and Australia and the VAT in Europe, to raise revenue. This course will introduce students to theories of comparative tax law and consumption taxation and to key GST law and policy concepts. With these theoretical, conceptual and legal tool kits, we will then explore the complex but fascinating legal and policy issues relating to cross-border trade in goods and services (such as professionals providing services to clients across borders and global digital trade), financial services and real property transactions.", + "title": "Comparative GST Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International organizations play an increasingly important role in the international community. While the state continues to be the supreme form of political organization, international organizations, such as the UN, the WTO, the IMF, the World Bank, the ASEAN, the EU and NATO, are indispensable to cope with globalization and increasing interdependence. The main objective of this course is to familiarize students with the fundamental rules of international institutional law \u2013 that is the body of rules governing the legal status, structure and functioning of international organizations.", + "title": "International Institutional Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4275", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Contract Law invites students to examine some interesting and controversial topics from this foundational subject. Some topics will build on what students already know in their first-year/basic contract law course (e.g. how does contract law deal with change of circumstances?), some will cover new ground (e.g. the role of good faith in contract law). You will be able to write a paper on a topic of particular interest to you. The course also complements the module Advanced Tort Law and Philosophical Foundations of Contract Law.", + "title": "Advanced Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4276", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the tools necessary for students to develop and reflect critically upon contemporary ethical and legal issues in medicine and the biosciences. Its substantive content includes and introduction to medical\nethics and medical law, health care in Singapore (presented comparatively with select jurisdictions, such as the UK and the USA), and professional regulation. The following key areas will be considered:\n- Professional regulation and good governance of medicines;\n- Genetics and reproductive technologies (including abortion and pre-natal harm);\n- Mental health;\n- Regulation of Human Biomedical Research;\n- Innovative treatment and clinical research;\n- Infectious Diseases;\n- Organ transplantation; and\n- End-of-life concerns (e.g. advance care plan and advance directive, discontinuation of life sustaining treatment, etc.).", + "title": "Medical Law and Ethics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4277V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Alongside the European Union the Asia-Pacific is becoming the central arena for trade and investment and its contestation within the world today. This module examines the global, regional and bilateral frameworks governing trade, investment, competition and migration across this region. It has three components. The first looks at how different organisations and regimes \u2013 the WTO, ASEAN, ASEAN Plus Agreements, BITS, NAFTA and Closer Economic Relations \u2013 interact to govern the region and the attempts to reform this, most notably through the TransPacific Partnership Process. The second looks at the detailed laws and processes governing trade in goods and services and investment. The final section looks at a number of further key policies: intellectual property, competition, the professions, and migration.", + "title": "Trade and Investment Law in the Asia-Pacific", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4278V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the conceptual foundation of access to justice and the practical challenges it raises in formal systems of dispute resolution. Using a Research Seminar structure, the module integrates academic analysis with experiential learning by providing students with opportunities to produce and critique original research on themes emerging from student internships and pro bono experiences.", + "title": "Access to Justice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4279V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Companies are both the victims of and vehicles for crime. This module examines both aspects. The first aspect covers crimes against the company by management \u2013 criminal breach of trust, dishonest misappropriation of property, breaches of fiduciary duty, misuse of corporate information. The second aspect will deal with using companies as vehicles for crime \u2013 cheating, money-laundering. Corruption cuts across both aspects. The statutes covered will be the Companies Act; Corruption, Drug Trafficking and Other Serious Crimes (Confiscation of Benefits Act); Penal Code; and Prevention of Corruption Act. Students must have a firm grounding in both Criminal Law and Company Law.", + "title": "Crime and Companies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4280V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module acquaints the students with the laws and principles relating to the civil litigation process. The three distinct stages, namely, pre-commencement of action, pre-trial and post-trial are discussed in detail. The overriding aims of the civil justice system will also be deliberated. This will enable the students to better understand and appreciate the rationale of the application of the provisions of the rules of court. In this regard, the students will be able to make a case on behalf of their clients or against their opponents when the perennial issue of non-compliance with procedural rules takes centre stage. This module is designed to prepare the students to practise law in Singapore. Hence, the focus will primarily be on the Singapore Rules of Court and the decisions from the Singapore courts.", + "title": "Civil Procedure", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4281V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary focus of this module is on the variety of commercial dispute resolution processes available to contracting parties and the essential principles and issues pertinent to these different processes. The overriding aims are to acquaint the students with the characteristics of each of these processes, to highlight the governing principles and to discuss the perennial and emerging issues relating to this aspect of the law. Students who have undertaken this module will be able to consider the plethora of options available to them when drafting dispute resolution clauses and/or providing legal advice and representation when a dispute has arisen.", + "title": "Resolution of Transnational Commercial Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4282V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advancements in computer science have made it possible to deploy information technology to address legal problems. Improved legal searches, fraud detection, electronic discovery, digital rights management, and automated takedowns are only the beginning. We are beginning to see natural language processing, machine learning and data mining technologies deployed in contract formation, electronic surveillance, autonomous machines and even decision making. This course examines the basis behind these technologies, deploys them in basic scenarios, studies the reasons for their acceptance or rejection, and analyses them for their benefits, limitations and dangers.", + "title": "Artificial Intelligence, Information Science & Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4283V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the relevance of Confucianism to law, which includes three eras, namely: (1) Confucian legal theory and Confucian legal tradition; (2) the relevance of Confucianism to different aspects of national legal issues in contemporary East Asia (China, Japan, South Korea, Singapore, and Vietnam), such as human rights, rule of law, democracy, constitutional review, mediation, and family law; and (3) the relevance of Confucianism to international law. It will be of interest to those interested in Confucian legal tradition, customary law, Asian law, law and culture, legal theory, and legal pluralism.", + "title": "Confucianism and Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4284", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will explore key legal questions related to international dispute settlement with a view to providing a broad overview of the field with respect to State-to-State, Investor-State, and commercial disputes. This course will include a discussion of the various types of international disputes and settlement mechanisms available for their resolution. It will explore the law pertaining to dispute settlement before the ICJ, WTO, ITLOS, as well as international arbitration, both Investor-State arbitration and commercial arbitration. The course will compare these different legal processes on issues such as jurisdiction, provisional remedies/measures, equal treatment, evidence, and enforcement.", + "title": "International Dispute Settlement", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4285V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "While terrorism is not a new phenomenon, the sheer scale and transnational nature of that practice in recent years have challenged some of the core tenets of international law. This seminar investigates the role that international law can play, along with its shortcomings, in suppressing and preventing terrorism. It examines the manner in which terrorism and counterterrorism laws and policies have affected the scope and application of diverse international legal regimes including UN collective security, inter-State use of force, the law of international responsibility, international human rights, international humanitarian law, and international criminal law.", + "title": "Transnational Terrorism and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4286V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines ASEAN\u2019s ongoing metamorphosis into a rules-based, tri-pillared (political-security, economic, and socio-cultural) Community pursuant to the mandate of the 2007 ASEAN Charter. It deals primarily with Law but is also attentive to the Non Law and Quasi Law aspects inherent in ASEAN\u2019s character as an international actor and regional organisation; its purposes and principles; and its operational modalities, processes, and institutions. \n \nStudents will grasp the complexities of ASEAN\u2019s conversion to the rule of law and rule of institutions within the context of international law and its frameworks; national competences and jurisdiction; and regional relations and realpolitik.", + "title": "ASEAN Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4287V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies European Union business regulation and how this affects both the EU and other markets. It has three components. The first looks at the types of business regulation deployed. It will include legislative harmonisation,\nprivate standardisation, mutual recognition and regulatory agencies. The second looks at the regulation of key industrial and service sectors, such as food, automobiles, pharmaceuticals, energy chemicals or financial services. The third looks at how EU business regulation interacts with non EU markets, through studying its commercial policy, free trade agreements and extraterritorial jurisdiction.", + "title": "Business, International Commerce and the European Union", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4288V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module has three distinctive features. First, it compares international commercial arbitration (ICA) international investment arbitration (ISA). Second, it focuses on the evolution of arbitration, in particular, on the development of the procedures and substantive law that have gradually enabled arbitration to become a meaningfully autonomous legal system. Third, it surveys a variety of explanations for why the arbitral order has evolved as it has \u2013 into a more \u201cjudicial-like\u201d legal order \u2013 focusing on the role of arbitral centres, state regulatory competition, and the reasoning of tribunals in their awards.", + "title": "The Evolution of International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4289V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The seminar is designed to prepare students to undertake original, primary research in law. Major topics and questions to be covered include:\n- how to write a good literature review and prospectus;\n- why one must have a method, or, how are \u201cmethods\u201d and\n\u201cdata collection\u201d related?;\n- what is research design?;\n- how to avoid, or manage, the problem of \u201cselection bias.\u201d\n\nA major component of the seminar, students will assess a variety of published papers, as well as research projects presented by the faculty.", + "title": "Legal Research: Method & Design", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4290V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The class will survey approaches to understanding legal pluralism in a range of settings, focusing on the various ways in which autonomous normative orders, including systems of law, interact with one another. Topics include: how \u201coutsider\u201d groups (e.g., Mayan Indians in Mexico, Roma-Gypsy communities, merchant guilds) govern themselves while resisting submission to the state law; the tensions between custom, state law, and human rights in Asia after the colonialist period; and the ways in which the pluralist structure of international treaty law and organization are transforming law and courts at the national level.", + "title": "Legal Pluralism and Global Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The class will survey approaches to understanding legal pluralism in a range of settings, focusing on the various ways in which autonomous normative orders, including systems of law, interact with one another. Topics include: how \u201coutsider\u201d groups (e.g., Mayan Indians in Mexico, Roma-Gypsy communities, merchant guilds) govern themselves while resisting submission to the state law; the tensions between custom, state law, and human rights in Asia after the colonialist period; and the ways in which the pluralist structure of international treaty law and organization are transforming law and courts at the national level.", + "title": "Legal Pluralism and Global Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4291V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The law governing the responsibility of States for internationally wrongful acts is absolutely central in public international law and cuts across various sub-fields of that discipline. This seminar investigates the fundamental tenets of the law of State responsibility, both from theoretical and practical standpoints, while tracing some of its historical roots. More broadly, the seminar will provide\nan overview of different doctrines of State responsibility and different theories and approaches to liability under international law. More importantly, the later sessions of the seminar will engage critically with the role that the law\nof State responsibility can play in specific areas.", + "title": "State Responsibility: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4292V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on the instances in which resort to conflict of laws is necessary in the international arbitration context. The objective of this course is to allow participants to realise on how many occasions both State courts and arbitrators will need to report a conflict of laws analysis despite the claim that conflict of laws issues are not relevant in the international commercial arbitration context. Participants will first be taught to identify what conflict of laws rules may apply and will then be given hypothetical cases and will be asked to critically examine whether a solution can be found that does not require a conflict of laws approach.", + "title": "Conflict of Laws in Int\u2019l Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4295", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Does copying always harm creativity? Can innovation thrive in the face of imitiation? These questions are at the heart of intellectual property theory and doctrine. This course explores these issues via a close look at a range of unusual creative industries, including fashion, cuisine, sports, comedy, and tattoos, as well as more traditional intellectual property topics, such as music and film.", + "title": "Imitation, Innovation and Intellectual Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4296", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modern corporations draw funding to finance their consumption and investment needs from a variety of sources on the basis of extensive cost- benefit considerations. These include a multitude of factors, such as legal considerations, the quantity of funding required and cost of capital depending on its source, and impact on shareholders and management etc. Corporations may also obtain finance by either levering existing assets or resorting to unsecured bank lending or bond issues. For the biggest corporations the most important source of finance tends to be the capital markets. These normally comprise the debt and equity markets through which public companies can offer securities to investors or to transfer the control of the company to new owners in the context of an agreed takeover, a hostile take-over bid, or of a private equity transaction.\nThis course aims to develop a critical understanding of the subject matter through the combined study of finance theory, corporate law, capital market regulation and the corporate market dynamics, with a special focus on the different stakeholders involved in corporate finance. The module will focus on critical corporate finance issues such as: the use of debt and equity; why merge or acquire a business; core considerations of the process; purchase sale agreements and contractual governance; the role of the board of directors in an acquisition/financing transaction; the permissibility and regulation of takeover defenses in the UK, the US and the EU. It will also discuss cross-border IPOS, the problem of market abuse, theory and practice of corporate takeovers and their regulation, and issues pertinent to private equity transactions, as well practical issues relating to structuring corporate acquisition deals and attendant legal documentation. NB: While there is inevitably reference to scores of economic concepts and some finance readings the course is specifically addressed to law students it is non-mathematical.", + "title": "Practice of Corporate Finance and the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4297", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is the foundation course in international finance. It is meant for all who want to gain a better understanding of what is happening and concerns primarily (a) the way money is recycled through the banking system or the\ncapital market, (b) the products and conduct of the banking, securities and investment industry in this recycling activity, (c) the risks that are taken in the financial services industry (primarily by commercial and investment banks in their different functions) and the tools of risk management, (d) the operation of the financial markets and their infrastructure, (e) the type of regulation of commercial banks and of the intermediaries and issuers in the capital markets, and (f) the objectives, role, shape and effectiveness of this regulation. In this connection, the course will also deal with the smooth operation of payment systems.\n\nFinancial risk and its management is an important theme and the major concern in the course. What can commercial or investment banks and financial regulation achieve in this regard, how is risk management structured, and what academic or other (political) models are used in this connection, how effective are they, e.g. in the capital adequacy and liquidity requirements, and what can or must governments and/or central banks or other regulators do when all fails and financial crises occur? From a legal point of view, an important aspect is the strong public policy undercurrents in the applicable law.\n\nThat is obvious in regulation but may also impact on private law. Another important issuer is that the law applicable to financial products and their regulation is ever more transnationalised and expressed at the international level, especially in terms of transactional and payment finality, financial stability, and even banking resolution facilities or international safety nets. In these circumstances, choice of national laws in the older private international law approach often mean little and it will be discussed how they may fall seriously short especially in in matters of regulatory oversight and bankruptcy situations.", + "title": "International Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4298", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course is designed for students and practitioners already acquainted with the fundamentals of international arbitration, and may be particularly useful for those who may have an inclination to specialize in the practice or study of international dispute resolution. Focus will be placed on topics of practical and academic interest in all aspects of the international arbitration process, looking in particular to recent trends and evolutions in the field of international dispute settlement.\nThrough seminar discussions, student presentations and moot court sessions, this course will expose students to contemporary controversies in the field of international commercial and investment arbitration. An international approach will be adopted in relation to the subjects considered: students can expect to review a substantial amount of comparative law sources, including academic commentaries and jurisprudence from France, Singapore, Switzerland, the United Kingdom and the United States, as well as public international law sources and international arbitral practice.", + "title": "Advanced Issues in the Law & Practice of Int\u2019l Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4299", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will consider the particular and unique issues\nthat the ubiquitous use of the internet for commerce,\neducation and communication has created for copyright\ncreators and users. In particular, it will address the\nincreasingly visual medium of social media and how user\npractices are challenging the boundaries of copyright law. It\nwill consider copyright infringement, fair dealing, personal\nand professional uses and the interaction between\ncopyright, contract and consent.", + "title": "Copyright in the Internet Age", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4300", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides a grounding in the international and theoretical background to the constitutional protection of social rights; the substantive approach taken by courts to various social rights, and the interaction between social rights in various claims to equality and protection on the part of vulnerable groups. The topics covered in the class are thus:\n(1) theoretical debates on the nature of social rights, and the theoretical underpinnings for their recognition qua rights;\n(2) international human rights law instruments recognising social rights, and international human rights understandings of such rights;\n(3) constitutional debates about the capacity and legitimacy of courts enforcing such rights, and particular debates over concepts such as (a) weak-versus strong-form review, and (b) notions of a \u2018minimum core\u2019 to social rights; and\n(4) the actual interpretation of enforcement of key social rights by courts, with a particular focus on the right to housing, health care, water, food and social welfare and social security\n(5) questions of gender, poverty and social rights\n(6) the rights of children in relation to social rights\n(7) the rights of non-citizens", + "title": "Topics in Constitutional Law: Socio-Economic Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce to students topical and current issues of interest in the regulation of international financial markets, with a focus on global capital and investment markets. The regulation of investment firms and funds reached a new high with mainly European leadership in regulatory standards and many of these are influential globally. We aim to cover theoretical foundations in regulation, so that students can grasp the law and economic theories and public policy underpinnings of financial regulation, and specific topics that relate to securities and investment regulation. The approach to specific topics would be grounded in theoretical and policy understanding, in order to appreciate the high key highlights of regulatory duties, compliance implications and enforcement.", + "title": "Int'l Regulation of Finance & Investment Markets", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce to students topical and current issues of interest in the regulation of international financial markets, with a focus on global capital and investment markets. The regulation of investment firms and funds reached a new high with mainly European leadership in regulatory standards and many of these are influential globally. We aim to cover theoretical foundations in regulation, so that students can grasp the law and economic theories and public policy underpinnings of financial regulation, and specific topics that relate to securities and investment regulation. The approach to specific topics would be grounded in theoretical and policy understanding, in order to appreciate the high key highlights of regulatory duties, compliance implications and enforcement.", + "title": "Int'l Regulation of Finance & Investment Markets", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4302V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the complex interactions between\nliterature and the law. Even though the two disciplines may\nseem distinct, both law and literature are products of\nlanguage and have overlapped in significant and\ninteresting ways in history. Why do legal themes recur in\nfiction, and what kinds of literary structures underpin legal\nargumentation? How do novelists and playwrights imagine\nthe law, and how do lawyers and judges interpret literary\nworks? Could literature have legal subtexts, and could\nlegal documents be re-interpreted as literary texts? We will\nthink through these questions by juxtaposing fiction,\ndrama, legal cases, and critical theory.", + "title": "Law and Literature", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an interdisciplinary course that invites students to inhabit the field of law and literature by engaging closely with a key topic. Our seminar begins with a broad introduction to the field and related interdisciplinary scholarship, before delving into the focal thematic through close readings of legal and literary texts. This year, we address the question of authorship and its relationship with the law of copyright and intellectual property. Students would become familiar with a constellation of theoretical and historical perspectives from which to rethink our received understandings of authorship, including copyright\u2019s treatment of books, publishers, and authors.", + "title": "Law and Literature", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4303V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the principal problems for the\ntheory and practice of comparative constitutional law,\ngenerally and in the globalizing conditions of the early 21st\ncentury. In doing so, it will range widely over countries and\nconstitutional systems and examine the challenges\npresented by differences in context and culture. The\nconclusions about methodology in the early classes will be\ntested in later ones by reference to a series of topical\nsubstantive issues in constitutional law in Asia and\nelsewhere, ranging from institutional design to rights\nprotection.", + "title": "Global Comparative Constitutional Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course anlayzes connections between human rights and intellectual property. While these bodies of law developed on separate tracks, the relationship between them has now captured the attention of government officials, judges, civil society groups, legal scholars and international agencies, including the World Intellectual Property Organization, the United Nations Human Rights Council, the Committee on Economic, Social and Cultural Rights, and the Food and Agriculture Organization.\nThe course will be of interest to those interested in intellectual property and/or human rights.", + "title": "IP and Human Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on laws governing banks and the other financial intermediaries in China, reflecting the game between regulation and financial innovation. It will be divided into three parts: the first and also the most the essential one will cover the legal requirements of operation and business of traditional commercial banks; the second one will go through the corporate governance of banks, problem bank resolution and currency issues; the last part will discuss the legal issues of new financial products and non-bank financial institutions. This course focuses on the emerging issues in China of that subject, and also pay particular attention to recent legislative reform efforts in China on banking and non-bank financial institutions and will consider both the developments and innovation in scholarship and teaching of financial law since 2008.", + "title": "Chinese Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on laws governing banks and the other financial intermediaries in China, reflecting the game between regulation and financial innovation. It will be divided into three parts: the first and also the most the essential one will cover the legal requirements of operation and business of traditional commercial banks; the second one will go through the corporate governance of banks, problem bank resolution and currency issues; the last part will discuss the legal issues of new financial products and non-bank financial institutions. This course focuses on the emerging issues in China of that subject, and also pay particular attention to recent legislative reform efforts in China on banking and non-bank financial institutions and will consider both the developments and innovation in scholarship and teaching of financial law since 2008.", + "title": "Chinese Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4306V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The European Union plays an increasing role in the\nregulation of international shipping and any shipping\ncompany wishing to do business in Europe will have to\ntake this into consideration. The module will take on\nvarious aspects of this regulation and will place the EU\nrules in the context of international maritime law. To\nensure a common basis for understanding the EU maritime\nlaw, the basic structure and principles of the EU and EU\nlaw will be explained at the outset.", + "title": "EU Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law is a behavioural system. Most law seeks to regulate, incentivize and nudge people to behave in some ways and not in others \u2013 it seeks to shape human behavior. Traditional economic analysis of law is committed to the assumption that people are fully rational, but empirical evidence suggests that people very often exhibit bounded rationality, bounded self-interest, and bounded willpower. This course about behavioural law and economics, with an emphasis on regulation, looks at the implications of actual, not hypothesized, human behaviour for the law. It considers, in particular, how using the mildest forms of interventions, law can steer people\u2019s choices in welfarepromoting\ndirections.", + "title": "Behavioural Economics, Law & Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4308V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to set out the practical realities of dispute resolution in Asia and aims to make students step into the shoes of lawyers and understand how to tackle and strategize real disputes. The course covers topics related to jurisdiction, interim relief, defence and guerrilla tactics, issue estoppel, choice of remedies and dealing with a State in relation to investment treaty disputes to give students a real life understanding of the issues which arise in international disputes. In the context of the substantive issues, the students would also go through facets of the New York Convention and a comparative analysis of the laws of Singapore, England & Wales, India and Hong Kong.", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4309", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to set out the practical realities of dispute resolution in Asia and aims to make students step into the shoes of lawyers and understand how to tackle and strategize real disputes. The course covers topics related to jurisdiction, interim relief, defence and guerrilla tactics, issue estoppel, choice of remedies and dealing with a State in relation to investment treaty disputes to give students a real life understanding of the issues which arise in international disputes. In the context of the substantive issues, the students would also go through facets of the New York Convention and a comparative analysis of the laws of Singapore, England & Wales, India and Hong Kong.", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4309V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar-style module critically examines the impact of international organisations on the formal structures of international law. Do international organisations create and enforce international law? What type of norm-creating activity takes place inside and across international organisations? Does the reality of global governance give rise to concerns about legitimacy or accountability? What are the legal and policy responses to such concerns? Case studies used will range from traditional institutions such as the UN and its specialised agencies, to newer institutions such as the Financial Action Task Force and the Global Fund to Fight AIDS, Tuberculosis and Malaria.", + "title": "International Organisations in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4310V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will offer an historical and comparative focus on Islamic family law. It will begin by providing a basic overview of Islamic law generally and then turn to examine Islamic family law specifically. It will then cover major topics that arise in Islamic family law under the classical Islamic legal tradition. It will conclude by exploring how many of those issues arise in some modern contexts, as Islamic family law is applied both inside and outside of the Muslim world.", + "title": "Islamic Law and the Family", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The past two decades have witnessed the emergence of new forms of international organizations (e.g. Basel Committee) alongside traditional organizations (e.g. WTO). These new organizations challenge the traditional premises of international law. Moreover, international organizations increasingly issue rules that impact people around the world, yet they largely operate within a legal void and go unchecked. In view of these challenges, a new legal school of thought is emerging that seeks to set more legal constraints and that introduces institutional reforms, such as the growing inclusion of Asian countries in international organizations. We will explore these issues.", + "title": "The Law of Global Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4312V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4313", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recent years have witnessed more state-to-state and investor-state disputes, with a substantial increase in resources spent on binding arbitration. Mediation and conciliation are rarely attempted and more rarely successful. This course introduces the student to methods of mediation and conciliation on the international law plane, and surveys existing institutional regimes (ie, ICSID,\nPCA, SIAC). The focus will then turn to identification and critical analysis of the special legal and policy obstacles to voluntary dispute settlement by states (including SOEs), as well as countervailing incentives. The scope is\ninternational, with some readings devoted to Asia. Students will study and critique precedents, and conduct basic mediation/conciliation exercises.", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4313V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in private equity and venture capital from both practical and theoretical perspectives. The topics that will be covered explore the laws and practices relating to the whole cycle of the venture capital and private equity, including fundraising, investments, exits, foreign investments and regulation. The course will also discuss equity crowdfunding which is an important emerging method of equity financing. Certain topics of this course will provide relevant comparisons with private equity and venture capital in China, Singapore and the U.S. It will be of interest to legal professionals in the private equity and venture capital sectors.", + "title": "Private Equity and Venture Capital: Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4314V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the law of restitution for unjust enrichment. In particular, it is concerned with when a defendant may be compelled to make restitution to a claimant, because the defendant has been unjustly enriched at the claimant\u2019s expense. It does not cover all of the law relating to gain-based remedies.", + "title": "Restitution of Unjust Enrichment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4316V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will give the students an in-depth look at how cases proceed under the SIAC, HKIAC and MCIA rules, with some comparative coverage of the CIETAC and KLRCA rules. Highlighted will be the salient features of these arbitral institutional rules including the introduction of cutting edge procedures such as the emergency arbitrator and expedited arbitration procedures and consolidation/joinder. The course will also provide a comparative analysis of the arbitral legislative framework in Singapore, Hong Kong and India and offer an in-depth analysis, with case studies, of the role of the courts in Singapore, Hong Kong and India in dealing with specific issues such as challenges to tribunal jurisdiction, enforcement and setting aside of awards. Finally, the course will also look at the peculiar relationship between arbitration and mediation in Asia.", + "title": "International Arbitration in Asian Centres", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4317V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to important topics in public health law and regulation. It explores the use of law as an important tool in protecting the public\u2019s health, responding to health risks and implementing strategies to promote and improve public health. The course reviews the nature and sources of public health law, and regulatory strategies that law can deploy to protect and promote public health. It considers these roles in selected areas within the field: for example, acute public health threats like SARS and pandemic influenza, tobacco control, serious sexually transmitted diseases, and non-communicable diseases such as heart disease, stroke and diabetes.", + "title": "Public Health Law and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4318V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines current problems in international law relating, for instance, to the use of force, human rights, international environmental law and foreign investment law.", + "title": "Current Problems in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4319V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Globally, space-derived products and services combine assets and annual revenues in excess of USD350 billion. The year-on-year growth of the space economy is 9%, three times that of the global economy. This course discusses the international law regulating the use of, and activities in, outer space. It will examine issues such as State responsibility, liability for damage, and environmental protection. It will then debate the law relating to various space sectors such as telecommunications, navigation, military and dual use, resource management, and human spaceflight.", + "title": "International Space Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4320", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Globally, space-derived products and services combine assets and annual revenues in excess of USD350 billion. The year-on-year growth of the space economy is 9%, three times that of the global economy. This course discusses the international law regulating the use of, and activities in, outer space. It will examine issues such as State responsibility, liability for damage, and environmental protection. It will then debate the law relating to various space sectors such as telecommunications, navigation, military and dual use, resource management, and human spaceflight.", + "title": "International Space Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4320V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course applies economic concepts to the practice of structuring business transactions. The materials consist of case studies of actual transactions. We will use those case studies to analyze the economics challenges that parties to a deal must address, and to analyse the mechanisms the parties use to address those challenges. The case studies will cover a selection from bond financings, acquisitions, movie financings, product licenses, biotech alliances, venture capital financings, cross-border joint ventures, private equity investments, corporate reorganizations, and more.", + "title": "Deals: The Economic Structure of Business Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Trade Finance Law considers the different legal structures used to effect payment under, and disincentives breaches of, international agreements for the supply of goods and services. The course analyses and compares documentary and standby letters of credit, international drafts and forfaiting, performance bonds and first demand guarantees and export credit guarantees. Key topics will include the structure, juridical nature and obligational content of the aforementioned instruments; the nature of the harmonised regimes and their interaction with domestic law; the principle of strict compliance and its relaxation; documentary and non-documentary forms of recourse; the autonomy principle and its exceptions; and the conflict of laws principles applicable to autonomous payment undertakings. The course should be of interest to students who have already studied other components of international trade and/or who have an interest in international banking operations.", + "title": "Trade Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Trade Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4322V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a detailed examination of the principles of agency law. Broadly speaking, agency involves one person acting for another. Agents may be of many different kinds spanning different settings and industries. Shop assistants, solicitors, auctioneers, estate agents, are common examples of agents. \n\nThis course covers both \u2018internal\u2019 and \u2018external\u2019 dimensions of agency. Topics covered include definitions of agency, how agency relationships are created, different types of authority, agency\u2019s application outside contract, and the rights and duties between principal and agent.", + "title": "Law of Agency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a detailed examination of the principles of agency law. Broadly speaking, agency involves one person acting for another. Agents may be of many different kinds spanning different settings and industries. Shop assistants, solicitors, auctioneers, estate agents, are common examples of agents. \nThis course covers both \u2018internal\u2019 and \u2018external\u2019 dimensions of agency. Topics covered include definitions of agency, how agency relationships are created, different types of authority, agency\u2019s application outside contract, and the rights and duties between principal and agent.", + "title": "Law of Agency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4323V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a comparative approach to exploring what is meant by a trade mark, the messages that trade marks communicate and the roles they perform. These are important enquiries because questions of what trade marks do and ought to do have a direct impact on the contours of the law. A major theme will be the relationship between trade marks and brands: to what extent should trade mark law be concerned with protecting brand value? What might a focus on brand value mean for competitors? Is a focus on brand value compatible with the logics of trade mark registration? These questions will be explored by reference to the laws of multiple jurisdictions, most significantly Australia, the EU, Singapore and the USA.", + "title": "Comparative Trade Mark Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Taught by two public international law practitioners, this course invites participants to develop a more practical and strategic understanding of how a State deals with the various types of disputes it may face. Topics covered includes litigation and procedural considerations in inter-State, investor-State, human rights and international criminal disputes, and cross-cutting considerations like national security privileges, immunities, conflicts of public international law. The course will conclude with a seminar where senior practitioners of public international law share their views and insights on acting as a Government advisor and as an advocate.", + "title": "The Int'l Litigation & Procedure of State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the public law system of the United States, with an emphasis on structural issues and governmental processes, especially the creation of regulations and the political and judicial controls over this important activity. Changes resulting from the Trump administration will be an important element.", + "title": "Administrative Justice: Perspectives from the U.S.", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4326", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a practitioner's perspective on the bread and butter of any transactional practice: mergers and acquisitions (M&A) of non-listed, private companies. It will deal with the structuring of an M&A transaction (the why) and the plain vanilla aspects of documentation (the why and how of basic drafting). \n\nMany new graduates seem to be unable to see the wood for the trees. They arrive as trainees, with a reasonable grounding in the law, but an inability to apply it to real life situations. The practicalities elude them and they seem to want to follow templates without much understanding of the transaction. This course will attempt to give them a working knowledge of the issues to be considered in structuring a transaction. It will also cover the main features of standard documentation (bearing in mind that there is a discernible industry-standard set of documentation in common law countries) to explain why documents are drafted the way they are.", + "title": "Mergers and Acquisitions: A Practitioner\u2019s Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4327V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 19, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sports Law is a very broad field, encompassing several areas of law unique to the sporting industry, as well as several traditional areas of law applied to the field of sport.This course will focus on the existing and evolving private and public international sports law systems, (where appropriate) the national sports law of several jurisdictions (including Australia, USA, UK and to a lesser extent, Singapore) and provide avenues of multi-jurisdictional comparative analysis. The social, political, commercial and economic influences on the development, content and structure of sports law globally will also be explored.", + "title": "Sports Law & Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4328", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this course is on the litigation of cross-border disputes in the fields of tort, contract, consumer protection and intellectual property including in the online context. The subject will examine the key doctrinal principles and scholarly debates in the area as well as problems commonly encountered in practice. Material will be drawn from leading common law jurisdictions, including Singapore, Australia, England, Hong Kong and Canada. The course is recommended for those with an interest in international dispute resolution, conflict of laws, litigation or international commerce.", + "title": "Cross-Border Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4329", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first part of the course explores how trusts are used to manage family wealth, with emphasis on developments in the \u2018offshore world\u2019. We will discuss how trusts may be used to protect assets, how trustees\u2019 discretions may be controlled, the rights of objects of trusts, and purpose trusts. The second part concerns trusts in commercial transactions. We will explore creditor trusts, constructive trusts, bonds and intermediated holding of securities, equitable assignments and equitable charges. By comparing commercial trusts with private trusts, we will also ask whether there are any significant contextual differences in relation to the trust device.", + "title": "Advanced Trusts Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4330", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the ideal of the rule of law: its value, limitations, costs, and relationship with distinct social aspirations. The teaching is based on leading texts, comparative case law, and video documentaries. The course is divided into nine modules: (1) the meaning and value of the rule of law, (2) emergencies, (3) the relationship(s) between the rule of law, the obligation to obey the law, and the rule of good law, (4) the modern welfare state, (5) criminal law vs. private law, (6) international law, (7) corporations and liberal democracy, (8) colonialism and developmental transitions, and (9) defences for disobedience.", + "title": "The Rule of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The copyright laws of Singapore and the United have in common a general, flexible, open exception designated by the term \u201cfair use.\u201d During the last 25 years, the U.S has had extensive experience with this concept, both in the courts and in fields of practice as diverse as art, filmmaking, education, technology, and journalism. Not only have judicial opinions about fair used cohered into a \u201cunified field theory\u201d of the doctrine, but awareness of its potential applications has increased dramatically among members of relevant communities. The last development has been attributable in part to the development of community-specific Codes of Best Practices for the responsible application of fair use \u2013 an effort in which the instructor for this module has been active. The course will explore the legal background of fair use, its doctrinal evolution over the past 25 years, and a variety of practical situations in which it has been successful employed.", + "title": "Fair Use in Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinical course introduces students to the law, practice, and implementation of international criminal law. Students will learn and examine the content and application of substantive and procedural law on core international crimes\u2014war crimes, crimes against humanity, genocide, and aggression\u2014that attract individual criminal responsibility under international law. As part of the assessment, students will work on research projects in collaboration with the ICRC. Students will be exposed to \u2018real world\u2019 problems and learn the legal knowledge, professional skills, and critical thinking expected of those working in this field. This course will require substantial student initiative, participation and collaboration.", + "title": "International Criminal Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4333", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinical course introduces students to the law, practice, and implementation of international criminal law. Students will learn and examine the content and application of substantive and procedural law on core international crimes\u2014war crimes, crimes against humanity, genocide, and aggression\u2014that attract individual criminal responsibility under international law. As part of the assessment, students will work on research projects in collaboration with the ICRC. Students will be exposed to \u2018real world\u2019 problems and learn the legal knowledge, professional skills, and critical thinking expected of those working in this field. This course will require substantial student initiative, participation and collaboration.", + "title": "International Criminal Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4333V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to increase students\u2019 breadth of empirical knowledge and depth of theoretical understanding of issues of law, justice, and society. With urbanization and industrialization, modern societies have increasingly depended upon law to regulate the behaviour of their members and the activities of their institutions. It will explore issues in law and society in SE Asia, with an emphasis on how sexuality, ethnic and religious diversity are handled, and how justice is conceived; as well as\nissues in the Singaporean justice system, where other examples will be used to compare Singapore\u2019s unique approach to addressing justice and society issues.", + "title": "Law and Society in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4334", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the evolving regime for the regulation and protection of multinational enterprises (MNEs) in international law. Although MNEs remain creations of domestic law, the cross-border activities of MNEs increasingly come within the scope of instruments creating obligations and/or rights in international law. In assessing the challenges faced by states and MNEs alike with respect to such transnational regulation, the module takes a rounded and interdisciplinary view of the issues involved, addressing both the commercial and social dimensions of MNE action. In addition to considering the regulatory powers of individual states, developments under international instruments on human rights, labour conditions, finance, taxation and investment are addressed.", + "title": "Multinational Enterprises and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4335V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the real-life practice of international commercial and treaty arbitration from beginning to end from clause drafting/treaty jurisdiction, to arbitrator selection, to emergency proceedings, through the written and hearing phases, to award and enforcement strategy. Emphasis will be on primary materials case law, statutes, institution rules, treaties, commentary, and \u201csoft law\u201d guidelines. Using complex factual scenarios, students will take part in strategy, drafting and advocacy exercises. On the commercial arbitration side, the focus will be on the ICC Court and SIAC; on the treaty side, ICSID and the PCA/UNCITRAL. Ethics issues will be front burner.", + "title": "Advanced Practicum in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4338V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course considers the way that international adjudicators approach fact-finding and factual determinations. The course analyses essential policy questions as to the way legal systems should deal with evidence; considers comparative law perspectives; and aims to integrate these perspectives with practical consideration of the way documents and witnesses are dealt with in international arbitration. There is no greater divergence between legal families than that pertaining to the treatment of evidence. For international adjudication to meet the needs of participants from all legal families, a proper understanding of comparative approaches and the degree of convergence, is essential to arbitrators and practitioners.", + "title": "Comparative Evidence in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4339", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "One of the most pressing current issues of international concern is the highest ever level of global displacement, with over twenty million refugees in the world. This course examines the international legal regime for the protection of refugees. With the 1951 Refugee Convention as its \u201cbackbone\u201d, the course focuses on the \u201crefugee\u201d definition, the exclusion and withdrawal of refugee status, status determination procedures, the rights of recognised refugees and asylum-seekers, the non-refoulement principle, complementary protection, States\u2019 responsibility-sharing, responsibility-shifting and deterrence of asylum-seekers, the status of Palestinian refugees, UNHCR\u2019s supervisory responsibility, and regional protection systems (particularly the Common European Asylum System).", + "title": "International Refugee Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4340", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the most pressing current issues of international concern is the highest ever level of global displacement, with over twenty million refugees in the world. This course examines the international legal regime for the protection of refugees. With the 1951 Refugee Convention as its \u201cbackbone\u201d, the course focuses on the \u201crefugee\u201d definition, the exclusion and withdrawal of refugee status, status determination procedures, the rights of recognised refugees and asylum-seekers, the non-refoulement principle, complementary protection, States\u2019 responsibility-sharing, responsibility-shifting and deterrence of asylum-seekers, the status of Palestinian refugees, UNHCR\u2019s supervisory responsibility, and regional protection systems (particularly the Common European Asylum System).", + "title": "International Refugee Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4340V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines the relationship between law and politics in the international protection of the forcibly displaced, focusing on five groups of migrants, namely, refugees and asylum-seekers, stateless persons, internally displaced persons, victims of trafficking, and climate-change and environmentally displaced persons. After assessing the protection gaps relating to these five groups, this course considers the more complex phenomena of mass influx and \u201cmixed migration,\u201d immigration detention (specifically of particularly vulnerable migrants), and durable solutions. The roles of regional and institutional organisations will also be studied. An assessed negotiation relating to a present-day forced migration crisis concludes the course.", + "title": "The Law and Politics of Forced Migration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4341", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines the relationship between law and politics in the international protection of the forcibly displaced, focusing on five groups of migrants, namely, refugees and asylum-seekers, stateless persons, internally displaced persons, victims of trafficking, and climate-change and environmentally displaced persons. After assessing the protection gaps relating to these five groups, this course considers the more complex phenomena of mass influx and \u201cmixed migration,\u201d immigration detention (specifically of particularly vulnerable migrants), and durable solutions. The roles of regional and institutional organisations will also be studied. An assessed negotiation relating to a present-day forced migration crisis concludes the course.", + "title": "The Law and Politics of Forced Migration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4341V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will be useful for those who want to practise corporate or tax law.\n\nTopics covered:\n- the Singapore corporate tax, GST and stamp duty implications of (a) related party transactions; (b) restructurings and; (c) M&As\n- structuring techniques to increase tax efficiency in each of these situations\n- selected US corporate tax and Australian GST rules (since the tax consequences of a foreign country will have to be analysed)\n- how structuring strategies may be challenged with rules/proposed rules addressing treaty shopping, debt-equity and entity classification hybridity, and arbitrage opportunities involving the GST treatment of cross-border transations.", + "title": "Taxation of Cross-Border Commercial Transactions I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4342", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will be useful for those who want to practise corporate or tax law.\n\nTopics covered:\n- the Singapore corporate tax, GST and stamp duty implications of (a) related party transactions; (b) restructurings and; (c) M&As\n- structuring techniques to increase tax efficiency in each of these situations\n- selected US corporate tax and Australian GST rules (since the tax consequences of a foreign country will have to be analysed)\n- how structuring strategies may be challenged with rules/proposed rules addressing treaty shopping, debt-equity and entity classification hybridity, and arbitrage opportunities involving the GST treatment of cross-border transations.", + "title": "Taxation of Cross-Border Commercial Transactions I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4342V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The global commons comprises the high seas, the deep seabed, outer space, the airspace above the exclusive economic zone and the high seas, as well as Antarctica, an ice-covered continent, and the Arctic, an ice-covered ocean. Each of these areas are governed by international treaty regimes that were developed specifically for that area. This course will examine and compare the international regimes governing activities in the global commons. It will also examine the evolving law on the obligation of States to ensure that activities within their jurisdiction or control do not cause harm to the environment of the global commons.", + "title": "International Regulation of the Global Commons", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4343", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The global commons comprises the high seas, the deep seabed, outer space, the airspace above the exclusive economic zone and the high seas, as well as Antarctica, an ice-covered continent, and the Arctic, an ice-covered ocean. Each of these areas are governed by international treaty regimes that were developed specifically for that area. This course will examine and compare the international regimes governing activities in the global commons. It will also examine the evolving law on the obligation of States to ensure that activities within their jurisdiction or control do not cause harm to the environment of the global commons.", + "title": "International Regulation of the Global Commons", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4343V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A detailed study of the public and private international law of copyright law focusing on legal responses to cross-border issues and conflicts among private parties and nation states. Topics to be covered include: ASEAN IP relations, connecting factors in private litigation, the major international copyright treaties, major themes in EU copyright jurisprudence, exhaustion of rights, exceptions and limitations, indigenous IP.", + "title": "Public and Private International Copyright Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4344", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A detailed study of the public and private international law of copyright law focusing on legal responses to cross-border issues and conflicts among private parties and nation states. Topics to be covered include: ASEAN IP relations, connecting factors in private litigation, the major international copyright treaties, major themes in EU copyright jurisprudence, exhaustion of rights, exceptions and limitations, indigenous IP.", + "title": "Public and Private International Copyright Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4344V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is it to lead a fulfilled life? This was the central question\nfor ancient philosophers, in both the east and the west, for\nwhom philosophy was not only theory. It was a method\ndesigned to achieve both rigorous conceptual analysis and\na fulfilled human life. In this course we will explore several\nof the methods philosophers have proposed for leading a\nfulfilled life and consider some of the rich suggestions or\nimplications of these methods for leading a fulfilled life of the\nlaw, the life led by law students, lawyers, judges, and others\ninterested in administering, shaping, or living according to\nlaw.", + "title": "The Fulfilled Life and the Life of the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4345", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is it to lead a fulfilled life? This was the central question\nfor ancient philosophers, in both the east and the west, for\nwhom philosophy was not only theory. It was a method\ndesigned to achieve both rigorous conceptual analysis and\na fulfilled human life. In this course we will explore several\nof the methods philosophers have proposed for leading a\nfulfilled life and consider some of the rich suggestions or\nimplications of these methods for leading a fulfilled life of the\nlaw, the life led by law students, lawyers, judges, and others\ninterested in administering, shaping, or living according to\nlaw.", + "title": "The Fulfilled Life and the Life of the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4345V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on provisional and interim\nmeasures in the context of international commercial\narbitration, including emergency arbitrator (EA)\nproceedings. The course will address topics such as the\nnature and scope of provisional and interim relief, the\nauthority of arbitral tribunals (and limitations thereon) to\norder such relief, the concurrent jurisdiction of courts,\nchoice of law issues and the standards for granting interim\nmeasures, issues arising with respect to various categories\nof provisional relief, and judicial enforcement of interim\nmeasures ordered by arbitral tribunals.", + "title": "Interim Measures in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4346", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on provisional and interim\nmeasures in the context of international commercial\narbitration, including emergency arbitrator (EA)\nproceedings. The course will address topics such as the\nnature and scope of provisional and interim relief, the\nauthority of arbitral tribunals (and limitations thereon) to\norder such relief, the concurrent jurisdiction of courts,\nchoice of law issues and the standards for granting interim\nmeasures, issues arising with respect to various categories\nof provisional relief, and judicial enforcement of interim\nmeasures ordered by arbitral tribunals.", + "title": "Interim Measures in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4346V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores international and domestic legal issues and disputes pertaining to the creation, ownership, use, and preservation of works of art and objects of cultural heritage. Cultural objects exist within the larger realm of goods and services moving throughout the marketplace. This course addresses the specialized laws and legal interpretations pertaining to the rights and obligations of individuals, entities, and governments as they discover and interact with these objects, within their own jurisdictions and across national borders, in times of war and peace.", + "title": "Art & Cultural Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4347", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores international and domestic legal issues and disputes pertaining to the creation, ownership, use, and preservation of works of art and objects of cultural heritage. Cultural objects exist within the larger realm of goods and services moving throughout the marketplace. This course addresses the specialized laws and legal interpretations pertaining to the rights and obligations of individuals, entities, and governments as they discover and interact with these objects, within their own jurisdictions and across national borders, in times of war and peace.", + "title": "Art & Cultural Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4347V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Money is an all-pervasive legal concept, and an integral part of public dealings by the state and most private transactions. The module aims to develop a distinctive understanding of the legal institution of money, seen as a subject in itself, from private law and public law perspectives. Although the course may be of interest to those with a background in financial or banking regulation, it deliberately avoids considering the subject of money from those perspectives. It is primarily concerned with the common law of money, as it would apply in Singapore. It does however draw on the comparative perspectives from mixed and civil law jurisdictions, and from legal history. Together these demonstrate the broad functional commonalities that any legal system must develop if is construct a legal notion of money and main purposes its serves in the economy.\n\nThe module explains the role of law in the creation of money and in the ordering of a monetary system. It explains how law has a role to play in recognising and enforcing concepts of monetary value in private transactions. It considers the distinctive ways that property law applies to money, including the role of property law in controlling the consequences of failed or wrongly-procured payment transactions. The module considers the capacity of private law to respond to the special problems of monetary transactions involving a foreign currency system, and the legal challenges posed by new monetary developments such as cyber-currencies.", + "title": "Monetary Law in Comparative Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4348", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Money is an all-pervasive legal concept, and an integral part of public dealings by the state and most private transactions. The module aims to develop a distinctive understanding of the legal institution of money, seen as a subject in itself, from private law and public law perspectives. Although the course may be of interest to those with a background in financial or banking regulation, it deliberately avoids considering the subject of money from those perspectives. It is primarily concerned with the common law of money, as it would apply in Singapore. It does however draw on the comparative perspectives from mixed and civil law jurisdictions, and from legal history. Together these demonstrate the broad functional commonalities that any legal system must develop if is construct a legal notion of money and main purposes its serves in the economy.\n\nThe module explains the role of law in the creation of money and in the ordering of a monetary system. It explains how law has a role to play in recognising and enforcing concepts of monetary value in private transactions. It considers the distinctive ways that property law applies to money, including the role of property law in controlling the consequences of failed or wrongly-procured payment transactions. The module considers the capacity of private law to respond to the special problems of monetary transactions involving a foreign currency system, and the legal challenges posed by new monetary developments such as cyber-currencies.", + "title": "Monetary Law in Comparative Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4348V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces international arbitration\u2019s role in resolving energy disputes. Seminars will address both commercial and investment arbitration.The substantive content of national and international energy laws will be discussed together with the procedural specificities of energy disputes. The course will explore the political aspects of energy disputes, both domestic (resource sovereignty) and international (inter-state boundary disputes).\n\nParticipants will study the recent debates on the role of international arbitration vis-\u00e0-vis climate change and sustainable development.\n\nThe course incorporates practical exercises that will help participants interested in a career in international arbitration and public international law.", + "title": "Energy Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4349", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces international arbitration\u2019s role in resolving energy disputes. Seminars will address both commercial and investment arbitration.The substantive content of national and international energy laws will be discussed together with the procedural specificities of energy disputes. The course will explore the political aspects of energy disputes, both domestic (resource sovereignty) and international (inter-state boundary disputes).\n\nParticipants will study the recent debates on the role of international arbitration vis-\u00e0-vis climate change and sustainable development.\n\nThe course incorporates practical exercises that will help participants interested in a career in international arbitration and public international law.", + "title": "Energy Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4349V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the law on privacy and data protection. It examines the various legal mechanisms by which privacy and personal data are protected. While the focus will be Singapore law, students will also be introduced to the laws of other jurisdictions such as the United States, the European Union, and the United Kingdom.", + "title": "Privacy & Data Protection Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4350", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the law on privacy and data protection. It examines the various legal mechanisms by which privacy and personal data are protected. While the focus will be Singapore law, students will also be introduced to the laws of other jurisdictions such as the United States, the European Union, and the United Kingdom.", + "title": "Privacy & Data Protection Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4350V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines principal corporate law issues from a comparative perspective. As for jurisdictions, it primarily focuses on Japan and Korea in comparison with US and UK. This module is composed of 18 units, two units for each of the nine class dates. Beginning with the peculiar ownership structure of Japan and Korea and the nature of their agency problems, the module explores various legal strategies employed to address these challenges. The topics to be covered include: shareholder power, corporate organizational structure, independent directors, fiduciary duties, shareholder lawsuits, hostile takeovers, and creditor protection.", + "title": "Comparative Corporate Law in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4351", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines principal corporate law issues from a comparative perspective. As for jurisdictions, it primarily focuses on Japan and Korea in comparison with US and UK. This module is composed of 18 units, two units for each of the nine class dates. Beginning with the peculiar ownership structure of Japan and Korea and the nature of their agency problems, the module explores various legal strategies employed to address these challenges. The topics to be covered include: shareholder power, corporate organizational structure, independent directors, fiduciary duties, shareholder lawsuits, hostile takeovers, and creditor protection.", + "title": "Comparative Corporate Law in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4351V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a broad introduction to international economic law related to China, including detailed study of a few core areas and the provision of guidance for students to pursue research on a topic of their choice.\nMajor topics to be covered include: (i) trade in goods; (ii) trade in services; (iii) trade in intellectual property; (iv) investment; (v) dispute settlement; and (vi) the future of China and international economic law.", + "title": "China and International Economic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4352", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a broad introduction to international economic law related to China, including detailed study of a few core areas and the provision of guidance for students to pursue research on a topic of their choice.\nMajor topics to be covered include: (i) trade in goods; (ii) trade in services; (iii) trade in intellectual property; (iv) investment; (v) dispute settlement; and (vi) the future of China and international economic law.", + "title": "China and International Economic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4352V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The law relating to evidence of character has been changing throughout the common law world over the last fifty years. This course will, by reference several common law jurisdictions, including Singapore in particular, cover, most pressingly, how the law deals with evidence of the accused\u2019s bad character. It will also deal with bad character of witnesses in criminal cases, and, in particular, complainants in sexual cases, as well as that of witnesses and others in civil cases. A third element concerns the good character of the accused, of witnesses in criminal cases, and of parties and others in civil cases.", + "title": "Character Evidence in the Common Law World", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4353", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The law relating to evidence of character has been changing throughout the common law world over the last fifty years. This course will, by reference several common law jurisdictions, including Singapore in particular, cover, most pressingly, how the law deals with evidence of the accused\u2019s bad character. It will also deal with bad character of witnesses in criminal cases, and, in particular, complainants in sexual cases, as well as that of witnesses and others in civil cases. A third element concerns the good character of the accused, of witnesses in criminal cases, and of parties and others in civil cases.", + "title": "Character Evidence in the Common Law World", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4353V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Human rights adjudication has expanded in many jurisdictions across the world in the past few decades. Yet there is still scepticism about the role of courts in human rights adjudication. This subject will provide students with the opportunity to reflect critically on the role of courts in human rights adjudication by introducing them to the different approaches to the adjudication of human rights in a range of jurisdictions including South Africa, Canada, Germany, the US, Israel, Australia, India, Singapore and the EU. Several key human rights issues that have arisen in different jurisdictions will be analysed and compared.", + "title": "Comparative Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4354", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Human rights adjudication has expanded in many jurisdictions across the world in the past few decades. Yet there is still scepticism about the role of courts in human rights adjudication. This subject will provide students with the opportunity to reflect critically on the role of courts in human rights adjudication by introducing them to the different approaches to the adjudication of human rights in a range of jurisdictions including South Africa, Canada, Germany, the US, Israel, Australia, India, Singapore and the EU. Several key human rights issues that have arisen in different jurisdictions will be analysed and compared.", + "title": "Comparative Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4354V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept of development has been crucial to structuring international legal relations for the last 70 years. In the political and economic domains, most international institutions engage with the development project in some form. This subject offers a conceptual and intellectual grounding to examine development as an idea and set of practices in dynamic relation with national and international law. The history of development in relation to imperialism, decolonisation, the Cold War and globalisation means that these relations are complex. Understanding them is crucial to understanding the place of international law, and the work development does in the world today.", + "title": "International Law and Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4355", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept of development has been crucial to structuring international legal relations for the last 70 years. In the political and economic domains, most international institutions engage with the development project in some form. This subject offers a conceptual and intellectual grounding to examine development as an idea and set of practices in dynamic relation with national and international law. The history of development in relation to imperialism, decolonisation, the Cold War and globalisation means that these relations are complex. Understanding them is crucial to understanding the place of international law, and the work development does in the world today.", + "title": "International Law and Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4355V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic offers a unique opportunity for students to apply theory to practice in the field of international economic law. Students work in small teams and under the close supervision of professors and invited experts on specific, real-world legal questions of international economic law coming from \"real clients\" such as governments, international organizations, or NGOs. At the end of the semester, the Project Teams submit written legal memos and orally present their projects. They also publish their projects. The clinic is part of \"TradeLab,\" a global network of international economic law clinics at leading law schools around the world.", + "title": "International Economic Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4356", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic offers a unique opportunity for students to apply theory to practice in the field of international economic law. Students work in small teams and under the close supervision of professors and invited experts on specific, real-world legal questions of international economic law coming from \"real clients\" such as governments, international organizations, or NGOs. At the end of the semester, the Project Teams submit written legal memos and orally present their projects. They also publish their projects. The clinic is part of \"TradeLab,\" a global network of international economic law clinics at leading law schools around the world.", + "title": "International Economic Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4356V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introduction to the main debates and issues in the field of regulation covering current debates about what regulation is, and the different institutions and instruments used to regulate our lives. It looks at (i) central concepts used by regulators, e.g. risk, cost-benefit analysis, regulatory impact assessment; (ii) when different strategies should be adopted in regulating a sector; (iii) three central fields where regulation is used \u2013 competition, network industries, cyberspace. This course involves examples from jurisdictions across the world (especially Australasia, Europe and North America) with their insights having particular relevance for law and regulation in Singapore.", + "title": "Regulation & Political Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4357", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introduction to the main debates and issues in the field of regulation covering current debates about what regulation is, and the different institutions and instruments used to regulate our lives. It looks at (i) central concepts used by regulators, e.g. risk, cost-benefit analysis, regulatory impact assessment; (ii) when different strategies should be adopted in regulating a sector; (iii) three central fields where regulation is used \u2013 competition, network industries, cyberspace. This course involves examples from jurisdictions across the world (especially Australasia, Europe and North America) with their insights having particular relevance for law and regulation in Singapore.", + "title": "Regulation & Political Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4357V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The International Chamber of Commerce and its\nInternational Court of Arbitration have played a leading role\nin the establishment and the development of the\ninternational normative framework that makes arbitration so\nattractive today. This course highlights the historical and\ncontemporary contributions of ICC to this normative\nframework, and covers the key issues with which\npractitioners are faced at the main junctures of ICC\narbitration proceedings, from both a practical and a legal\nperspective. The course features in-class practical\nexercises that draw on course resources and enable\nstudents to face a variety of possible real-life scenarios.", + "title": "ICC Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL4358Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Arbitral institutions are important stakeholders in the field\nof international arbitration, but the nature and importance\nof their role have often been overlooked. The course seeks\nto introduce participants to the role and function of arbitral\ninstitutions in the practice of international arbitration, and to\nthe complex issues that arbitral institutions face in the\nadministration of arbitrations, appointment of arbitrators,\nissuing arbitral rules and practice notes and in guiding and\nshaping the development of international arbitration. The\ncourse will be taught by visiting lecturers from the Board,\nCourt of Arbitration and Secretariat of the Singapore\nInternational Arbitration Centre (SIAC).", + "title": "SIAC and Institutional Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL4359Z", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-22" + }, + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-23", + "end": "2022-09-23" + }, + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the current challenges faced by investment arbitration at the global level. It will adopt a three-step approach.\nStudents will first acquire an in-depth understanding of the history and functioning of the existing system. On this basis, the different criticisms and reform proposals will be scrutinized. Finally, students will be invited to make their own informed assessment of the existing system, to discuss its evolution and debate possible improvements.\nThe module will be diversified, as it will address both legal and extra-legal issues. Seminars will be interactive and students will be encouraged to participate actively.", + "title": "Current Challenges to Investment Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL4360Z", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-24", + "end": "2023-02-24" + }, + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-23", + "end": "2023-02-23" + }, + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-25", + "end": "2023-02-25" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "1. Who are the parties to the contract(s) or to the arbitration clause(s) contained therein? The theories applied by courts and arbitral tribunals\n2. The extension of the arbitration clause to non-signatories\n3. The possibility of bringing together in one single proceeding all the parties who have participated in the performance of one economic transaction through interrelated contracts\n4. Joinder and consolidation\n5. Appointment of arbitrators in multiparty arbitration cases\n6. The enforcement of an award in multiparty, multicontract cases\n7. The res judicata effect of an award rendered in a connected arbitration arising from the same project", + "title": "Complex Arbitrations: Multiparty \u2013 Multicontract", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL4361Z", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1500", + "weeks": { + "start": "2023-02-21", + "end": "2023-02-21" + }, + "venue": "LAW_SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6 + ], + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Forensic science can play a large part in criminal litigation, from DNA and fingerprint evidence to the detection of forgery. Forensic scientists can play a significant role by presenting evidence in a trial, and effective trial lawyers should be equipped with the skills and knowledge to manage, present, and challenge forensic evidence. This interdisciplinary module brings law and science undergraduates together to equip them with key communication and analytical skills to present forensic evidence in Court in the most effective way. Key topics covered include advance trial techniques, the law of evidence, and aspects of forensic science.", + "title": "Advanced Criminal Litigation - Forensics on Trial", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4362V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Our courts have to determine the appropriate\npunishment/sentence for every offender who has been\nfound guilty. Thus, sentencing law and practice is an area\nof law that affects the lives of every offender who goes\nthrough our criminal justice process. But what are the\nnumerous considerations going into the calculus of what is\nthe most appropriate punishment for an offender? This\ncourse will cover, among other things, the theoretical and\nempirical perspectives of punishment, sentencing options,\nsentencing methodology, and key aggravating and\nmitigating factors. We will also cover other important\nsentencing issues such as consecutive vs concurrent\nsentence, and parity.", + "title": "Sentencing Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4363", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Our courts have to determine the appropriate\npunishment/sentence for every offender who has been\nfound guilty. Thus, sentencing law and practice is an area\nof law that affects the lives of every offender who goes\nthrough our criminal justice process. But what are the\nnumerous considerations going into the calculus of what is\nthe most appropriate punishment for an offender? This\ncourse will cover, among other things, the theoretical and\nempirical perspectives of punishment, sentencing options,\nsentencing methodology, and key aggravating and\nmitigating factors. We will also cover other important\nsentencing issues such as consecutive vs concurrent\nsentence, and parity.", + "title": "Sentencing Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4363V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces important concepts and principles of private law in civil law jurisdictions to students trained in the common law. The focus is on concepts and principles in which the differences between the civil and common law systems are particularly striking. Examples are the core emphasis on obligations, the lack of a strict or any consideration requirement in contract law, the focus on absolute rights in delictual liability, the concept of negotiorum gestio and the design of property law as positive absolute rights. The different concepts of legislation and jurisprudence also form part of the module.", + "title": "Principles of Civil Law: Law of Obligations & Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4364", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces important concepts and principles of private law in civil law jurisdictions to students trained in the common law. The focus is on concepts and principles in which the differences between the civil and common law systems are particularly striking. Examples are the core emphasis on obligations, the lack of a strict or any consideration requirement in contract law, the focus on absolute rights in delictual liability, the concept of negotiorum gestio and the design of property law as positive absolute rights. The different concepts of legislation and jurisprudence also form part of the module.", + "title": "Principles of Civil Law: Law of Obligations & Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4364V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a structured programme for students\nwho wish to understand and acquire skills relevant to the\npractice of public international law in a government\nsetting.\n\nThe module is organised around three key milestones:\nfirst, four \u201ccrash course\u201d lecture-style teaching hours\ngrouped at the beginning of the semester to equip\nstudents with foundational legal concepts concerning\nUnited Nations law-making, including the International\nLaw Commission; second, a mid-semester oral\npresentation with practitioners; and third, preparations in\nSingapore for the annual fall sessions of the Sixth\nCommittee of the UN General Assembly.", + "title": "Singapore at the UN - A Clinical Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4367", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a structured programme for students\nwho wish to understand and acquire skills relevant to the\npractice of public international law in a government\nsetting.\n\nThe module is organised around three key milestones:\nfirst, four \u201ccrash course\u201d lecture-style teaching hours\ngrouped at the beginning of the semester to equip\nstudents with foundational legal concepts concerning\nUnited Nations law-making, including the International\nLaw Commission; second, a mid-semester oral\npresentation with practitioners; and third, preparations in\nSingapore for the annual fall sessions of the Sixth\nCommittee of the UN General Assembly.", + "title": "Singapore at the UN - A Clinical Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4367V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Comparative constitutional law has emerged as one of the\nmost vibrant areas in contemporary public law. The\ncourse explores the principal challenges for the theory and\npractice of constitutionalism across time and place,\ngenerally and in particular under the globalizing conditions\nof the early 21st century. It combines the legal study of\nconstitutional texts and constitutional jurisprudence from a\nwide range of countries and constitutional systems\nworldwide with exploration of pertinent social science\nresearch concerning the global expansion of\nconstitutionalism and judicial review.", + "title": "Comparative Constitutionalism", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4368", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Comparative constitutional law has emerged as one of the\nmost vibrant areas in contemporary public law. The\ncourse explores the principal challenges for the theory and\npractice of constitutionalism across time and place,\ngenerally and in particular under the globalizing conditions\nof the early 21st century. It combines the legal study of\nconstitutional texts and constitutional jurisprudence from a\nwide range of countries and constitutional systems\nworldwide with exploration of pertinent social science\nresearch concerning the global expansion of\nconstitutionalism and judicial review.", + "title": "Comparative Constitutionalism", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4368V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to offer an up-to-date understanding of constitutionalism in Asia, covering a representative number of Asian jurisdictions including China, Hong Kong, India, Japan, Mongolia, Nepal, South Korea, Taiwan and the ten ASEAN states. The students are introduced to leading constitutional cases and selected materials in those jurisdictions and guided to critically examine constitutional jurisprudences developed in those Asian jurisdictions and compared them with \nwhat has been developed elsewhere, particularly in the West.", + "title": "Constitutionalism in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4369", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to offer an up-to-date understanding of constitutionalism in Asia, covering a representative number of Asian jurisdictions including China, Hong Kong, India, Japan, Mongolia, Nepal, South Korea, Taiwan and the ten ASEAN states. The students are introduced to leading constitutional cases and selected materials in those jurisdictions and guided to critically examine constitutional jurisprudences developed in those Asian jurisdictions and compared them with \nwhat has been developed elsewhere, particularly in the West.", + "title": "Constitutionalism in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4369V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the risks associated with protecting and managing the legal and corporate risks associated with the increasingly important and overlapping fields of cybersecurity, privacy and data compliance and offers both legal and practical solutions for regulating and managing such risks within an effective legal and compliance framework.", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4370", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the risks associated with protecting and managing the legal and corporate risks associated with the increasingly important and overlapping fields of cybersecurity, privacy and data compliance and offers both legal and practical solutions for regulating and managing such risks within an effective legal and compliance framework.", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4370V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will look in depth at the content of charity law, the consequences of charity status, and key questions raised by charity law and regulation, in contemporary settings across the world. Topics will include the profile and value of the charity sector; the \u2018heads\u2019 of charity; the public benefit requirement of charity law; charity law\u2019s treatment of political purposes; the sources of charity law;\nthe tax treatment of charities; charitable trusts and discrimination; and the regulation of charities. Singapore\u2019s charity law will be considered in global perspective. \nThis course will not consider the treatment of charity in Islamic law.", + "title": "Charity Law Today", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4371", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will look in depth at the content of charity law, the consequences of charity status, and key questions raised by charity law and regulation, in contemporary settings across the world. Topics will include the profile and value of the charity sector; the \u2018heads\u2019 of charity; the public benefit requirement of charity law; charity law\u2019s treatment of political purposes; the sources of charity law;\nthe tax treatment of charities; charitable trusts and discrimination; and the regulation of charities. Singapore\u2019s charity law will be considered in global perspective. \nThis course will not consider the treatment of charity in Islamic law.", + "title": "Charity Law Today", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4371V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the public and private international\nlaw issues concerned with the protection of intellectual\nproperty rights (IPRs) globally. It commences with an\noverview of the sources of public international IP law,\nincluding the principal treaties, their interpretation and\ndomestic implementation, and the general architecture of\nthe international IP system. Using selected case studies, it\nthen considers other international obligations that intersect\nwith IPRS, including trade and investment protection\nmeasures and human rights obligations. It concludes with\na survey of the private international law issues affecting the\nglobal exploitation of IPRs, particularly in the context of the\nInternet.", + "title": "International Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4372", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the public and private international\nlaw issues concerned with the protection of intellectual\nproperty rights (IPRs) globally. It commences with an\noverview of the sources of public international IP law,\nincluding the principal treaties, their interpretation and\ndomestic implementation, and the general architecture of\nthe international IP system. Using selected case studies, it\nthen considers other international obligations that intersect\nwith IPRS, including trade and investment protection\nmeasures and human rights obligations. It concludes with\na survey of the private international law issues affecting the\nglobal exploitation of IPRs, particularly in the context of the\nInternet.", + "title": "International Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4372V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced copyright will examine a number of the most recent controversies in copyright law, including challenges to the cable and broadcast TV business models, the copyright status of \"appropriation art\", the permissibility of mass digitization, the phenomenon of \"copyright trolls\", and the copyright implications of universities' electronic library reserve policies. Students must have completed a course in basic copyright law.", + "title": "Advanced Copyright", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4373", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced copyright will examine a number of the most recent controversies in copyright law, including challenges to the cable and broadcast TV business models, the copyright status of \"appropriation art\", the permissibility of mass digitization, the phenomenon of \"copyright trolls\", and the copyright implications of universities' electronic library reserve policies. Students must have completed a course in basic copyright law.", + "title": "Advanced Copyright", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4373V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We will examine water\u2019s importance to economic development and its special interest to lawyers. Water governance concerns both private as well as public\ninterests. Meanwhile, there is fundamental variation in how much is available and where. And because water flows, society must manage it across political boundaries. By drawing on the examples of a few key river basins, we will examine the reasons and processes by which water law has evolved as it has \u2013 and whether and how, given rising pressures and uncertainty, it may change.", + "title": "Water Rights & Resources: Issues in Law & Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4374", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We will examine water\u2019s importance to economic development and its special interest to lawyers. Water governance concerns both private as well as public\ninterests. Meanwhile, there is fundamental variation in how much is available and where. And because water flows, society must manage it across political boundaries. By drawing on the examples of a few key river basins, we will examine the reasons and processes by which water law has evolved as it has \u2013 and whether and how, given rising pressures and uncertainty, it may change.", + "title": "Water Rights & Resources: Issues in Law & Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4374V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to the major themes and\nissues in traditional Chinese legal thought. We will focus\non the close reading and analysis of selected works by\nvarious philosophers and various philosophical schools,\nincluding Confucius and later Confucian thinkers\n(including, but not limited to, Mencius, Xunzi, and Dong\nZhongshu), the Legalists, and the Daoists. Attention will\nalso be placed on understanding these thinkers and\nphilosophical schools in historical context and gaining an\nunderstanding of how law was applied in premodern\nChina. No prior knowledge of Chinese history or Chinese\nphilosophy is required. All required readings are in\nEnglish.", + "title": "Traditional Chinese Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4375", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to the major themes and\nissues in traditional Chinese legal thought. We will focus\non the close reading and analysis of selected works by\nvarious philosophers and various philosophical schools,\nincluding Confucius and later Confucian thinkers\n(including, but not limited to, Mencius, Xunzi, and Dong\nZhongshu), the Legalists, and the Daoists. Attention will\nalso be placed on understanding these thinkers and\nphilosophical schools in historical context and gaining an\nunderstanding of how law was applied in premodern\nChina. No prior knowledge of Chinese history or Chinese\nphilosophy is required. All required readings are in\nEnglish.", + "title": "Traditional Chinese Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4375V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the impact of regulation on the private law of banking and financial services. This would typically include how regulatory rules create private law duties in contract or tort.\n\nIt will be of interest to those interested in financial contracts, financial institutions and the regulation and supervision of financial markets and institutions including\nbanks. \n\nFinancial services constitute an important sector of the economy. Financial markets and institutions including banks are subject to a rapidly expanding field of public\nregulation. Its implementation and enforcement raise many underexplored challenges.", + "title": "Regulation & Private Law in Banking & Financial Service", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4376", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the impact of regulation on the private law of banking and financial services. This would typically include how regulatory rules create private law duties in contract or tort.\n\nIt will be of interest to those interested in financial contracts, financial institutions and the regulation and supervision of financial markets and institutions including\nbanks.\n\nFinancial services constitute an important sector of the economy. Financial markets and institutions including banks are subject to a rapidly expanding field of public\nregulation. Its implementation and enforcement raise many underexplored challenges.", + "title": "Regulation & Private Law in Banking & Financial Service", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4376V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law in Action: Legal Policymaking Externship offers students the opportunity to gain unique insights into Government policy making by working directly on various projects at the Ministry of Law.\n\nThe module provides a structured programme for students who wish to understand and acquire skills relevant to policy development in a Government setting. \n\nStudents will be involved in a wide spectrum of policy and legislative projects, such as civil and criminal procedure, arbitration law, intellectual property and legal industry development. Students will be part of a dynamic and challenging process of shaping policy goals to enhance the legal infrastructure in Singapore.", + "title": "Law in Action: Legal Policymaking Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4377", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law in Action: Legal Policymaking Externship offers students the opportunity to gain unique insights into Government policy making by working directly on various projects at the Ministry of Law.\n\nThe module provides a structured programme for students who wish to understand and acquire skills relevant to policy development in a Government setting.\n\nStudents will be involved in a wide spectrum of policy and legislative projects, such as civil and criminal procedure, arbitration law, intellectual property and legal industry development. Students will be part of a dynamic and challenging process of shaping policy goals to enhance the legal infrastructure in Singapore.", + "title": "Law in Action: Legal Policymaking Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4377V", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine recent developments and future directions in international commercial arbitration. Recent innovations such as emergency arbitrations, arb-med-arb protocols, expeditious dismissal of manifestly unmeritorious claims, consolidation and joinder, and expedited procedures will be examined from a comparative and analytical perspective with a focus on jurisdictions in the Asia-Pacific region. It will also attempt to identify future trends in international commercial arbitration, including the use of artificial intelligence, online dispute resolution, block chain technology and other procedural and technological innovations. It will utilize case studies to allow students to gain hands-on experience with arbitral rules, legislation and procedure.", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4379", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine recent developments and future directions in international commercial arbitration. Recent innovations such as emergency arbitrations, arb-med-arb protocols, expeditious dismissal of manifestly unmeritorious claims, consolidation and joinder, and expedited procedures will be examined from a comparative and analytical perspective with a focus on jurisdictions in the Asia-Pacific region. It will also attempt to identify future trends in international commercial arbitration, including the use of artificial intelligence, online dispute resolution, block chain technology and other procedural and technological innovations. It will utilize case studies to allow students to gain hands-on experience with arbitral rules, legislation and procedure.", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4379V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Heritage is a broad term that, for our purposes, encompasses things as diverse as architecture and cultural objects regarded as having historical importance, and intangible aspects of culture such as cuisine, the performing arts, and ritual practices. The course aims to provide an insight into how heritage can be protected and safeguarded for future generations by domestic common law and statutory rules on the one hand; and international law rules on the other. \n\nA prior knowledge of how public international law works is useful but not required for the course.", + "title": "Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4381", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Heritage is a broad term that, for our purposes, encompasses things as diverse as architecture and cultural objects regarded as having historical importance, and intangible aspects of culture such as cuisine, the performing arts, and ritual practices. The course aims to provide an insight into how heritage can be protected and safeguarded for future generations by domestic common law and statutory rules on the one hand; and international law rules on the other.\n\nA prior knowledge of how public international law works is useful but not required for the course.", + "title": "Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4381V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the internationalization of commercial and personal relationships and the increase of cross-border disputes in Singapore\u2019s courts, a working knowledge of private international law, or the conflict of laws, has become essential for legal practice in Singapore. This course offers students a comprehensive overview of the foundations of private international law, with a particular focus on Singapore law. It covers private international law\u2019s three main pillars - jurisdiction, choice of law and foreign judgments - and also touches on broader methodological issues, and questions of sovereignty, comity, and public policy, which undergird and define the boundaries of the field.", + "title": "Private International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4382", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the internationalization of commercial and personal relationships and the increase of cross-border disputes in Singapore\u2019s courts, a working knowledge of private international law, or the conflict of laws, has become essential for legal practice in Singapore. This course offers students a comprehensive overview of the foundations of private international law, with a particular focus on Singapore law. It covers private international law\u2019s three main pillars - jurisdiction, choice of law and foreign judgments - and also touches on broader methodological issues, and questions of sovereignty, comity, and public policy, which undergird and define the boundaries of the field.", + "title": "Private International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4382V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The New York Convention of 1958 on the Recognition and Enforcement of Foreign Arbitral Awards provides for the international enforcement of arbitral awards. Considered as the most successful international convention in international private law, the Convention now has 164 Contracting States and more than 2,500 court decisions interpreting and applying the Convention (as of June 2020). The course will analyze and compare the most important of those decisions. It will offer a unique insight in treaty design, statutory enactments, varying court approaches, and the practice of international arbitration. The course materials will be made available at www.newyorkconvention.org.", + "title": "International Arbitration & the New York Convention", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL4383Z", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-21" + }, + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2022-09-20", + "end": "2022-09-20" + }, + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-19" + }, + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 6 + ], + "venue": "LAW_ESR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide students with the opportunity to critically engage with some of the core notions they encounter when they study criminal law. The focus will be on a number of issues revolving around the concepts of harm and wrong, such as:\n- How should we understand the notion of wrongdoing?\n- Should the criminal law care about the distinction between intended and foreseen harm?\n- Can the wrongfulness of certain actions depend on the intentions of the agent?\n- What is the relationship between reasons for action and legal justifications?\n- What is wrong with blackmail?", + "title": "Harms and Wrongs", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4384", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide students with the opportunity to critically engage with some of the core notions they encounter when they study criminal law. The focus will be on a number of issues revolving around the concepts of harm and wrong, such as:\n- How should we understand the notion of wrongdoing?\n- Should the criminal law care about the distinction between intended and foreseen harm?\n- Can the wrongfulness of certain actions depend on the intentions of the agent?\n- What is the relationship between reasons for action and legal justifications?\n- What is wrong with blackmail?", + "title": "Harms and Wrongs", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4384V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s global digital world, national tax systems face new challenges. Governments large and small cooperate in tax enforcement including through strengthened anti-abuse rules, yet tax competition continues. Uncertainty,\ncomplexity and risk have increased for taxpayers ranging from individuals to multinational enterprises. Recent developments in the OECD Inclusive Framework and other forums may lead to significant new global tax rules, but an agreed outcome is far from certain. This course explores the latest trends and issues in personal and corporate income tax and Goods and Services Tax that address\ndigital or cross-border services or employment, consumption, and investment.", + "title": "Taxation Law & the Global Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4385", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s global digital world, national tax systems face new challenges. Governments large and small cooperate in tax enforcement including through strengthened anti-abuse rules, yet tax competition continues. Uncertainty,\ncomplexity and risk have increased for taxpayers ranging from individuals to multinational enterprises. Recent developments in the OECD Inclusive Framework and other forums may lead to significant new global tax rules, but an agreed outcome is far from certain. This course explores the latest trends and issues in personal and corporate income tax and Goods and Services Tax that address\ndigital or cross-border services or employment, consumption, and investment.", + "title": "Taxation Law & the Global Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4385V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines emerging trends to identify and analyse ways in which intellectual property laws are being used to commodify self. Through processes of intellectual propertisation, aspects of the human body, human persona, and human expression through art can be converted from \u2018unowned\u2019 to \u2018owned\u2019. Examining contemporary issues such as gene patents, fake news, authenticity and cultural appropriation, as well as emerging technologies such as transplanted and artificial body parts, cyborgs, mind downloads, blockchain and the Internet of Things, the course examines the mechanisms by which the expansion of intellectual property laws is enabling increasing commodification of humankind.", + "title": "Intellectual Property in Body, Persona & Art", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4386", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines emerging trends to identify and analyse ways in which intellectual property laws are being used to commodify self. Through processes of intellectual propertisation, aspects of the human body, human persona, and human expression through art can be converted from \u2018unowned\u2019 to \u2018owned\u2019. Examining contemporary issues such as gene patents, fake news, authenticity and cultural appropriation, as well as emerging technologies such as transplanted and artificial body parts, cyborgs, mind downloads, blockchain and the Internet of Things, the course examines the mechanisms by which the expansion of intellectual property laws is enabling increasing commodification of humankind.", + "title": "Intellectual Property in Body, Persona & Art", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4386V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will survey multiple legal fields that involve the regulation of what are generally referred to as \u201cdigital platforms,\u201d including Google, Facebook, and others. The primary legal fields of study will be competition (antitrust) law and liability for third-party content. Because these areas of law draw heavily from economic theory and research, the course will also survey some of the relevant economics literature as a means of better understanding the relevant markets.", + "title": "Regulation of Digital Platform", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4387", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will survey multiple legal fields that involve the regulation of what are generally referred to as \u201cdigital platforms,\u201d including Google, Facebook, and others. The primary legal fields of study will be competition (antitrust) law and liability for third-party content. Because these areas of law draw heavily from economic theory and research, the course will also survey some of the relevant economics literature as a means of better understanding the relevant markets.", + "title": "Regulation of Digital Platforms", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4387V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores Thai contract law which is a product of civil law traditions and a cornerstone of Thai private law. It covers major areas of contract law from the beginning to the end of a contract, i.e. contract formation, validity, interpretation, breach of contract, and ending and changing a contract. Course participants will be encouraged to make comparisons between Thai and Singapore contract laws on\ncertain issues.", + "title": "Comparative Civil Law: Thai Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4388", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores Thai contract law which is a product of civil law traditions and a cornerstone of Thai private law. It covers major areas of contract law from the beginning to the end of a contract, i.e. contract formation, validity, interpretation, breach of contract, and ending and changing a contract. Course participants will be encouraged to make comparisons between Thai and Singapore contract laws on\ncertain issues.", + "title": "Comparative Civil Law: Thai Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4388V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines so-called \u2018quasi-security\u2019 devices: legal structures that perform the function of personal property security, whilst not being \u2018true\u2019 security in the legal sense. These devices entail the retention of title or absolute\ntransfer of title (rather than the grant of a security interest) and, like \u2018true\u2019 security, secure the performance of an obligation. Hence, consideration will be given to retention of title devices (ROT or \u2018Romapla\u2019 clauses) in the supply of goods to manufacturers or to retailers as stock-in-trade, conditional-sale, hire-purchase, finance-leasing. Absolute transfer of title devices exemplified by receivables financing (factoring, securitisation) will also be covered.", + "title": "Asset-Based Financing: Quasi-Security Devices", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4389", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines so-called \u2018quasi-security\u2019 devices: legal structures that perform the function of personal property security, whilst not being \u2018true\u2019 security in the legal sense. These devices entail the retention of title or absolute\ntransfer of title (rather than the grant of a security interest) and, like \u2018true\u2019 security, secure the performance of an obligation. Hence, consideration will be given to retention of title devices (ROT or \u2018Romapla\u2019 clauses) in the supply of goods to manufacturers or to retailers as stock-in-trade, conditional-sale, hire-purchase, finance-leasing. Absolute transfer of title devices exemplified by receivables financing (factoring, securitisation) will also be covered.", + "title": "Asset-Based Financing: Quasi-Security Devices", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4389V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corporate groups are pervasive in modern, international commerce. Frequently they are structured in order to avoid or minimise liability for wrongdoing and to protect group assets. In other cases, risky physical processes are contracted out to network participants. This course examines the structures and practices of corporate groups and networks, the problems of externalisation of liability, and legal mechanisms for extending liability among participant entities. Extended liability regimes considered span statute law and common law. Consideration is given also to several important suggestions for development of the law in this area.", + "title": "Liability of Corporate Groups and Networks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4393", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corporate groups are pervasive in modern, international commerce. Frequently they are structured in order to avoid or minimise liability for wrongdoing and to protect group assets. In other cases, risky physical processes are contracted out to network participants. This course examines the structures and practices of corporate groups and networks, the problems of externalisation of liability,\nand legal mechanisms for extending liability among participant entities. Extended liability regimes considered span statute law and common law. Consideration is given also to several important suggestions for development of the law in this area.", + "title": "Liability of Corporate Groups and Networks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4393V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In intellectual property law, overlaps of exclusive rights stemming from different protection regimes raise particular problems. Nonetheless, the cumulation of rights has become a standard protection strategy in sectors ranging from software to fashion and entertainment. Against this background, this module offers a detailed analysis of protection overlaps. Which combinations of rights are deemed permissible? Which specific problems arise from the cumulation of intellectual property rights? Using international, US and EU legislation and case law as\nreference points, these questions will be discussed. Moreover, the module will explore alternative avenues for better law and policy making.", + "title": "Protection Overlaps in Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4394", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In intellectual property law, overlaps of exclusive rights stemming from different protection regimes raise particular problems. Nonetheless, the cumulation of rights has become a standard protection strategy in sectors ranging from software to fashion and entertainment. Against this background, this module offers a detailed analysis of protection overlaps. Which combinations of rights are deemed permissible? Which specific problems arise from the cumulation of intellectual property rights? Using international, US and EU legislation and case law as reference points, these questions will be discussed. Moreover, the module will explore alternative avenues for better law and policy making.", + "title": "Protection Overlaps in Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4394V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using precedents and transactional documents generously supplied by various leading law firms and chambers, the module will examine in much greater depth various representative uses of trusts in the modern world, both to make family provision and in commerce. It will examine how these functions are realised by practising lawyers working within, ad developing, legal doctrine. Finally it will\nexplore the broad theoretical implications of this work.", + "title": "The Law & Practice of Modern Trust Structures", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4395", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using precedents and transactional documents generously supplied by various leading law firms and chambers, the module will examine in much greater depth various representative uses of trusts in the modern world, both to make family provision and in commerce. It will examine how these functions are realised by practising lawyers working within, ad developing, legal doctrine. Finally it will\nexplore the broad theoretical implications of this work.", + "title": "The Law & Practice of Modern Trust Structures", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4395V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with the opportunity to do a substantial research paper under the direct supervision of a member of the academic staff. The topic for directed research must not have been studied in another course. Students may not do a research paper on a topic if they have previously done a research assignment on that topic for another course. Students interested in doing Directed Research are advised to seek the provisional approval of their proposed supervisor before opting for the subject. Copies of the Directed Research Guidelines are available from the Dean's office or on the Faculty Home Page http://law.nus.edu.sg/ug/dr/index.htm", + "title": "University Research Opportunities Program", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4396", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with the opportunity to do a substantial research paper under the direct supervision of a member of the academic staff. The topic for directed research must not have been studied in another course. Students may not do a research paper on a topic if they have previously done a research assignment on that topic for another course. Students interested in doing Directed Research are advised to seek the provisional approval of their proposed supervisor before opting for the subject. Copies of the Directed Research Guidelines are available from the Dean's office or on the Faculty Home Page http://law.nus.edu.sg/ug/dr/index.htm", + "title": "University Research Opportunities Program", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4397", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with the opportunity to do a substantial research paper under the direct supervision of a member of the academic staff. The topic for directed research must not have been studied in another course. Students may not do a research paper on a topic if they have previously done a research assignment on that topic for another course. Students interested in doing Directed Research are advised to seek the provisional approval of their proposed supervisor before opting for the subject. Copies of the Directed Research Guidelines are available from the Dean's office or on the Faculty Home Page http://law.nus.edu.sg/ug/dr/index.htm", + "title": "University Research Opportunities Program", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4398", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with the opportunity to do a substantial research paper under the direct supervision of a member of the academic staff. The topic for directed research must not have been studied in another course. Students may not do a research paper on a topic if they have previously done a research assignment on that topic for another course. Students interested in doing Directed Research are advised to seek the provisional approval of their proposed supervisor before opting for the subject. Copies of the Directed Research Guidelines are available from the Dean's office or on the Faculty Home Page http://law.nus.edu.sg/ug/dr/index.htm", + "title": "University Research Opportunities Program", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4399", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This courses examines the law governing the professional practice of health-care professionals and biomedical researchers, their legal and ethical obligations, and issues like medical negligence, consent, confidentiality, living wills, euthanasia and the statutory regulation of medical practice. It also surveys legal and ethical issues in human organ transplantation and reproductive medicine, property in the human body, and the new genetic and genomic sciences (including human embryonic stem cell research, cloning, tissue banking, genetic testing, screening and therapy, biomedical human research and experimentation, etc). Finally, social and ethical issues in the allocation of health resources and national health policy are considered.", + "title": "Biomedical Law & Ethics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4400", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Insolvency law is relevant to virtually all aspects of commercial activity involving the provision of credit. This course will explore its key concepts in the context of a winding up u the moratorium, powers of recovery, the pari passu principle, the external manager, avoidance of transactions, proof of debts and set-off. We will then review receivership, judicial management and schemes of arrangement as alternative procedures to the liquidation of a company in a winding up. We conclude with a brief examination of informal debt restructurings. This course will be taught principally through seminars for which prior preparation and participation are required.", + "title": "Corporate Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4402", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course covers the non-Muslim family law in Singapore including the areas of the formation and termination of marriage, legal regulation of the husband-wife and the parent-child relationships and legal regulation of the economic aspects of family life. It also introduces students to the relationship between this law and the Muslim family law in Singapore as well as the issues that arise from contacts with foreign marriage laws. The course is aimed at senior law students. Teaching is through discussion of assigned reading materials over two seminars each week. Students must make substantial preparation before classes.", + "title": "Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will first be provided with an overview of what the various intellectual\nproperty (IP) rights in Singapore are. Thereafter, this module will launch into the specifics of the main IP rights including copyright, patents and trade marks. For each of these IP rights, selected issues relating to their subsistence (how does it arise; is registration needed; what are the registration criteria) and infringement (what exclusive rights the IP owner has; what defences are available) will be examined very closely. Students will also be encouraged to explore the inter-relationship between these IP rights on specific issues.", + "title": "Law of Intellectual Property (a)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4405A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will first be provided with an overview of what the various intellectual\nproperty (IP) rights in Singapore are. Thereafter, this module will launch into the specifics of the main IP rights including copyright, patents and trade marks. For each of these IP rights, selected issues relating to their subsistence (how does it arise; is registration needed; what are the registration criteria) and infringement (what exclusive rights the IP owner has; what defences are available) will be examined very closely. Students will also be encouraged to explore the inter-relationship between these IP rights on specific issues.", + "title": "Law of Intellectual Property (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4405B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course deals with the principles and doctrines underpinning the formation and validity of insurance policies. It seeks to help students appreciate concepts of risk management, the protection of commercial businesses assets and the protection of individual lives against unforeseen contingencies and losses that may arise. Topics include the nature of general insurance contracts, formation of insurance contracts, peculiar insurance doctrines such as non disclosure, warranties and subrogation, claims procedure, doctrine of indemnity and measuring your losses, and third party rights. The techniques of successfully claiming under the policy and resisting the insurer's wrongful denial of claims will be covered.", + "title": "Law Of Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4407", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4409", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Personal property law cuts across many legal fields, including equity and trusts, and the law of sales, agency, company, insolvency and bankruptcy, insurance, banking, economic torts and crimes. The course covers the following broad areas: (i) defining the interests in personal property; (ii) creation and acquisition of interests in tangible property by consent, including the sale of goods and documentary sales; (iii) creation and acquisition of interests in tangible property by \noperation of law; (iv) intangible property & security interests; (v) persistence of interests in personal property; and (iv) protection of interests in personal property.", + "title": "Personal Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide an overview of securities regulation, corporate governance and mergers and acquisitions, in Singapore and, where relevant, jurisdictions such as the US, UK, Australia, China and HK. Topics to be covered generally include: regulatory authorities and capital markets; supervision of intermediaries; the \"going public\" process; legal position of stockbrokers; insider trading and securities frauds; globalisation, technology and regulatory harmonisation; and regulation of takeover activity. In addition, aspects of syndicated loan and bond financing, and securitisation, will be studied in some detail. Students will be expected to use the Internet to search for comparative materials. Advisory Note for students from Civil Law Jurisdiction: Not appropriate for civil law students.", + "title": "Securities and Capital Markets Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4412", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course is about the law governing the processes by which substantive rights are effectuated during civil litigation in Singapore. The emphasis will be on how Rules of Court operate in areas of dispute resolution including the interlocutory stages from filing of an action to the trial, post-judgment matters and the role of amicable settlement in the adversarial culture. The inter-relationship between procedure, evidence and ethics will be analysed. Students will have an understanding of the principles of procedure to consider the efficacy and viability of the governing law in light of fairness, efficiency and justice, and to propose reforms.", + "title": "Civil Justice and Procedure", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL4413", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the tensions in choice-of-law decision-making in selected areas or sub-fields spanning human rights violations, foreign sovereign debts, environmental liability, currency swaps, international trusts, multiple-listed corporations, and time permitting, economic torts and internet defamation and/or employment and human capital development. In each specific area, it asks whether a choice-of-law theory can shed light on the tensions which the choice-of-law rule seeks to balance and whether another can lead to development of a better or more coherent rule.", + "title": "Choice of Law: Practice and Theories", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4431", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the tensions in choice-of-law decision-making in selected areas or sub-fields spanning human rights violations, foreign sovereign debts, environmental liability, currency swaps, international trusts, multiple-listed corporations, and time permitting, economic torts and internet defamation and/or employment and human capital development. In each specific area, it asks whether a choice-of-law theory can shed light on the tensions which the choice-of-law rule seeks to balance and whether another can lead to development of a better or more coherent rule.", + "title": "Choice of Law: Practice and Theories", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4431V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of international litigation has gained strong recognition as a composite of two branches of the conflict of laws, namely jurisdiction and recognition and enforcement of judgment. This conceptualisation brings into its embrace evolving themes of comity, proximity, efficiency, party autonomy, foreign sovereign immunity, foreign act of state and justiciability, reasonable extraterritoriality, and forum mandatory procedural policies. In this advanced course, each theme is studied in the context of practice in a particular sub-field of jurisdiction or enforcement; although some themes such as that of sovereignty are cross-cutting and are studied in more than one jurisdictional context.", + "title": "International Litigation: Themes and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4432", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of international litigation has gained strong recognition as a composite of two branches of the conflict of laws, namely jurisdiction and recognition and enforcement of judgment. This conceptualisation brings into its embrace evolving themes of comity, proximity, efficiency, party autonomy, foreign sovereign immunity, foreign act of state and justiciability, reasonable extraterritoriality, and forum mandatory procedural policies. In this advanced course, each theme is studied in the context of practice in a particular sub-field of jurisdiction or enforcement; although some themes such as that of sovereignty are cross-cutting and are studied in more than one jurisdictional context.", + "title": "International Litigation: Themes and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4432V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the main themes and approaches in data privacy law in light of various international frameworks (OECD, APEC, ASEAN) and a cross-section of national laws from North America, Europe and Asia. While many countries have enacted or amended laws in recent years, there is no widely-accepted framework for cross-border data transfers and developments in business and technology present new risks and challenges to the protection of individuals\u2019 personal data and privacy. This course will also consider the role of data privacy laws in regulating social media and the Internet, data science, AI and machine learning and cybersecurity.", + "title": "Global Data Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4433", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the main themes and approaches in data privacy law in light of various international frameworks (OECD, APEC, ASEAN) and a cross-section of national laws from North America, Europe and Asia. While many countries have enacted or amended laws in recent years, there is no widely-accepted framework for cross-border data transfers and developments in business and technology present new risks and challenges to the protection of individuals\u2019 personal data and privacy. This course will also consider the role of data privacy laws in regulating social media and the Internet, data science, AI and machine learning and cybersecurity.", + "title": "Global Data Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4433V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The trading of commodities is one of the oldest forms of economic activity known to mankind. Today, it is a sophisticated multi-trillion-dollar industry spanning across the globe. A commodity trade is, at its heart, the sale and purchase of a commodity, but is often coupled with other related transactions such as transportation, storage,\ninsurance and finance. This course seeks to provide students with an overview of international commodity trading law. As an \u201cindustry-focused\u201d course, students will\nbe trained to identify and analyse problems that span across different areas including contract, banking and finance, agency, assignment, set-off \u2013 just like practitioners do.", + "title": "International Commodity Trading Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4434", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The trading of commodities is one of the oldest forms of economic activity known to mankind. Today, it is a sophisticated multi-trillion-dollar industry spanning across the globe. A commodity trade is, at its heart, the sale and purchase of a commodity, but is often coupled with other related transactions such as transportation, storage,\ninsurance and finance. This course seeks to provide students with an overview of international commodity trading law. As an \u201cindustry-focused\u201d course, students will\nbe trained to identify and analyse problems that span across different areas including contract, banking and finance, agency, assignment, set-off \u2013 just like practitioners do.", + "title": "International Commodity Trading Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4434V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 6, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is unique because it did not emerge from a single source of law. Rather, it has roots in almost every type of law. Through diverse readings, deep discussions, and independent research, this course will identify and understand the various types of law that, together, give rise to \u201cenvironmental law.\u201d The course will consider environmental law\u2019s roots in common law, regulation, legislation, constitutions, international cooperation, public action, and even private self-governance. Though not exclusively, the focus will be on common law jurisdictions in the British tradition, but independent research will allow students to explore more widely for themselves.", + "title": "Foundations of Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4435", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is unique because it did not emerge from a single source of law. Rather, it has roots in almost every type of law. Through diverse readings, deep discussions, and independent research, this course will identify and understand the various types of law that, together, give rise to \u201cenvironmental law.\u201d The course will consider environmental law\u2019s roots in common law, regulation, legislation, constitutions, international cooperation, public action, and even private self-governance. Though not exclusively, the focus will be on common law jurisdictions in the British tradition, but independent research will allow students to explore more widely for themselves.", + "title": "Foundations of Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4435V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family Law covers a very broad field that involves familial relationships wider than just spousal relationships, children and money matters. It encompasses transnational conflict of laws, marital agreements, international conventions and enforcement issues. It also sees intersectionality with elder law, mental capacity, as well as probate and succession law. It is not possible to cover every aspect of family law in this elective. This course will cover family law and practice in Singapore, with a special emphasis on marriages, divorce and ancillary matters for civil marriages, and the workings of the Family Justice Courts.", + "title": "Family Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4436", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family Law covers a very broad field that involves familial relationships wider than just spousal relationships, children and money matters. It encompasses transnational conflict of laws, marital agreements, international conventions and enforcement issues. It also sees intersectionality with elder law, mental capacity, as well as probate and succession law. It is not possible to cover every aspect of family law in this elective. This course will cover family law and practice in Singapore, with a special emphasis on marriages, divorce and ancillary matters for civil marriages, and the workings of the Family Justice Courts.", + "title": "Family Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4436V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores diverse development patterns of the rule of law and democracy in East Asia. Theories of democracy commonly hold that the acceptance of rule of law in non-democratic countries would lead to democratization, especially along with increasing economic prosperity. This linear thesis, however, have met challenges recently in light of recent developments in China, HK, and other parts of the world. As such, this module scrutinizes this linear thesis by examining the trajectories of legal development in East Asia and the determinants, such as international factors, civil law traditions, legal professionals, foreign law influence, colonial legacies and post-colonial nationalism.", + "title": "Law and Democracy in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4437", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores diverse development patterns of the rule of law and democracy in East Asia. Theories of democracy commonly hold that the acceptance of rule of law in non-democratic countries would lead to democratization, especially along with increasing economic prosperity. This linear thesis, however, have met challenges recently in light of recent developments in China, HK, and other parts of the world. As such, this module scrutinizes this linear thesis by examining the trajectories of legal development in East Asia and the determinants, such as international factors, civil law traditions, legal professionals, foreign law influence, colonial legacies and post-colonial nationalism.", + "title": "Law and Democracy in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4437V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the exciting world of intellectual property arbitration. Traditionally thought of and taught as distinct areas of law, the overlap between IP rights and recourse to arbitration for the protection of those rights has grown significantly in recent years. This pioneering course is not currently offered in any other leading law school in the world. It is designed for students with little to\nno knowledge of IP law. It is also designed for students with an interest in arbitration, regardless of the level of their preexisting knowledge of arbitration.", + "title": "Intellectual Property Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4438", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the exciting world of intellectual property arbitration. Traditionally thought of and taught as distinct areas of law, the overlap between IP rights and recourse to arbitration for the protection of those rights has grown significantly in recent years. This pioneering course is not currently offered in any other leading law school in the world. It is designed for students with little to\nno knowledge of IP law. It is also designed for students with an interest in arbitration, regardless of the level of their preexisting knowledge of arbitration.", + "title": "Intellectual Property Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4438V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to electronic evidence, which covers every area of law. Most legal problems presented to lawyers now include an element of electronic evidence. It is incumbent on judges, lawyers and legal academics to be familiar with the topic in the service of justice. Electronic evidence is ubiquitous.\nUsing an array of mobile technologies, people communicate regularly through social networking sites, e-mail and other virtual methods managed by organisations that are transnational. No area of human activity is free from the networked world \u2013 this also means no area of law is free from the effects of electronic evidence.", + "title": "Electronic Evidence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4440", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to electronic evidence, which covers every area of law. Most legal problems presented to lawyers now include an element of electronic evidence. It is incumbent on judges, lawyers and legal academics to be familiar with the topic in the service of justice. Electronic evidence is ubiquitous.\nUsing an array of mobile technologies, people communicate regularly through social networking sites, e-mail and other virtual methods managed by organisations that are transnational. No area of human activity is free from the networked world \u2013 this also means no area of law is free from the effects of electronic evidence.", + "title": "Electronic Evidence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4440V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks at the economic foundations of corporate bankruptcy and insolvency law. The course will discuss the application of general law-and-economics principles to the governance and reorganization of insolvent and financially distressed business firms. Readings will focus in particular on questions about whether and how general theories of contracts, property, and corporate governance must be amended in the context of insolvency and bankruptcy.", + "title": "Law & Economics of Corporate Bankruptcy & Insolvency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4441", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks at the economic foundations of corporate bankruptcy and insolvency law. The course will discuss the application of general law-and-economics principles to the governance and reorganization of insolvent and financially distressed business firms. Readings will focus in particular on questions about whether and how general theories of contracts, property, and corporate governance must be amended in the context of insolvency and bankruptcy.", + "title": "Law & Economics of Corporate Bankruptcy & Insolvency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4441V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course will consider digital trade's role within the global political economy and its benefits for international economic activity. Students will examine how international trade laws and treaties can affect cross-border digital trade, e-commerce, and emerging technologies (e.g. artificial intelligence, autonomous technology and 5G). Students will explore the legal and economic implications of various regulatory barriers to digital trade, as well as their related public policy concerns (e.g. privacy and cybersecurity), and learn about facilitating digital trade infrastructure, the key intellectual property issues in digital trade, and the linkages between trade and investment in the digital economy.", + "title": "Digital Trade and Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4442", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course will consider digital trade's role within the global political economy and its benefits for international economic activity. Students will examine how international trade laws and treaties can affect cross-border digital trade, e-commerce, and emerging technologies (e.g. artificial intelligence, autonomous technology and 5G). Students will explore the legal and economic implications of various regulatory barriers to digital trade, as well as their related public policy concerns (e.g. privacy and cybersecurity), and learn about facilitating digital trade infrastructure, the key intellectual property issues in digital trade, and the linkages between trade and investment in the digital economy.", + "title": "Digital Trade and Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4442V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how the securities and capital markets are structured and regulated in Asia, particularly in Mainland China and Hong Kong. The topics covered in this course include, amongst others, the regulatory framework for the capital markets, securities offering, stock exchange listing, market misconduct such as insider trading, Fintech issues such as crowdfunding, mobile payment and cryptoassets. Given the nature of the course, a comparative approach will be adopted to examining the topics covered.", + "title": "Capital Markets Law in Mainland China and HKSAR", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4443", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how the securities and capital markets are structured and regulated in Asia, particularly in Mainland China and Hong Kong. The topics covered in this course include, amongst others, the regulatory framework for the capital markets, securities offering, stock exchange listing, market misconduct such as insider trading, Fintech issues such as crowdfunding, mobile payment and cryptoassets. Given the nature of the course, a comparative approach will be adopted to examining the topics covered.", + "title": "Capital Markets Law in Mainland China and HKSAR", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4443V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law of the Marine Environment discusses the legal framework for the international governance of shipping. Within this framework it considers the powers flag, coastal and ports states have to prescribe and enforce environmental shipping regulations. The main characteristics of the established regulatory system is further described. The course then embarks on a detailed analysis of a number of international and national civil liability regimes developed for the recovery of pollution damage. Contemporary environmental challenges faced by shipping, namely, the reduction of atmospheric pollution and greenhouse gas emissions and the issue of recycling of ships are then examined.", + "title": "Law of the Marine Environment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4444", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law of the Marine Environment discusses the legal framework for the international governance of shipping. Within this framework it considers the powers flag, coastal and ports states have to prescribe and enforce environmental shipping regulations. The main characteristics of the established regulatory system is further described. The course then embarks on a detailed analysis of a number of international and national civil liability regimes developed for the recovery of pollution damage. Contemporary environmental challenges faced by shipping, namely, the reduction of atmospheric pollution and greenhouse gas emissions and the issue of recycling of ships are then examined.", + "title": "Law of the Marine Environment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4444V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the theory and practice of constitutionalism in four countries that are located in South and South East Asia: India, Indonesia, Singapore and Sri Lanka. Two of these are among the largest, most pluralistic nations in the world, while the remaining two are small island states. All four nations experienced long periods of colonial rule, which continues to have a decisive impact on their post-colonial legal and constitutional orders. The course will be of interest to those who seek to study constitutionalism against larger societal debates about economic development, cultural values, and human rights.", + "title": "Comparative Constitutionalism in Southern Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4446", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the theory and practice of constitutionalism in four countries that are located in South and South East Asia: India, Indonesia, Singapore and Sri Lanka. Two of these are among the largest, most pluralistic nations in the world, while the remaining two are small island states. All four nations experienced long periods of colonial rule, which continues to have a decisive impact on their post-colonial legal and constitutional orders. The course will be of interest to those who seek to study constitutionalism against larger societal debates about economic development, cultural values, and human rights.", + "title": "Comparative Constitutionalism in Southern Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4446V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a hands-on introduction to legal data science and aims to improve students\u2019 understanding of:\n1) legal issues that involve technology;\n2) the technologies that underlie many legal\u2013tech products; and\n3) how technology can be used in empirical legal research.\nThis class also provides practice in the logical reasoning skills important to many areas of legal practice and improves students\u2019 abilities to communicate with clients in high-tech industries.\nNo computer programming experience is required. Class operates in a \u201cflipped\u201d manner with weekly homework and readings, and intensive classroom activities that are designed to help students overcome learning obstacles.", + "title": "Legal Data Science", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4447", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a hands-on introduction to legal data science and aims to improve students\u2019 understanding of:\n1) legal issues that involve technology;\n2) the technologies that underlie many legal\u2013tech products; and\n3) how technology can be used in empirical legal research.\nThis class also provides practice in the logical reasoning skills important to many areas of legal practice and improves students\u2019 abilities to communicate with clients in high-tech industries.\nNo computer programming experience is required. Class operates in a \u201cflipped\u201d manner with weekly homework and readings, and intensive classroom activities that are designed to help students overcome learning obstacles.", + "title": "Legal Data Science", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4447V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The common-law world only exists because of its shared history. History explains the common lawyer\u2019s profession. This module introduces the study of legal history with an eye to its contemporary relevance. It concentrates on the colonial roots of the laws and legal institutions of common-law countries such as Singapore. By examining colonial settings across three centuries, we shall see how English law dealt with cultural plurality and territorial expansion, and how imperial stakeholders debated and applied ideas from the rule of law to judicial independence. We explore why, how, and for whom law was made, and how these dynamics changed upon decolonisation.", + "title": "Legal History: Themes and Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4448", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The common-law world only exists because of its shared history. History explains the common lawyer\u2019s profession. This module introduces the study of legal history with an eye to its contemporary relevance. It concentrates on the colonial roots of the laws and legal institutions of common-law countries such as Singapore. By examining colonial settings across three centuries, we shall see how English law dealt with cultural plurality and territorial expansion, and how imperial stakeholders debated and applied ideas from the rule of law to judicial independence. We explore why, how, and for whom law was made, and how these dynamics changed upon decolonisation.", + "title": "Legal History: Themes and Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4448V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Water is everywhere. Water is life! But how is water regulated when it crosses national borders? And how is it regulated when it is found underground? Can water in one country be of relevance for the international community as a whole? These are some of the questions that will be discussed in the intensive course on International Water Law. Throughout three weeks students will focus on transboundary surface water (first week), transboundary aquifers (second week) and on three specific water related matters that link water with other key relevant international legal areas (third week): climate change, sustainable development and security.", + "title": "International Water Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4449", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Water is everywhere. Water is life! But how is water regulated when it crosses national borders? And how is it regulated when it is found underground? Can water in one country be of relevance for the international community as a whole? These are some of the questions that will be discussed in the intensive course on International Water Law. Throughout three weeks students will focus on transboundary surface water (first week), transboundary aquifers (second week) and on three specific water related matters that link water with other key relevant international legal areas (third week): climate change, sustainable development and security.", + "title": "International Water Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4449V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a broad overview of Singapore\u2019s legal history, including its historical common law origins and the evolution of its key institutions and traditions. Topics covered include the historical development of Singapore\u2019s sources of law; the Singapore Constitution; judicial system; legal profession, legal service; legal education; criminal law; land law and law reporting. Assessment will be by way of a research paper on a selected topic to submit at the end of the course.", + "title": "Singapore Legal History", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4450", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a broad overview of Singapore\u2019s legal history, including its historical common law origins and the evolution of its key institutions and traditions. Topics covered include the historical development of Singapore\u2019s sources of law; the Singapore Constitution; judicial system; legal profession, legal service; legal education; criminal law; land law and law reporting. Assessment will be by way of a research paper on a selected topic to submit at the end of the course.", + "title": "Singapore Legal History", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4450V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on some of the neglected historical aspects of international law, but also on the techniques of doing a \u201chistory\u201d of the discipline (how is one even to attempt a history (or histories) of Euro-centric international law?). It will concentrate on topics as diverse as territorial acquisition and religious authority (the 1494 Treaty of Tordesillas), on the freedom of the oceans and the slave trade, on colonies and race. The course will also be of particular interest to modalities of accountability for the international legal past, such as the 2000 Women\u2019s International Tribunal on Sexual Violence and the recent advisory opinion of the International Court of Justice in the Chagos Archipelago.", + "title": "An Uncensored History of International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4451", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on some of the neglected historical aspects of international law, but also on the techniques of doing a \u201chistory\u201d of the discipline (how is one even to attempt a history (or histories) of Euro-centric international law?). It will concentrate on topics as diverse as territorial acquisition and religious authority (the 1494 Treaty of Tordesillas), on the freedom of the oceans and the slave trade, on colonies and race. The course will also be of particular interest to modalities of accountability for the international legal past, such as the 2000 Women\u2019s International Tribunal on Sexual Violence and the recent advisory opinion of the International Court of Justice in the Chagos Archipelago.", + "title": "An Uncensored History of International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4451V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When a person refers to \u201cfamily law\u201d, listeners generally assume that the person is referring to divorce law. However, family law in Singapore encompasses much more, e.g. mental capacity, probate, and adoption.\n\nThis course will cover the above areas as well as more specialised topics in family law, e.g. relocation, cross border divorce and maintenance, child abduction, and therapeutic justice, and will also include an introduction to procedural and practical aspects of family law litigation.", + "title": "Specialised Topics in Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4452", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When a person refers to \u201cfamily law\u201d, listeners generally assume that the person is referring to divorce law. However, family law in Singapore encompasses much more, e.g. mental capacity, probate, and adoption.\n\nThis course will cover the above areas as well as more specialised topics in family law, e.g. relocation, cross border divorce and maintenance, child abduction, and therapeutic justice, and will also include an introduction to procedural and practical aspects of family law litigation.", + "title": "Specialised Topics in Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4452V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of how intellectual property laws (e.g. copyright, trademarks and right of publicity) regulate the world of fashion. It will also explore the enforcement of intellectual property laws in the fashion industry from an interdisciplinary perspective drawing on writings in cultural studies and fashion theory.", + "title": "Fashion Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4453", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Commercial conflict of laws is a significant area of legal scholarship and practice. The chief aim of the course is to examine the foundational principles of commercial conflict of laws in Singapore. First, it identifies and assesses the set of rules based on which Singapore courts decide whether to entertain international commercial disputes. Second, the unit outlines the provisions based on which Singapore courts determine the law governing the parties\u2019 cross-border disputes. Finally, the unit outlines the rules according to which courts in Singapore give effect to foreign judgments.", + "title": "Commercial Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4454", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Commercial conflict of laws is a significant area of legal scholarship and practice. The chief aim of the course is to examine the foundational principles of commercial conflict of laws in Singapore. First, it identifies and assesses the set of rules based on which Singapore courts decide whether to entertain international commercial disputes. Second, the unit outlines the provisions based on which Singapore courts determine the law governing the parties\u2019 cross-border disputes. Finally, the unit outlines the rules according to which courts in Singapore give effect to foreign judgments.", + "title": "Commercial Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4454V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is the second installment on the taxation of cross-border commercial transactions. The first installment, Taxation of Cross-Border Commercial Transactions I, is a pre-requisite. This course will interest those who want to practise tax law and/or those who took the first installment and enjoyed it. \n\nTopics covered: \n- The OECD Model Double Tax Treaty including the Multilateral Instrument (in-depth)\n- Anti-avoidance rules and tax planning\n- Accounting for Tax Consequences\n- The Impact of Bilateral Investment Treaties on International Tax\n- Tax Theory", + "title": "Taxation of Cross-Border Commercial Transactions II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4455", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is the second installment on the taxation of cross-border commercial transactions. The first installment, Taxation of Cross-Border Commercial Transactions I, is a pre-requisite. This course will interest those who want to practise tax law and/or those who took the first installment and enjoyed it. \n\nTopics covered: \n- The OECD Model Double Tax Treaty including the Multilateral Instrument (in-depth)\n- Anti-avoidance rules and tax planning\n- Accounting for Tax Consequences\n- The Impact of Bilateral Investment Treaties on International Tax\n- Tax Theory", + "title": "Taxation of Cross-Border Commercial Transactions II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4455V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Legal innovation and technology are new foci in the legal profession as technologies of automation transform the nature of practice. This module provides a theoretically-informed, hands-on practical experience in producing the types of legaltech that are transforming practice, while also equipping the student with the critical faculties to determine their appropriate application. This module offers highly practical lab-based work where students learn the fundamentals of automating legal services and decision support systems, as well as developing skills required for designing new technologies to aid the practice of law.", + "title": "Legal Technology & Innovation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4456", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Legal innovation and technology are new foci in the legal profession as technologies of automation transform the nature of practice. This module provides a theoretically-informed, hands-on practical experience in producing the types of legaltech that are transforming practice, while also equipping the student with the critical faculties to determine their appropriate application. This module offers highly practical lab-based work where students learn the fundamentals of automating legal services and decision support systems, as well as developing skills required for designing new technologies to aid the practice of law.", + "title": "Legal Technology & Innovation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4456V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The two fundamental goals of the module are to introduce students to topical issues surrounding international human rights law and to lay the foundation for their future advanced studies of, or work in, the field of human rights. The first section addresses normative bases, right-holders, and various types of human rights, corresponding territorial and extraterritorial obligations of states and non-state actors, and international and regional mechanisms of human rights protection. The second section explores the role of human rights in solving pressing global problems, including poverty and inequality, decolonization, social, global and environmental injustice, and other obstacles to sustainable development.", + "title": "International Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4457", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The two fundamental goals of the module are to introduce students to topical issues surrounding international human rights law and to lay the foundation for their future advanced studies of, or work in, the field of human rights. The first section addresses normative bases, right-holders, and various types of human rights, corresponding territorial and extraterritorial obligations of states and non-state actors, and international and regional mechanisms of human rights protection. The second section explores the role of human rights in solving pressing global problems, including poverty and inequality, decolonization, social, global and environmental injustice, and other obstacles to sustainable development.", + "title": "International Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4457V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s expanding influence has been accompanied by a maturing of its legal framework for arbitration, as well as an increasingly active role in investor-state dispute settlement. This course undertakes a detailed examination of all facets of commercial arbitration in China, set within the context of China\u2019s transformational economic rise. It also explores salient issues that arise in commercial and investor-state arbitrations involving Chinese parties or China. Attention will be drawn to the import and impact of recent developments, including the South China Sea and the Belt and Road Initiative, as well as China\u2019s relationship with India, ASEAN and the US.", + "title": "China and International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4458", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s expanding influence has been accompanied by a maturing of its legal framework for arbitration, as well as an increasingly active role in investor-state dispute settlement. This course undertakes a detailed examination of all facets of commercial arbitration in China, set within the context of China\u2019s transformational economic rise. It also explores salient issues that arise in commercial and investor-state arbitrations involving Chinese parties or China. Attention will be drawn to the import and impact of recent developments, including the South China Sea and the Belt and Road Initiative, as well as China\u2019s relationship with India, ASEAN and the US.", + "title": "China and International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4458V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to explore innovation and regulation of FinTech and its embedded platform economy. FinTech and its embedded platform economy, which is empowered by information communication technologies and cantered on data-driven online platforms, has transformed the paradigms of conducting commercial and financial activities. \n\nThrough a series of lectures, seminars, and group discussions, this module will explore the new phenomenon of the platform economy, especailly the FinTech innovation pertinant to Money, Investment, Data and Innovative Dispute Resolutions. A guest lecture by an experienced practitioner will be also arranged. \n\nA research-based, student-centred, and globally-oriented pedagogy will guide the teaching and learning engagement.", + "title": "Law, FinTech and the Platform Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4460", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to explore innovation and regulation of FinTech and its embedded platform economy. FinTech and its embedded platform economy, which is empowered by information communication technologies and cantered on data-driven online platforms, has transformed the paradigms of conducting commercial and financial activities. \n\nThrough a series of lectures, seminars, and group discussions, this module will explore the new phenomenon of the platform economy, especailly the FinTech innovation pertinant to Money, Investment, Data and Innovative Dispute Resolutions. A guest lecture by an experienced practitioner will be also arranged. \n\nA research-based, student-centred, and globally-oriented pedagogy will guide the teaching and learning engagement.", + "title": "Law, FinTech and the Platform Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4460V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the rules and standards that govern the subject of compliance and risk management. It starts by examining questions of governance: boards of directors, and executives. We then examine the compliance function through the lens of managers, regulators, prosecutors, whistleblowers, and gatekeepers. Next, we consider particular areas of the law: corruption, anti-money laundering, and export controls. We examine case studies where compliance fails and initiatives that go beyond compliance. Finally, we consider risk management as it pertains to lawyers; topics here include the governance of risk; approaches to risk management; reputational, operational, and enterprise risk.", + "title": "Compliance and Risk Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4461", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the rules and standards that govern the subject of compliance and risk management. It starts by examining questions of governance: boards of directors, and executives. We then examine the compliance function\nthrough the lens of managers, regulators, prosecutors, whistle blowers, and gatekeepers. Next, we consider particular areas of the law: corruption, anti-money\nlaundering, and export controls. We examine case studies where compliance fails and initiatives that go beyond compliance. Finally, we consider risk management as it pertains to lawyers; topics here include the governance of risk; approaches to risk management; reputational, operational, and enterprise risk.", + "title": "Compliance and Risk Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4461V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recent decades have witnessed a growth in commercial dealings between EU Member States and South East Asian countries, specially Singapore. Consequently, it is not uncommon for Singaporean individuals or businesses to become involved in commercial disputes with EU-based entities. This elective examines how the ensuing conflict-oflaws questions in these cases are resolved by courts in the EU (which, after Brexit, is dominated by civil law states). This elective would be particularly beneficial to those who are likely to be engaged by clients in Singapore or South East Asia who become involved in litigation before EU Member State courts.", + "title": "Civil Law Approaches to Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4462", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Recent decades have witnessed a growth in commercial dealings between EU Member States and South East Asian countries, specially Singapore. Consequently, it is not uncommon for Singaporean individuals or businesses to become involved in commercial disputes with EU-based entities. This elective examines how the ensuing conflict-oflaws questions in these cases are resolved by courts in the EU (which, after Brexit, is dominated by civil law states). This elective would be particularly beneficial to those who are likely to be engaged by clients in Singapore or South East Asia who become involved in litigation before EU Member State courts.", + "title": "Civil Law Approaches to Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4462V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This externship, co-convened by a senior policymaker and a law professor, is designed to enable the student to gain a better understanding of influence of the law in the arts and adjacent sectors, inter alia, literary, visual and performing arts, in particular intellectual property and contract laws. The student will be involved in the Arts Resource Hub, draft artists\u2019 rights statements and agreement templates for arts practitioners, and perform high-quality research relevant for policymakers.", + "title": "National Arts Council Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4463", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This externship, co-convened by a senior policymaker and a law professor, is designed to enable the student to gain a better understanding of influence of the law in the arts and adjacent sectors, inter alia, literary, visual and performing arts, in particular intellectual property and contract laws. The student will be involved in the Arts Resource Hub, draft artists\u2019 rights statements and agreement templates for arts practitioners, and perform high-quality research relevant for policymakers.", + "title": "National Arts Council Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4463V", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Port financing is crucial to port performance and development. This course thus examines how port financing is supported or not as the case may be by law and regulation. It takes an internationalist and comparative approach to the subject. That said, where appropriate it will consider the Singapore legal system. The topics examined include the role of ports (as beneficiary of financing and as the investor), tools for port financing, legal management of risks and bankability of port projects, good practice in public-private initiatives, port concession agreements and green port financing.", + "title": "Principles of Port Finance and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4464", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Port financing is crucial to port performance and development. This course thus examines how port financing is supported or not as the case may be by law and regulation. It takes an internationalist and comparative approach to the subject. That said, where appropriate it will consider the Singapore legal system. The topics examined include the role of ports (as beneficiary of financing and as the investor), tools for port financing, legal management of risks and bankability of port projects, good practice in public-private initiatives, port concession agreements and green port financing.", + "title": "Principles of Port Finance and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4464V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Geographical Indications (GIs) signal the provenance of reputed products such as Champagne, Darjeeling and Prosciutto di Parma. They also constitute valuable collective brands. This course (i) outlines the relevant international treaties mandating how they should be protected, (ii) compares the three competing models of protection envisaged by these treaties (trade mark law; unfair competition law; and sui generis protection), (iii) via EU law, explains the distinctive features of the sui generis model, and (iv) explores contemporary challenges, including the effects of climate change on terroir and the accommodation of handicrafts in a regime designed around agricultural products.", + "title": "International Geographical Indications Protection (IP)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4465", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Geographical Indications (GIs) signal the provenance of reputed products such as Champagne, Darjeeling and Prosciutto di Parma. They also constitute valuable collective brands. This course (i) outlines the relevant international treaties mandating how they should be protected, (ii) compares the three competing models of protection envisaged by these treaties (trade mark law; unfair competition law; and sui generis protection), (iii) via EU law, explains the distinctive features of the sui generis model, and (iv) explores contemporary challenges, including the effects of climate change on terroir and the accommodation of handicrafts in a regime designed around agricultural products.", + "title": "International Geographical Indications Protection (IP)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4465V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is based on both theoretical and practical approaches and regulative initiatives related to the digital governance, focusing to the existing and planned AI use-cases by public authorities in the fields. Reconciliation of data driven society with legal society and Rule of Law is a challenge to all of the jurisdictions. This module is using comparative method but is focusing on leading legal standard setting entity, European Union (and its member states, especially Estonia as a flagship country in e-gov), when analysing the norms, explaining the controversies, best practice and new legal doctrines related to Digital Governance.", + "title": "Ethical Digital Governance and Legal Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4471", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is based on both theoretical and practical approaches and regulative initiatives related to the digital governance, focusing to the existing and planned AI use-cases by public authorities in the fields. Reconciliation of data driven society with legal society and Rule of Law is a challenge to all of the jurisdictions. This module is using comparative method but is focusing on leading legal standard setting entity, European Union (and its member states, especially Estonia as a flagship country in e-gov), when analysing the norms, explaining the controversies, best practice and new legal doctrines related to Digital Governance.", + "title": "Ethical Digital Governance and Legal Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4471V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since its adoption nearly a decade ago, the Belt and Road Initiative (BRI) has quickly become a key consideration in China\u2019s trade policy-making, and has attracted growing attention across the globe. This course explores how China produces and enhances its influence in global trade governance through BRI implementation, and how the international community should respond to China\u2019s growing influence. Nine selected issues will be discussed. This course will be conducted in an interactive way, including lectures of the professor, students presentations, and class discussions.", + "title": "The Belt & Road Initiative & Int\u2019l Trade Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4472", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Since its adoption nearly a decade ago, the Belt and Road Initiative (BRI) has quickly become a key consideration in China\u2019s trade policy-making, and has attracted growing attention across the globe. This course explores how China produces and enhances its influence in global trade governance through BRI implementation, and how the international community should respond to China\u2019s growing influence. Nine selected issues will be discussed. This course will be conducted in an interactive way, including lectures of the professor, students presentations, and class discussions.", + "title": "The Belt & Road Initiative & Int\u2019l Trade Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4472V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the international legal frameworks relating to various aspects of the management and governance of energy resources including the impact of investment law, trade law, property law and environmental law on energy transactions. It assesses how international law impacts on the energy sector and reviews selected national legal regimes concerning the regulation of energy resources such as nuclear, renewables, petroleum and gas, in addition to energy infrastructures such as pipelines and offshore platforms.", + "title": "International Energy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4473", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the international legal frameworks relating to various aspects of the management and governance of energy resources including the impact of investment law, trade law, property law and environmental law on energy transactions. It assesses how international law impacts on the energy sector and reviews selected national legal regimes concerning the regulation of energy resources such as nuclear, renewables, petroleum and gas, in addition to energy infrastructures such as pipelines and offshore platforms.", + "title": "International Energy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4473V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a foundational understanding of cybersecurity and privacy law drawing from international, European, and American legal perspectives. The distinct value of the course is that it integrates insights from both cybersecurity and privacy. The course offers an understanding of the core concepts, the relevant rules, and discusses the tensions that underpin these areas of law by addressing their complexities and contradictions. The additional advantage of the course is that it combines multiple legal perspectives. The carefully selected readings reflect the diversity of legal approaches to cybersecurity and privacy, and engage with multiple legal systems.", + "title": "Cybersecurity and Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4474", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a foundational understanding of cybersecurity and privacy law drawing from international, European, and American legal perspectives. The distinct value of the course is that it integrates insights from both cybersecurity and privacy. The course offers an understanding of the core concepts, the relevant rules, and discusses the tensions that underpin these areas of law by addressing their complexities and contradictions. The additional advantage of the course is that it combines multiple legal perspectives. The carefully selected readings reflect the diversity of legal approaches to cybersecurity and privacy, and engage with multiple legal systems.", + "title": "Cybersecurity and Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4474V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the law, directives and guidelines pertaining to the conduct of investment management activity in Singapore. The primary focus is on the regulatory regime in Singapore but significant elements of selected foreign regulatory regimes affecting investment managers in Singapore will also be introduced. Some of the latest industry trends will be examined. The course is tailored to lay a foundation for those considering a career in the investment management industry, either as a legal practitioner in a law firm or as an in-house legal counsel or compliance officer within an investment management company.", + "title": "Law and Practice of Investment Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4475", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the law, directives and guidelines pertaining to the conduct of investment management activity in Singapore. The primary focus is on the regulatory regime in Singapore but significant elements of selected foreign regulatory regimes affecting investment managers in Singapore will also be introduced. Some of the latest industry trends will be examined. The course is tailored to lay a foundation for those considering a career in the investment management industry, either as a legal practitioner in a law firm or as an in-house legal counsel or compliance officer within an investment management company.", + "title": "Law and Practice of Investment Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4475V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in U.S. copyright law, both traditional and digital, in international and comparative perspective. Some of the specific topics we will cover are the subject matter of copyright; ownership; duration and transfer; infringement; fair use; and the Digital Millennium Copyright Act.", + "title": "US Copyright: International & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4476", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in U.S. copyright law, both traditional and digital, in international and comparative perspective. Some of the specific topics we will cover are the subject matter of copyright; ownership; duration and transfer; infringement; fair use; and the Digital Millennium Copyright Act.", + "title": "US Copyright: International & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4476V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The three East Asian jurisdictions (i.e., South Korea, Taiwan and Japan) covered in this course adopt the civil law tradition and have received the Romano-Germanic civil code. The study of civil law in East Asia broadens our legal horizons and enables us to have diverse legal minds in response to the globalisation era. Broadly speaking, the topics covered in this course are as follows (1) Introduction to Comparative Private Law, (2) Private law in East Asia History, Development and Methodology, (3) Contract Law in East Asia; (4) Property Law in East Asia; and (5) Trust Law in East Asia.", + "title": "Private Law in East Asia (Korea, Taiwan, Japan)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4477", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The three East Asian jurisdictions (i.e., South Korea, Taiwan and Japan) covered in this course adopt the civil law tradition and have received the Romano-Germanic civil code. The study of civil law in East Asia broadens our legal horizons and enables us to have diverse legal minds in response to the globalisation era. Broadly speaking, the topics covered in this course are as follows (1) Introduction to Comparative Private Law, (2) Private law in East Asia History, Development and Methodology, (3) Contract Law in East Asia; (4) Property Law in East Asia; and (5) Trust Law in East Asia.", + "title": "Private Law in East Asia (Korea, Taiwan, Japan)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4477V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with private international law (or \u2018conflict of laws\u2019) in the specialized context of international corporate insolvency and restructuring. It provides an opportunity for students who are interested in corporate insolvency and restructuring at the domestic level to consider the legal problems that arise in insolvency and restructuring cases where the assets and creditors are in multiple jurisdictions. The module will consider domestic, regional, and international approaches that lawmakers have developed to promote international cooperation in cross-border insolvency cases, including instruments such as the European Union Insolvency Regulation and the UNCITRAL Model Law on Cross-Border Insolvency.", + "title": "Cross-Border Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4478", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with private international law (or \u2018conflict of laws\u2019) in the specialized context of international corporate insolvency and restructuring. It provides an opportunity for students who are interested in corporate insolvency and restructuring at the domestic level to consider the legal problems that arise in insolvency and restructuring cases where the assets and creditors are in multiple jurisdictions. The module will consider domestic, regional, and international approaches that lawmakers have developed to promote international cooperation in cross-border insolvency cases, including instruments such as the European Union Insolvency Regulation and the UNCITRAL Model Law on Cross-Border Insolvency.", + "title": "Cross-Border Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4478V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Financial markets have been traditionally permeable to technological progress and technology has been an important driving force in the transformation of finance. Nevertheless, the vertiginous pace of contemporary technological innovation, the multi-layered impact on the market (actors, activities, transactions) and the unpredictable effects of its application on a large scale, represent unprecedented challenges for financial regulators and supervisors. The aim of the course is to identify these legal and regulatory challenges and discuss, compare, and propose possible policy options in establishing a framework conducive to innovation, creativity, and social inclusiveness, without compromising the protection of interests and rights.", + "title": "Challenges of Emerging Technologies to Financial Regulation.", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4479", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Financial markets have been traditionally permeable to technological progress and technology has been an important driving force in the transformation of finance. Nevertheless, the vertiginous pace of contemporary technological innovation, the multi-layered impact on the market (actors, activities, transactions) and the unpredictable effects of its application on a large scale, represent unprecedented challenges for financial regulators and supervisors. The aim of the course is to identify these legal and regulatory challenges and discuss, compare, and propose possible policy options in establishing a framework conducive to innovation, creativity, and social inclusiveness, without compromising the protection of interests and rights.", + "title": "Challenges of Emerging Technologies to Financial Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4479V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the course is to analyse the legal phenomenon through the notions of neoclassical economics. The course covers the main topics of the Economic Analysis of the law of obligations (i.e., of Torts law and of Contracts Law), with a special focus on contractual remedies. The course offers an in-depth analysis of the different doctrines that govern unforeseen supervening events and changes of circumstances in the common law and the civil law systems. Through the adoption of the economic analysis of law methodology, the course will shed light on the economic rationale behind such different doctrines.", + "title": "Economic Analysis of Private Law (Contract and Torts)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4480", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the course is to analyse the legal phenomenon through the notions of neoclassical economics. The course covers the main topics of the Economic Analysis of the law of obligations (i.e., of Torts law and of Contracts Law), with a special focus on contractual remedies. The course offers an in-depth analysis of the different doctrines that govern unforeseen supervening events and changes of circumstances in the common law and the civil law systems. Through the adoption of the economic analysis of law methodology, the course will shed light on the economic rationale behind such different doctrines.", + "title": "Economic Analysis of Private Law (Contract and Torts)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4480V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject explores the influence and potential of trusts law in the Asia-Pacific region. It begins by considering the history of trusts diffusion, how trusts law has been used to regulate customary and religious property-holding forms, and assesses the ways in which the trust has been (re)conceptualised in non-common law jurisdictions. It then examines the different uses of the trust in the region in the family and commercial contexts, as well as a financial product. The subject also considers the reach of constructive and resulting trusts in the region. Finally, it will discuss trusts law\u2019s private international law perspective.", + "title": "Trusts Law in the Asia-Pacific Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4481", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This subject explores the influence and potential of trusts law in the Asia-Pacific region. It begins by considering the history of trusts diffusion, how trusts law has been used to regulate customary and religious property-holding forms, and assesses the ways in which the trust has been (re)conceptualised in non-common law jurisdictions. It then examines the different uses of the trust in the region in the family and commercial contexts, as well as a financial product. The subject also considers the reach of constructive and resulting trusts in the region. Finally, it will discuss trusts law\u2019s private international law perspective.", + "title": "Trusts Law in the Asia-Pacific Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4481V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the law, institutions, and practices set up in Asia to facilitate political transitions. It examines the international and domestic legal frameworks and principles governing these transitional mechanisms as well as their critique. It studies the many pressing and conflicting needs of post-war societies or societies in transition and how these different needs are captured in transitional mechanisms, such as trials, truth and reconciliation commissions, and reparation schemes. Using Asian case studies (e.g. Timor Leste, Cambodia, Indonesia), this module will explore the challenges faced by societies undergoing political transition and the different measures adopted to address past injustices and facilitate transition.", + "title": "Transitional Justice in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4482", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the law, institutions, and practices set up in Asia to facilitate political transitions. It examines the international and domestic legal frameworks and principles governing these transitional mechanisms as well as their critique. It studies the many pressing and conflicting needs of post-war societies or societies in transition and how these different needs are captured in transitional mechanisms, such as trials, truth and reconciliation commissions, and reparation schemes. Using Asian case studies (e.g. Timor Leste, Cambodia, Indonesia), this module will explore the challenges faced by societies undergoing political transition and the different measures adopted to address past injustices and facilitate transition.", + "title": "Transitional Justice in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4482V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces aircraft financing and the law, the documentation implementing such financing, \u201ctitle\u201d to aircraft and the unique features of title financing. It explores the anatomy of aircraft loan agreements, the types of collateral securing such loans, the cross-border characteristics of financing, insurance, the modular feature of engines and how Export Credit Agencies and capital markets provide financing. The role of Lease financing and Lessors is considered as alternative means for financing aircraft acquisition. Lastly, the course covers airline debt restructuring (following airline insolvencies during the pandemic) and the impact of international treaties, particularly the Cape Town Convention/Protocol.", + "title": "Aviation Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL4483", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces aircraft financing and the law, the documentation implementing such financing, \u201ctitle\u201d to aircraft and the unique features of title financing. It explores the anatomy of aircraft loan agreements, the types of collateral securing such loans, the cross-border characteristics of financing, insurance, the modular feature of engines and how Export Credit Agencies and capital markets provide financing. The role of Lease financing and Lessors is considered as alternative means for financing aircraft acquisition. Lastly, the course covers airline debt restructuring (following airline insolvencies during the pandemic) and the impact of international treaties, particularly the Cape Town Convention/Protocol.", + "title": "Aviation Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL4483V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Administration of Criminal Justice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Admiralty Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the various concepts relating to the admiralty action in rem, which is the primary means by which a maritime claim is enforced. Topics will include: the nature of an action in rem; the subject matter of admiralty jurisdiction; the invocation of admiralty jurisdiction involving the arrest of offending and sister ships; the procedure for the arrest of ships; liens encountered in admiralty practice: statutory, maritime and possessory liens; the priorities governing maritime claims; and time bars and limitations. This course is essential to persons who intend to practice shipping law.", + "title": "Admiralty Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5002V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the rise of China and India and it\u2019s impact on the international legal order. In particular, students will be led to discuss issues concerning (1) the origin and history of the relationship between developing\ncountries and international law; (2) the rise of China and India and its challenge to the existing international legal order and legal norms; (3) China, India, and the multilateral trading system; (4) China, India and international investment; (5) the international law aspects of domestic policies in China and India; and (6) the international law aspects of competition and disputes between China and \nIndia. The course will also concentrate on demonstrating the interaction between international relations and international law.", + "title": "China, India and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5003V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Aviation Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an insight into international civil aviation and the legal and regulatory issues facing airlines, governments and the common passenger. Issues raised include public air law and policy, aviation security in light of recent global developments and private air law. Emphasis will be placed on issues relevant to Singapore and Asia, given Singapore's status as a major aviation hub and the exponential growth of the industry in the Asia-Pacific. Topics to be discussed include the Chicago Convention on International Civil Aviation, bilateral services agreements, aircraft safety, terrorism and aviation security and carrier liability for death or injury to passengers. Competition among airlines will also be analysed, including business strategies such as code-sharing, frequent flier schemes and alliances. The severe competitive environment introduced by weakening economies, war and terrorism will also be discussed. This course will be relevant for individuals with a keen interest in air travel, and is designed for those interested in joining the aviation industry or large law firms with an aviation practice.", + "title": "Aviation Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5004V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bank Documentation is an advanced contract course situated in the banking context. Students will be introduced to key principles that govern banking transactions as well as a variety of contractual clauses used by banks in their standard-form documentation. The aim of the course is to promote an\nunderstanding of these terms, how they operate and their shortcomings. Some emphasis is placed on contractual techniques used by banks to maintain control over their contractual relationships and to allocate risk, as well as the common law and statutory limits on their effectiveness. Students are required to evaluate the fairness of typical banking terms by applying relevant law and guidelines. Those who successfully complete the module will be equipped to navigate their way around standard form agreements (banking as well as others), recognize and understand the operation of a range of contractual terms, and predict their effectiveness.", + "title": "Bank Documentation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5005V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to familiarise the student with the key principles relating to the modern law of banking. Four main areas will be covered: the law of negotiable instruments, the law of payment systems, the banker customer relationship and bank regulation. Students who wish to obtain a basic knowledge of banking law will benefit from this course. It is also recommended that those who wish to specialize in banking law take this course as a foundational course, prior to studying the more advanced banking courses.", + "title": "Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5006V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biotechnology Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will deal with the basic intellectual property, ethical, regulatory and policy issues in biotechnological innovations. It will focus mainly on patent issues including the patentability of biological materials, gene sequences, animals, plants and humans; infringement, ownership and licensing. Students will also be acquainted with genetic copyright, trade secrets protection and basic ethical and regulatory aspects including gene technology and ES cell research. Apart from Singapore law, a comparative analysis of the legal position in Europe and USA, as well as the major international conventions will be made. Students will also be introduced to the fundamentals of biology and genetics. (Class presentation is subject to change depending on student subscription).", + "title": "Biotechnology Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5007V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Carriage of Goods By Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5008A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on the different transport documents which are used in contracts for the carriage of goods by sea. This will include bills of lading, sea waybills, delivery orders. The course will examine the rights and liabilities of\nthe parties to such contracts, including the shipowner, the charterer, the cargo owner, the lawful holder of the bill of lading etc. Major international conventions on carriage of goods, such as the Hague and Hague-Visby Rules, the Hamburg Rules, and the Rotterdam Rules will also be examined. This course is of fundamental importance to those individuals contemplating a career in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Carriage of Goods By Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5008AV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Charterparties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5008B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on charterparties, which are contracts between the shipowner and the charterer for the hire of the vessel, either for a specific voyage (voyage charterparties) or over a period of time (time charterparties). There are in addition, other variants of these basic types, which will also be referred to. This\ncourse will examine the standard forms for each of the charterparties being studied and examine the main terms and legal relationship between shipowners and charterers. This dynamic and important aspect of the law of carriage of goods by sea is frequently the subject of arbitral proceedings and court decisions. This course will be of importance to individuals contemplating a carrier in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Charterparties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5008BV", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the latest legal developments and areas of significance in modern China. Topics covered include Chinese legal system, legal institutions, civil law, corporate law, finance law and dispute resolution. Through this module, students will benefit from learning substantive aspects of modern Chinese law and will be conversant with Mandarin in the legal context. This course is conducted primarily in Chinese (Mandarin) and is intended for students who possess a basic level of Chinese (Mandarin).", + "title": "Modern Chinese Law & Legal Chinese", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will address the central approaches to legal research currently found in legal scholarship. It will look at the central assumptions of each approach, the questions about the law that it seeks to address, how it relates to other approaches. This seminar will also consider the best ways for researching different approaches, and what differentiates good research from less good research within each.", + "title": "Graduate Research Seminar I (Legal Scholarship)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5009GRSI", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course, compulsory for PhD students, will encourage students to reflect on the nature of supervised research. It will then examine in depth issues concerning legal research and methodology; and consider how their research might be approached from a variety of perspectives (e.g. international, comparative, theoretical, empirical). This seminar will help students to understand the process of conceiving, structuring, and refining their argument and the sorts of challenges and difficulties involved in this process. The internal structure of the thesis as well as the structure of individual chapters will be considered in depth.", + "title": "Graduate Research Seminar II (Research Methods)", + "faculty": "Law", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LL5009GRSII", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the latest legal developments and areas of significance in modern China. Topics covered include Chinese legal system, legal institutions, civil law, corporate law, finance law and dispute resolution. Through this module, students will benefit from learning substantive aspects of modern Chinese law and will be conversant with Mandarin in the legal context. This course is conducted primarily in Chinese (Mandarin) and is intended for students who possess a basic level of Chinese (Mandarin).", + "title": "Modern Chinese Law & Legal Chinese", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5009V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the civil law tradition, principally the French\ncivil law tradition (with occasional references to the German civil law tradition). The French civil law tradition has had a significant influence in a number of ASEAN countries (including Indonesia) and whenever possible the course will refer to provisions of the different ASEAN civil codes and laws. The course will give an overview of the tradition and will touch on a number of topics including private law topics. The approach will be systematic in the sense that the course will try to immerse the students in the civil law system as a whole and help them understand how the system works and is organized. The goal is to teach the students how to think like civilian lawyers, or at least to teach them how civil law jurist approach the law.", + "title": "Civil Law Tradition", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines advanced topics in the civil law tradition using a\ncomparative approach, examining in particular the similiarities and differences between the civil law and the common law (and possibly other traditions) in approaching specific legal problems. The precise topics covered and examples used will vary depending on the instructor teaching the module in a given year, but the topics typically discussed would include the methodological differences between civil and common law (use of legislation and codes, use of case law / jurisprudence, use of doctrine), the differences in policies and values, as well whether we should seek convergence and unification or respect for the mentalit\u00e9 and culture of each legal tradition through harmonization.", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5010A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines advanced topics in the civil law tradition using a\ncomparative approach, examining in particular the similiarities and differences between the civil law and the common law (and possibly other traditions) in approaching specific legal problems. The precise topics covered and examples used will vary depending on the instructor teaching the module in a given year, but the topics typically discussed would include the methodological differences between civil and common law (use of legislation and codes, use of case law / jurisprudence, use of doctrine), the differences in policies and values, as well whether we should seek convergence and unification or respect for the mentalit\u00e9 and culture of each legal tradition through harmonization.", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5010AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course has two primary objectives. The first is to introduce students to the fundamental elements of civil litigation. The second is to inculcate a sound understanding of the underlying principles and policies of civil justice. This will provide students with an analytical approach to litigation and set a foundation for practice. The Rules of Court and related sources of civil procedure will be examined as we go through the various stages of the lawsuit. Students will learn that the civil process is primarily characterised by a variety of initiatives which may be taken according to the circumstances of the case.", + "title": "Civil Justice & Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course has two primary objectives. The first is to introduce students to the fundamental elements of civil litigation. The second is to inculcate a sound understanding of the underlying principles and policies of civil justice. This will provide students with an analytical approach to litigation and set a foundation for practice. The Rules of Court and related sources of civil procedure will be examined as we go through the various stages of the lawsuit. Students will learn that the civil process is primarily characterised by a variety of initiatives which may be taken according to the circumstances of the case.", + "title": "Civil Justice & Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5011V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This discussion-based seminar will focus on issues of comparative constitutional adjudication in common law systems, with particular emphasis on the experiences of India, Singapore and South Africa. The course will therefore focus primarily on the institutional mechanisms of judicial review and the challenges for constitutionalism that are posed within this particular institutional setting.", + "title": "Comparative Constitutional Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5012V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is emerging as a distinct field of law in every nation and region. Legislatures establish environmental laws based upon the need to address perceived environmental problems in their territory or in a region of shared resources such as a river basin or coastal marine regions or the habitats for migratory species. In some instances, national legislation is stimulated by the negotiation and adherence to multilateral environmental agreements.", + "title": "Comparative Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5013V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Construction Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the legal principles that form the foundation of construction law and to the common practical problems that arise in this field. Topics will include: (a) general principles of construction law, including completion, defects, retention and certification; (b) basic provisions of construction contracts; (c) claims procedure & dispute resolution, including arbitration procedure; and (d) relevant provisions of standard form building contracts. This course will be of interest to students interested in construction practice or a practical approach to the study of law. This course is taught by partners from the Construction Practice Group of Wong Partnership.", + "title": "Construction Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5014V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "When the judges at the Nuremberg Tribunal handed down\ntheir decision against the German leaders in October\n1946, they declared \u2018crimes against peace\u2019 \u2013 the initiation\nof aggressive wars \u2013 to be \u2018the supreme international\ncrime\u2019. At the time, the charge was heralded as a legal\nmilestone, but subsequent events revealed it to be a postwar\nanomaly. This module traces the ebb and flow of the\nidea of criminalising aggression \u2013 from its origins after the\nFirst World War, through its high-water mark at the postwar\ntribunals and its abandonment during the Cold War, to\nits recent revival at the International Criminal Court.", + "title": "Topics in Int\u2019l Criminal Law (A): Aggression", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5016A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks mainly at contract law but also at some issues of commercial law in civil law jurisdictions in Asia using as examples a few Asian civil and commercial codes (for example the Indonesian codes which are similar to the\nFrench codes). It also looks at civil law in general as, unfortunately, more materials are available in English on European civil law than on Asian civil law. The course is\ncomparative in nature as it will compare civil and common law solutions. It would be a useful course for those who will works for firms with dealings across Asia.", + "title": "Contract and Commercial Law in Civil-Law Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Tax: Profits & Distributions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Tax: Profits & Distributions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5018V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Credit & Security", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the granting of credit and the taking of security by bank as well as aspects of bank supervision. The course starts with the Part on Bank Supervision and then turns to the discussion of unsecured lending and the Moneylenders' Act. It then focuses on secured credit. The discussion of the general regulation of the giving of security is followed by an examination of specific security devices, such as pledges, trust receipts, Romalpa clauses, factoring, stocks and shares as security, and guarantees and indemnities. The emphasis throughout is on the commercial effectiveness of the system.", + "title": "Credit & Security", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5019V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is aimed at giving students an overview of environmental law and its development, including the legal and administrative structures for their implementation, from the international, regional and national perspectives. It will focus on hard laws (legal instruments, statutory laws, international and regional conventions) and soft laws (Declarations, Charters etc.). In particular, it will examine the basic elements of pollution laws relating to air, water, waste, hazardous substances and noise; as well as nature conservation laws and laws governing environmental impact assessments. Singapore's laws and the laws of selected ASEAN countries will be examined.", + "title": "Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5021V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Apart from the instruments of the World Trade Organization, there are other institutions and techniques which regulate international trade. The World Bank and the International Monetary Fund regulate certain aspects of trade. There are multilateral instruments which deal with issues such as corruption, ethical business standards, investment protection, competition and the regulation of financial services. The jurisdictional reach of large powers over international markets also provides means of self-interested regulation. The international regulation of new technologies such as internet and biotechnology pose novel problems. This course addresses the issues that arise in this area in the theoretical and political contect of globalization.", + "title": "Globalization And International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5022V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Indonesian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5024", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will initiate the student to the basics of Indonesian law (adat law, Islamic law, legal pluralism, constitutional law, administrative law, civil law, judicial process) as well as to others aspects that are of concern to foreigners (foreign investment laws and protections, regional autonomy, mining laws etc.). It will also address some of the problems relating to law enforcement in Indonesia", + "title": "Indonesian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5024V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of rights.\nIt begins with exposition of Wesley Hohfeld\u2019s analysis of the different legal positions often designated as \u201crights\u201d; then uses Hohfeld\u2019s framework to understand the debate between interest and will theorists of rights. It moves on to explicit consideration of moral rights. Finally, applications are considered \u2013 including human rights, and Asian perspectives on \u201crights\u201d discourse.", + "title": "Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of rights.\nIt begins with exposition of Wesley Hohfeld\u2019s analysis of the different legal positions often designated as \u201crights\u201d; then uses Hohfeld\u2019s framework to understand the debate between interest and will theorists of rights. It moves on to explicit consideration of moral rights. Finally, applications are considered \u2013 including human rights, and Asian perspectives on \u201crights\u201d discourse.", + "title": "Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5025V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Infocoms Law: Competition & Convergence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5026V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on the UN Convention on Contracts for the International Sale of Goods, governing international commercial sales in the US and abroad. The objective of this course is to give participants an overview of the (different) ways in which this Convention has been applied by judges and arbitrators throughout the world, thus giving participants the tools to draft international import/export agreements favourable to their future clients. Participants will be given hypothetical cases and will be asked to critically examine the different substantive solutions proposed by courts and arbitrators. As the convention does not deal with all the problems that may arise out of international commercial sales, the course will also deal with the issue of how to fill the gaps left by this Convention.", + "title": "International & Comparative Law Of Sale", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5029", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5029AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5029BV", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic understanding of the law of arbitration to enable them to advise and represent parties in the arbitral process confidence. Legal concepts peculiar to arbitration viz. separability, arbitrability and kompetenze-kompetenze will considered together with the procedural laws on the conduct of the arbitral process, the making of and the enforcement of awards. Students will examine the UNCITRAL Model Law and the New York Convention, 1958. This course is most suited for students with some knowledge of the law of commercial transactions, shipping, banking, international sale of goods or construction.", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5029V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Globalisation has made it more important for lawyers to be knowledgeable about the international aspects of litigation. This course focuses on the jurisdictional techniques most relevant to international commercial litigation: in personam jurisdiction, forum non conveniens, interim protective measures, recognition and enforcement of foreign judgments, public policy, and an outline of choice of law issues for commercial contracts. The course, taught from the perspective of Singapore law, based largely on the common law, is designed to give an insight into the world of international litigation. These skills are relevant to not only litigation lawyers, but also lawyers planning international transactions.", + "title": "International Commercial Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5030V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International law traditionally concerns itself with the relations between states, yet environmental problems transcend borders. International environmental law demonstrates how international norms can affect national sovereignty on matters of common concern. The course surveys international treaties concerning the atmosphere and the conservation of nature, and connections to trade and economic development. Institutions and principles to promote compliance and cooperation are also examined. The course will assist students in their understanding of international law-making. It would be of use to those interested in careers involving international law, both for the government and public sector and those in international trade and investment.", + "title": "International Environmental Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International law traditionally concerns itself with the relations between states, yet environmental problems transcend borders. International environmental law demonstrates how international norms can affect national sovereignty on matters of common concern. The course surveys international treaties concerning the atmosphere and the conservation of nature, and connections to trade and economic development. Institutions and principles to promote compliance and cooperation are also examined. The course will assist students in their understanding of international law-making. It would be of use to those interested in careers involving international law, both for the government and public sector and those in international trade and investment.", + "title": "International Environmental Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5031V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Investment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5032", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the nature of risks to foreign investment and the elimination of those risks through legal means. As a prelude, it discusses the different economic theories on foreign investment, the formation of foreign investment contracts and the methods of eliminating potential risks through contractual provisions. It then examines the different types of interferences with foreign investment and looks at the nature of the treaty protection available against such interference. It concludes by examining the different methods of dispute settlement available in the area. The techniques of arbitration of investment disputes available are fully explored.", + "title": "International Investment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5032V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes a problem-oriented approach to public international law. Its primary objective is to provide students with an understanding of the basic principles of public international law and a framework for analysing international legal disputes. The focus will be a past problem from the Philip C. Jessup International Law Moot Court Competition. This will be used to illustrate the basic principles of public international law applicable in an international dispute. Its second objective is to teach students how to research points of international law and to construct persuasive arguments based on legal precedent, general principles, policy and facts.", + "title": "International Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5033V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Regulation of Shipping", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5034", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the global regime governing the international regulation of commercial shipping. It will examine the relationship between the legal framework established in the 1982 UN Convention on the Law of the Sea and the work of the International Maritime Organization (IMO), the UN specialized agency responsible for the safety and security of international shipping and the prevention of pollution from ships. The course will focus on selected global conventions administered by the IMO, including those governing safety of life at sea (SOLAS), the prevention of pollution from ships (MARPOL) and the training, certification and watchkeeping for seafarers (STCW). It will also examine the liability and compensation schemes that have been developed for pollution damage caused by the carriage of oil and noxious substances by ships, as well as the conventions designed to ensure that States undertake contingency planning in order to combat spills of oil and other noxious and hazardous substances in their waters. In addition, the course will examine the schemes that have been developed to enhance the security of ships and ports in light of the threat of maritime terrorism. It will also examine the role of the IMO in the prevention of pollution of the marine environment from dumping waste at sea and from seabed activities subject to national jurisdiction. One of the themes of the course will be to consider how the IMO is responding to increased concern about the protection and preservation of the marine environment, including threats such as invasive species and climate change. Another theme will be to consider how the responsibility to enforce IMO Conventions is divided between flag States, coastal States, port States and the IMO. This course will be useful to persons who intend to practice shipping law or work in the private or public maritime sector.", + "title": "International Regulation of Shipping", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5034V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transaction", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5035V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The sociology of law studies law as a social institution. We will explore the relationships among law, social actors and other social institutions. This is in contrast to the legal academy\u2019s formalist approaches that treat law as\nautonomous and impartial, and jurisprudential concerns about law\u2019s morality. We will consider both theoretical and empirical, and classic and contemporary works in sociology of law. Issues covered include: law and classic social theory; law and contemporary social theory; law and power; the social construction of disputes and dispute resolution; law and organizations; legal mobilization; law, collective action, and social change; legal consciousness; and, sociological perspectives on the legal profession.", + "title": "Sociology of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5037", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The sociology of law studies law as a social institution. We will explore the relationships among law, social actors and other social institutions. This is in contrast to the legal academy's formalist approaches that treat law as autonomous and impartial, and jurisprudential concerns about law's morality. We will consider both theoretical and empirical, and classic and contemporary works in sociology of law. Issues covered include: law and classic social theory; law and contemporary social theory; law and power; the social construction of disputes and dispute resolution; law and organizations; legal mobilization; law, collective action, and social change; legal consciousness; and, sociological perspectives on the legal profession.", + "title": "Sociology of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5037V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will consider the interaction of law and religion in three aspects: firstly, through a consideration of theoretical materials that discuss and debate religion\u2019s (possible) roles in public discourse and in the shaping of law, especially in multi-religious and multi-cultural environments; second, through an examination of a range of religio-legal traditions (e.g., Islamic law, Hindu Law etc); and, third, a consideration of specific instances \u2013 in cases, legislation and public issues etc -- where law and religion meet.", + "title": "Law and Religion", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5042V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Marine Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5043", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to give students a firm foundation of existing law; a working understanding of standard form policies; and an understanding of the interaction between the Marine Insurance Act, case law and the Institute Clauses. Topics will include: types of marine insurance policies; insurable interest; principle of utmost good faith; marine insurance policies; warranties; causation; insured and excluded perils; proof of loss; types of losses; salvage, general average and particular charges; measure of indemnity and abandonment; mitigation of losses. This course will appeal to students who wish to specialise in either insurance law or maritime law.", + "title": "Law Of Marine Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5043V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Mediation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5044", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a skills-based workshop and is designed to assist participants in learning about and attaining a basic level of competency as a mediator and mediation advocate. Topics covered include: Interest-based mediation vs Positions-based mediation; The Mediation Process; Opening Statements; Co-Mediation; Preparing a client for mediation; and Mediation advocacy. This workshop is targeted at self-motivated Year 3 & 4 students interested in learning and developing interpersonal and conflict resolution skills.", + "title": "Mediation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5044V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_MC", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Negotiation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5045", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a skills-based workshop and is designed to assist participants in learning about and attaining a basic level of competency as a negotiator. This is particularly important as lawyers commonly engage in negotiation as part of their practice. Topics covered include: Interest-based negotiation vs Position-based negotiation; Preparing for a negotiation; Creating and Claiming Value; and Overcoming Impasse. This workshop is targeted at self-motivated students interested in learning and developing interpersonal and negotiation skills.", + "title": "Negotiation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5045V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_MC", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Principles of Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5049", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of conflict of laws addresses three questions: Which country should hear the case? What law should be applied? What is the effect of its adjudication in another country? This course includes an outline of jurisdiction and judgments techniques, but will focus on problems in choice of law, and issues in the exclusion of foreign law. Coverage includes problems in contract and torts, and other areas may be selected from time to time. This course is complementary to International Commercial Litigation, but it stands on its own as an introduction to theories and methodologies in the conflict of laws.", + "title": "Principles Of Conflict Of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5049V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5050", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundational course introduces the student to the nature, major principles, processes and institutions of the international legal system, the relationship between international and domestic law and the role of law in promoting world public order. Students will acquire an understanding of the conceptual issues underlying this discipline and a critical appreciation of how law inter-relates with contemporary world politics, its global, regional and domestic significance. Topics include the creation and status of international law, participation and competence in the international legal system, primary substantive norms such as the law regulating the use of force and enforcement procedures.", + "title": "Public International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5050V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Principles of Restitution", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5051", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Domestic and International Sale of Goods", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5054", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of domestic and international sale of goods under the Singapore law. With regard to domestic sales, the course will focus on the Sale of Goods Act. Topics to\nbe studied will include the essential elements of the contract of sale; the passing of title and risk; the implied conditions of title, description, fitness and quality; delivery and payment, acceptance and termination, and the available remedies. With particular reference to a seller\u2019s delivery obligations, the course will also cover substantial aspects of the international sale of goods under the common law, such as FOB and CIF contracts and documentary sales. This course will be of interest to students intending to enter commercial practice.", + "title": "Domestic and International Sale of Goods", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5054V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide an overview of securities regulation, trusts, corporate governance and M & A, in Singapore and jurisdictions like US, China, UK, Australia, Taiwan and HK. Topics to be covered: use of alternative business entities and nature of shares; \"going public\" process; corporate governance of listed companies and trusts; insider trading and securities frauds; globalisation and technology; and the regulation of takeover activity. It also offers an introduction to the law of trusts, including custody arrangements and securitisation. Students are expected to search Internet for comparative materials but will also be provided with assigned readings.", + "title": "Securities Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5055", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5056A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation course seeks to acquaint participants with a basic working knowledge of income tax and goods and services tax issues faced by companies and individuals. It will illustrate the extent to which tax avoidance is acceptable under the rules for deductions, capital allowances and losses. In addition, the taxation of income from employment income, trade and investments will be highlighted. Tax planning opportunities arising from the differences in tax treatment of sole proprietors, partnerships and companies will be highlighted. On policy issues, concepts including economics of taxation, international trends and tax reform will be covered.", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5056AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5056B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation course seeks to acquaint participants with a basic working knowledge of income tax and goods and services tax issues faced by companies and individuals. It will illustrate the extent to which tax avoidance is acceptable under the rules for deductions, capital allowances and losses. In addition, the taxation of income from employment income, trade and investments will be highlighted. Tax planning opportunities arising from the differences in tax treatment of sole proprietors, partnerships and companies will be highlighted. On policy issues, concepts including economics of taxation, international trends and tax reform will be covered.", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5056BV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to examine and critique the philosophical assumptions that underlie the substantive criminal law. We begin with a survey of the various philosophical theories that purport to explain and justify the imposition of criminal liability. Once familiar with the fundamental concepts and issues, we then consider the relationship between moral responsibility and criminal liability by analyzing the theoretical assumptions behind the substantive principles and doctrine of criminal law. This is a seminar-style course aimed at students who already have grounding in criminal law, philosophy of law, or moral theory. Extensive class participation is expected.", + "title": "Theoretical Foundations Of Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5057V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "By examining primary materials focused on the normative context within which the United Nations functions, students will develop an understanding of the interaction between law and practice. This is essential to a proper understanding of the UN Organization, but also to the possibilities and limitations of multilateral institutions more generally. The course is organized in four parts. Part I, \"Relevance\", raises some preliminary questions about the legitimacy and effectiveness of the United Nations, particularly in the area of peace and security. Part II, \"Capacity\", brings together materials on the nature and status of the United Nations. Part III, \"Practice\", examines how the United Nations has exercised its various powers. Part IV, \"Accountability\", concludes with materials on responsibility and accountability of the United Nations and its agents. A background in public international law is strongly recommended.", + "title": "United Nations Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5059V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "World Trade Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5060", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "World Trade Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5060B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be encouraged to reflect upon what is really involved in pursuing a life of intellectual work. To this end, students will undertake a philosophical exploration of research and scholarship as it is routinely conducted across the experimental and social sciences, the humanities, literature and philosophy. Drawing upon insights achieved by historians, scientists, legal thinkers, sociologists, philosophers and literary writers into their respective crafts, students will explore not only the practical techniques recommended by these practitioners, but more significantly, the habits and virtues that have been found to be most conducive to successful practice.", + "title": "Inquiry", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5061", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be encouraged to reflect upon what is really involved in pursuing a life of intellectual work. To this end, students will undertake a philosophical exploration of research and scholarship as it is routinely conducted across the experimental and social sciences, the humanities, literature and philosophy. Drawing upon insights achieved by historians, scientists, legal thinkers, sociologists, philosophers and literary writers into their respective crafts, students will explore not only the practical techniques recommended by these practitioners, but more significantly, the habits and virtues that have been found to be most conducive to successful practice.", + "title": "Inquiry", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5061V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of legal reasoning, and its relationship with broader questions in legal theory. The course will examine, inter alia, the nature of rules, precedent, authority, analogical reasoning, the common law, legal realism, statutory interpretation, judicial opinions, rules and standards, law and fact, and the burden of proof. The overarching questions to be addressed in this course include: In what way(s), if at all, is legal reasoning a distinctive form of reasoning? What is the relationship between legal reasoning and legal theory?", + "title": "Legal Reasoning & Legal Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5062", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of legal reasoning, and its relationship with broader questions in legal theory. The course will examine, inter alia, the nature of rules, precedent, authority, analogical reasoning, the common law, legal realism, statutory interpretation, judicial opinions, rules and standards, law and fact, and the burden of proof. The overarching questions to be addressed in this course include: In what way(s), if at all, is legal reasoning a distinctive form of reasoning? What is the relationship between legal reasoning and legal theory?", + "title": "Legal Reasoning & Legal Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5062V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Business & Finance For Lawyers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5063", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To provide law students who intend to read commercial law electives with a foundation in accounting, finance and other related business concepts. It covers topics such as interpretation and analysis of standard financial statements, the types of players and instruments in the financial markets and the basic framework of a business investment market.The course will employ a hypothetical simulation where lawyers advise on several proposals involving the acquisition and disposal of assets by a client. The issues covered in the hypothetical will include asset valuation models, financing options and techniques, and compliance with accounting and regulatory frameworks.", + "title": "Business & Finance For Lawyers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5063V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the competition law and policy framework in Singapore and will introduce students to the three pillars of the legal and regulatory framework:\n(i) the prohibition against anti-competitive agreements, \n(ii) the prohibition against abuses of market dominance, and \n(iii) the regulation of mergers and concentrations.", + "title": "Competition Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5064", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the competition law and policy framework in Singapore and will introduce students to the three pillars of the legal and regulatory framework:\n(i) the prohibition against anti-competitive agreements, \n(ii) the prohibition against abuses of market dominance, and \n(iii) the regulation of mergers and concentrations.", + "title": "Competition Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5064V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5065", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5067", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "European Union Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5069", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "European Union Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5069V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Foundations of IP Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5070", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to introduce students to the general principles of intellectual property law in Singapore, as well as, major international IP conventions. It is aimed at students who have no knowledge of IP law but are interested in learning more about this challenging area of law. It will also be useful for students intending to pursue the advanced courses in IP/IT by providing them with the necessary foundation on IP law. Students will be assessed based on open book examination, 1 written assignment and 1 class presentation. (Class presentation is subject to change depending on student subscription).", + "title": "Foundations Of Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5070V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The advent of new technologies in this scientific and technological age has led to a dramatic shift in business strategies and global economic development. IP rights (particularly patents) form an \"inexhaustible resource\" from which the fruits of research and innovation can be valued, commercially dealt with and shared. This course will analyse the international, regional and national patent laws, policies and practices including important aspects on successful technology licensing and knowledge transfer, as well as valuation and strategies for monetization of IP (patent) assets.", + "title": "International Patent Law, Policy and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5071", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The advent of new technologies in this scientific and technological age has led to a dramatic shift in business strategies and global economic development. IP rights (particularly patents) form an \"inexhaustible resource\" from which the fruits of research and innovation can be valued, commercially dealt with and shared. This course will analyse the international, regional and national patent laws, policies and practices including important aspects on successful technology licensing and knowledge transfer, as well as valuation and strategies for monetization of IP (patent) assets.", + "title": "International Patent Law, Policy and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5071V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in IP Law (B): IP Valuation: Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5072B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5073", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce to students the substantive and procedural framework of international criminal law. We will study international criminal law's historical origins, evolution, and how it is implemented today through a variety of different institutional frameworks. Among others, we will study post-WWII tribunals, the ad hoc international tribunals of Yugoslavia and Rwanda, hybrid tribunals, military tribunals and the permanent International Criminal Court. We will also examine non-criminal law responses to international crimes such as truth and reconciliation commissions. Students will critically explore and question the pros and cons of international criminal justice in terms of its professed goals and objectives.", + "title": "International Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5073V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will begin with an evaluation of the business rationale for M&As and a discussion of the various types of transactions and related terminology. The regulatory issues surrounding these transactions will be analysed through examination of the applicable laws and regulations. The course adopts an nternational comparative perspective, with greater focus on the U.S., U.K. and Singapore. While corporate and securities law issues form the thrust, incidental reference will be made to accounting, tax and competition law considerations. inally, the transactional perspective will consider various\nstructuring matters, planning aspects, transaction costs\nand impact on various stakeholders.", + "title": "Mergers & Acquisitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5074", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will begin with an evaluation of the business rationale for M&As and a discussion of the various types of transactions and related terminology. The regulatory issues surrounding these transactions will be analysed through examination of the applicable laws and regulations. The course adopts an nternational comparative perspective, with greater focus on the U.S., U.K. and Singapore. While corporate and securities law issues form the thrust, incidental reference will be made to accounting, tax and competition law considerations. inally, the transactional perspective will consider various\nstructuring matters, planning aspects, transaction costs\nand impact on various stakeholders.", + "title": "Mergers & Acquisitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5074V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "IP and Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5075", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches the overlap between intellectual property and competition law. Students will be challenged to explore the intrinsic tensions that lie between the\nstatutory regimes that regulate market dominance, restrictive agreements and the monopolistic prerogatives and assertions by holders of intellectual property rights.", + "title": "IP and Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5075V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "It Law I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5076", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. Issues to be examined include the conduct of electronic commerce, cybercrimes, electronic evidence, privacy and data protection. (This course will not cover the intellectual property issues, which are addressed instead in \"IT Law IP Issues\".) Students who are interested in the interface between law, technology and policy will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5076V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. The focus of this course will be on the intellectual property issues such as copyright in software and electronic materials, software patents, electronic databases, trade marks, domain names and rights management information. Students who are interested in the interface between law, technology, policy and economic rights will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5077V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about a form of arbitration which is specific to disputes arising between international investors and host states \u2013 i.e. investor-state disputes \u2013 involving public, treaty rights. In contrast, international commercial arbitration typically deals with the resolution of disputes over private law rights between what are usually private parties.\n\nIt will be of interest to those interested in arbitration, and/or the law of foreign investment.", + "title": "Law & Practice of Investment Treaty Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5078", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the relationship between the public and private power through the historical lens of the East India Company (established in 1600), one of the first multinational corporations. In particular, it examines: the\nformation and evolution of the Company and the legal implications of its ambiguous status as a private or public entity; its transformation into a sovereign power in India against the backdrop of the rise of the modern state and modern constitutionalism in Europe and the United States of America; and the Company\u2019s role in the founding of modern Singapore; and the Company\u2019s demise in 1858.", + "title": "State and Company in Legal-Historical Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5079", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Advocacy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5081", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a broad understanding of the relationship between law and social movements. Why do people mobilize collectively? We begin with this question, and then consider the different approaches of conceptualizing social movements. Next, we delve into questions intersecting social movements and sociology of law: the use of law as social control and repression, the role of lawyers in social movements, legal strategies involved in collective claim\u2010making, and the relationship between law and social change. After that, we examine a selection of case studies such as those concerning prodemocracy\nmovements, sexual rights movements, rightwing and counter movements, and transnational movements.", + "title": "Law & Social Movements", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5082", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Trusts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5085", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5088", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide students with a comparative perspective on selected issues in contract law. It will compare the main principles of contract at common law and that in Chinese law. It will also examine the Chinese\ncontract law perspectives on scope of application, judicial interpretation, formation, performance, modification and assignment of contracts as well as liability for breach of contract.\n\nAt the end of the course, students will be able to understand the Chinese contract law framework and appreciate the differences at common law and that in Chinese law.", + "title": "Chinese Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5088V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Corporate and Securities Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5089", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the laws and the relevant legislation governing the main forms of foreign direct investment (FDI) in China such as equity joint ventures, contractual joint ventures, wholly foreign-owned enterprises and limited liability companies.The aim is to provide students with a critical understanding of the FDI regime in China as well as an understanding of the relationship between the FDI governing laws and other general laws so as to provide updated and accurate information and enable proper legal advice to be given in this area.", + "title": "Chinese Corporate & Securities Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5089V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5093", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5093V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Legal aid aims to ensure that all member of society have access to justice, regardless of their financial means.\n\nThis clinic provides students with a unique experiential learning opportunity. Students will assist an experienced legal practitioner with a Legal Aid Bureau case. Cases will relate to family law matters, and may cover issues relating to divorce, child maintenance, estate division and mental capacity. \n\nUnder guided mentorship, students will experience a meaningful learning journey that will allow them to gain professional practice skills, substantive knowledge in the area of family law, and refine their research, analysis, and drafting skills.", + "title": "The Pro Bono Family Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5094", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic provides students with the opportunity to handle a corporate matter, for a partner organisation, under guided mentorship. Partner organisations presently include the National Gallery Singapore, Singapore Art Museum, The Arts House, Alzheimer's Disease Association, Singapore Hospice Council, Singapore Children\u2019s Society and Ernst & Young (Legal Corporate Social Responsibility Group).\n\nStudents will experience a meaningful learning journey, will gain valuable corporate practice skills, and increase their substantive knowledge in the areas of law that are relevant to the matters they are handling. Matters could cover areas such as personal data protection, contract formation and intellectual property issues.", + "title": "The Corporate Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5094A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic provides students with the opportunity to handle a corporate matter, for a partner organisation, under guided mentorship. Partner organisations presently include the National Gallery Singapore, Singapore Art Museum, The Arts House, Alzheimer's Disease Association, Singapore Hospice Council, Singapore Children\u2019s Society and Ernst & Young (Legal Corporate Social Responsibility Group).\n\nStudents will experience a meaningful learning journey, will gain valuable corporate practice skills, and increase their substantive knowledge in the areas of law that are relevant to the matters they are handling. Matters could cover areas such as personal data protection, contract formation and intellectual property issues.", + "title": "The Corporate Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5094AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The State Courts Clerkship Programme is a judicial clinical legal education programme designed to provide top law students with the opportunity to be attached to senior District Court Judges and acquire experiential knowledge of law practice through direct exposure to judicial work. It is a unique course which allows law students to acquire a different perspective of legal work through personalised interaction with senior Judges, working on actual cases from a judicial perspective and experiencing legal practice in a real-life court setting.", + "title": "NUS-State Courts Judicial Clerkship Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5094BV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Access to justice is a fundamental tenet of the rule of law. Many individuals of low means do not qualify for legal aid. Low bono seeks to fill this lacuna.\n\nThis legal clinic provides students with the experiential learning opportunity of assisting lawyers, from Covenant Chambers LLC, with low bono cases. These cases could cover the area of workplace, personal injury, employment, estate or probate law. Under guided mentorship students will gain valuable professional practice skills, further substantive legal knowledge, and refine their research, analysis, and drafting skills while helping those who otherwise may not have adequate access to justice.", + "title": "The Access to Justice Low Bono Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5094C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Access to justice is a fundamental tenet of the rule of law. Many individuals of low means do not qualify for legal aid. Low bono seeks to fill this lacuna.\n\nThis legal clinic provides students with the experiential learning opportunity of assisting lawyers, from Covenant Chambers LLC, with low bono cases. These cases could cover the area of workplace, personal injury, employment, estate or probate law. Under guided mentorship students will gain valuable professional practice skills, further substantive legal knowledge, and refine their research, analysis, and drafting skills while helping those who otherwise may not have adequate access to justice.", + "title": "The Access to Justice Low Bono Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5094CV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the opportunity of being heavily involved in assisting a seasoned practitioner with the handling of a Criminal Legal Aid Scheme (CLAS) case. \n\nUnder close mentorship students will embark upon a hands-on learning journey that will allow them to gain valuable professional practice skills, and deepen their substantive criminal law knowledge. Students could be dealing with cases involving offences under the Computer Misuse and Cybersecurity Act (Cap. 50A) or the Moneylenders Act (Cap. 188). Students will be involved in tasks such as attending client interviews, drafting pleadings and possibly attending court hearings.", + "title": "The Pro Bono Criminal Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5094D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the opportunity of being heavily involved in assisting a seasoned practitioner with the handling of a Criminal Legal Aid Scheme (CLAS) case. \n\nUnder close mentorship students will embark upon a hands-on learning journey that will allow them to gain valuable professional practice skills, and deepen their substantive criminal law knowledge. Students could be dealing with cases involving offences under the Computer Misuse and Cybersecurity Act (Cap. 50A) or the Moneylenders Act (Cap. 188). Students will be involved in tasks such as attending client interviews, drafting pleadings and possibly attending court hearings.", + "title": "The Pro Bono Criminal Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5094DV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the eye-opening experience of assisting a seasoned practitioner with the handling of a case under the Legal Assistance Scheme for Capital Offences (LASCO). \n\nUnder guided mentorship clinical students will experience a learning journey that will allow them to gain valuable professional practice skills, and increase their substantive criminal law knowledge. Students may be involved in tasks such as attending client meetings, drafting pleadings and attending court hearings.\n\nStudents will be able to help accused individuals when they need it most. The experience may cause students to question their own views on justice, and life!", + "title": "The Capital Offences Criminal Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5094E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the eye-opening experience of assisting a seasoned practitioner with the handling of a case under the Legal Assistance Scheme for Capital Offences (LASCO). \n\nUnder guided mentorship clinical students will experience a learning journey that will allow them to gain valuable professional practice skills, and increase their substantive criminal law knowledge. Students may be involved in tasks such as attending client meetings, drafting pleadings and attending court hearings.\n\nStudents will be able to help accused individuals when they need it most. The experience may cause students to question their own views on justice, and life!", + "title": "The Capital Offences Criminal Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5094EV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Legal aid aims to ensure that all member of society have access to justice, regardless of their financial means.\n\nThis clinic provides students with a unique experiential learning opportunity. Students will assist an experienced legal practitioner with a Legal Aid Bureau case. Cases will relate to family law matters, and may cover issues relating to divorce, child maintenance, estate division and mental capacity. \n\nUnder guided mentorship, students will experience a meaningful learning journey that will allow them to gain professional practice skills, substantive knowledge in the area of family law, and refine their research, analysis, and drafting skills.", + "title": "The Pro Bono Family Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5094V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Int''l Trademark Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5096", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The emphasis will be on the international and comparative aspects of the subject, including\n\nthe international treaties in this area (Paris Convention; TRIPS; Madrid etc) and regional developments (eg the Community trade mark system in Europe, the harmonization efforts in Asean);\n\ninter-relationship between trade mark law and the law of unfair competition in civil law jurisdictions;\n\ndifferent treatment by countries of topics such as parallel importation; protection of personality interests; dilution; protection of \"trade dress\" or \"get up\".", + "title": "International Trademark Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5096V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Islamic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5097", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Course will introduce history and basic concepts of traditional Islamic law, followed by an account of reforms during the 19th and 20th centuries. The reform period will be covered topically, beginning with method and philosophical foundations, and moving to a variety of issues of positive and procedural law. Finally, some themes related to law and modernity will be explored.", + "title": "Islamic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5097V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5099", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an understanding of the legal issues arising from casualties involving ships. It will examine aspects of the law relating to nationality and registration of ships, the law relating to the management of ships, ship sale and purchase, and the law of collisions, salvage, towage, wreck and general average. Students successfully completing the course will be familiar with the international conventions governing these issues, as well as the domestic law of Singapore.", + "title": "Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5099V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course takes students to the areas of significance in the field of dispute resolution in China, particularly with respect to the resolution of commercial disputes where arbitration plays a major role in today\u2019s China. Major methods of dispute resolution will be examined, such as arbitration, civil litigation, and mediation (as it combines with arbitration and litigation). Some topical issues pertinent to commercial disputes such as corporate litigation, securities enforcement, recognition and enforcement of foreign civil judgments, civil justice reform, and regional judicial assistance in the Greater China region will be looked into in the course as well.", + "title": "Arbitration and Dispute Resolution in China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes students to the areas of significance in the field of dispute resolution in China, particularly with respect to the resolution of commercial disputes where arbitration plays a major role in today\u2019s China. Major methods of dispute resolution will be examined, such as arbitration, civil litigation, and mediation (as it combines with arbitration and litigation). Some topical issues pertinent to commercial disputes such as corporate litigation, securities enforcement, recognition and enforcement of foreign civil judgments, civil justice reform, and regional judicial assistance in the Greater China region will be looked into in the course as well.", + "title": "Arbitration and Dispute Resolution in China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5100V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Torts is designed to build on and further your knowledge of tort law.\nThe course is divided into two parts. In Part One, we will examine some fundamental concepts and debates surrounding tort law. The objective is to understand what is distinctive about torts and how torts are important in a civilised system of law. In Part Two, we will examine torts not already covered in the first year course. This will include consideration of important torts such as defamation, conversion, deceit, conspiracy and breach of statutory duty. These torts will be examined by reference to the best of the literature and by a selection of representative cases.", + "title": "Advanced Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5102V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced-level course which provides an opportunity for rigorous study about the nature of law and broader issues in legal and political theory such as the nature of rights, the nature of justice, and questions about (fair) distribution. The course will examine a range of salient topics related to these issues and will be taught entirely through interactive, discussion-intensive seminars, that will rely heavily on active class participation.", + "title": "Jurisprudence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced-level course which provides an opportunity for rigorous study about the nature of law and broader issues in legal and political theory such as the nature of rights, the nature of justice, and questions about (fair) distribution. The course will examine a range of salient topics related to these issues and will be taught entirely through interactive, discussion-intensive seminars, that will rely heavily on active class participation.", + "title": "Jurisprudence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5104V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Partnership and Alternative Business Vehicles", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5107V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "International Law & Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does Asia relate to the international community and international law? The region's rich diversity of states and socieities challenges assumptions of universality and also affects cooperation between states on issues such as human rights violations, environmental harm and the facilitation of freer trade. Yet a sense of reguinalism within East Asia is growing, with new institutions and mechanisms to deal with these and other contemporary challenges in East Asia. The seminar will discuss key issues of law and legal approaches in Asia, such as sovereignty, as well as provide for presentations bt students on research subjects.", + "title": "International Law & Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5109V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Copyright Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5111V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "The Contemporary Indian Legal System", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "While serving as an introductory course to the Indian legal system, this discussion-based Seminar seeks to focus on topical, contemporary legal issues in India. It will focus primarily on the post-Independence legal system in India, and its important institutions of democratic governance.", + "title": "The Contemporary Indian Legal System", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5122V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The general aim of the course is to impart a critical analytical understanding of International Insolvency Law. There will be consideration of the main features of national insolvency regimes highlighting the similarities and differences followed by a detailed consideration of the scope for cooperation in respect of insolvency matters across national frontiers. The UNCITRAL Model Law on Cross-Border Insolvency and the European Insolvency Regulation will be addressed in detail.", + "title": "International Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5123", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law & Development in China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5125", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law And Development In China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5125V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5128", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The principal objective of this course is to provide an understanding and appreciation of the various legal issues and perspectives involved in carrying out business and corporate transactions in India. \n\nThe course will begin with a brief introduction to India\u2019s legal system, the Constitution and the judiciary so as to set the tone. This part will also contain an evaluation of the changes since 1991 to India\u2019s economic policies that have made it an emerging economic superpower. Thereafter, it will deal with the core through a discussion of the legal aspects involved in setting up business operations in India, the different types of business entities available, shareholders\u2019 rights, joint ventures, raising finance both privately and by accessing public capital markets, and the regimes relating to foreign direct investment, corporate governance, mergers and acquisitions and corporate bankruptcy. \n\nWhere applicable, the course will provide relevant comparisons with similar laws in other jurisdictions such as the U.S., the U.K. and Singapore. While the course is not intended to involve an exhaustive study of all applicable laws and regulations, it will highlight key legal considerations for business transactions in India and allow for deliberation on topical, contemporary issues with real-world examples.", + "title": "Indian Business Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5129", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The principal objective of this course is to provide an understanding and appreciation of the various legal issues and perspectives involved in carrying out business and corporate transactions in India.", + "title": "Indian Business Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5129V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law, Governance & Development in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the wake of Asia's striking economic progress issues of law and governance are now seen as critical for the developing, developed and post-conflict states of Asia. Legal reforms are embracing constitutional, representative government, good governance and accountability, and human rights, based on the rule of law. How and on what principles should Asian states build these new legal orders? Can they sustain economic progress and satisfy the demands for the control of corruption and abuses of powers, and the creation of new forms of accountability? This course examines on a broad comparative canvas the nature, fate and prospects for law and governance in developing democracies in Asia, using case studies drawn especially from SE Asian states. Coverage of the issues will be both theoretical, as we ask questions about the evolving nature of 'law and development'; and practical, as ask questions about the implementation of law and development projects across Asia.", + "title": "Law, Governance & Development in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5131V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Human Rights in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5133", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Firstly, to impart a solid grounding in the history, principles, norms, controversies and institutions of international human rights law. Secondly, to undertake a contextualized socio-legal study of human rights issues within Asian societies, through examining case law, international instruments, policy and state interactions with UN human rights bodies. 'Asia' alone has no regional human rights system; considering the universality and indivisibility of human rights, we consider how regional particularities affect or thwart human rights.

\nSubjects include: justiciability of socio-economic rights, right to development and self-determination, political freedoms, religious liberties, indigenous rights, national institutions, women's rights; MNC accountability for rights violations.", + "title": "Human Rights in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5133V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Migration is not a new phenomenon but the intensity, frequency and ease with which persons are crossing borders today, both voluntarily and involuntarily, is\nunprecedented.\n\nThis course examines the legal issues impacting a person\u2019s migration path into and in Singapore. We will examine the criteria for admission to Singapore on a temporary or permanent basis, the evolution of immigration and nationality laws, as well as the domestic responses to the growing global problem of human trafficking.\n\nTheoretical perspectives on migration and citizenship are examined with a view to a range of normative questions including: How should constitutional democracies respond to and balance rights claims by citizens, residents, and others within their borders?", + "title": "Crossing Borders: Law, Migration & Citizenship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5134", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Migration is not a new phenomenon but the intensity, frequency and ease with which persons are crossing borders today, both voluntarily and involuntarily, is\nunprecedented.\n\nThis course examines the legal issues impacting a person\u2019s migration path into and in Singapore. We will examine the criteria for admission to Singapore on a temporary or permanent basis, the evolution of immigration and nationality laws, as well as the domestic responses to the growing global problem of human trafficking.\n\nTheoretical perspectives on migration and citizenship are examined with a view to a range of normative questions including: How should constitutional democracies respond to and balance rights claims by citizens, residents, and others within their borders?", + "title": "Crossing Borders: Law, Migration & Citizenship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5134V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce patent law and policy in the United States, and how they relate to other systems of law, primarily U.S. trade secret and antitrust law. The course begins with central legal principles and policies, emphasizing the concepts and skills required of a new lawyer with a working knowledge of patent law. By the end of the course, students will understand the requirements for obtaining protection, the doctrinal elements of an infringement action as well as the various types of defences and remedies available. Students will also gain a practice-oriented perspective of \u201creal-world\u201d issues facing inventors and companies as well as how those issues are consistent with, or in tension with, other interests.", + "title": "Patent Law & Practice: Perspectives from the U.S", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5135", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International & Comparative Law of Sale in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5138", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to prepare students for regional and international trade in Asia by providing basic knowledge of domestic laws of sale in both civil and common law systems in Asia (including Singapore's) as well as international rules affecting the contract of sale. The course will cover: comparative private law of contract and of sale in Asia; international private law of sale; private International Law aspects of international sales. The course is meant for students interested in international trade and comparative law in Asia.", + "title": "Int'l&Comp Law of Sale in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5138V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Law of the Sea governs the conduct of States in the oceans. Given that the oceans covers five-seventh of the world\u2019s surface, it is a critical component of international law. It is also relevant for Singapore due to its extensive maritime interests. This course will examine the theoretical underpinnings and the practical implementation of Law of the Sea with the aim of examining how it addresses the ever-increasing challenges in the regulation of the oceans. The course will draw on a wide range of case studies from around the world, with a particular emphasis on Asia.", + "title": "Law of the Sea: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5140", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Law of the Sea governs the conduct of States in the oceans. Given that the oceans covers five-seventh of the world\u2019s surface, it is a critical component of international law. It is also relevant for Singapore due to its extensive maritime interests. This course will examine the theoretical underpinnings and the practical implementation of Law of the Sea with the aim of examining how it addresses the ever-increasing challenges in the regulation of the oceans. The course will draw on a wide range of case studies from around the world, with a particular emphasis on Asia.", + "title": "Law of the Sea: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5140V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is primarily concerned with the age-old dichotomy between law in the law books and law in action. Through the examination of the origin, function and pattern of law in primitive and modern societies from a historical, anthropological and sociological perspective, we will try to understand better, the constraints under which \u2018law\u2019 in modern society operates, and the limits on the use of law as an instrument of social change. \n\nIn the first part of the course, the student will be introduced to basic ideas in classical anthropology and the sociology of law. Questions such as - Are there any \u2018universal\u2019 patterns of human behaviour? To what extent is a society\u2019s perception of law influenced or controlled by environmental and econological factors? How are disputes resolved? Is aggression and warfare inherent in the human condition? - will be dealt with. In the second part of the course, these anthropological methods will be applied to a study of the concept of law in diverse societies from a sociological perspective, and to the actual function of law in \nsociety. Do patterns of human behaviour discernable in primitive societies hold true in more complex \u2018modern\u2019 societies? What are the attributes of a \u2018modern\u2019 legal system? Is the concept of \u2018law\u2019 in the western sense inevitable and universal in all kinds of societies. What happens to the concept of law in plural societies? \n\nTeaching will be by seminars which will include lectures and discussion of assigned readings. No previous knowledge of law anthropology or sociology is required or will be assumed of students.", + "title": "Law & Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5146", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is primarily concerned with the age-old dichotomy between law in the law books and law in action. Through the examination of the origin, function and pattern of law in primitive and modern societies from a historical, anthropological and sociological perspective, we will try to understand better, the constraints under which \u2018law\u2019 in modern society operates, and the limits on the use of law as an instrument of social change. \n\nIn the first part of the course, the student will be introduced to basic ideas in classical anthropology and the sociology of law. Questions such as - Are there any \u2018universal\u2019 patterns of human behaviour? To what extent is a society\u2019s perception of law influenced or controlled by environmental and econological factors? How are disputes resolved? Is aggression and warfare inherent in the human condition? - will be dealt with. In the second part of the course, these anthropological methods will be applied to a study of the concept of law in diverse societies from a sociological perspective, and to the actual function of law in society. Do patterns of human behaviour discernable in primitive societies hold true in more complex \u2018modern\u2019 societies? What are the attributes of a \u2018modern\u2019 legal system? Is the concept of \u2018law\u2019 in the western sense inevitable and universal in all kinds of societies. What happens to the concept of law in plural societies? Teaching will be by seminars which will include lectures and discussion of assigned readings. No previous knowledge of law anthropology or sociology is required or will be assumed of students.", + "title": "Law & Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5146V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative study of the law of secured transactions across the common law world. The first part covers the English law of security and title financing in depth. The second part looks at the notice filing model originally introduced in UCC Article 9 and now enacted as PPSAs in several other jurisdictions. The third part looks at reform of secured transactions law around the world, and, in particular, the Cape Town Convention and the UNCITRAL Legislative Guide and Model Law. This course will be of interest to anyone interested in the debt side of corporate finance, as well as those interested in transnational commercial law.", + "title": "Secured Transactions Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5148", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The settlement of disputes arising from foreign direct investment attracts global interest and attention. Foreign investors often arbitrate their disputes with host States via an arbitration clause contained in a contract. Additionally, investment treaties also empower foreign investors to bring claims in arbitration against host State. The distinct body of law that grew into international investment law, has become one of the most prominent and rapidly evolving branches of international law. The aim of this course is to study the key developments that have taken place in the area. It deals with questions of applicable law, jurisdiction, substantive obligations, as well as award challenge and enforcement, in both investment contract arbitration and investment treaty arbitration.", + "title": "International Investment Law and Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5150", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The settlement of disputes arising from foreign direct investment attracts global interest and attention. Foreign investors often arbitrate their disputes with host States via an arbitration clause contained in a contract. Additionally, investment treaties also empower foreign investors to bring claims in arbitration against host State. The distinct body of law that grew into international investment law, has become one of the most prominent and rapidly evolving branches of international law. The aim of this course is to study the key developments that have taken place in the area. It deals with questions of applicable law, jurisdiction, substantive obligations, as well as award challenge and enforcement, in both investment contract arbitration and investment treaty arbitration.", + "title": "International Investment Law and Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5150V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Police Enforcement Cooperation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5153", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will explore several key topics at the intersection of law and economics. It will commence with an exploration of the concept of rationality as employed in\n(positive) micro-economic theory. It will also explore the Coase theorem as a means of understanding the importance of legal rules and institutions. These theoretical tools will then be used as a lens for examining, amongst other topics, tort, contract and insolvency law; company law; financial regulation, and the role of law and legal institutions in economic development.", + "title": "Topics in Law & Economics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5155", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive overview of international climate change law as well as examines the legal and regulatory responses of selected Asian jurisdictions to climate change. The first part of the course will examine the UN Framework Convention on Climate Change legal regime.The second part will focus on climate change litigation. In the final part, we examine how selected Asian jurisdictions, including Singapore, have adopted laws and regulatory frameworks for climate change mitigation and adaptation.", + "title": "Climate Change Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5158", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive overview of international climate change law as well as examines the legal and regulatory responses of selected Asian jurisdictions to climate change. The first part of the course will examine the UN Framework Convention on Climate Change legal regime.The second part will focus on climate change litigation. In the final part, we examine how selected Asian jurisdictions, including Singapore, have adopted laws and regulatory frameworks for climate change mitigation and adaptation.", + "title": "Climate Change Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5158V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will look at the way economists analyze legal problems and how economics has contributed to our understanding of the legal system. In order to do that, we\u2019ll want to get a firm grounding on what an economist\u2019s lens looks like. We\u2019ll run through the main principles of economic thought. \n\nAfter this introduction to economic thinking, we\u2019ll look at how the principles of economics are applied in specific legal contexts. For these basic applications, we shall take examples from four courses (Property, Contracts, Torts, Criminal Law) to see how an economist might approach these problems.\n\nFollowing on from these basic applications, we\u2019ll look at various extensions to the basic model and special topics.", + "title": "The Economic Analysis of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5159", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intelligence Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5161", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intelligence Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5161V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since Singapore\u2019s independence in 1965, its economic development has been remarkable. Singapore\u2019s unique system of corporate governance is one of the keys to its economic success. This course will begin by providing a historical and comparative overview of Singapore\u2019s system of corporate governance. It will then undertake an indepth and comparative analysis of the core aspects of Singapore corporate governance, highlighting the aspects which make it unique. The course will then examine the latest developments in Singapore corporate governance, with an emphasis on analysing the details, policy rationale, and implications of recent reforms. The course will conclude by considering what the future may hold for Singapore\u2019s system of corporate governance and what other jurisdictions may learn from it.", + "title": "Singapore Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5162", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since Singapore\u2019s independence in 1965, its economic development has been remarkable. Singapore\u2019s unique system of corporate governance is one of the keys to its economic success. This course will begin by providing a historical and comparative overview of Singapore\u2019s system of corporate governance. It will then undertake an indepth and comparative analysis of the core aspects of Singapore corporate governance, highlighting the aspects which make it unique. The course will then examine the latest developments in Singapore corporate governance, with an emphasis on analysing the details, policy rationale, and implications of recent reforms. The course will conclude by considering what the future may hold for Singapore\u2019s system of corporate governance and what other jurisdictions may learn from it.", + "title": "Singapore Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5162V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Projects Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5164", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is intended to introduce students to the practice and law relating to international projects and infrastructure. The various methods of procurement and the construction process involved will be reviewed in conjunction with standard forms that are used internationally - such as the FIDIC, JCT and NEC forms, among others. Familiar issues such as defects, time and cost overruns and the implications therefrom (and how these matters are dealt with in an international context) will also be covered.\n\nThe course will provide students with an understanding of how international projects are procured, planned and administered as well as give an insight into how legal and commercial risks are identified, priced, managed and mitigated.", + "title": "International Projects Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5164V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course of private international law which offers a comparative perspective on the traditional issues addressed by rules of private international law, i.e. choice of law, international jurisdiction, and the recognition of foreign judgments. The focus will essentially be the United States and on the European Union, but other jurisdictions will also be considered from time to time.", + "title": "Comparative Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5170", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Asean Environmental Law, Policy and Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5171", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the progressive development of environmental law, policy and governance in ASEAN. It also considers the role of ASEAN in supplementing and facilitating international environmental agreements (MEAs), such as the Convention on International Trade in Endangered Species, the Convention on Biological Diversity, UNESCO Man & Biosphere,etc. It will evaluate the extent of implementation of the ASEAN environmental instruments at national level - some case studies will be examined.", + "title": "ASEAN Environmental Law, Policy & Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5171V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Japanese Corporate Law & Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5172", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Corporate Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5173", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the core legal characteristics of the corporate form in five major jurisdictions: the U.S., the U.K., Japan, Germany and France. It explains the common agency problems that are inherent in the corporate form and compares the legal strategies that each jurisdiction uses to solve these common problems. The major topics that this comparative examination covers include: agency problems; legal personality and limited liability; basic governance structures; creditor protection; related party transactions; significant corporate actions; control transactions; issuer and investor protection; the convergence of corporate law; and, comparative corporate law in developing countries.", + "title": "Comparative Corporate Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5173V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The development of new types of legal phenomena in the global arena has outgrown established understandings of law, and conventional classifications of legal materials. At the point of needing a theoretical underpinning for the novel concerns of academic law occasioned by globalization, fresh considerations of interdisciplinary perspectives on law are opened up, questioning the extent to which a distinctively legal approach to global issues is possible. This course engages with these challenges by exploring the global interconnectedness of law, morality, politics and economics, and considers what contribution legal theory might make to illuminating complex policy issues with a global reach.", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5175", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The development of new types of legal phenomena in the global arena has outgrown established understandings of law, and conventional classifications of legal materials. At the point of needing a theoretical underpinning for the novel concerns of academic law occasioned by globalization, fresh considerations of interdisciplinary perspectives on law are opened up, questioning the extent to which a distinctively legal approach to global issues is possible. This course engages with these challenges by exploring the global interconnectedness of law, morality, politics and economics, and considers what contribution legal theory might make to illuminating complex policy issues with a global reach.", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5175V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide you with an overview of the copyright, trademark and right of publicity issues confronting the entertainment industries of movies, music, books, video games, visual and performing arts, and new media. It provides a transnational perspective with an emphasis on cases from California, New York and the United Kingdom. This is not a course on entertainment law in Singapore, but the principles you learn could be relevant to Singapore law.\n\nWith case studies ranging from Roger Federer to Ariana Grande, Britney Spears to Tiger Woods, Avatar to Star Wars, Blurred Lines to Somebody To Love, this course will cover a number of prominent causes of action brought by celebrities and rights owners.", + "title": "Entertainment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5177", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide you with an overview of the copyright, trademark and right of publicity issues confronting the entertainment industries of movies, music, books, video games, visual and performing arts, and new media. It provides a transnational perspective with an emphasis on cases from California, New York and the United Kingdom. This is not a course on entertainment law in Singapore, but the principles you learn could be relevant to Singapore law.\n\nWith case studies ranging from Roger Federer to Ariana Grande, Britney Spears to Tiger Woods, Avatar to Star Wars, Blurred Lines to Somebody To Love, this course will cover a number of prominent causes of action brought by celebrities and rights owners.", + "title": "Entertainment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5177V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the treaties used by States to protect the interests of their investors when making investments abroad and to attract foreign investment into host economies. It will pay particular attention to investor-State arbitration under investment treaties, which is increasingly becoming widespread in Asia and a growing part of international legal practice. It will examine not only the legal and theoretical underpinnings of these treaties and this form of dispute settlement, but also their practical application to concrete cases and their utility as a tool of government policy.", + "title": "Law and Practice of Investment Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5178", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the treaties used by States to protect the interests of their investors when making investments abroad and to attract foreign investment into host economies. It will pay particular attention to investor-State arbitration under investment treaties, which is increasingly becoming widespread in Asia and a growing part of international legal practice. It will examine not only the legal and theoretical underpinnings of these treaties and this form of dispute settlement, but also their practical application to concrete cases and their utility as a tool of government policy.", + "title": "Law and Practice of Investment Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5178V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Alternative Dispute Resolution", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5179", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Starting by examining the theory and the need for choice of law and jurisdiction clauses, this course will examine various issues with these clauses by involving students in drafting, negotiating, concluding and eventually enforcing choice of law and jurisdiction clauses (in particular arbitration clauses) in international commercial contracts in Asia. This will be done through real life scenarios being introduced into the classroom in which students will act as lawyers advising and representing clients in drafting and negotiating choice of law and jurisdiction clauses as well as attacking or defending them before a tribunal in a dispute context. Accordingly, students will live through the life of various choice of law and jurisdiction clauses and see how they can be drafted, negotiated and enforced in Asian jurisdictions. \nUpon completion of the course, students will have learnt the theories behind choice of law and jurisdiction clauses as well as the practical skills and lessons in negotiating, finalizing and enforcing them.", + "title": "Choice of Law & Jurisdiction in Int\u2019l Commercial Contracts in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5180", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on law, policy and practice in three regulated areas in Singapore: (1) financial markets & sovereign wealth funds; (2) healthcare; and (3) real property. It adopts a cross-disciplinary and practice-related perspective in its examination of competing and overlapping interests and the relevant theories and principles of state regulation driving these fast-developing areas. It also examines the roles, rights and obligations of the Government as a regulator, the government-linked entities as market actors, businesses and individuals, and considers \"market inefficiencies\" relating to accountability, independence, legitimacy and transparency. Students are required to evaluate current substantive law and institutional norms and processes, review comparative models and approaches in other jurisdictions, and propose a model of optimal regulation in one selected area.", + "title": "Government Regulations: Law, Policy & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5185", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on law, policy and practice in three regulated areas in Singapore: (1) financial markets & sovereign wealth funds; (2) healthcare; and (3) real property. It adopts a cross-disciplinary and practice-related perspective in its examination of competing and overlapping interests and the relevant theories and principles of state regulation driving these fast-developing areas. It also examines the roles, rights and obligations of the Government as a regulator, the government-linked entities as market actors, businesses and individuals, and considers \"market inefficiencies\" relating to accountability, independence, legitimacy and transparency. Students are required to evaluate current substantive law and institutional norms and processes, review comparative models and approaches in other jurisdictions, and propose a model of optimal regulation in one selected area.", + "title": "Government Regulations: Law, Policy & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5185V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Philosophical Foundations of Contract Law invites students to critically examine (1) the theoretical underpinnings of contract law at the level of meta theory (e.g. autonomy, reliance, promise, economic, property), but also (2) at the level of foundational concepts such as \u2018autonomy\u2019, \u2018freedom\u2019, \u2018the intention of the parties\u2019, \u2018vitiation\u2019 and \u2018expectation interest\u2019; (3) how the theories help us to explain different aspects of contract law. Students should be able to engage in normative analysis of the law (how the law should be) with a view to desirable law reform. It complements the modules Advanced Contract Law and Property Theory.", + "title": "Philosophical Foundations of Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5187", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The elective course focuses on the legal aspects of corporate finance issues, i.e. raising of funds by a company from the domestic and international markets. Major topics covered include understanding financial statements and financial ratios, equity financing through listing on recognised exchanges (including reverse/backdoor listing and rights' issue) and debt financing such as syndication loans and bond issues. Advisory Note for students from Civil Law Jurisdiction Students who have not taken lessons in trust law, contract law and company law from the common law jurisdiction may have difficulty following the course.", + "title": "Corporate Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5188", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The elective course focuses on the legal aspects of corporate finance issues, i.e. raising of funds by a company from the domestic and international markets. Major topics covered include understanding financial statements and financial ratios, equity financing through listing on recognised exchanges (including reverse/backdoor listing and rights' issue) and debt financing such as syndication loans and bond issues. \nAdvisory Note for students from Civil Law Jurisdiction: Students who have not taken lessons in trust law, contract law and company law from the common law jurisdiction may have difficulty following the course.", + "title": "Corporate Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5188V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative and critical analysis of why and how six corporate mechanisms - (1) sustainability reporting; (2) board gender diversity; (3) constituency directors; (4) stewardship codes; (5) directors' duty to act in the company's best interests; and (6) liability on companies, shareholders and directors - have been or can be used to promote corporate social responsibility in the Asian and AngloAmercian jurisdictions. It equips students with useful, practical skillsets on how to advise clients on CSR issues and with a strong foundation to critically engage with sustainability matters that will be important to them in practice.", + "title": "Corporate Social Responsibility", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5189", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative and critical analysis of why and how six corporate mechanisms - (1) sustainability reporting; (2) board gender diversity; (3) constituency directors; (4) stewardship codes; (5) directors' duty to act in the company's best interests; and (6) liability on companies, shareholders and directors - have been or can be used to promote corporate social responsibility in the Asian and AngloAmercian jurisdictions. It equips students with useful, practical skillsets on how to advise clients on CSR issues and with a strong foundation to critically engage with sustainability matters that will be important to them in practice.", + "title": "Corporate Social Responsibility", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5189V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through examining the jurisprudence in three common law Western liberal democracies of the United States, United Kingdom and Australia, this course compares and critiques how the freedom of speech is construed in these jurisdictions. By confronting the complexities of the US First Amendment, the interplay between Articles 8 and 10 of the European Convention on Human Rights, and the Australian implied constitutional guarantee, one is exposed to different theoretical, practical and often controversial approaches in the protection of free speech. Cases covered span the spectrum from flag burning to duck shooting, from the Gay Olympics to the Barbie Doll, from regulating the display of offensive art to protecting the privacy of a supermodel.\nMode of Assessment: 1 Research Paper (70%) - [to be handed in week 13]; Class Performance - 30%.", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5190", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through examining the jurisprudence in three common law Western liberal democracies of the United States, United Kingdom and Australia, this course compares and critiques how the freedom of speech is construed in these\njurisdictions. By confronting the complexities of the US First Amendment, the interplay between Articles 8 and 10 of the European Convention on Human Rights, and the Australian implied constitutional guarantee, one is exposed to different theoretical, practical and often controversial approaches in the protection of free speech. Cases covered span the spectrum from flag burning to duck shooting, from the Gay Olympics to the Barbie Doll, from regulating the display of offensive art to protecting the privacy of a supermodel.\nMode of Assessment: 1 Research Paper (70%) - [to be handed in week 13]; Class Performance - 30%.", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5190V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal principles and regulatory environment surrounding the wealth management services provided by banking institutions. Major topics that are likely to be covered on the course include the nature and regulation of wealth management services and providers, banks\u2019 potential liability for the provision of wealth management services (such as financial advisory services in general and in relation to complex financial products in particular, the provision of financial information and data, portfolio management services, and custodianship) and the effectiveness of banks\u2019 attempts to exclude or limit liability.", + "title": "Wealth Management Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5191", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Private International Law of IP", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5192", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5193", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a practical introduction to the essentials of negotiating and drafting commercial contracts in the Common Law tradition. \nThe course begins with a refresh of plain English writing skills. The second part then reviews key Common Law concepts and considers the Common Law's attitudes to the commercial world. The third looks at the fundamental shape, structure and organisation of commercial contracts. The fourth deals with aspects of law routinely encountered by the practitioner and technical drafting issues. The fifth focuses on technical drafting. The sixth and final part considers the approach of managing legal risk and the practicalities of negotiation.", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5193V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine in depth the law of partnerships. The basic framework is the same in most Commonwealth countries and based still on the UK Partnership Act of 1890. The topics to be covered in relation to general partnerships include the formation of partnerships, partnerships in the modern legal system, the relationship between partners and outsiders, the relationship of partners inter se and the dissolution of partnerships. The module will then examine the variants of limited partnerships, used mainly as investment vehicles, and limited liability partnerships. LLPs, a recent creation, are becoming increasingly popular for the professions especially. They are an amalgam of corporate and partnership concepts but are also developing their own specific legal issues which will only increase with time.", + "title": "Partnership and LLP Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5194", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international law and international relations dimensions of the current international economic systems and discuss the various possibilities for future reforms in light of the past and recent global economic crises. While the discussion will be based on the Bretton Woods System (the GATT/WTO, the IMF, and the World Bank), the course will focus mainly on the international regulatory framework of finance and investment. The purpose of the course is to let the students develop a bird\u2019s eye view of the legal aspects of the international economic architecture as well as the reasons \u2013 or the international political economy \u2013 behind its operation. Students will also be exposed certain fundamentals of international law and international relations concerning global economic affairs. Further, the course will examine the experiences of several countries\u2019 economic development and their use of international economic law to achieve economic growth.", + "title": "International Economic Law & Relations", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5195V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How do Southeast Asian constitutions accommodate religion? Is secularism necessary for democracy? Do public religions undermine religious freedom? These are some of the questions we will be engaging with in this course.\n\nThere are two segments to the course. In the first segment, we will examine general theories of statereligion relations, including liberal assumptions of the dominant theory of the separation of church and state (the \u201cdisestablishment theory\u201d), the rise and fall of the secularization thesis, and alternative theories.\n\nDuring the second segment, we will examine statereligion relations through topical issues in selected countries in Southeast Asia, including how legal systems in Singapore, Malaysia, and Indonesia accommodate Syariah Courts, and how separationist claims based on religious difference and identities are advanced in the Philippines and Thailand.", + "title": "Comparative State and Religion in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5197", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How do Southeast Asian constitutions accommodate religion? Is secularism necessary for democracy? Do public religions undermine religious freedom? These are some of the questions we will be engaging with in this course.", + "title": "Comparative State and Religion in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5197V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ASEAN leaders agreed to create a single market \u2013 the ASEAN Economic Community \u2013 by 2015. Due to sovereignty concerns, ASEAN leaders did not create a single supranational authority to regulate this market. This course examines how ASEAN member states and institutions are filling in the vacuum through formal and informal means. Students will understand how regional policymaking affects domestic laws and policies within ASEAN.", + "title": "ASEAN Economic Community Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ASEAN leaders agreed to create a single market \u2013 the ASEAN Economic Community \u2013 by 2015. Due to sovereignty concerns, ASEAN leaders did not create a single supranational authority to regulate this market. This course examines how ASEAN member states and institutions are filling in the vacuum through formal and informal means. Students will understand how regional policymaking affects domestic laws and policies within ASEAN.", + "title": "ASEAN Economic Community Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5202V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5203", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5203A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5203B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5203C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide students with an overview of the fundamental principles of Islamic commercial law and how they are applied in the modern context in connection with the practice of Islamic finance. The course will begin with \nhistorical doctrines, discuss modern transformations, review practical examples, and consider the treatment of Islamic financial contracts in secular courts.", + "title": "Islamic Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of conflict of laws issues in the context of maritime law and admiralty litigation. The course will provide an introduction to conflicts theory and concepts before focusing on conflict of jurisdictions, parallel proceedings and forum shopping in admiralty matters; role of foreign law in establishing admiralty jurisdiction; recognition and priority of foreign maritime liens and other claims; choice of law and maritime Conventions; conflicts of maritime Conventions; security for foreign maritime proceedings; and recognition and enforcement of oreign maritime judgments.", + "title": "Maritime Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of conflict of laws issues in the context of maritime law and admiralty litigation. The course will provide an introduction to conflicts theory and concepts before focusing on conflict of jurisdictions, parallel proceedings and forum shopping in admiralty matters; role of foreign law in establishing admiralty jurisdiction; recognition and priority of foreign maritime liens and other claims; choice of law and maritime Conventions; conflicts of maritime Conventions; security for foreign maritime proceedings; and recognition and enforcement of oreign maritime judgments.", + "title": "Maritime Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5205V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course encompasses the theoretical and practical concepts underpinning the entire criminal litigation process, from pre-trial to post-conviction. Coverage will include the role of the charge, drafting of charges, plea-bargains, guilty pleas, trials, consequential orders and appeals. Common evidential issues arising in trials will also be discussed. The aim is to provide both a holistic overview of the entire process as well as detailed examination of specific areas. The course will cover criminal procedure and evidence as well as include advocacy exercises in common criminal proceedings and a practical attachment at the Criminal Justice Division.", + "title": "Advanced Criminal Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course encompasses the theoretical and practical concepts underpinning the entire criminal litigation process, from pre-trial to post-conviction. Coverage will include the role of the charge, drafting of charges, plea-bargains, guilty pleas, trials, consequential orders and appeals. Common evidential issues arising in trials will also be discussed. The aim is to provide both a holistic overview of the entire process as well as detailed examination of specific areas. The course will cover criminal procedure and evidence as well as include advocacy exercises in common criminal proceedings and a practical attachment at the Criminal Justice Division.", + "title": "Advanced Criminal Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5208V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the advanced argumentative techniques possible with legal narrative, which refers to how information is selected and organised to construct a persuasive view of the facts. Fact construction plays a particularly prominent role in litigation, but it also appears in methods of alternative dispute resolution and justifications of policy positions. This module will analyze \nthe pervasive reach of fact construction in the law, examine why fact construction is such an effective tool of legal persuasion, and explore advanced techniques of fact\nconstruction.", + "title": "Legal Argument & Narrative", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the advanced argumentative techniques possible with legal narrative, which refers to how information is selected and organised to construct a persuasive view of the facts. Fact construction plays a particularly prominent role in litigation, but it also appears in methods of alternative dispute resolution and justifications of policy positions. This module will analyze \nthe pervasive reach of fact construction in the law, examine why fact construction is such an effective tool of legal persuasion, and explore advanced techniques of fact\nconstruction.", + "title": "Legal Argument & Narrative", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5209V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international intellectual property system and addresses the legal issues raised by the trade of products protected by intellectual property rights (patents, trademarks, and copyrights) across different jurisdictions. This course reviews the key international agreements and provisions in this area, as well as the different national policies, which have been adopted, to date, in several domestic jurisdictions or free trade areas, including the European Union, the U.S., China, Japan, and the ASEAN countries.", + "title": "Intellectual Property And International Trade", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international intellectual property system and addresses the legal issues raised by the trade of products protected by intellectual property rights (patents, trademarks, and copyrights) across different jurisdictions. This course reviews the key international agreements and provisions in this area, as well as the different national policies, which have been adopted, to date, in several domestic jurisdictions or free trade areas, including the European Union, the U.S., China, Japan, and the ASEAN countries.", + "title": "Intellectual Property And International Trade", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5210V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course addresses major regulatory legal aspects of money, payments, and clearing and settlement systems from international, comparative and global perspective. It addresses the design and structure of the monetary and\npayment systems; the infrastructure designed to accommodate the payment and settlement of commercial and financial transactions; sovereign debt; and the impact of sovereign risk on commercial and financial transactions. It covers domestic & international monetary systems; central banking; international retail and wholesale payments in major currencies; settlement of financial transactions; foreign exchange transactions; payment clearing & settlement: mechanisms and risks; systematically important payment systems; and global securities settlement systems.", + "title": "International Public Monetary and Payment Systems Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In an era of globalization marked by a dramatic increase in cross-border interactions and transactions, the legal norms regulating these cross-border phenomena \u2013 from terrorism to environmental protection to business law \u2013 and disputes arising from them are complex and uneven. This rise in transnational legality poses a challenge for the modern concept of law and for state and inter-state law as traditionally conceived. This course traces the emergence of the state and considers how state law has been shaped by and has adapted to globalization. It examines legal and non-legal responses to transnational problems, using examples from several areas of law.", + "title": "Transnational Law in Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module explores principles and rules relating to the exploration for, development and production of oil and gas (upstream operations). The main focus of the module is on the examination of different arrangements governing the\nlegal relationship between states and international oil companies, such as modern concessions, productionsharing agreements, joint ventures, service and hybrid contracts. The agreements governing the relationships between companies involved in upstream petroleum operations (joint operating and unitisation agreements) will also be examined. The module will further explore the\nissues of dispute settlement, expropriation, stability of contracts and a relevant international institutional and legal framework.", + "title": "International and Comparative Oil and Gas Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cyberspace is the online world of computer networks, especially the Internet. This module examines two major points of connection between the law and cyberspace: how communications in cyberspace are regulated; and how\n(intellectual) property rights in cyberspace are enforced. Specific topics include: governing the Internet; jurisdiction and dispute resolution in cyberspace; controlling online content; electronic privacy; trademarks on the Internet;\ncybersquatting; digital copyright; virtual worlds.", + "title": "Cyber Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the legal approach to curbing corruption in three jurisdictions namely: Singapore, US and UK. The focus will be on bribery of public officials both domestic and foreign. The applicable laws \u2013 domestic and\nextra-territorial - in the selected national jurisdictions will be examined to see how effective they are for curbing such corruption. The module will also examine regional and multi-regional laws enacted to curb corruption. Major topics to be coveredinclude: preventive measures; criminalization; corporate liability including criminal and non-criminal sanctions; and jurisdictional principles.", + "title": "Comparative & International Anti-Corruption Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module draws on research, programming and visiting speakers under the Centre for Asian Legal Studies, ASLI Fellows and NUS faculty, bringing students into discussion, interrogation and analysis of major current issues in Asian legal studies. The module will involve reading and analyzing recent work in the field, emphasising theoretical and methodological approaches in a comparative context. It will use current case studies as examples for analysis. These will vary from year to year according to CALS activity.", + "title": "Asian Legal Studies Colloquium", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5218V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Trial of Jesusis an excellent case for students to learn how to conduct non\u2010practical studies of legal and normative issues. It is, arguably, the most consequential\nlegal event in the evolution of Western Civilization. We will examine the historical, political, and legal background to the Trial, and, especially, the procedural propriety of\nthe Trial. Questions to be explored include: Were hisprocedural rights preserved during his trial before the Sanhedrin? Was histrial a miscarriage of justice? Through\nreflecting upon these and other questions, we will explore if and how thistrialshaped the Western culture. \n\nThis module is also concerned with the \u2018method\u2019 or \u2018process\u2019 of how students digest and integrate \u2019substance\u2019 or\u2018content\u2019. Thus,there is emphasis on the significance of understanding and clarifying, the complexity of each and every problem, and not only the importance of offering, or trying to offer, a clever solution to it.", + "title": "The Trial of Jesus in Western Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the legal issues \u2010 both from a conflict of laws perspective and a substantive law one \u2010 that may arise in connection with business contracts (such as contracts for the sale of goods, factoring contracts, leasing\ncontracts, transport contracts, etc.) that involve some element of internationality and examines those issues in light of some of the sets of rules specifically designed to address those issues when embedded in an international\nsetting (such as the United Nations Convention on Contracts for the International Sale of Goods, the International Factoring Convention, the Convention on International Financial Leasing, the Montreal Convention,\nthe Rome I Regulation, etc.). The course will also offer an overview of the basic features of litigation of those issues in state courts and before arbitral tribunals.", + "title": "International Business Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore legal and policy developments pertaining to climate change. Approaches considered will range in jurisdictional scale, temporal scope, policy orientation, regulatory target, and regulatory objective. Although course readings and discussion will focus on existing and actual proposed legal responses to climate change, the overarching aim of the course will be\nto anticipate how the climate change problem will affect our laws and our lives in the long run.", + "title": "Climate Change Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides students with profound knowledge relating to core issues of procedural law (including jurisdiction, admissibility, standing, provisional measures, \napplicable law, and the effect as well as enforcement of international decisions). It combines the discussion of these matters of law with international relations theory and issues of judicial policy. Against the background of a mounting stream of international judicial decisions, students will develop a solid analytical framework to \nappreciate the law and politics of international judicial institutions, focusing on the International Court of Justice, the International Tribunal for the Law of the Sea, the World Trade Organization, and adjudication in investment disputes.", + "title": "The Law & Politics of International Courts & Tribunals", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will analyze and discuss mergers which involve two or more entities which are located in different countries. \n\nAfter outlining the issues and conflicts created by the duality of corporate, control of foreign investment, regulatory and tax (for the latter in general terms) laws, the various solutions available will be discussed. \n\nEmphasis will be given to international treaties and European directives solutions as used in actual transactions. \n\nOther structures, in the absence of regulatory support, such as stock for stock offers and dual listing will be analyzed, also as used in actual transactions.", + "title": "Cross Border Mergers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cybercrime, cyberterrorism and cyberwars have been new threats developed in the interconnected age of the internet. In this Module we are looking at a range of \ncrimes committed through the use of computers, computer integrity offences where computers or networks are the target of the criminal activity and internet crimes \nrelated to the distribution of illegal content. This Module examines substantive criminal law in England, other European countries, the US, Canada and Singapore . It \nexplores the greater risks stemming from criminal activities due to the borderless nature of the internet and the limits of international co-operation. This module also aims to teach the key legal aspects and principles surrounding electronic data and systems security, identity management and authentication.", + "title": "Cybercrime & Information Security Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an overview of the basic economic theory that underlies competition law, an area of law that has expanded dramatically around the world in recent years. Various topics will be covered, including an economic analysis of efficiency and why competition matters from the perspective of social welfare, horizontal agreements, mergers, vertical restraints, and exclusion of competitors. While the course will not attempt to provide a comprehensive overview of antitrust law, relevant economic theory will be discussed in the context of legal cases taken from different jurisdictions around the world (most prominently the United States and Europe).", + "title": "Topics in the Law and Economics of Competition Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Other than the traditional unimodal contract of carriage, a multimodal contract of carriage requires more than one modality to perform the carriage. Think of a shipment of steel coils, traveling per train from Germany to the Netherlands, then by sea to Singapore where the last stretch to the end receiver is performed by truck. The course deals with all the legal aspects of such a multimodal contract of carriage.", + "title": "Multimodal Transport Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Other than the traditional unimodal contract of carriage, a multimodal contract of carriage requires more than one modality to perform the carriage. Think of a shipment of steel coils, raveling per train from Germany to the Netherlands, then by sea to Singapore where the last strech to the end receiver is performed by truck. The course deals with all the legal aspects of such a multimodal contract of carriage.", + "title": "Multimodal Transport Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5226V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the legal and policy framework for civil society, non-profit organizations, and philanthropy in Asia, the United Kingdom, the United States, Australia and other jurisdictions, including the formation and ac tivities of \norganizations, capital formation and fundraising, state restrictions on activities, governance, donations from domestic and foreign sources, and o ther key topics. In 2014 the instructor and students will undertake a publishing project on philanthropy, non-profit organizations and the law in Asia in collaboration with the International Center for Not-for-Profit Law (ICNL, which is based in Washington DC)", + "title": "Philanthropy, Non-profit Organizations, and the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the rules on the use of force in international law. It does so from an historical perspective with special emphasis on state practice so that students can understand how and why the law on the use \nof force has evolved in the way it has. The course sets out the general prohibition on the u se of fo rce in the UN Charter, and introduces students to key concepts such as self-defence, humanitarian intervention, and aggression. Students will be introduced to debates on pre-emption, the use of force in pursuit of self-determination, and terrorism.", + "title": "The Use of Force in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the rules on the use of force in international law. It does so from an historical perspective with special emphasis on state practice so that students can understand how and why the law on the use \nof force has evolved in the way it has. The course sets out the general prohibition on the u se of fo rce in the UN Charter, and introduces students to key concepts such as self-defence, humanitarian intervention, and aggression. Students will be introduced to debates on pre-emption, the use of force in pursuit of self-determination, and terrorism.", + "title": "The Use of Force in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5228V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course adopts a functional approach to Anglo-American company law and integrates company law with corporate governance. The course examines core Company Law and the regulatory framework and practice on corporate governance \u2013 the system (structure and process) by which companies are \ngoverned, and to what purpose. In light of their extraterritorial reach and partly because of th e relationship between their markets and legal systems, the course focusses on the similarities and variations by considering the structural \ndifferences and similarities, legal frameworks and market structure (the effect of retail and institutional investors) as drivers of corporate governance regulation in both jurisdictions.", + "title": "Corporate Governance in the US and UK", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject will provide an introduction to the modern legal system of Myanmar/Burma in social, political and historical context. It will consider the legal framework and institutions of Myanmar in light of the literature on rule of \nlaw reform in transitional and developing contexts. The subject will include a focus on constitutional law; the legislature; the courts; criminal justice; minority rights; \nforeign investment law and special economic zones; the military; and institutional reform. The mode of assessment for this course is 80% research essay, 10% class presentation and 10% class participation.", + "title": "Transition and the Rule of Law in Myanmar", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "European company law can be understood in two ways. It can indicate the EU\u2019s approach to company law and thereby lead to an analysis of the harmonized standards for 28 European nations. It can also be understood as a comparative approach to the different legal systems on the European continent. \n\nThis course includes both aspects. It will first concentrate on EU legislation and jurisdiction, followed by a comparison of the legal systems of the two most important continental European jursidictions, France and Germany. It will lead to an understanding of shared principles of civil law jurisdictions and emphasize important differences to common law systems.", + "title": "European Company Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "European company law can be understood in two ways. It can indicate the EU\u2019s approach to company law and thereby lead to an analysis of the harmonized standards for 28 European nations. It can also be understood as a comparative approach to the different legal systems on the European continent. \n\nThis course includes both aspects. It will first concentrate on EU legislation and jurisdiction, followed by a comparison of the legal systems of the two most important continental European jursidictions, France and Germany. It will lead to an understanding of shared principles of civil law jurisdictions and emphasize important differences to common law systems.", + "title": "European Company Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5233V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the way in which the concept of property has figured in political and legal theory. The module will first investigate the significance of property discourse in modern political theory, beginning with early modern authors such as Grotius and Locke, and then considering later political theorists such as Kant, Hume, Smith and Hegel, as well as utilitarian/economic treatments of property. The course will then draw upon this material to then focus on modern debates about the role of the concept of property in legal theory, covering such \nissues as economic/distributive justice, whether property is a \u2018bundle of rights\u2019, possession, ownership, and equitable property.", + "title": "Property Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the way in which the concept of property has figured in political and legal theory. The module will first investigate the significance of property discourse in modern political theory, beginning with early modern authors such as Grotius and Locke, and then considering later political theorists such as Kant, Hume, Smith and Hegel, as well as utilitarian/economic treatments of property. The course will then draw upon this material to then focus on modern debates about the role of the concept of property in legal theory, covering such issues as economic/distributive justice, whether property is a 'bundle of rights', possession, ownership, and equitable property.", + "title": "Property Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5234V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the onset of globalization, the study of contract law can no longer be confined to arrangements between private entities sharing the same nationality and operating in the same jurisdiction. The costliest and most complex contractual disputes involve States, State entities, or State-linked enterprises, and foreign nationals, as contracting parties. The introduction of States as permanent and powerful participants in economic life led to the emergence of a bespoke body of law \u2013 international contract law \u2013 to regulate these prominent contractual arrangements. This course is for students who have been targeted for regional and international legal practice, or who plan to gravitate towards transnational legal work in multinational corporations.", + "title": "International Contract Law: Principles and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the onset of globalization, the study of contract law can no longer be confined to arrangements between private entities sharing the same nationality and operating in the same jurisdiction. The costliest and most complex contractual disputes involve States, State entities, or State-linked enterprises, and foreign nationals, as contracting parties. The introduction of States as permanent and powerful participants in economic life led to the emergence of a bespoke body of law \u2013 international contract law \u2013 to regulate these prominent contractual arrangements. This course is for students who have been targeted for regional and international legal practice, or who plan to gravitate towards transnational legal work in multinational corporations.", + "title": "International Contract Law: Principles and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5235V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to explore the interaction between legal institutions and economic/business development in Greater China (i.e. China, Taiwan, HK), with focus on China. How has China been able to offset institutional weaknesses at home while achieving impressive economic results worldwide? Have China\u2019s experiences indicated an unorthodox model as captured in the term \u201cBeijing Consensus\u201d? To what extent is this model different from\nEast Asian models and conventional thinking in economic growth? This course reviews theories about market development in the context of Greater China, including securities, corporate regulations, capital markets, property, sovereign wealth funds, foreign investment, and anticorruption etc.", + "title": "Law, Institutions, and Business in Greater China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5237V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover the international, comparative and domestic aspects of corporate finance law and practice. The emphasis of the course will be on the actual application of corporate finance law in practice, the policies that have shaped the laws in Singapore and elsewhere, and the international conventions that have evolved in this area. Topics include: cash flow, value and risk; term loans and loan syndications; fund raising and capital markets; securitisations; derivatives; and financing mergers and acquisitions.", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover the international, comparative and domestic aspects of corporate finance law and practice. The emphasis of the course will be on the actual application of corporate finance law in practice, the policies that have shaped the laws in Singapore and elsewhere, and the international conventions that have evolved in this area. Topics include: cash flow, value and risk; term loans and loan syndications; fund raising and capital markets; securitisations; derivatives; and financing mergers and acquisitions.", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5238V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on contemporary legal and political institutions in the South Asian region, with particular emphasis on understanding the role and nature of law and constitutionalism. Although the primary focus will be on\nBangladesh, India, Pakistan and Sri Lanka, developments in Bhutan and Nepal will also be covered. The module will employ readings and perspectives from the disciplines of history, politics, sociology and economics to understand\nhow these affect the evolution of South Asian legal systems over time. It will also adopt comparative perspectives and analyse how individual legal systems in South Asia are influenced by other nations in the region.", + "title": "Law & Politics in South Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5239V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course begins with an analysis of the fragility of the business model of commercial and investment banks and the negative externalities of bank failure. It then focuses on three principal functions of bank regulation: (1) making banks more resilient to business shocks; (2) making it less likely that banks will suffer shocks; (3) and facilitating the resolution and recovery of banks which fail. The focus will be on the crucial policy choices involved in achieving these objectives; the trade-offs among the available legal strategies; and the problems of regulatory arbitrage (shadow banking).", + "title": "Financial Stability and the Regulation of Banks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module familiarizes students with the world of financial institutions and services, looks at the reasons for and the details of regulation and discusses the roles of central banks. This includes the general approaches and reasons for the regulation of financial markets, institutions and services. In a more detail-concentrated part, the course will focus on banks as the most strictly regulated and monitored financial institutions.\n\nCentral banks are essential for financial stability in all jurisdictions. The course discusses the reasons, objectives and tasks of central banks and their monetary policies. Examples will be central banks from Singapore, China, Japan and Europe.", + "title": "Financial Regulation and Central Banking", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5242S", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will include various aspects of financial regulation. The focus will be on the regulation of credit institutions and the role of central banks. Other forms of regulation of financial intermediaries and financial markets will be discussed in less detail. Since the focus will be on credit institutions, it will be important that the students understand what distinguishes credit institutions from other providers of financial services and how the regulatory approaches differ.\n\nThe part on the regulation of credit institutions will include requirements for their\nauthorization, their permanent supervision and rescue scenarios in situations of insolvency and default. These aspects will be discussed from a comparative perspective with the Basel requirements at the core of the discussion, complemented by the implementing norms in important jurisdictions, above all in Singapore. For resolution and restructuring the European Union has taken on a leading role, and, as a consequence, these EU approaches will be analysed in detail.\n\nThe roles of central banks will remain a core part of the course. Their tasks and objectives will be discussed from a comparative perspective. Their essential role in crisis management, their co-operation with supervisory agencies and their monetary policy will remain essential components of the course.", + "title": "Financial Regulation and Central Banking", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5242V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar explores how different aspects of physicial and social space (ie, geography) influence the efficacy of different kinds of law and regulation. Such understanding is especially useful for explanding one\u2019s understanding of the relationship between law and economics, law and development, and law and society. It is also relevant to issues of public international law, transnational law, human rights law, public law, and comparative law. \n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Law, Economics, Development, and Geography", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar explores how different aspects of physicial and social space (ie, geography) influence the efficacy of different kinds of law and regulation. Such understanding is especially useful for explanding one\u2019s understanding of the relationship between law and economics, law and development, and law and society. It is also relevant to issues of public international law, transnational law, human rights law, public law, and comparative law. \n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Law, Economics, Development, and Geography", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5243V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The administration of criminal justice in Singapore relies on an ethical, professional and skilled disposition and management of criminal cases. A good criminal practitioner needs a sound grounding in criminal law and criminal procedure, and a strong base of written and oral advocacy and communication skills. This is an experiential course that takes students through a case from taking instructions all the way through to an appeal, using the structure of the criminal process to teach criminal law, procedure and advocacy skills. Taught primarily by criminal law practitioners, this course will give an insight into the realities of criminal practice.", + "title": "Criminal Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5244V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Course explores the various ways through which public law contributes to the regulatory construction of the state. Topics will include the ways public law contributes to the various purposes of the state; the tools that public law uses to contribute to these purposes; how public law evolves; and the future of public law in a post-Westphalian world\n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Regulatory Foundations of Public Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5245V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will give students a broad understanding of the law relating to the international carriage of passengers by sea. Topics to be covered include formation of contract, regulation of cruise ships, State jurisdiction over crimes\nagainst the person on board a ship, liability for accidents, limitation of liability, the Athens Convention 1974/1990, and conflict of laws/jurisdictional issues relating to passenger claims. This module will be useful for those who\nare intending to: practice law in a broadly focussed shipping practice; work within the cruise and ferry industry; or otherwise are likely to deal with passengers and/or their claims.", + "title": "International Carriage of Passengers by Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a survey course of topics that include: international sales contract; international trade law; and international investment law. It covers the basic principles of private and public international law that are fundamental\nto the creation of the framework within which business transactions take place. It will also cover the topic of the relationships among international business transactions, globalization and economic development.", + "title": "International Economic Law & Globalisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5247V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine at an advanced level the rights and duties of company shareholders. In doing so the course will critically examine, from a comparative\nperspective, the division of power between the various organs of the modern company and the underlying policy of the law with regard to shareholders rights. The course will also key in on topical issues such as the effectiveness\nof shareholders\u2019 rights, enabling v mandatory theories of shareholders\u2019 rights, the statutory derivative action and its effectiveness and the role of the company in shareholder litigation. Finally, it will look at international developments including institutional shareholder activism.", + "title": "Shareholders' Rights & Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course concentrates on the principles of equity financing in the private and public markets, including the relevant company law rules (eg pre-emption rules), capital market regulation as far as it affects the issues of raising equity finance for public companies, private equity and its regulation, and change of control transactions.", + "title": "Principles of Equity Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the jus in bello \u2013 the law which regulates the conduct of hostilities once the decision to resort to force has been taken. This course will deal with fundamental concepts of the jus in bello, focusing on customary international law. Basic legal concepts that will be discussed include State and individual responsibility, the distinction between combatants and civilians, and the principle of proportionality. The course will also examine topics such as weaponry, international and noninternational conflicts, and the enforcement of the law in situations of conflict.\n\nNote: This course does not deal with the jus ad bellum, or the rules relating to the general prohibition on the use of force in international law.", + "title": "International Humanitarian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Humanitarian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5251V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will develop your understanding of EU law and politics as well as your capacity critically to evaluate the institutional, substantive and constitutional dimensions of European integration. It will consider the nature of the EU as well as the challenges it presents to its Member States. \n\nThe course will provide an overview of the judicial architecture and political structures of the European Union, the authority of EU law, law-making procedures, and the most significant case law in free movement, citizenship, and fundamental rights. It will also introduce more complex questions about the dynamics and direction of the process of regional integration, particularly since the Euro crisis.", + "title": "The EU and its Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Treaties are a principal source of obligation in international law. In this era of globalization, many state and individual activities in many countries are direct results of treaty obligations. In this sense, treaties are the \u201coverworked workhorses\u201d of the global legal order.\n\nDespite this significant impact on our lives, few of us understand what treaties truly mean and what kinds of implications they bring to international relations, our businesses, and private lives. In order to understand the treaty mechanisms, this course covers various aspects of the law of treaties.", + "title": "The Law of Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5253V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the changing role of developing countries in a changing international order. It does so by adopting an approach that combines history, theory, and doctrine. The course will examine the historical origins of the contemporary international legal system, and the theoretical debates that have accompanied its evolution, focusing in particular on relations between the Western and non-Western worlds. It will then examine selected topics of international law that are of current significancethese may include international human rights law, the law relating to the use of force, the international law of trade and foreign investment.", + "title": "Developing States in a Changing World Order", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5254V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary focus of the course will be given to the multilateral rules and cases of trade remedies under WTO jurisprudence. In parallel, domestic trade remedy rules and regulations and policies of China, Korea and Japan will be examined to analyze application of WTO rules to domestic jurisprudence and policies. What are the common characteristics and differences among those rules and policies? Are they consistent with WTO jurisprudence? Which agencies are in charge of trade remedy system and policy making and implementations? What is the best strategy for enterprises to respond to such policies? Answers to these key questions are given through lectures, presentations, and discussions.", + "title": "Trade Remedy Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5255V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Constitutional government in the modern era has developed different organisational and functional models, that draw their inspiration from some main principles (eg. Separation of powers, checks and balances, limited government, democratic accountability) that are distinguishing features of the same type of state. The module will consequently highlight the different forms of (presidential, semi-presidential, parliamentary) government, as experienced by the states belonging to both the common law and the civil law legal traditions. Reference will be made also to forms of constitutional government based on territorial division of powers, such as federal systems and supranational organisations such as the Europe Union.", + "title": "Comparative Constitutional Government", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar deals with ongoing research in the area of financial intermediary supervision, corporate governance and capital markets regulation. Each participant will have to 1) read the discussed papers in advance; 2) write a 10 page commentary on one of the discussed papers and present it in class; 3) comment upon one presentation by a fellow student; and 4) actively participate in the discussion throughout the seminar.", + "title": "Law & Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of key personal property concepts. Topics to be studied will include: types of personal property; personal property entitlements recognised at common law, notably, possession, ownership, title and general and special property, with some reference also to equitable entitlements; the transfer of such entitlements; the conflict between competing entitlements; the protection given by law to such entitlements; the assignment of things in action; security interests over personal property.", + "title": "Personal Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5258V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Alternative Investments", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5259AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in alternative investment from both a practical and theoretical perspective. The topics that will be covered include private equity, venture capital, hedge funds, crowdfunding and REITs. The course will discuss selected partnership and corporate issues of alternative investment vehicles. The course will focus on China and will provide relevant comparisons on alternative investment in Singapore, the U.K. and the U.S.", + "title": "Alternative Investments", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5259V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the fundamental legal concepts and principles relating to Chinese commercial law. Topics to be covered include: basic principles of PRC civil and commercial law, contracts, business associations and investment vehicles, secured transaction, negotiable instruments, taxation and dispute resolution. It will highlight key legal considerations in carrying out commercial transactions in China. Where applicable, the course will provide relevant comparisons with similar laws in other jurisdictions such as the U.S., the U.K. and Singapore.", + "title": "Chinese Commercial Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5260V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Taken concurrently with \u201cCrossing Borders\u201d but with an emphasis on experiential learning, this module offers students the opportunity to explore the legal issues affecting migrant workers, both in the classroom and through externships and case work. Students will spend most of their time outside of class, gaining practical experience by first interning at the Ministry of Manpower over the holidays and then, during the semester, volunteering an average of 10 hours weekly with either Justice Without Borders (JWB) or the NUS-HOME Theft Project (\u201cTheft Project\u201d). In class, using peer learning, including roundtable case review, students will hone their legal skills while examining the legal framework governing Singapore\u2019s foreign workers. Analysing their externship experiences, students will explore the relationship between law on the books and law in action.", + "title": "Employment Law & Migrant Workers Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5261V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines in interaction between IPRs and competition policy\nfrom two broad perspectives: the endogenous operation of competition policy\nfrom within IPR frameworks (copyright, designs, trade marks and patents),\nand the exogenous limitations placed by competition law rules on an IP\nholder\u2019s freedom to exploit his IPRs. Students enrolled in this module are\nexpected to have completed a basic intellectual property module \u2013 an\nunderstanding of what IPRs protect, the nature of the exclusive rights they\nconfer and how they may be exploited will be presumed.", + "title": "Intellectual Property Rights and Competition Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5263V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the fundamentals of how lawyers \"architect\" deals. It is taught in two parts. \nThe first examines the unique role of the transactional lawyer and asks the questions: What is a \"deal\"? What do transactional or \"deal\" lawyers do? What is the perceived \u201cvalue\u201d of what transactional lawyers do? How can lawyers successfully design and structure a transaction? \nThe second explores in detail the elements of a theory or framework of \u201cprivate orderings\u201d. The framework covers the economic and business considerations that drive the analysis of which legal principles should apply and how risks and benefits are allocated between the parties. The course explores how the framework of private orderings can apply to guide the assessment of transactions and the choice of contracting constructs and regimes.", + "title": "Architecting Deals: A Framework of Private Orderings", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5267V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course facilitates an in-depth understanding of the structure, goals, and nature of private law remedies. An emphasis is placed on the role of remedies within the broader structure of private law, and the question of what, if anything, remedies tell us about the substantive law.\n\nThe course ranges across a variety of substantive private law fields, examining remedies arising from contracts, torts, equity, and other sources of obligations. It will introduce students to basic organising private law concepts such as rights, duties, wrongs, loss, and gain, and the various remedial goals of compensation, vindication, disgorgement, restitution, and punishment.", + "title": "Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course facilitates an in-depth understanding of the structure, goals, and nature of private law remedies. An emphasis is placed on the role of remedies within the broader structure of private law, and the question of what, if anything, remedies tell us about the substantive law.\n\nThe course ranges across a variety of substantive private law fields, examining remedies arising from contracts, torts, equity, and other sources of obligations. It will introduce students to basic organising private law concepts such as rights, duties, wrongs, loss, and gain, and the various remedial goals of compensation, vindication, disgorgement, restitution, and punishment.", + "title": "Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5268V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Privacy may in some cases conflict with intellectual property but in other cases the two may go hand in hand and in addition other rights in personal information may further blur and complexity the boundaries. This module will explore the relationships between privacy, intellectual property and other rights in personal information in a range of contexts across different jurisdictions in an effort to explain and evaluate the current legal position, the various debates and proposals for improvements in the law.", + "title": "Privacy and Intellectual Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course examines the international legal protection of women\u2019s human rights within a framework of international law and feminist legal theories. The course will focus upon the United Nations Convention on the Elimination of All Forms of Discrimination Against Women, 1979 to which Singapore became a party in 1995 and the work of the CEDAW Committee in monitoring and implementing the Convention. The impact of certain conceptual assumptions within international law, and human rights law in particular, that militates against the Adequate protection of women's rights will be considered. After an examination of the general framework, more detailed attention will be given to certain topics including health and reproductive rights, women\u2019s right to education violence against women, including in armed conflict, political participation and trafficking. The course will finally consider the question of whether international human rights law is an appropriate vehicle for the furtherance of women's interests.", + "title": "International Human Rights of Women", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores and contrasts the different methodologies inherent in the disciplinary approaches of legal and policy analysis. What are the biases and assumptions in each method of analysis? How does each method view the other? How is each approach relevant to the other in different practical situations, e.g. in legal advice, court arguments and judgments and in government policy formulation.", + "title": "Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the wake of the Global Financial Crisis (GFC) of 2008, the visibility of finance and financial regulation has increased dramatically. This subject will provide an overview of the global financial system and international efforts to build\nstructures to support its proper functioning. Taking an integrative approach, the subject will look at the evolution of the global financial system, its structure and regulation. In doing so, the subject will analyse financial crises, especially\nthe GFC, and responses thereto, the Basel Committee on Banking Supervision (BCBS), the Financial Stability Board (FSB) and the International Monetary Fund (IMF). The approach will be international and comparative, with a focus on major jurisdictions in the global financial system, and will not focus on any single jurisdiction.", + "title": "International Financial System: Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course deals on a comparative legal basis (US-, EU and Swiss law) with problems related to:\nI. How to coordinate economic activities?\nII. Implementation of a competition system\n1) Competition? Private restrictions to competition and what states can do against it?\n2) The substantive EU- and Swiss-provisions\n\u2013 against agreements restricting competition and abuse of market power\n\u2013 on merger control\n\u2013 on sanctions and leniency programs\n\u2013 Discussion of leading cases\n3) State aids; public and private enforcement\nIII. Correcting the competition system\nPlanned sectors, consumer protection, price controlling\nIV. Controversial questions, the \u201emore economic\napproach\u201c? Efficiency and individual freedom to compete? Global competition?", + "title": "European & International Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5273", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Worldwide, governments are increasingly relying on broad-based consumption taxes, such as the GSTs in Singapore, Malaysia, New Zealand and Australia and the VAT in Europe, to raise revenue. This course will introduce students to theories of comparative tax law and consumption taxation and to key GST law and policy concepts. With these theoretical, conceptual and legal tool kits, we will then explore the complex but fascinating legal and policy issues relating to cross-border trade in goods and services (such as professionals providing services to clients across borders and global digital trade), financial services and real property transactions.", + "title": "Comparative GST Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International organizations play an increasingly important role in the international community. While the state continues to be the supreme form of political organization, international organizations, such as the UN, the WTO, the IMF, the World Bank, the ASEAN, the EU and NATO, are indispensable to cope with globalization and increasing interdependence. The main objective of this course is to familiarize students with the fundamental rules of international institutional law \u2013 that is the body of rules governing the legal status, structure and functioning of international organizations.", + "title": "International Institutional Law:", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5275", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Contract Law invites students to examine some interesting and controversial topics from this foundational subject. Some topics will build on what students already know in their first-year/basic contract law course (e.g. how does contract law deal with change of circumstances?), some will cover new ground (e.g. the role of good faith in contract law). You will be able to write a paper on a topic of particular interest to you. The course also complements the module Advanced Tort Law and Philosophical Foundations of Contract Law.", + "title": "Advanced Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5276", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the tools necessary for students to develop and reflect critically upon contemporary ethical and legal issues in medicine and the biosciences. Its substantive content includes and introduction to medical\nethics and medical law, health care in Singapore (presented comparatively with select jurisdictions, such as the UK and the USA), and professional regulation. The following key areas will be considered:\n- Professional regulation and good governance of medicines;\n- Genetics and reproductive technologies (including abortion and pre-natal harm);\n- Mental health;\n- Regulation of Human Biomedical Research;\n- Innovative treatment and clinical research;\n- Infectious Diseases;\n- Organ transplantation; and\n- End-of-life concerns (e.g. advance care plan and advance directive, discontinuation of life sustaining treatment, etc.).", + "title": "Medical Law and Ethics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5277V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Alongside the European Union the Asia-Pacific is becoming the central arena for trade and investment and its contestation within the world today. This module examines the global, regional and bilateral frameworks governing trade, investment, competition and migration across this region. It has three components. The first looks at how different organisations and regimes \u2013 the WTO, ASEAN, ASEAN Plus Agreements, BITS, NAFTA and Closer Economic Relations \u2013 interact to govern the region and the attempts to reform this, most notably through the TransPacific Partnership Process. The second looks at the detailed laws and processes governing trade in goods and services and investment. The final section looks at a number of further key policies: intellectual property, competition, the professions, and migration.", + "title": "Trade and Investment Law in the Asia-Pacific", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5278V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the conceptual foundation of access to justice and the practical challenges it raises in formal systems of dispute resolution. Using a Research Seminar structure, the module integrates academic analysis with experiential learning by providing students with opportunities to produce and critique original research on themes emerging from student internships and pro bono experiences.", + "title": "Access to Justice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5279V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Companies are both the victims of and vehicles for crime. This module examines both aspects. The first aspect covers crimes against the company by management \u2013 criminal breach of trust, dishonest misappropriation of property, breaches of fiduciary duty, misuse of corporate information. The second aspect will deal with using companies as vehicles for crime \u2013 cheating, money-laundering. Corruption cuts across both aspects. The statutes covered will be the Companies Act; Corruption, Drug Trafficking and Other Serious Crimes (Confiscation of Benefits Act); Penal Code; and Prevention of Corruption Act. Students must have a firm grounding in both Criminal Law and Company Law.", + "title": "Crime and Companies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5280V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module acquaints the students with the laws and principles relating to the civil litigation process. The three distinct stages, namely, pre-commencement of action, pre-trial and post-trial are discussed in detail. The overriding aims of the civil justice system will also be deliberated. This will enable the students to better understand and appreciate the rationale of the application of the provisions of the rules of court. In this regard, the students will be able to make a case on behalf of their clients or against their opponents when the perennial issue of non-compliance with procedural rules takes centre stage. This module is designed to prepare the students to practise law in Singapore. Hence, the focus will primarily be on the Singapore Rules of Court and the decisions from the Singapore courts.", + "title": "Civil Procedure", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5281V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary focus of this module is on the variety of commercial dispute resolution processes available to contracting parties and the essential principles and issues pertinent to these different processes. The overriding aims are to acquaint the students with the characteristics of each of these processes, to highlight the governing principles and to discuss the perennial and emerging issues relating to this aspect of the law. Students who have undertaken this module will be able to consider the plethora of options available to them when drafting dispute resolution clauses and/or providing legal advice and representation when a dispute has arisen.", + "title": "Resolution of Transnational Commercial Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5282V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advancements in computer science have made it possible to deploy information technology to address legal problems. Improved legal searches, fraud detection, electronic discovery, digital rights management, and automated takedowns are only the beginning. We are beginning to see natural language processing, machine learning and data mining technologies deployed in contract formation, electronic surveillance, autonomous machines and even decision making. This course examines the basis behind these technologies, deploys them in basic scenarios, studies the reasons for their acceptance or rejection, and analyses them for their benefits, limitations and dangers.", + "title": "Artificial Intelligence, Information Science & Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5283V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the relevance of Confucianism to law, which includes three eras, namely: (1) Confucian legal theory and Confucian legal tradition; (2) the relevance of Confucianism to different aspects of national legal issues in contemporary East Asia (China, Japan, South Korea, Singapore, and Vietnam), such as human rights, rule of law, democracy, constitutional review, mediation, and family law; and (3) the relevance of Confucianism to international law. It will be of interest to those interested in Confucian legal tradition, customary law, Asian law, law and culture, legal theory, and legal pluralism.", + "title": "Confucianism and Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5284", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will explore key legal questions related to\ninternational dispute settlement with a view to providing a\nbroad overview of the field with respect to State-to-State,\nInvestor-State, and commercial disputes. This course will\ninclude a discussion of the various types of international\ndisputes and settlement mechanisms available for their\nresolution. It will explore the law pertaining to dispute\nsettlement before the ICJ, WTO, ITLOS, as well as\ninternational arbitration, both Investor-State arbitration and\ncommercial arbitration. The course will compare these\ndifferent legal processes on issues such as jurisdiction,\nprovisional remedies/measures, equal treatment,\nevidence, and enforcement.", + "title": "International Dispute Settlement", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5285V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "While terrorism is not a new phenomenon, the sheer scale and transnational nature of that practice in recent years have challenged some of the core tenets of international law. This seminar investigates the role that international law can play, along with its shortcomings, in suppressing and preventing terrorism. It examines the manner in which terrorism and counterterrorism laws and policies have affected the scope and application of diverse international legal regimes including UN collective security, inter-State use of force, the law of international responsibility, international human rights, international humanitarian law, and international criminal law.", + "title": "Transnational Terrorism and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5286V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines ASEAN\u2019s ongoing metamorphosis into a rules-based, tri-pillared (political-security, economic, and socio-cultural) Community pursuant to the mandate of the 2007 ASEAN Charter. It deals primarily with Law but is also attentive to the Non Law and Quasi Law aspects inherent in ASEAN\u2019s character as an international actor and regional organisation; its purposes and principles; and its operational modalities, processes, and institutions.", + "title": "ASEAN Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5287V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies European Union business regulation and how this affects both the EU and other markets. It has three components. The first looks at the types of business regulation deployed. It will include legislative harmonisation,\nprivate standardisation, mutual recognition and regulatory agencies. The second looks at the regulation of key industrial and service sectors, such as food, automobiles, pharmaceuticals, energy chemicals or financial services. The third looks at how EU business regulation interacts with non EU markets, through studying its commercial policy, free trade agreements and extraterritorial jurisdiction.", + "title": "Business, International Commerce and the European Union", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5288V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module has three distinctive features. First, it compares international commercial arbitration (ICA) international investment arbitration (ISA). Second, it focuses on the evolution of arbitration, in particular, on the development of the procedures and substantive law that have gradually enabled arbitration to become a meaningfully autonomous legal system. Third, it surveys a variety of explanations for why the arbitral order has evolved as it has \u2013 into a more \u201cjudicial-like\u201d legal order \u2013 focusing on the role of arbitral centres, state regulatory competition, and the reasoning of tribunals in their awards.", + "title": "The Evolution of International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5289V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The seminar is designed to prepare students to undertake original, primary research in law. Major topics and questions to be covered include:\n- how to write a good literature review and prospectus;\n- why one must have a method, or, how are \u201cmethods\u201d and\n\u201cdata collection\u201d related?;\n- what is research design?;\n- how to avoid, or manage, the problem of \u201cselection bias.\u201d\n\nA major component of the seminar, students will assess a variety of published papers, as well as research projects presented by the faculty.", + "title": "Legal Research: Method & Design", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5290V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The class will survey approaches to understanding legal pluralism in a range of settings, focusing on the various ways in which autonomous normative orders, including systems of law, interact with one another. Topics include: how \u201coutsider\u201d groups (e.g., Mayan Indians in Mexico, Roma-Gypsy communities, merchant guilds) govern themselves while resisting submission to the state law; the tensions between custom, state law, and human rights in Asia after the colonialist period; and the ways in which the pluralist structure of international treaty law and organization are transforming law and courts at the national level.", + "title": "Legal Pluralism and Global Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The class will survey approaches to understanding legal pluralism in a range of settings, focusing on the various ways in which autonomous normative orders, including systems of law, interact with one another. Topics include: how \u201coutsider\u201d groups (e.g., Mayan Indians in Mexico, Roma-Gypsy communities, merchant guilds) govern themselves while resisting submission to the state law; the tensions between custom, state law, and human rights in Asia after the colonialist period; and the ways in which the pluralist structure of international treaty law and organization are transforming law and courts at the national level.", + "title": "Legal Pluralism and Global Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5291V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The law governing the responsibility of States for internationally wrongful acts is absolutely central in public international law and cuts across various sub-fields of that discipline. This seminar investigates the fundamental tenets of the law of State responsibility, both from theoretical and practical standpoints, while tracing some of its historical roots. More broadly, the seminar will provide\nan overview of different doctrines of State responsibility and different theories and approaches to liability under international law. More importantly, the later sessions of the seminar will engage critically with the role that the law\nof State responsibility can play in specific areas.", + "title": "State Responsibility: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5292V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course concerns tort liability in the course of business. The first part of the course deals with professional negligence, examining the liability of solicitors, auditors, builders/architects, and banks/financial institutions. The second part of the course deals with intentional infliction of economic harm, where individuals or entities deliberately cause economic harm in the course of business. Some of the\ntopics to be covered include inducing breach of contract, unlawful interference with trade, intimidation, conspiracy and deceit. The course will touch on the intersections between torts and other areas of the law, including the law of contract, competition law and intellectual property law.", + "title": "Business Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5293S", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Credit is the lifeblood of any modern economy, but as the extension of credit carries risks, creditors take security to protect themselves. But that in turn poses challenges for corporate insolvency law. How should the rights conferred\nby security be dealt with in an insolvency? Further, what are the mechansims that creditors, secured or otherwise, may use to deal with an insolvent company? Major topics to be covered include general concepts of secured transactions, specific security and quasi-security devices over chattels and choses in action, the main themes of corporate rescue law and corporate rescue mechansims.", + "title": "Security and Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5294S", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on the instances in which resort to conflict of laws is necessary in the international arbitration context. The objective of this course is to allow participants to realise on how many occasions both State courts and arbitrators will need to report a conflict of laws analysis despite the claim that conflict of laws issues are not relevant in the international commercial arbitration context. Participants will first be taught to identify what conflict of laws rules may apply and will then be given hypothetical cases and will be asked to critically examine whether a solution can be found that does not require a conflict of laws approach.", + "title": "Conflict of Laws in Int\u2019l Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5295", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Does copying always harm creativity? Can innovation\nthrive in the face of imitiation? These questions are at the\nheart of intellectual property theory and doctrine. This\ncourse explores these issues via a close look at a range of\nunusual creative industries, including fashion, cuisine,\nsports, comedy, and tattoos, as well as more traditional\nintellectual property topics, such as music and film.", + "title": "Imitation, Innovation and Intellectual Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5296", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modern corporations draw funding to finance their\nconsumption and investment needs from a variety of\nsources on the basis of extensive cost- benefit\nconsiderations. These include a multitude of factors, such\nas legal considerations, the quantity of funding required\nand cost of capital depending on its source, and impact on\nshareholders and management etc. Corporations may also\nobtain finance by either levering existing assets or\nresorting to unsecured bank lending or bond issues. For\nthe biggest corporations the most important source of\nfinance tends to be the capital markets. These normally\ncomprise the debt and equity markets through which public\ncompanies can offer securities to investors or to transfer\nthe control of the company to new owners in the context of\nan agreed takeover, a hostile take-over bid, or of a private\nequity transaction.\nThis course aims to develop a critical understanding of the\nsubject matter through the combined study of finance\ntheory, corporate law, capital market regulation and the\ncorporate market dynamics, with a special focus on the\ndifferent stakeholders involved in corporate finance. The\nmodule will focus on critical corporate finance issues such\nas: the use of debt and equity; why merge or acquire a\nbusiness; core considerations of the process; purchase\nsale agreements and contractual governance; the role of\nthe board of directors in an acquisition/financing\ntransaction; the permissibility and regulation of takeover\ndefenses in the UK, the US and the EU. It will also discuss\ncross-border IPOS, the problem of market abuse, theory\nand practice of corporate takeovers and their regulation,\nand issues pertinent to private equity transactions, as well\npractical issues relating to structuring corporate acquisition\ndeals and attendant legal documentation. NB: While there\nis inevitably reference to scores of economic concepts and\nsome finance readings the course is specifically addressed\nto law students it is non-mathematical.", + "title": "Practice of Corporate Finance and the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5297", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is the foundation course in international finance. It is meant for all who want to gain a better understanding of what is happening and concerns primarily (a) the way money is recycled through the banking system or the\ncapital market, (b) the products and conduct of the banking, securities and investment industry in this recycling activity, (c) the risks that are taken in the financial services industry (primarily by commercial and investment banks in their different functions) and the tools of risk management, (d) the operation of the financial markets and their infrastructure, (e) the type of regulation of commercial banks and of the intermediaries and issuers in the capital markets, and (f) the objectives, role, shape and effectiveness of this regulation. In this connection, the course will also deal with the smooth operation of payment systems.\n\nFinancial risk and its management is an important theme and the major concern in the course. What can commercial or investment banks and financial regulation achieve in this regard, how is risk management structured, and what academic or other (political) models are used in this connection, how effective are they, e.g. in the capital adequacy and liquidity requirements, and what can or must governments and/or central banks or other regulators do when all fails and financial crises occur? From a legal point of view, an important aspect is the strong public policy undercurrents in the applicable law.\n\nThat is obvious in regulation but may also impact on private law. Another important issuer is that the law applicable to financial products and their regulation is ever more transnationalised and expressed at the international level, especially in terms of transactional and payment finality, financial stability, and even banking resolution facilities or international safety nets. In these circumstances, choice of national laws in the older private international law approach often mean little and it will be discussed how they may fall seriously short especially in in matters of regulatory oversight and bankruptcy situations.", + "title": "International Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5298", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course is designed for students and\npractitioners already acquainted with the fundamentals of\ninternational arbitration, and may be particularly useful for\nthose who may have an inclination to specialize in the\npractice or study of international dispute resolution. Focus\nwill be placed on topics of practical and academic interest\nin all aspects of the international arbitration process,\nlooking in particular to recent trends and evolutions in the\nfield of international dispute settlement.\nThrough seminar discussions, student presentations and\nmoot court sessions, this course will expose students to\ncontemporary controversies in the field of international\ncommercial and investment arbitration. An international\napproach will be adopted in relation to the subjects\nconsidered: students can expect to review a substantial\namount of comparative law sources, including academic\ncommentaries and jurisprudence from France, Singapore,\nSwitzerland, the United Kingdom and the United States, as\nwell as public international law sources and international\narbitral practice.", + "title": "Advanced Issues in the Law & Practice of Int\u2019l Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5299", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will consider the particular and unique issues\nthat the ubiquitous use of the internet for commerce,\neducation and communication has created for copyright\ncreators and users. In particular, it will address the\nincreasingly visual medium of social media and how user\npractices are challenging the boundaries of copyright law. It\nwill consider copyright infringement, fair dealing, personal\nand professional uses and the interaction between\ncopyright, contract and consent.", + "title": "Copyright in the Internet Age", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5300", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides a grounding in the international and\ntheoretical background to the constitutional protection of\nsocial rights; the substantive approach taken by courts to\nvarious social rights, and the interaction between social\nrights in various claims to equality and protection on the\npart of vulnerable groups. The topics covered in the class\nare thus:\n(1) theoretical debates on the nature of social rights,\nand the theoretical underpinnings for their\nrecognition qua rights;\n(2) international human rights law instruments\nrecognising social rights, and international human\nrights understandings of such rights;\n(3) constitutional debates about the capacity and\nlegitimacy of courts enforcing such rights, and\nparticular debates over concepts such as (a)\nweak-versus strong-form review, and (b) notions of\na \u2018minimum core\u2019 to social rights; and\n(4) the actual interpretation of enforcement of key\nsocial rights by courts, with a particular focus on\nthe right to housing, health care, water, food and\nsocial welfare and social security\n(5) questions of gender, poverty and social rights\n(6) the rights of children in relation to social rights\n(7) the rights of non-citizens", + "title": "Topics in Constitutional Law: Socio-Economic Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce to students topical and current issues of interest in the regulation of international financial markets, with a focus on global capital and investment markets. The regulation of investment firms and funds reached a new high with mainly European leadership in regulatory standards and many of these are influential globally. We aim to cover theoretical foundations in regulation, so that students can grasp the law and economic theories and public policy underpinnings of financial regulation, and specific topics that relate to securities and investment regulation. The approach to specific topics would be grounded in theoretical and policy understanding, in order to appreciate the high key highlights of regulatory duties, compliance implications and enforcement.", + "title": "Int'l Regulation of Finance & Investment Markets", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce to students topical and current issues of interest in the regulation of international financial markets, with a focus on global capital and investment markets. The regulation of investment firms and funds reached a new high with mainly European leadership in regulatory standards and many of these are influential globally. We aim to cover theoretical foundations in regulation, so that students can grasp the law and economic theories and public policy underpinnings of financial regulation, and specific topics that relate to securities and investment regulation. The approach to specific topics would be grounded in theoretical and policy understanding, in order to appreciate the high key highlights of regulatory duties, compliance implications and enforcement.", + "title": "Int'l Regulation of Finance & Investment Markets", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5302V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the complex interactions between\nliterature and the law. Even though the two disciplines may\nseem distinct, both law and literature are products of\nlanguage and have overlapped in significant and\ninteresting ways in history. Why do legal themes recur in\nfiction, and what kinds of literary structures underpin legal\nargumentation? How do novelists and playwrights imagine\nthe law, and how do lawyers and judges interpret literary\nworks? Could literature have legal subtexts, and could\nlegal documents be re-interpreted as literary texts? We will\nthink through these questions by juxtaposing fiction,\ndrama, legal cases, and critical theory.", + "title": "Law and Literature", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an interdisciplinary course that invites students to inhabit the field of law and literature by engaging closely with a key topic. Our seminar begins with a broad introduction to the field and related interdisciplinary scholarship, before delving into the focal thematic through close readings of legal and literary texts. This year, we address the question of authorship and its relationship with the law of copyright and intellectual property. Students would become familiar with a constellation of theoretical and historical perspectives from which to rethink our received understandings of authorship, including copyright\u2019s treatment of books, publishers, and authors.", + "title": "Law and Literature", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5303V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the principal problems for the\ntheory and practice of comparative constitutional law,\ngenerally and in the globalizing conditions of the early 21st\ncentury. In doing so, it will range widely over countries and\nconstitutional systems and examine the challenges\npresented by differences in context and culture. The\nconclusions about methodology in the early classes will be\ntested in later ones by reference to a series of topical\nsubstantive issues in constitutional law in Asia and\nelsewhere, ranging from institutional design to rights\nprotection.", + "title": "Global Comparative Constitutional Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course anlayzes connections between human rights\nand intellectual property. While these bodies of law\ndeveloped on separate tracks, the relationship between\nthem has now captured the attention of government\nofficials, judges, civil society groups, legal scholars and\ninternational agencies, including the World Intellectual\nProperty Organization, the United Nations Human Rights\nCouncil, the Committee on Economic, Social and Cultural\nRights, and the Food and Agriculture Organization.\nThe course will be of interest to those interested in\nintellectual property and/or human rights.", + "title": "IP and Human Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on laws governing banks and the other financial intermediaries in China, reflecting the game between regulation and financial innovation. It will be divided into three parts: the first and also the most the essential one will cover the legal requirements of operation and business of traditional commercial banks; the second one will go through the corporate governance of banks, problem bank resolution and currency issues; the last part will discuss the legal issues of new financial products and non-bank financial institutions. This course focuses on the emerging issues in China of that subject, and also pay particular attention to recent legislative reform efforts in China on banking and non-bank financial institutions and will consider both the developments and innovation in scholarship and teaching of financial law since 2008.", + "title": "Chinese Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on laws governing banks and the other financial intermediaries in China, reflecting the game between regulation and financial innovation. It will be divided into three parts: the first and also the most the essential one will cover the legal requirements of operation and business of traditional commercial banks; the second one will go through the corporate governance of banks, problem bank resolution and currency issues; the last part will discuss the legal issues of new financial products and non-bank financial institutions. This course focuses on the emerging issues in China of that subject, and also pay particular attention to recent legislative reform efforts in China on banking and non-bank financial institutions and will consider both the developments and innovation in scholarship and teaching of financial law since 2008.", + "title": "Chinese Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5306V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The European Union plays an increasing role in the\nregulation of international shipping and any shipping\ncompany wishing to do business in Europe will have to\ntake this into consideration. The module will take on\nvarious aspects of this regulation and will place the EU\nrules in the context of international maritime law. To\nensure a common basis for understanding the EU maritime\nlaw, the basic structure and principles of the EU and EU\nlaw will be explained at the outset.", + "title": "EU Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law is a behavioural system. Most law seeks to regulate, incentivize and nudge people to behave in some ways and not in others \u2013 it seeks to shape human behavior. Traditional economic analysis of law is committed to the assumption that people are fully rational, but empirical evidence suggests that people very often exhibit bounded rationality, bounded self-interest, and bounded willpower. This course about behavioural law and economics, with an emphasis on regulation, looks at the implications of actual, not hypothesized, human behaviour for the law. It considers, in particular, how using the mildest forms of interventions, law can steer people\u2019s choices in welfarepromoting\ndirections.", + "title": "Behavioural Economics, Law & Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5308V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to set out the practical realities of dispute resolution in Asia and aims to make students step into the shoes of lawyers and understand how to tackle and strategize real disputes. The course covers topics related to jurisdiction, interim relief, defence and guerrilla tactics, issue estoppel, choice of remedies and dealing with a State in relation to investment treaty disputes to give students a real life understanding of the issues which arise in international disputes. In the context of the substantive issues, the students would also go through facets of the New York Convention and a comparative analysis of the laws of Singapore, England & Wales, India and Hong Kong.", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5309", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to set out the practical realities of dispute resolution in Asia and aims to make students step into the shoes of lawyers and understand how to tackle and strategize real disputes. The course covers topics related to jurisdiction, interim relief, defence and guerrilla tactics, issue estoppel, choice of remedies and dealing with a State in relation to investment treaty disputes to give students a real life understanding of the issues which arise in international disputes. In the context of the substantive issues, the students would also go through facets of the New York Convention and a comparative analysis of the laws of Singapore, England & Wales, India and Hong Kong.", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5309V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar-style module critically examines the impact of international organisations on the formal structures of international law. Do international organisations create and enforce international law? What type of norm-creating activity takes place inside and across international organisations? Does the reality of global governance give rise to concerns about legitimacy or accountability? What are the legal and policy responses to such concerns? Case studies used will range from traditional institutions such as the UN and its specialised agencies, to newer institutions such as the Financial Action Task Force and the Global Fund to Fight AIDS, Tuberculosis and Malaria.", + "title": "International Organisations in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5310V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will offer an historical and comparative focus\non Islamic family law. It will begin by providing a basic\noverview of Islamic law generally and then turn to examine\nIslamic family law specifically. It will then cover major\ntopics that arise in Islamic family law under the classical\nIslamic legal tradition. It will conclude by exploring how\nmany of those issues arise in some modern contexts, as\nIslamic family law is applied both inside and outside of the\nMuslim world.", + "title": "Islamic Law and the Family", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The past two decades have witnessed the emergence of\nnew forms of international organizations (e.g. Basel\nCommittee) alongside traditional organizations (e.g. WTO).\nThese new organizations challenge the traditional premises\nof international law. Moreover, international organizations\nincreasingly issue rules that impact people around the world,\nyet they largely operate within a legal void and go\nunchecked. In view of these challenges, a new legal school\nof thought is emerging that seeks to set more legal\nconstraints and that introduces institutional reforms, such as\nthe growing inclusion of Asian countries in international\norganizations. We will explore these issues.", + "title": "The Law of Global Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5312V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5313", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recent years have witnessed more state-to-state and investor-state disputes, with a substantial increase in resources spent on binding arbitration. Mediation and conciliation are rarely attempted and more rarely successful. This course introduces the student to methods of mediation and conciliation on the international law plane, and surveys existing institutional regimes (ie, ICSID,\nPCA, SIAC). The focus will then turn to identification and critical analysis of the special legal and policy obstacles to voluntary dispute settlement by states (including SOEs), as well as countervailing incentives. The scope is international, with some readings devoted to Asia. Students will study and critique precedents, and conduct basic mediation/conciliation exercises.", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5313V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in private equity and venture capital from both practical and theoretical perspectives. The topics that will be covered explore the laws and practices relating to the whole cycle of the venture capital and private equity, including fundraising, investments, exits, foreign investments and regulation. The course will also discuss equity crowdfunding which is an important emerging method of equity financing. Certain topics of this course will provide relevant comparisons with private equity and venture capital in China, Singapore and the U.S. It will be of interest to legal professionals in the\nprivate equity and venture capital sectors.", + "title": "Private Equity and Venture Capital: Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5314S", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in private equity and venture capital from both practical and theoretical perspectives. The topics that will be covered explore the laws and practices relating to the whole cycle of the venture capital and private equity, including fundraising, investments, exits, foreign investments and regulation. The course will also discuss equity crowdfunding which is an important emerging method of equity financing. Certain topics of this course will provide relevant comparisons with private equity and venture capital in China, Singapore and the U.S. It will be of interest to legal professionals in the private equity and venture capital sectors.", + "title": "Private Equity and Venture Capital: Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5314V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s tax law and international tax policy play an important role in influencing cross-border transactions. Chinese tax system and treaty network could affect both business structure and profits derived from the transaction, while Chinese tax administration measures and the way to resolve tax disputes are factors for assessing business risk. This course will cover these Chinese tax issues\nthrough providing lectures, practical exploration and peer-learning in a seminar environment.", + "title": "China's Tax Law and International Tax Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5315S", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the law of restitution for unjust enrichment. In particular, it is concerned with when a defendant may be compelled to make restitution to a claimant, because the defendant has been unjustly enriched at the claimant\u2019s expense. It does not cover all of the law relating to gain-based remedies.", + "title": "Restitution of Unjust Enrichment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5316V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will give the students an in-depth look at how cases proceed under the SIAC, HKIAC and MCIA rules, with some comparative coverage of the CIETAC and KLRCA rules. Highlighted will be the salient features of these arbitral institutional rules including the introduction of cutting edge procedures such as the emergency arbitrator and expedited arbitration procedures and consolidation/joinder. The course will also provide a comparative analysis of the arbitral legislative framework in Singapore, Hong Kong and India and offer an in-depth analysis, with case studies, of the role of the courts in Singapore, Hong Kong and India in dealing with specific issues such as challenges to tribunal jurisdiction, enforcement and setting aside of awards. Finally, the course will also look at the peculiar relationship between arbitration and mediation in Asia.", + "title": "International Arbitration in Asian Centres", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5317V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to important topics in public health law and regulation. It explores the use of law as an important tool in protecting the public\u2019s health, responding to health risks and implementing strategies to promote and improve public health. The course reviews the nature and sources of public health law, and regulatory strategies that law can deploy to protect and promote public health. It considers these roles in selected areas within the field: for example, acute public health threats like SARS and pandemic influenza, tobacco control, serious sexually transmitted diseases, and non-communicable diseases such as heart disease, stroke and diabetes.", + "title": "Public Health Law and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5318V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines current problems in international law relating, for instance, to the use of force, human rights, international environmental law and foreign investment law.", + "title": "Current Problems in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5319V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Globally, space-derived products and services combine assets and annual revenues in excess of USD350 billion. The year-on-year growth of the space economy is 9%, three times that of the global economy. This course discusses the international law regulating the use of, and activities in, outer space. It will examine issues such as State responsibility, liability for damage, and environmental protection. It will then debate the law relating to various space sectors such as telecommunications, navigation, military and dual use, resource management, and human spaceflight.", + "title": "International Space Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5320", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Globally, space-derived products and services combine assets and annual revenues in excess of USD350 billion. The year-on-year growth of the space economy is 9%, three times that of the global economy. This course discusses the international law regulating the use of, and activities in, outer space. It will examine issues such as State responsibility, liability for damage, and environmental protection. It will then debate the law relating to various space sectors such as telecommunications, navigation, military and dual use, resource management, and human spaceflight.", + "title": "International Space Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5320V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course applies economic concepts to the practice of structuring business transactions. The materials consist of case studies of actual transactions. We will use those case studies to analyze the economics challenges that parties to a deal must address, and to analyse the mechanisms the parties use to address those challenges. The case studies will cover a selection from bond financings, acquisitions, movie financings, product licenses, biotech alliances, venture capital financings, cross-border joint ventures, private equity investments, corporate reorganizations, and more.", + "title": "Deals: The Economic Structure of Business Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Trade Finance Law considers the different legal structures used to effect payment under, and disincentives breaches of, international agreements for the supply of goods and services. The course analyses and compares documentary and standby letters of credit, international drafts and forfaiting, performance bonds and first demand guarantees and export credit guarantees. Key topics will include the structure, juridical nature and obligational content of the aforementioned instruments; the nature of the harmonised regimes and their interaction with domestic law; the principle of strict compliance and its relaxation; documentary and non-documentary forms of recourse; the autonomy principle and its exceptions; and the conflict of laws principles applicable to autonomous payment undertakings. The course should be of interest to students who have already studied other components of international trade and/or who have an interest in international banking operations.", + "title": "Trade Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Trade Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5322V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a detailed examination of the principles of agency law. Broadly speaking, agency involves one person acting for another. Agents may be of many different kinds spanning different settings and industries. Shop assistants, solicitors, auctioneers, estate agents, are common examples of agents. \nThis course covers both \u2018internal\u2019 and \u2018external\u2019 dimensions of agency. Topics covered include definitions of agency, how agency relationships are created, different types of authority, agency\u2019s application outside contract, and the rights and duties between principal and agent.", + "title": "Law of Agency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a detailed examination of the principles of agency law. Broadly speaking, agency involves one person acting for another. Agents may be of many different kinds spanning different settings and industries. Shop assistants, solicitors, auctioneers, estate agents, are common examples of agents. \nThis course covers both \u2018internal\u2019 and \u2018external\u2019 dimensions of agency. Topics covered include definitions of agency, how agency relationships are created, different types of authority, agency\u2019s application outside contract, and the rights and duties between principal and agent.", + "title": "Law of Agency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5323V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a comparative approach to exploring what is meant by a trade mark, the messages that trade marks communicate and the roles they perform. These are important enquiries because questions of what trade marks do and ought to do have a direct impact on the contours of the law. A major theme will be the relationship between trade marks and brands: to what extent should trade mark law be concerned with protecting brand value? What might a focus on brand value mean for competitors? Is a focus on brand value compatible with the logics of trade mark registration? These questions will be explored by reference to the laws of multiple jurisdictions, most significantly Australia, the EU, Singapore and the USA.", + "title": "Comparative Trade Mark Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Taught by two public international law practitioners, this course invites participants to develop a more practical and strategic understanding of how a State deals with the various types of disputes it may face. Topics covered includes litigation and procedural considerations in inter-State, investor-State, human rights and international criminal disputes, and cross-cutting considerations like national security privileges, immunities, conflicts of public international law. The course will conclude with a seminar where senior practitioners of public international law share their views and insights on acting as a Government advisor and as an advocate.", + "title": "The Int'l Litigation & Procedure of State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the public law system of the United States, with an emphasis on structural issues and governmental processes, especially the creation of regulations and the political and judicial controls over this important activity. Changes resulting from the Trump administration will be an important element.", + "title": "Administrative Justice: Perspectives from the U.S.", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5326", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a practitioner's perspective on the bread and butter of any transactional practice: mergers and acquisitions (M&A) of non-listed, private companies. It will deal with the structuring of an M&A transaction (the why) and the plain vanilla aspects of documentation (the why and how of basic drafting). \n\nMany new graduates seem to be unable to see the wood for the trees. They arrive as trainees, with a reasonable grounding in the law, but an inability to apply it to real life situations. The practicalities elude them and they seem to want to follow templates without much understanding of the transaction. This course will attempt to give them a working knowledge of the issues to be considered in structuring a transaction. It will also cover the main features of standard documentation (bearing in mind that there is a discernible industry-standard set of documentation in common law countries) to explain why documents are drafted the way they are.", + "title": "Mergers and Acquisitions: A Practitioner\u2019s Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5327V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sports Law is a very broad field, encompassing several areas of law unique to the sporting industry, as well as several traditional areas of law applied to the field of sport.This course will focus on the existing and evolving private and public international sports law systems, (where appropriate) the national sports law of several jurisdictions (including Australia, USA, UK and to a lesser extent, Singapore) and provide avenues of multi-jurisdictional comparative analysis. The social, political, commercial and economic influences on the development, content and structure of sports law globally will also be explored.", + "title": "Sports Law & Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5328", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this course is on the litigation of cross-border disputes in the fields of tort, contract, consumer protection and intellectual property including in the online context. The subject will examine the key doctrinal principles and scholarly debates in the area as well as problems commonly encountered in practice. Material will be drawn from leading common law jurisdictions, including Singapore, Australia, England, Hong Kong and Canada. The course is recommended for those with an interest in international dispute resolution, conflict of laws, litigation or international commerce.", + "title": "Cross-Border Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5329", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first part of the course explores how trusts are used to manage family wealth, with emphasis on developments in the \u2018offshore world\u2019. We will discuss how trusts may be used to protect assets, how trustees\u2019 discretions may be controlled, the rights of objects of trusts, and purpose trusts. The second part concerns trusts in commercial transactions. We will explore creditor trusts, constructive trusts, bonds and intermediated holding of securities, equitable assignments and equitable charges. By comparing commercial trusts with private trusts, we will also ask whether there are any significant contextual differences in relation to the trust device.", + "title": "Advanced Trusts Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5330", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the ideal of the rule of law: its value, limitations, costs, and relationship with distinct social aspirations. The teaching is based on leading texts, comparative case law, and video documentaries. The course is divided into nine modules: (1) the meaning and value of the rule of law, (2) emergencies, (3) the relationship(s) between the rule of law, the obligation to obey the law, and the rule of good law, (4) the modern welfare state, (5) criminal law vs. private law, (6) international law, (7) corporations and liberal democracy, (8) colonialism and developmental transitions, and (9) defences for disobedience.", + "title": "The Rule of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The copyright laws of Singapore and the United have in common a general, flexible, open exception designated by the term \u201cfair use.\u201d During the last 25 years, the U.S has had extensive experience with this concept, both in the courts and in fields of practice as diverse as art, filmmaking, education, technology, and journalism. Not only have judicial opinions about fair used cohered into a \u201cunified field theory\u201d of the doctrine, but awareness of its potential applications has increased dramatically among members of relevant communities. The last development has been attributable in part to the development of community-specific Codes of Best Practices for the responsible application of fair use \u2013 an effort in which the instructor for this module has been active. The course will explore the legal background of fair use, its doctrinal evolution over the past 25 years, and a variety of practical situations in which it has been successful employed.", + "title": "Fair Use in Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinical course introduces students to the law, practice, and implementation of international criminal law. Students will learn and examine the content and application of substantive and procedural law on core international crimes\u2014war crimes, crimes against humanity, genocide, and aggression\u2014that attract individual criminal responsibility under international law. As part of the assessment, students will work on research projects in collaboration with the ICRC. Students will be exposed to \u2018real world\u2019 problems and learn the legal knowledge, professional skills, and critical thinking expected of those working in this field. This course will require substantial student initiative, participation and collaboration.", + "title": "International Criminal Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5333", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinical course introduces students to the law, practice, and implementation of international criminal law. Students will learn and examine the content and application of substantive and procedural law on core international crimes\u2014war crimes, crimes against humanity, genocide, and aggression\u2014that attract individual criminal responsibility under international law. As part of the assessment, students will work on research projects in collaboration with the ICRC. Students will be exposed to \u2018real world\u2019 problems and learn the legal knowledge, professional skills, and critical thinking expected of those working in this field. This course will require substantial student initiative, participation and collaboration.", + "title": "International Criminal Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5333V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to increase students\u2019 breadth of empirical knowledge and depth of theoretical understanding of issues of law, justice, and society. With urbanization and industrialization, modern societies have increasingly depended upon law to regulate the behaviour of their members and the activities of their institutions. It will explore issues in law and society in SE Asia, with an emphasis on how sexuality, ethnic and religious diversity are handled, and how justice is conceived; as well as\nissues in the Singaporean justice system, where other examples will be used to compare Singapore\u2019s unique approach to addressing justice and society issues.", + "title": "Law and Society in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5334", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the evolving regime for the regulation and protection of multinational enterprises (MNEs) in international law. Although MNEs remain creations of domestic law, the cross-border activities of MNEs increasingly come within the scope of instruments creating obligations and/or rights in international law. In assessing the challenges faced by states and MNEs alike with respect to such transnational regulation, the module takes a rounded and interdisciplinary view of the issues involved, addressing both the commercial and social dimensions of MNE action. In addition to considering the regulatory powers of individual states, developments under international instruments on human rights, labour conditions, finance, taxation and investment are addressed.", + "title": "Multinational Enterprises and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5335V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the real-life practice of international commercial and treaty arbitration from beginning to end: from clause drafting/treaty jurisdiction, to arbitrator selection, to emergency proceedings, through the written and hearing phases, to award and enforcement strategy. Emphasis will be on primary materials: case law, statutes, institution rules, treaties, commentary, and \u201csoft law\u201d guidelines. Using complex factual scenarios, students will take part in strategy, drafting and advocacy exercises. On the commercial arbitration side, the focus will be on the ICC Court and SIAC; on the treaty side, ICSID and the PCA/UNCITRAL. Ethics issues will be front burner.", + "title": "Advanced Practicum in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5338V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course considers the way that international adjudicators approach fact-finding and factual determinations. The course analyses essential policy questions as to the way legal systems should deal with evidence; considers comparative law perspectives; and aims to integrate these perspectives with practical consideration of the way documents and witnesses are dealt with in international arbitration. There is no greater divergence between legal families than that pertaining to the treatment of evidence. For international adjudication to meet the needs of participants from all legal families, a proper understanding of comparative approaches and the degree of convergence, is essential to arbitrators and practitioners.", + "title": "Comparative Evidence in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5339", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "One of the most pressing current issues of international concern is the highest ever level of global displacement, with over twenty million refugees in the world. This course examines the international legal regime for the protection of refugees. With the 1951 Refugee Convention as its \u201cbackbone\u201d, the course focuses on the \u201crefugee\u201d definition, the exclusion and withdrawal of refugee status, status determination procedures, the rights of recognised refugees and asylum-seekers, the non-refoulement principle, complementary protection, States\u2019 responsibility-sharing, responsibility-shifting and deterrence of asylum-seekers, the status of Palestinian refugees, UNHCR\u2019s supervisory responsibility, and regional protection systems (particularly the Common European Asylum System).", + "title": "International Refugee Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5340", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the most pressing current issues of international concern is the highest ever level of global displacement, with over twenty million refugees in the world. This course examines the international legal regime for the protection of refugees. With the 1951 Refugee Convention as its \u201cbackbone\u201d, the course focuses on the \u201crefugee\u201d definition, the exclusion and withdrawal of refugee status, status determination procedures, the rights of recognised refugees and asylum-seekers, the non-refoulement principle, complementary protection, States\u2019 responsibility-sharing, responsibility-shifting and deterrence of asylum-seekers, the status of Palestinian refugees, UNHCR\u2019s supervisory responsibility, and regional protection systems (particularly the Common European Asylum System).", + "title": "International Refugee Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5340V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines the relationship between law and politics in the international protection of the forcibly displaced, focusing on five groups of migrants, namely, refugees and asylum-seekers, stateless persons, internally displaced persons, victims of trafficking, and climate-change and environmentally displaced persons. After assessing the protection gaps relating to these five groups, this course considers the more complex phenomena of mass influx and \u201cmixed migration,\u201d immigration detention (specifically of particularly vulnerable migrants), and durable solutions. The roles of regional and institutional organisations will also be studied. An assessed negotiation relating to a present-day forced migration crisis concludes the course.", + "title": "The Law and Politics of Forced Migration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5341", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines the relationship between law and politics in the international protection of the forcibly displaced, focusing on five groups of migrants, namely, refugees and asylum-seekers, stateless persons, internally displaced persons, victims of trafficking, and climate-change and environmentally displaced persons. After assessing the protection gaps relating to these five groups, this course considers the more complex phenomena of mass influx and \u201cmixed migration,\u201d immigration detention (specifically of particularly vulnerable migrants), and durable solutions. The roles of regional and institutional organisations will also be studied. An assessed negotiation relating to a present-day forced migration crisis concludes the course.", + "title": "The Law and Politics of Forced Migration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5341V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will be useful for those who want to practise corporate or tax law.\n\nTopics covered:\n- the Singapore corporate tax, GST and stamp duty implications of (a) related party transactions; (b) restructurings and; (c) M&As\n- structuring techniques to increase tax efficiency in each of these situations\n- selected US corporate tax and Australian GST rules (since the tax consequences of a foreign country will have to be analysed)\n- how structuring strategies may be challenged with rules/proposed rules addressing treaty shopping, debt-equity and entity classification hybridity, and arbitrage opportunities involving the GST treatment of cross-border transations.", + "title": "Taxation of Cross-Border Commercial Transactions I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5342", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will be useful for those who want to practise corporate or tax law.\n\nTopics covered:\n- the Singapore corporate tax, GST and stamp duty implications of (a) related party transactions; (b) restructurings and; (c) M&As\n- structuring techniques to increase tax efficiency in each of these situations\n- selected US corporate tax and Australian GST rules (since the tax consequences of a foreign country will have to be analysed)\n- how structuring strategies may be challenged with rules/proposed rules addressing treaty shopping, debt-equity and entity classification hybridity, and arbitrage opportunities involving the GST treatment of cross-border transations.", + "title": "Taxation of Cross-Border Commercial Transactions I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5342V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The global commons comprises the high seas, the deep seabed, outer space, the airspace above the exclusive economic zone and the high seas, as well as Antarctica, an ice-covered continent, and the Arctic, an ice-covered ocean. Each of these areas are governed by international treaty regimes that were developed specifically for that area. This course will examine and compare the international regimes governing activities in the global commons. It will also examine the evolving law on the obligation of States to ensure that activities within their jurisdiction or control do not cause harm to the environment of the global commons.", + "title": "International Regulation of the Global Commons", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5343", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The global commons comprises the high seas, the deep seabed, outer space, the airspace above the exclusive economic zone and the high seas, as well as Antarctica, an ice-covered continent, and the Arctic, an ice-covered ocean. Each of these areas are governed by international treaty regimes that were developed specifically for that area. This course will examine and compare the international regimes governing activities in the global commons. It will also examine the evolving law on the obligation of States to ensure that activities within their jurisdiction or control do not cause harm to the environment of the global commons.", + "title": "International Regulation of the Global Commons", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5343V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A detailed study of the public and private international law of copyright law focusing on legal responses to cross-border issues and conflicts among private parties and nation states. Topics to be covered include: ASEAN IP relations, connecting factors in private litigation, the major international copyright treaties, major themes in EU copyright jurisprudence, exhaustion of rights, exceptions and limitations, indigenous IP.", + "title": "Public and Private International Copyright Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5344", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A detailed study of the public and private international law of copyright law focusing on legal responses to cross-border issues and conflicts among private parties and nation states. Topics to be covered include: ASEAN IP relations, connecting factors in private litigation, the major international copyright treaties, major themes in EU copyright jurisprudence, exhaustion of rights, exceptions and limitations, indigenous IP.", + "title": "Public and Private International Copyright Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5344V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is it to lead a fulfilled life? This was the central question\nfor ancient philosophers, in both the east and the west, for\nwhom philosophy was not only theory. It was a method\ndesigned to achieve both rigorous conceptual analysis and\na fulfilled human life. In this course we will explore several\nof the methods philosophers have proposed for leading a\nfulfilled life and consider some of the rich suggestions or\nimplications of these methods for leading a fulfilled life of the\nlaw, the life led by law students, lawyers, judges, and others\ninterested in administering, shaping, or living according to\nlaw.", + "title": "The Fulfilled Life and the Life of the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5345", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is it to lead a fulfilled life? This was the central question\nfor ancient philosophers, in both the east and the west, for\nwhom philosophy was not only theory. It was a method\ndesigned to achieve both rigorous conceptual analysis and\na fulfilled human life. In this course we will explore several\nof the methods philosophers have proposed for leading a\nfulfilled life and consider some of the rich suggestions or\nimplications of these methods for leading a fulfilled life of the\nlaw, the life led by law students, lawyers, judges, and others\ninterested in administering, shaping, or living according to\nlaw.", + "title": "The Fulfilled Life and the Life of the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5345V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on provisional and interim\nmeasures in the context of international commercial\narbitration, including emergency arbitrator (EA)\nproceedings. The course will address topics such as the\nnature and scope of provisional and interim relief, the\nauthority of arbitral tribunals (and limitations thereon) to\norder such relief, the concurrent jurisdiction of courts,\nchoice of law issues and the standards for granting interim\nmeasures, issues arising with respect to various categories\nof provisional relief, and judicial enforcement of interim\nmeasures ordered by arbitral tribunals.", + "title": "Interim Measures in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5346", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on provisional and interim\nmeasures in the context of international commercial\narbitration, including emergency arbitrator (EA)\nproceedings. The course will address topics such as the\nnature and scope of provisional and interim relief, the\nauthority of arbitral tribunals (and limitations thereon) to\norder such relief, the concurrent jurisdiction of courts,\nchoice of law issues and the standards for granting interim\nmeasures, issues arising with respect to various categories\nof provisional relief, and judicial enforcement of interim\nmeasures ordered by arbitral tribunals.", + "title": "Interim Measures in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5346V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores international and domestic legal issues and disputes pertaining to the creation, ownership, use, and preservation of works of art and objects of cultural heritage. Cultural objects exist within the larger realm of goods and services moving throughout the marketplace. This course addresses the specialized laws and legal interpretations pertaining to the rights and obligations of individuals, entities, and governments as they discover and interact with these objects, within their own jurisdictions and across national borders, in times of war and peace.", + "title": "Art & Cultural Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5347", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores international and domestic legal issues and disputes pertaining to the creation, ownership, use, and preservation of works of art and objects of cultural heritage. Cultural objects exist within the larger realm of goods and services moving throughout the marketplace. This course addresses the specialized laws and legal interpretations pertaining to the rights and obligations of individuals, entities, and governments as they discover and interact with these objects, within their own jurisdictions and across national borders, in times of war and peace.", + "title": "Art & Cultural Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5347V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Money is an all-pervasive legal concept, and an integral part of public dealings by the state and most private transactions. The module aims to develop a distinctive understanding of the legal institution of money, seen as a subject in itself, from private law and public law perspectives. Although the course may be of interest to those with a background in financial or banking regulation, it deliberately avoids considering the subject of money from those perspectives. It is primarily concerned with the common law of money, as it would apply in Singapore. It does however draw on the comparative perspectives from mixed and civil law jurisdictions, and from legal history. Together these demonstrate the broad functional commonalities that any legal system must develop if is construct a legal notion of money and main purposes its serves in the economy.\n\nThe module explains the role of law in the creation of money and in the ordering of a monetary system. It explains how law has a role to play in recognising and enforcing concepts of monetary value in private transactions. It considers the distinctive ways that property law applies to money, including the role of property law in controlling the consequences of failed or wrongly-procured payment transactions. The module considers the capacity of private law to respond to the special problems of monetary transactions involving a foreign currency system, and the legal challenges posed by new monetary developments such as cyber-currencies.", + "title": "Monetary Law in Comparative Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5348", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Money is an all-pervasive legal concept, and an integral part of public dealings by the state and most private transactions. The module aims to develop a distinctive understanding of the legal institution of money, seen as a subject in itself, from private law and public law perspectives. Although the course may be of interest to those with a background in financial or banking regulation, it deliberately avoids considering the subject of money from those perspectives. It is primarily concerned with the common law of money, as it would apply in Singapore. It does however draw on the comparative perspectives from mixed and civil law jurisdictions, and from legal history. Together these demonstrate the broad functional commonalities that any legal system must develop if is construct a legal notion of money and main purposes its serves in the economy.\n\nThe module explains the role of law in the creation of money and in the ordering of a monetary system. It explains how law has a role to play in recognising and enforcing concepts of monetary value in private transactions. It considers the distinctive ways that property law applies to money, including the role of property law in controlling the consequences of failed or wrongly-procured payment transactions. The module considers the capacity of private law to respond to the special problems of monetary transactions involving a foreign currency system, and the legal challenges posed by new monetary developments such as cyber-currencies.", + "title": "Monetary Law in Comparative Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5348V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces international arbitration\u2019s role in resolving energy disputes. Seminars will address both commercial and investment arbitration.The substantive content of national and international energy laws will be discussed together with the procedural specificities of energy disputes. The course will explore the political aspects of energy disputes, both domestic (resource sovereignty) and international (inter-state boundary disputes).\n\nParticipants will study the recent debates on the role of international arbitration vis-\u00e0-vis climate change and sustainable development.\n\nThe course incorporates practical exercises that will help participants interested in a career in international arbitration and public international law.", + "title": "Energy Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5349", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces international arbitration\u2019s role in resolving energy disputes. Seminars will address both commercial and investment arbitration.The substantive content of national and international energy laws will be discussed together with the procedural specificities of energy disputes. The course will explore the political aspects of energy disputes, both domestic (resource sovereignty) and international (inter-state boundary disputes).\n\nParticipants will study the recent debates on the role of international arbitration vis-\u00e0-vis climate change and sustainable development.\n\nThe course incorporates practical exercises that will help participants interested in a career in international arbitration and public international law.", + "title": "Energy Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5349V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the law on privacy and data protection. It examines the various legal mechanisms by which privacy and personal data are protected. While the focus will be Singapore law, students will also be introduced to the laws of other jurisdictions such as the United States, the European Union, and the United Kingdom.", + "title": "Privacy & Data Protection Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5350", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the law on privacy and data protection. It examines the various legal mechanisms by which privacy and personal data are protected. While the focus will be Singapore law, students will also be introduced to the laws of other jurisdictions such as the United States, the European Union, and the United Kingdom.", + "title": "Privacy & Data Protection Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5350V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines principal corporate law issues from a comparative perspective. As for jurisdictions, it primarily focuses on Japan and Korea in comparison with US and UK. This module is composed of 18 units, two units for each of the nine class dates. Beginning with the peculiar ownership structure of Japan and Korea and the nature of their agency problems, the module explores various legal strategies employed to address these challenges. The topics to be covered include: shareholder power, corporate organizational structure, independent directors, fiduciary duties, shareholder lawsuits, hostile takeovers, and creditor protection.", + "title": "Comparative Corporate Law in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5351", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines principal corporate law issues from a comparative perspective. As for jurisdictions, it primarily focuses on Japan and Korea in comparison with US and UK. This module is composed of 18 units, two units for each of the nine class dates. Beginning with the peculiar ownership structure of Japan and Korea and the nature of their agency problems, the module explores various legal strategies employed to address these challenges. The topics to be covered include: shareholder power, corporate organizational structure, independent directors, fiduciary duties, shareholder lawsuits, hostile takeovers, and creditor protection.", + "title": "Comparative Corporate Law in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5351V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a broad introduction to international economic law related to China, including detailed study of a few core areas and the provision of guidance for students to pursue research on a topic of their choice.\nMajor topics to be covered include: (i) trade in goods; (ii) trade in services; (iii) trade in intellectual property; (iv) investment; (v) dispute settlement; and (vi) the future of China and international economic law.", + "title": "China and International Economic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5352", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a broad introduction to international economic law related to China, including detailed study of a few core areas and the provision of guidance for students to pursue research on a topic of their choice.\nMajor topics to be covered include: (i) trade in goods; (ii) trade in services; (iii) trade in intellectual property; (iv) investment; (v) dispute settlement; and (vi) the future of China and international economic law.", + "title": "China and International Economic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5352V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The law relating to evidence of character has been changing throughout the common law world over the last fifty years. This course will, by reference several common law jurisdictions, including Singapore in particular, cover, most pressingly, how the law deals with evidence of the accused\u2019s bad character. It will also deal with bad character of witnesses in criminal cases, and, in particular, complainants in sexual cases, as well as that of witnesses and others in civil cases. A third element concerns the good character of the accused, of witnesses in criminal cases, and of parties and others in civil cases.", + "title": "Character Evidence in the Common Law World", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5353", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The law relating to evidence of character has been changing throughout the common law world over the last fifty years. This course will, by reference several common law jurisdictions, including Singapore in particular, cover, most pressingly, how the law deals with evidence of the accused\u2019s bad character. It will also deal with bad character of witnesses in criminal cases, and, in particular, complainants in sexual cases, as well as that of witnesses and others in civil cases. A third element concerns the good character of the accused, of witnesses in criminal cases, and of parties and others in civil cases.", + "title": "Character Evidence in the Common Law World", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5353V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Human rights adjudication has expanded in many jurisdictions across the world in the past few decades. Yet there is still scepticism about the role of courts in human rights adjudication. This subject will provide students with the opportunity to reflect critically on the role of courts in human rights adjudication by introducing them to the different approaches to the adjudication of human rights in a range of jurisdictions including South Africa, Canada, Germany, the US, Israel, Australia, India, Singapore and the EU. Several key human rights issues that have arisen in different jurisdictions will be analysed and compared.", + "title": "Comparative Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5354", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Human rights adjudication has expanded in many jurisdictions across the world in the past few decades. Yet there is still scepticism about the role of courts in human rights adjudication. This subject will provide students with the opportunity to reflect critically on the role of courts in human rights adjudication by introducing them to the different approaches to the adjudication of human rights in a range of jurisdictions including South Africa, Canada, Germany, the US, Israel, Australia, India, Singapore and the EU. Several key human rights issues that have arisen in different jurisdictions will be analysed and compared.", + "title": "Comparative Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5354V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept of development has been crucial to structuring international legal relations for the last 70 years. In the political and economic domains, most international institutions engage with the development project in some form. This subject offers a conceptual and intellectual grounding to examine development as an idea and set of practices in dynamic relation with national and international law. The history of development in relation to imperialism, decolonisation, the Cold War and globalisation means that these relations are complex. Understanding them is crucial to understanding the place of international law, and the work development does in the world today.", + "title": "International Law and Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5355", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept of development has been crucial to structuring international legal relations for the last 70 years. In the political and economic domains, most international institutions engage with the development project in some form. This subject offers a conceptual and intellectual grounding to examine development as an idea and set of practices in dynamic relation with national and international law. The history of development in relation to imperialism, decolonisation, the Cold War and globalisation means that these relations are complex. Understanding them is crucial to understanding the place of international law, and the work development does in the world today.", + "title": "International Law and Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5355V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic offers a unique opportunity for students to apply theory to practice in the field of international economic law. Students work in small teams and under the close supervision of professors and invited experts on specific, real-world legal questions of international economic law coming from \"real clients\" such as governments, international organizations, or NGOs. At the end of the semester, the Project Teams submit written legal memos and orally present their projects. They also publish their projects. The clinic is part of \"TradeLab,\" a global network of international economic law clinics at leading law schools around the world.", + "title": "International Economic Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5356", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic offers a unique opportunity for students to apply theory to practice in the field of international economic law. Students work in small teams and under the close supervision of professors and invited experts on specific, real-world legal questions of international economic law coming from \"real clients\" such as governments, international organizations, or NGOs. At the end of the semester, the Project Teams submit written legal memos and orally present their projects. They also publish their projects. The clinic is part of \"TradeLab,\" a global network of international economic law clinics at leading law schools around the world.", + "title": "International Economic Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5356V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introduction to the main debates and issues in the field of regulation covering current debates about what regulation is, and the different institutions and instruments used to regulate our lives. It looks at (i) central concepts used by regulators, e.g. risk, cost-benefit analysis, regulatory impact assessment; (ii) when different strategies should be adopted in regulating a sector; (iii) three central fields where regulation is used \u2013 competition, network industries, cyberspace. This course involves examples from jurisdictions across the world (especially Australasia, Europe and North America) with their insights having particular relevance for law and regulation in Singapore.", + "title": "Regulation & Political Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5357", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introduction to the main debates and issues in the field of regulation covering current debates about what regulation is, and the different institutions and instruments used to regulate our lives. It looks at (i) central concepts used by regulators, e.g. risk, cost-benefit analysis, regulatory impact assessment; (ii) when different strategies should be adopted in regulating a sector; (iii) three central fields where regulation is used \u2013 competition, network industries, cyberspace. This course involves examples from jurisdictions across the world (especially Australasia, Europe and North America) with their insights having particular relevance for law and regulation in Singapore.", + "title": "Regulation & Political Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5357V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The International Chamber of Commerce and its\nInternational Court of Arbitration have played a leading role\nin the establishment and the development of the\ninternational normative framework that makes arbitration so\nattractive today. This course highlights the historical and\ncontemporary contributions of ICC to this normative\nframework, and covers the key issues with which\npractitioners are faced at the main junctures of ICC\narbitration proceedings, from both a practical and a legal\nperspective. The course features in-class practical\nexercises that draw on course resources and enable\nstudents to face a variety of possible real-life scenarios.", + "title": "ICC Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL5358Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Arbitral institutions are important stakeholders in the field\nof international arbitration, but the nature and importance\nof their role have often been overlooked. The course seeks\nto introduce participants to the role and function of arbitral\ninstitutions in the practice of international arbitration, and to\nthe complex issues that arbitral institutions face in the\nadministration of arbitrations, appointment of arbitrators,\nissuing arbitral rules and practice notes and in guiding and\nshaping the development of international arbitration. The\ncourse will be taught by visiting lecturers from the Board,\nCourt of Arbitration and Secretariat of the Singapore\nInternational Arbitration Centre (SIAC).", + "title": "SIAC and Institutional Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL5359Z", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-23", + "end": "2022-09-23" + }, + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-22" + }, + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the current challenges faced by investment arbitration at the global level. It will adopt a three-step approach.\nStudents will first acquire an in-depth understanding of the history and functioning of the existing system. On this basis, the different criticisms and reform proposals will be scrutinized. Finally, students will be invited to make their own informed assessment of the existing system, to discuss its evolution and debate possible improvements.\nThe module will be diversified, as it will address both legal and extra-legal issues. Seminars will be interactive and students will be encouraged to participate actively.", + "title": "Current Challenges to Investment Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL5360Z", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-24", + "end": "2023-02-24" + }, + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-25", + "end": "2023-02-25" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-23", + "end": "2023-02-23" + }, + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "1. Who are the parties to the contract(s) or to the arbitration clause(s) contained therein? The theories applied by courts and arbitral tribunals\n2. The extension of the arbitration clause to non-signatories\n3. The possibility of bringing together in one single proceeding all the parties who have participated in the performance of one economic transaction through interrelated contracts\n4. Joinder and consolidation\n5. Appointment of arbitrators in multiparty arbitration cases\n6. The enforcement of an award in multiparty, multicontract cases\n7. The res judicata effect of an award rendered in a connected arbitration arising from the same project", + "title": "Complex Arbitrations: Multiparty \u2013 Multicontract", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL5361Z", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6 + ], + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1500", + "weeks": { + "start": "2023-02-21", + "end": "2023-02-21" + }, + "venue": "LAW_SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Forensic science can play a large part in criminal litigation, from DNA and fingerprint evidence to the detection of forgery. Forensic scientists can play a significant role by presenting evidence in a trial, and effective trial lawyers should be equipped with the skills and knowledge to manage, present, and challenge forensic evidence. This interdisciplinary module brings law and science undergraduates together to equip them with key communication and analytical skills to present forensic evidence in Court in the most effective way. Key topics covered include advance trial techniques, the law of evidence, and aspects of forensic science.", + "title": "Advanced Criminal Litigation - Forensics on Trial", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5362V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Our courts have to determine the appropriate\npunishment/sentence for every offender who has been\nfound guilty. Thus, sentencing law and practice is an area\nof law that affects the lives of every offender who goes\nthrough our criminal justice process. But what are the\nnumerous considerations going into the calculus of what is\nthe most appropriate punishment for an offender? This\ncourse will cover, among other things, the theoretical and\nempirical perspectives of punishment, sentencing options,\nsentencing methodology, and key aggravating and\nmitigating factors. We will also cover other important\nsentencing issues such as consecutive vs concurrent\nsentence, and parity.", + "title": "Sentencing Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5363", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Our courts have to determine the appropriate\npunishment/sentence for every offender who has been\nfound guilty. Thus, sentencing law and practice is an area\nof law that affects the lives of every offender who goes\nthrough our criminal justice process. But what are the\nnumerous considerations going into the calculus of what is\nthe most appropriate punishment for an offender? This\ncourse will cover, among other things, the theoretical and\nempirical perspectives of punishment, sentencing options,\nsentencing methodology, and key aggravating and\nmitigating factors. We will also cover other important\nsentencing issues such as consecutive vs concurrent\nsentence, and parity.", + "title": "Sentencing Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5363V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces important concepts and principles of private law in civil law jurisdictions to students trained in the common law. The focus is on concepts and principles in which the differences between the civil and common law systems are particularly striking. Examples are the core emphasis on obligations, the lack of a strict or any consideration requirement in contract law, the focus on absolute rights in delictual liability, the concept of negotiorum gestio and the design of property law as positive absolute rights. The different concepts of legislation and jurisprudence also form part of the module.", + "title": "Principles of Civil Law: Law of Obligations & Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5364", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces important concepts and principles of private law in civil law jurisdictions to students trained in the common law. The focus is on concepts and principles in which the differences between the civil and common law systems are particularly striking. Examples are the core emphasis on obligations, the lack of a strict or any consideration requirement in contract law, the focus on absolute rights in delictual liability, the concept of negotiorum gestio and the design of property law as positive absolute rights. The different concepts of legislation and jurisprudence also form part of the module.", + "title": "Principles of Civil Law: Law of Obligations & Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5364V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a structured programme for students\nwho wish to understand and acquire skills relevant to the\npractice of public international law in a government\nsetting.\n\nThe module is organised around three key milestones:\nfirst, four \u201ccrash course\u201d lecture-style teaching hours\ngrouped at the beginning of the semester to equip\nstudents with foundational legal concepts concerning\nUnited Nations law-making, including the International\nLaw Commission; second, a mid-semester oral\npresentation with practitioners; and third, preparations in\nSingapore for the annual fall sessions of the Sixth\nCommittee of the UN General Assembly.", + "title": "Singapore at the UN - A Clinical Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5367", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a structured programme for students\nwho wish to understand and acquire skills relevant to the\npractice of public international law in a government\nsetting.\n\nThe module is organised around three key milestones:\nfirst, four \u201ccrash course\u201d lecture-style teaching hours\ngrouped at the beginning of the semester to equip\nstudents with foundational legal concepts concerning\nUnited Nations law-making, including the International\nLaw Commission; second, a mid-semester oral\npresentation with practitioners; and third, preparations in\nSingapore for the annual fall sessions of the Sixth\nCommittee of the UN General Assembly.", + "title": "Singapore at the UN - A Clinical Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5367V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Comparative constitutional law has emerged as one of the\nmost vibrant areas in contemporary public law. The\ncourse explores the principal challenges for the theory and\npractice of constitutionalism across time and place,\ngenerally and in particular under the globalizing conditions\nof the early 21st century. It combines the legal study of\nconstitutional texts and constitutional jurisprudence from a\nwide range of countries and constitutional systems\nworldwide with exploration of pertinent social science\nresearch concerning the global expansion of\nconstitutionalism and judicial review.", + "title": "Comparative Constitutionalism", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5368", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Comparative constitutional law has emerged as one of the\nmost vibrant areas in contemporary public law. The\ncourse explores the principal challenges for the theory and\npractice of constitutionalism across time and place,\ngenerally and in particular under the globalizing conditions\nof the early 21st century. It combines the legal study of\nconstitutional texts and constitutional jurisprudence from a\nwide range of countries and constitutional systems\nworldwide with exploration of pertinent social science\nresearch concerning the global expansion of\nconstitutionalism and judicial review.", + "title": "Comparative Constitutionalism", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5368V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to offer an up-to-date understanding of constitutionalism in Asia, covering a representative number of Asian jurisdictions including China, Hong Kong, India, Japan, Mongolia, Nepal, South Korea, Taiwan and the ten ASEAN states. The students are introduced to leading constitutional cases and selected materials in those jurisdictions and guided to critically examine constitutional jurisprudences developed in those Asian jurisdictions and compared them with \nwhat has been developed elsewhere, particularly in the West.", + "title": "Constitutionalism in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5369", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to offer an up-to-date understanding of constitutionalism in Asia, covering a representative number of Asian jurisdictions including China, Hong Kong, India, Japan, Mongolia, Nepal, South Korea, Taiwan and the ten ASEAN states. The students are introduced to leading constitutional cases and selected materials in those jurisdictions and guided to critically examine constitutional jurisprudences developed in those Asian jurisdictions and compared them with \nwhat has been developed elsewhere, particularly in the West.", + "title": "Constitutionalism in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5369V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the risks associated with protecting and managing the legal and corporate risks associated with the increasingly important and overlapping fields of cybersecurity, privacy and data compliance and offers both legal and practical solutions for regulating and managing such risks within an effective legal and compliance framework.", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5370", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the risks associated with protecting and managing the legal and corporate risks associated with the increasingly important and overlapping fields of cybersecurity, privacy and data compliance and offers both legal and practical solutions for regulating and managing such risks within an effective legal and compliance framework.", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5370V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will look in depth at the content of charity law, the consequences of charity status, and key questions raised by charity law and regulation, in contemporary settings across the world. Topics will include the profile and value of the charity sector; the \u2018heads\u2019 of charity; the public benefit requirement of charity law; charity law\u2019s treatment of political purposes; the sources of charity law;\nthe tax treatment of charities; charitable trusts and discrimination; and the regulation of charities. Singapore\u2019s charity law will be considered in global perspective. \nThis course will not consider the treatment of charity in Islamic law.", + "title": "Charity Law Today", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5371", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will look in depth at the content of charity law, the consequences of charity status, and key questions raised by charity law and regulation, in contemporary settings across the world. Topics will include the profile and value of the charity sector; the \u2018heads\u2019 of charity; the public benefit requirement of charity law; charity law\u2019s treatment of political purposes; the sources of charity law;\nthe tax treatment of charities; charitable trusts and discrimination; and the regulation of charities. Singapore\u2019s charity law will be considered in global perspective. \nThis course will not consider the treatment of charity in Islamic law.", + "title": "Charity Law Today", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5371V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the public and private international law issues concerned with the protection of intellectual property rights (IPRs) globally. It commences with an overview of the sources of public international IP law, including the principal treaties, their interpretation and domestic implementation, and the general architecture of the international IP system. Using selected case studies, it then considers other international obligations that intersect with IPRS, including trade and investment protection measures and human rights obligations. It concludes with a survey of the private international law issues affecting the global exploitation of IPRs, particularly in the context of the Internet.", + "title": "International Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5372", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the public and private international\nlaw issues concerned with the protection of intellectual\nproperty rights (IPRs) globally. It commences with an\noverview of the sources of public international IP law,\nincluding the principal treaties, their interpretation and\ndomestic implementation, and the general architecture of\nthe international IP system. Using selected case studies, it\nthen considers other international obligations that intersect\nwith IPRS, including trade and investment protection\nmeasures and human rights obligations. It concludes with\na survey of the private international law issues affecting the\nglobal exploitation of IPRs, particularly in the context of the\nInternet.", + "title": "International Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5372V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced copyright will examine a number of the most recent controversies in copyright law, including challenges to the cable and broadcast TV business models, the copyright status of \"appropriation art\", the permissibility of mass digitization, the phenomenon of \"copyright trolls\", and the copyright implications of universities' electronic library reserve policies. Students must have completed a course in basic copyright law.", + "title": "Advanced Copyright", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5373", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced copyright will examine a number of the most recent controversies in copyright law, including challenges to the cable and broadcast TV business models, the copyright status of \"appropriation art\", the permissibility of mass digitization, the phenomenon of \"copyright trolls\", and the copyright implications of universities' electronic library reserve policies. Students must have completed a course in basic copyright law.", + "title": "Advanced Copyright", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5373V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We will examine water\u2019s importance to economic development and its special interest to lawyers. Water governance concerns both private as well as public\ninterests. Meanwhile, there is fundamental variation in how much is available and where. And because water flows, society must manage it across political boundaries. By drawing on the examples of a few key river basins, we will examine the reasons and processes by which water law has evolved as it has \u2013 and whether and how, given rising pressures and uncertainty, it may change.", + "title": "Water Rights & Resources: Issues in Law & Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5374", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We will examine water\u2019s importance to economic development and its special interest to lawyers. Water governance concerns both private as well as public\ninterests. Meanwhile, there is fundamental variation in how much is available and where. And because water flows, society must manage it across political boundaries. By drawing on the examples of a few key river basins, we will examine the reasons and processes by which water law has evolved as it has \u2013 and whether and how, given rising pressures and uncertainty, it may change.", + "title": "Water Rights & Resources: Issues in Law & Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5374V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to the major themes and\nissues in traditional Chinese legal thought. We will focus\non the close reading and analysis of selected works by\nvarious philosophers and various philosophical schools,\nincluding Confucius and later Confucian thinkers\n(including, but not limited to, Mencius, Xunzi, and Dong\nZhongshu), the Legalists, and the Daoists. Attention will\nalso be placed on understanding these thinkers and\nphilosophical schools in historical context and gaining an\nunderstanding of how law was applied in premodern\nChina. No prior knowledge of Chinese history or Chinese\nphilosophy is required. All required readings are in\nEnglish.", + "title": "Traditional Chinese Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5375", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to the major themes and\nissues in traditional Chinese legal thought. We will focus\non the close reading and analysis of selected works by\nvarious philosophers and various philosophical schools,\nincluding Confucius and later Confucian thinkers\n(including, but not limited to, Mencius, Xunzi, and Dong\nZhongshu), the Legalists, and the Daoists. Attention will\nalso be placed on understanding these thinkers and\nphilosophical schools in historical context and gaining an\nunderstanding of how law was applied in premodern\nChina. No prior knowledge of Chinese history or Chinese\nphilosophy is required. All required readings are in\nEnglish.", + "title": "Traditional Chinese Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5375V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the impact of regulation on the private law of banking and financial services. This would typically include how regulatory rules create private law duties in contract or tort.\n\nIt will be of interest to those interested in financial contracts, financial institutions and the regulation and supervision of financial markets and institutions including\nbanks. \n\nFinancial services constitute an important sector of the economy. Financial markets and institutions including banks are subject to a rapidly expanding field of public\nregulation. Its implementation and enforcement raise many underexplored challenges.", + "title": "Regulation & Private Law in Banking & Financial Service", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5376", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the impact of regulation on the private law of banking and financial services. This would typically include how regulatory rules create private law duties in contract or tort.\n\nIt will be of interest to those interested in financial contracts, financial institutions and the regulation and supervision of financial markets and institutions including\nbanks.\n\nFinancial services constitute an important sector of the economy. Financial markets and institutions including banks are subject to a rapidly expanding field of public\nregulation. Its implementation and enforcement raise many underexplored challenges.", + "title": "Regulation & Private Law in Banking & Financial Service", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5376V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law in Action: Legal Policymaking Externship offers students the opportunity to gain unique insights into Government policy making by working directly on various projects at the Ministry of Law.\n\nThe module provides a structured programme for students who wish to understand and acquire skills relevant to policy development in a Government setting.\n\nStudents will be involved in a wide spectrum of policy and legislative projects, such as civil and criminal procedure, arbitration law, intellectual property and legal industry development. Students will be part of a dynamic and challenging process of shaping policy goals to enhance the legal infrastructure in Singapore.", + "title": "Law in Action: Legal Policymaking Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5377", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law in Action: Legal Policymaking Externship offers students the opportunity to gain unique insights into Government policy making by working directly on various projects at the Ministry of Law.\n\nThe module provides a structured programme for students who wish to understand and acquire skills relevant to policy development in a Government setting.\n\nStudents will be involved in a wide spectrum of policy and legislative projects, such as civil and criminal procedure, arbitration law, intellectual property and legal industry development. Students will be part of a dynamic and challenging process of shaping policy goals to enhance the legal infrastructure in Singapore.", + "title": "Law in Action: Legal Policymaking Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5377V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine recent developments and future directions in international commercial arbitration. Recent innovations such as emergency arbitrations, arb-med-arb protocols, expeditious dismissal of manifestly unmeritorious claims, consolidation and joinder, and expedited procedures will be examined from a comparative and analytical perspective with a focus on jurisdictions in the Asia-Pacific region. It will also attempt to identify future trends in international commercial arbitration, including the use of artificial intelligence, online dispute resolution, block chain technology and other procedural and technological innovations. It will utilize case studies to allow students to gain hands-on experience with arbitral rules, legislation and procedure.", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5379", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine recent developments and future directions in international commercial arbitration. Recent innovations such as emergency arbitrations, arb-med-arb protocols, expeditious dismissal of manifestly unmeritorious claims, consolidation and joinder, and expedited procedures will be examined from a comparative and analytical perspective with a focus on jurisdictions in the Asia-Pacific region. It will also attempt to identify future trends in international commercial arbitration, including the use of artificial intelligence, online dispute resolution, block chain technology and other procedural and technological innovations. It will utilize case studies to allow students to gain hands-on experience with arbitral rules, legislation and procedure.", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5379V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Insolvency is a risk facing the BRI that requires careful study. This module equips students with the concepts and principles to understand the framework of the insolvency laws of the jurisdictions likely to have the most say in the resolution of insolvencies affecting the BRI. Major topics covered include a brief introduction to the BRI, the theories and concepts of insolvency laws and cross-border insolvency laws, main features of the restructuring laws of UK, US and China, the UNCITRAL Model Law on Cross-Border Insolvency, and recent developments in the cross-border insolvency laws of China, Singapore, UK and US.", + "title": "International and Comparative Insolvency Law in the BRI", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5380S", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Heritage is a broad term that, for our purposes, encompasses things as diverse as architecture and cultural objects regarded as having historical importance, and intangible aspects of culture such as cuisine, the performing arts, and ritual practices. The course aims to provide an insight into how heritage can be protected and safeguarded for future generations by domestic common law and statutory rules on the one hand; and international law rules on the other. \n\nA prior knowledge of how public international law works is useful but not required for the course.", + "title": "Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5381", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Heritage is a broad term that, for our purposes, encompasses things as diverse as architecture and cultural objects regarded as having historical importance, and intangible aspects of culture such as cuisine, the performing arts, and ritual practices. The course aims to provide an insight into how heritage can be protected and safeguarded for future generations by domestic common law and statutory rules on the one hand; and international law rules on the other.\n\nA prior knowledge of how public international law works is useful but not required for the course.", + "title": "Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5381V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the internationalization of commercial and personal relationships and the increase of cross-border disputes in Singapore\u2019s courts, a working knowledge of private international law, or the conflict of laws, has become essential for legal practice in Singapore. This course offers students a comprehensive overview of the foundations of private international law, with a particular focus on Singapore law. It covers private international law\u2019s three main pillars - jurisdiction, choice of law and foreign judgments - and also touches on broader methodological issues, and questions of sovereignty, comity, and public policy, which undergird and define the boundaries of the field.", + "title": "Private International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5382", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the internationalization of commercial and personal relationships and the increase of cross-border disputes in Singapore\u2019s courts, a working knowledge of private international law, or the conflict of laws, has become essential for legal practice in Singapore. This course offers students a comprehensive overview of the foundations of private international law, with a particular focus on Singapore law. It covers private international law\u2019s three main pillars - jurisdiction, choice of law and foreign judgments - and also touches on broader methodological issues, and questions of sovereignty, comity, and public policy, which undergird and define the boundaries of the field.", + "title": "Private International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5382V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The New York Convention of 1958 on the Recognition and Enforcement of Foreign Arbitral Awards provides for the international enforcement of arbitral awards. Considered as the most successful international convention in international private law, the Convention now has 164 Contracting States and more than 2,500 court decisions interpreting and applying the Convention (as of June 2020). The course will analyze and compare the most important of those decisions. It will offer a unique insight in treaty design, statutory enactments, varying court approaches, and the practice of international arbitration. The course materials will be made available at www.newyorkconvention.org.", + "title": "International Arbitration & the New York Convention", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL5383Z", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2022-09-20", + "end": "2022-09-20" + }, + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-21" + }, + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-19" + }, + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 6 + ], + "venue": "LAW_ESR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide students with the opportunity to critically engage with some of the core notions they encounter when they study criminal law. The focus will be on a number of issues revolving around the concepts of harm and wrong, such as:\n- How should we understand the notion of wrongdoing?\n- Should the criminal law care about the distinction between intended and foreseen harm?\n- Can the wrongfulness of certain actions depend on the intentions of the agent?\n- What is the relationship between reasons for action and legal justifications?\n- What is wrong with blackmail?", + "title": "Harms and Wrongs", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5384", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide students with the opportunity to critically engage with some of the core notions they encounter when they study criminal law. The focus will be on a number of issues revolving around the concepts of harm and wrong, such as:\n- How should we understand the notion of wrongdoing?\n- Should the criminal law care about the distinction between intended and foreseen harm?\n- Can the wrongfulness of certain actions depend on the intentions of the agent?\n- What is the relationship between reasons for action and legal justifications?\n- What is wrong with blackmail?", + "title": "Harms and Wrongs", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5384V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s global digital world, national tax systems face new challenges. Governments large and small cooperate in tax enforcement including through strengthened anti-abuse rules, yet tax competition continues. Uncertainty,\ncomplexity and risk have increased for taxpayers ranging from individuals to multinational enterprises. Recent developments in the OECD Inclusive Framework and other forums may lead to significant new global tax rules, but an agreed outcome is far from certain. This course explores the latest trends and issues in personal and corporate income tax and Goods and Services Tax that address\ndigital or cross-border services or employment, consumption, and investment.", + "title": "Taxation Law & the Global Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5385", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s global digital world, national tax systems face new challenges. Governments large and small cooperate in tax enforcement including through strengthened anti-abuse rules, yet tax competition continues. Uncertainty,\ncomplexity and risk have increased for taxpayers ranging from individuals to multinational enterprises. Recent developments in the OECD Inclusive Framework and other forums may lead to significant new global tax rules, but an agreed outcome is far from certain. This course explores the latest trends and issues in personal and corporate income tax and Goods and Services Tax that address\ndigital or cross-border services or employment, consumption, and investment.", + "title": "Taxation Law & the Global Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5385V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines emerging trends to identify and analyse ways in which intellectual property laws are being used to commodify self. Through processes of intellectual propertisation, aspects of the human body, human persona, and human expression through art can be converted from \u2018unowned\u2019 to \u2018owned\u2019. Examining contemporary issues such as gene patents, fake news, authenticity and cultural appropriation, as well as\nemerging technologies such as transplanted and artificial body parts, cyborgs, mind downloads, blockchain and the Internet of Things, the course examines the mechanisms\nby which the expansion of intellectual property laws is enabling increasing commodification of humankind.", + "title": "Intellectual Property in Body, Persona & Art", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5386", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines emerging trends to identify and analyse ways in which intellectual property laws are being used to commodify self. Through processes of intellectual propertisation, aspects of the human body, human persona, and human expression through art can be converted from \u2018unowned\u2019 to \u2018owned\u2019. Examining contemporary issues such as gene patents, fake news, authenticity and cultural appropriation, as well as emerging technologies such as transplanted and artificial body parts, cyborgs, mind downloads, blockchain and the Internet of Things, the course examines the mechanisms by which the expansion of intellectual property laws is enabling increasing commodification of humankind.", + "title": "Intellectual Property in Body, Persona & Art", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5386V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will survey multiple legal fields that involve the regulation of what are generally referred to as \u201cdigital platforms,\u201d including Google, Facebook, and others. The primary legal fields of study will be competition (antitrust) law and liability for third-party content. Because these areas of law draw heavily from economic theory and research, the course will also survey some of the relevant economics literature as a means of better understanding the relevant markets.", + "title": "Regulation of Digital Platform", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5387", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will survey multiple legal fields that involve the regulation of what are generally referred to as \u201cdigital platforms,\u201d including Google, Facebook, and others. The primary legal fields of study will be competition (antitrust) law and liability for third-party content. Because these areas of law draw heavily from economic theory and research, the course will also survey some of the relevant economics literature as a means of better understanding the relevant markets.", + "title": "Regulation of Digital Platforms", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5387V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores Thai contract law which is a product of civil law traditions and a cornerstone of Thai private law. It covers major areas of contract law from the beginning to the end of a contract, i.e. contract formation, validity, interpretation, breach of contract, and ending and changing a contract. Course participants will be encouraged to make comparisons between Thai and Singapore contract laws on\ncertain issues.", + "title": "Comparative Civil Law: Thai Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5388", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores Thai contract law which is a product of civil law traditions and a cornerstone of Thai private law. It covers major areas of contract law from the beginning to the end of a contract, i.e. contract formation, validity, interpretation, breach of contract, and ending and changing a contract. Course participants will be encouraged to make comparisons between Thai and Singapore contract laws on\ncertain issues.", + "title": "Comparative Civil Law: Thai Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5388V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines so-called \u2018quasi-security\u2019 devices: legal structures that perform the function of personal property security, whilst not being \u2018true\u2019 security in the legal sense. These devices entail the retention of title or absolute\ntransfer of title (rather than the grant of a security interest) and, like \u2018true\u2019 security, secure the performance of an obligation. Hence, consideration will be given to retention of title devices (ROT or \u2018Romapla\u2019 clauses) in the supply of goods to manufacturers or to retailers as stock-in-trade, conditional-sale, hire-purchase, finance-leasing. Absolute transfer of title devices exemplified by receivables financing (factoring, securitisation) will also be covered.", + "title": "Asset-Based Financing: Quasi-Security Devices", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5389", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines so-called \u2018quasi-security\u2019 devices: legal structures that perform the function of personal property security, whilst not being \u2018true\u2019 security in the legal sense. These devices entail the retention of title or absolute\ntransfer of title (rather than the grant of a security interest) and, like \u2018true\u2019 security, secure the performance of an obligation. Hence, consideration will be given to retention of title devices (ROT or \u2018Romapla\u2019 clauses) in the supply of goods to manufacturers or to retailers as stock-in-trade, conditional-sale, hire-purchase, finance-leasing. Absolute transfer of title devices exemplified by receivables financing (factoring, securitisation) will also be covered.", + "title": "Asset-Based Financing: Quasi-Security Devices", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5389V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corporate groups are pervasive in modern, international commerce. Frequently they are structured in order to avoid or minimise liability for wrongdoing and to protect group assets. In other cases, risky physical processes are contracted out to network participants. This course examines the structures and practices of corporate groups and networks, the problems of externalisation of liability, and legal mechanisms for extending liability among participant entities. Extended liability regimes considered span statute law and common law. Consideration is given also to several important suggestions for development of the law in this area.", + "title": "Liability of Corporate Groups and Networks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5393", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corporate groups are pervasive in modern, international commerce. Frequently they are structured in order to avoid or minimise liability for wrongdoing and to protect group assets. In other cases, risky physical processes are contracted out to network participants. This course examines the structures and practices of corporate groups and networks, the problems of externalisation of liability,\nand legal mechanisms for extending liability among participant entities. Extended liability regimes considered span statute law and common law. Consideration is given also to several important suggestions for development of the law in this area.", + "title": "Liability of Corporate Groups and Networks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5393V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In intellectual property law, overlaps of exclusive rights stemming from different protection regimes raise particular problems. Nonetheless, the cumulation of rights has become a standard protection strategy in sectors ranging from software to fashion and entertainment. Against this background, this module offers a detailed analysis of protection overlaps. Which combinations of rights are deemed permissible? Which specific problems arise from the cumulation of intellectual property rights? Using international, US and EU legislation and case law as reference points, these questions will be discussed. Moreover, the module will explore alternative avenues for better law and policy making.", + "title": "Protection Overlaps in Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5394", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In intellectual property law, overlaps of exclusive rights stemming from different protection regimes raise particular problems. Nonetheless, the cumulation of rights has become a standard protection strategy in sectors ranging from software to fashion and entertainment. Against this background, this module offers a detailed analysis of protection overlaps. Which combinations of rights are deemed permissible? Which specific problems arise from the cumulation of intellectual property rights? Using international, US and EU legislation and case law as reference points, these questions will be discussed. Moreover, the module will explore alternative avenues for better law and policy making.", + "title": "Protection Overlaps in Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5394V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using precedents and transactional documents generously supplied by various leading law firms and chambers, the module will examine in much greater depth various representative uses of trusts in the modern world, both to make family provision and in commerce. It will examine how these functions are realised by practising lawyers working within, ad developing, legal doctrine. Finally it will\nexplore the broad theoretical implications of this work.", + "title": "The Law & Practice of Modern Trust Structures", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5395", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using precedents and transactional documents generously supplied by various leading law firms and chambers, the module will examine in much greater depth various representative uses of trusts in the modern world, both to make family provision and in commerce. It will examine how these functions are realised by practising lawyers working within, ad developing, legal doctrine. Finally it will\nexplore the broad theoretical implications of this work.", + "title": "The Law & Practice of Modern Trust Structures", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5395V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UNIVERSITY RESEARCH OPPORTUNITIES PROGRAMME", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5396", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students enrolled in the LLM (IADR) degree with the opportunity to do a substantial research paper not exceeding 10,000 words under the direct supervision of a member of the academic staff. Students\nmay not do a directed research on topics that they have studied in other courses or have previously done research assignments on. Students interested in doing the Directed Research are advised to seek the provisional approval of their proposed supervisor.", + "title": "International Arbitration & Dispute Resolution Research", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5396V", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5397", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students enrolled in the LLM (IADR) degree with the opportunity to do a substantial research paper not exceeding 10,000 words under the direct supervision of a member of the academic staff. Students\nmay not do a directed research on topics that they have studied in other courses or have previously done research assignments on. Students interested in doing the Directed Research are advised to seek the provisional approval of their proposed supervisor.", + "title": "International Arbitration & Dispute Resolution Research", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5397V", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5398", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5399", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biomedical Law & Ethics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5400", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5402", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Intellectual Property (a)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5405A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Intellectual Property (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5405B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5407", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5409", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Personal property law cuts across many legal fields, including equity and trusts, and the law of sales, agency, company, insolvency and bankruptcy, insurance, banking, economic torts and crimes. The course covers the following broad areas: (i) defining the interests in personal property; (ii) creation and acquisition of interests in tangible property by consent, including the sale of goods and documentary sales; (iii) creation and acquisition of interests in tangible property by \noperation of law; (iv) intangible property & security interests; (v) persistence of interests in personal property; and (iv) protection of interests in personal property.", + "title": "Personal Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide an overview of securities regulation, corporate governance and mergers and acquisitions, in Singapore and, where relevant, jurisdictions such as the US, UK, Australia, China and HK. Topics to be covered generally include: regulatory authorities and capital markets; supervision of intermediaries; the \"going public\" process; legal position of stockbrokers; insider trading and securities frauds; globalisation, technology and regulatory harmonisation; and regulation of takeover activity. In addition, aspects of syndicated loan and bond financing, and securitisation, will be studied in some detail. Students will be expected to use the Internet to search for comparative materials. Advisory Note for students from Civil Law Jurisdiction: Not appropriate for civil law students.", + "title": "Securities and Capital Markets Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5412", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course is about the law governing the processes by which substantive rights are effectuated during civil litigation in Singapore. The emphasis will be on how Rules of Court operate in areas of dispute resolution including the interlocutory stages from filing of an action to the trial, post-judgment matters and the role of amicable settlement in the adversarial culture. The inter-relationship between procedure, evidence and ethics will be analysed. Students will have an understanding of the principles of procedure to consider the efficacy and viability of the governing law in light of fairness, efficiency and justice, and to propose reforms.", + "title": "Civil Justice and Procedure", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL5413", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the tensions in choice-of-law decision-making in selected areas or sub-fields spanning human rights violations, foreign sovereign debts, environmental liability, currency swaps, international trusts, multiple-listed corporations, and time permitting, economic torts and internet defamation and/or employment and human capital development. In each specific area, it asks whether a choice-of-law theory can shed light on the tensions which the choice-of-law rule seeks to balance and whether another can lead to development of a better or more coherent rule.", + "title": "Choice of Law: Practice and Theories", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5431", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the tensions in choice-of-law decision-making in selected areas or sub-fields spanning human rights violations, foreign sovereign debts, environmental liability, currency swaps, international trusts, multiple-listed corporations, and time permitting, economic torts and internet defamation and/or employment and human capital development. In each specific area, it asks whether a choice-of-law theory can shed light on the tensions which the choice-of-law rule seeks to balance and whether another can lead to development of a better or more coherent rule.", + "title": "Choice of Law: Practice and Theories", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5431V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of international litigation has gained strong recognition as a composite of two branches of the conflict of laws, namely jurisdiction and recognition and enforcement of judgment. This conceptualisation brings into its embrace evolving themes of comity, proximity, efficiency, party autonomy, foreign sovereign immunity, foreign act of state and justiciability, reasonable extraterritoriality, and forum mandatory procedural policies. In this advanced course, each theme is studied in the context of practice in a particular sub-field of jurisdiction or enforcement; although some themes such as that of sovereignty are cross-cutting and are studied in more than one jurisdictional context.", + "title": "International Litigation: Themes and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5432", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of international litigation has gained strong recognition as a composite of two branches of the conflict of laws, namely jurisdiction and recognition and enforcement of judgment. This conceptualisation brings into its embrace evolving themes of comity, proximity, efficiency, party autonomy, foreign sovereign immunity, foreign act of state and justiciability, reasonable extraterritoriality, and forum mandatory procedural policies. In this advanced course, each theme is studied in the context of practice in a particular sub-field of jurisdiction or enforcement; although some themes such as that of sovereignty are cross-cutting and are studied in more than one jurisdictional context.", + "title": "International Litigation: Themes and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5432V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the main themes and approaches in data privacy law in light of various international frameworks (OECD, APEC, ASEAN) and a cross-section of national laws from North America, Europe and Asia. While many countries have enacted or amended laws in recent years, there is no widely-accepted framework for cross-border data transfers and developments in business and technology present new risks and challenges to the protection of individuals\u2019 personal data and privacy. This course will also consider the role of data privacy laws in regulating social media and the Internet, data science, AI and machine learning and cybersecurity.", + "title": "Global Data Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5433", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the main themes and approaches in data privacy law in light of various international frameworks (OECD, APEC, ASEAN) and a cross-section of national laws from North America, Europe and Asia. While many countries have enacted or amended laws in recent years, there is no widely-accepted framework for cross-border data transfers and developments in business and technology present new risks and challenges to the protection of individuals\u2019 personal data and privacy. This course will also consider the role of data privacy laws in regulating social media and the Internet, data science, AI and machine learning and cybersecurity.", + "title": "Global Data Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5433V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The trading of commodities is one of the oldest forms of economic activity known to mankind. Today, it is a sophisticated multi-trillion-dollar industry spanning across the globe. A commodity trade is, at its heart, the sale and purchase of a commodity, but is often coupled with other related transactions such as transportation, storage,\ninsurance and finance. This course seeks to provide students with an overview of international commodity trading law. As an \u201cindustry-focused\u201d course, students will\nbe trained to identify and analyse problems that span across different areas including contract, banking and finance, agency, assignment, set-off \u2013 just like practitioners do.", + "title": "International Commodity Trading Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5434", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The trading of commodities is one of the oldest forms of economic activity known to mankind. Today, it is a sophisticated multi-trillion-dollar industry spanning across the globe. A commodity trade is, at its heart, the sale and purchase of a commodity, but is often coupled with other related transactions such as transportation, storage,\ninsurance and finance. This course seeks to provide students with an overview of international commodity trading law. As an \u201cindustry-focused\u201d course, students will\nbe trained to identify and analyse problems that span across different areas including contract, banking and finance, agency, assignment, set-off \u2013 just like practitioners do.", + "title": "International Commodity Trading Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5434V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is unique because it did not emerge from a single source of law. Rather, it has roots in almost every type of law. Through diverse readings, deep discussions, and independent research, this course will identify and understand the various types of law that, together, give rise to \u201cenvironmental law.\u201d The course will consider environmental law\u2019s roots in common law, regulation, legislation, constitutions, international cooperation, public action, and even private self-governance. Though not exclusively, the focus will be on common law jurisdictions in the British tradition, but independent research will allow students to explore more widely for themselves.", + "title": "Foundations of Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5435", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is unique because it did not emerge from a single source of law. Rather, it has roots in almost every type of law. Through diverse readings, deep discussions, and independent research, this course will identify and understand the various types of law that, together, give rise to \u201cenvironmental law.\u201d The course will consider environmental law\u2019s roots in common law, regulation, legislation, constitutions, international cooperation, public action, and even private self-governance. Though not exclusively, the focus will be on common law jurisdictions in the British tradition, but independent research will allow students to explore more widely for themselves.", + "title": "Foundations of Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5435V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family Law covers a very broad field that involves familial relationships wider than just spousal relationships, children and money matters. It encompasses transnational conflict of laws, marital agreements, international conventions and enforcement issues. It also sees intersectionality with elder law, mental capacity, as well as probate and succession law. It is not possible to cover every aspect of family law in this elective. This course will cover family law and practice in Singapore, with a special emphasis on marriages, divorce and ancillary matters for civil marriages, and the workings of the Family Justice Courts.", + "title": "Family Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5436", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family Law covers a very broad field that involves familial relationships wider than just spousal relationships, children and money matters. It encompasses transnational conflict of laws, marital agreements, international conventions and enforcement issues. It also sees intersectionality with elder law, mental capacity, as well as probate and succession law. It is not possible to cover every aspect of family law in this elective. This course will cover family law and practice in Singapore, with a special emphasis on marriages, divorce and ancillary matters for civil marriages, and the workings of the Family Justice Courts.", + "title": "Family Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5436V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores diverse development patterns of the rule of law and democracy in East Asia. Theories of democracy commonly hold that the acceptance of rule of law in non-democratic countries would lead to democratization, especially along with increasing economic prosperity. This linear thesis, however, have met challenges recently in light of recent developments in China, HK, and other parts of the world. As such, this module scrutinizes this linear thesis by examining the trajectories of legal development in East Asia and the determinants, such as international factors, civil law traditions, legal professionals, foreign law influence, colonial legacies and post-colonial nationalism.", + "title": "Law and Democracy in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5437", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores diverse development patterns of the rule of law and democracy in East Asia. Theories of democracy commonly hold that the acceptance of rule of law in non-democratic countries would lead to democratization, especially along with increasing economic prosperity. This linear thesis, however, have met challenges recently in light of recent developments in China, HK, and other parts of the world. As such, this module scrutinizes this linear thesis by examining the trajectories of legal development in East Asia and the determinants, such as international factors, civil law traditions, legal professionals, foreign law influence, colonial legacies and post-colonial nationalism.", + "title": "Law and Democracy in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5437V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the exciting world of intellectual property arbitration. Traditionally thought of and taught as distinct areas of law, the overlap between IP rights and recourse to arbitration for the protection of those rights has grown significantly in recent years. This pioneering course is not currently offered in any other leading law school in the world. It is designed for students with little to\nno knowledge of IP law. It is also designed for students with an interest in arbitration, regardless of the level of their preexisting knowledge of arbitration.", + "title": "Intellectual Property Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5438", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the exciting world of intellectual property arbitration. Traditionally thought of and taught as distinct areas of law, the overlap between IP rights and recourse to arbitration for the protection of those rights has grown significantly in recent years. This pioneering course is not currently offered in any other leading law school in the world. It is designed for students with little to\nno knowledge of IP law. It is also designed for students with an interest in arbitration, regardless of the level of their preexisting knowledge of arbitration.", + "title": "Intellectual Property Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5438V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a condensed course designed to enable law students to acquire essential knowledge and financial skills needed to advise clients in today\u2019s highly regulated global environment. This module comprises four parts. The first part demystifies accounting concepts and taxonomy. The second part addresses the significance of the primary information in financial statements. The third part introduces key financial ratios that are tools for assessing the health, solvency and value of a business. The fourth part is an application of more advanced forensic tools used to detect fraud, misstatements, non-compliance and other related financial risks.", + "title": "Applied Accounting and Finance for Lawyers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5439S", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to electronic evidence, which covers every area of law. Most legal problems presented to lawyers now include an element of electronic evidence. It is incumbent on judges, lawyers and legal academics to be familiar with the topic in the service of justice. Electronic evidence is ubiquitous.\nUsing an array of mobile technologies, people communicate regularly through social networking sites, e-mail and other virtual methods managed by organisations that are transnational. No area of human activity is free from the networked world \u2013 this also means no area of law is free from the effects of electronic evidence.", + "title": "Electronic Evidence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5440", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to electronic evidence, which covers every area of law. Most legal problems presented to lawyers now include an element of electronic evidence. It is incumbent on judges, lawyers and legal academics to be familiar with the topic in the service of justice. Electronic evidence is ubiquitous.\nUsing an array of mobile technologies, people communicate regularly through social networking sites, e-mail and other virtual methods managed by organisations that are transnational. No area of human activity is free from the networked world \u2013 this also means no area of law is free from the effects of electronic evidence.", + "title": "Electronic Evidence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5440V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks at the economic foundations of corporate bankruptcy and insolvency law. The course will discuss the application of general law-and-economics principles to the governance and reorganization of insolvent and financially distressed business firms. Readings will focus in particular on questions about whether and how general theories of contracts, property, and corporate governance must be amended in the context of insolvency and bankruptcy.", + "title": "Law & Economics of Corporate Bankruptcy & Insolvency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5441", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks at the economic foundations of corporate bankruptcy and insolvency law. The course will discuss the application of general law-and-economics principles to the governance and reorganization of insolvent and financially distressed business firms. Readings will focus in particular on questions about whether and how general theories of contracts, property, and corporate governance must be amended in the context of insolvency and bankruptcy.", + "title": "Law & Economics of Corporate Bankruptcy & Insolvency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5441V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course will consider digital trade's role within the global political economy and its benefits for international economic activity. Students will examine how international trade laws and treaties can affect cross-border digital trade, e-commerce, and emerging technologies (e.g. artificial intelligence, autonomous technology and 5G). Students will explore the legal and economic implications of various regulatory barriers to digital trade, as well as their related public policy concerns (e.g. privacy and cybersecurity), and learn about facilitating digital trade infrastructure, the key intellectual property issues in digital trade, and the linkages between trade and investment in the digital economy.", + "title": "Digital Trade and Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5442", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course will consider digital trade's role within the global political economy and its benefits for international economic activity. Students will examine how international trade laws and treaties can affect cross-border digital trade, e-commerce, and emerging technologies (e.g. artificial intelligence, autonomous technology and 5G). Students will explore the legal and economic implications of various regulatory barriers to digital trade, as well as their related public policy concerns (e.g. privacy and cybersecurity), and learn about facilitating digital trade infrastructure, the key intellectual property issues in digital trade, and the linkages between trade and investment in the digital economy.", + "title": "Digital Trade and Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5442V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how the securities and capital markets are structured and regulated in Asia, particularly in Mainland China and Hong Kong. The topics covered in this course include, amongst others, the regulatory framework for the capital markets, securities offering, stock exchange listing, market misconduct such as insider trading, Fintech issues such as crowdfunding, mobile payment and cryptoassets. Given the nature of the course, a comparative approach will be adopted to examining the topics covered.", + "title": "Capital Markets Law in Mainland China and HKSAR", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5443", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how the securities and capital markets are structured and regulated in Asia, particularly in Mainland China and Hong Kong. The topics covered in this course include, amongst others, the regulatory framework for the capital markets, securities offering, stock exchange listing, market misconduct such as insider trading, Fintech issues such as crowdfunding, mobile payment and cryptoassets. Given the nature of the course, a comparative approach will be adopted to examining the topics covered.", + "title": "Capital Markets Law in Mainland China and HKSAR", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5443V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law of the Marine Environment discusses the legal framework for the international governance of shipping. Within this framework it considers the powers flag, coastal and ports states have to prescribe and enforce environmental shipping regulations. The main characteristics of the established regulatory system is further described. The course then embarks on a detailed analysis of a number of international and national civil liability regimes developed for the recovery of pollution damage. Contemporary environmental challenges faced by shipping, namely, the reduction of atmospheric pollution and greenhouse gas emissions and the issue of recycling of ships are then examined.", + "title": "Law of the Marine Environment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5444", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law of the Marine Environment discusses the legal framework for the international governance of shipping. Within this framework it considers the powers flag, coastal and ports states have to prescribe and enforce environmental shipping regulations. The main characteristics of the established regulatory system is further described. The course then embarks on a detailed analysis of a number of international and national civil liability regimes developed for the recovery of pollution damage. Contemporary environmental challenges faced by shipping, namely, the reduction of atmospheric pollution and greenhouse gas emissions and the issue of recycling of ships are then examined.", + "title": "Law of the Marine Environment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5444V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of three parts. The first part consists of an introduction to basic concepts of credit and security and insolvent liquidation, providing the foundation for a solid understanding of corporate insolvency law. The second part examines receivership, scheme of arrangement and the Mainland China\u2019s reorganisation. It explains their main features (especially in the context of corporate finance) and their importance in today\u2019s economy. The third part examines the UNCITRAL Model Law on Cross-Border Insolvency and the Mainland and Hong Kong arrangement on insolvency, a momentous breakthrough in the Mainland\u2019s cross-border insolvency law.", + "title": "Corporate Insolvencies in the PRC and Hong Kong SAR", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5445S", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the theory and practice of constitutionalism in four countries that are located in South and South East Asia: India, Indonesia, Singapore and Sri Lanka. Two of these are among the largest, most pluralistic nations in the world, while the remaining two are small island states. All four nations experienced long periods of colonial rule, which continues to have a decisive impact on their post-colonial legal and constitutional orders. The course will be of interest to those who seek to study constitutionalism against larger societal debates about economic development, cultural values, and human rights.", + "title": "Comparative Constitutionalism in Southern Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5446", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the theory and practice of constitutionalism in four countries that are located in South and South East Asia: India, Indonesia, Singapore and Sri Lanka. Two of these are among the largest, most pluralistic nations in the world, while the remaining two are small island states. All four nations experienced long periods of colonial rule, which continues to have a decisive impact on their post-colonial legal and constitutional orders. The course will be of interest to those who seek to study constitutionalism against larger societal debates about economic development, cultural values, and human rights.", + "title": "Comparative Constitutionalism in Southern Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5446V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a hands-on introduction to legal data science and aims to improve students\u2019 understanding of:\n1) legal issues that involve technology;\n2) the technologies that underlie many legal\u2013tech products; and\n3) how technology can be used in empirical legal research.\nThis class also provides practice in the logical reasoning skills important to many areas of legal practice and improves students\u2019 abilities to communicate with clients in high-tech industries.\nNo computer programming experience is required. Class operates in a \u201cflipped\u201d manner with weekly homework and readings, and intensive classroom activities that are designed to help students overcome learning obstacles.", + "title": "Legal Data Science", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5447", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a hands-on introduction to legal data science and aims to improve students\u2019 understanding of:\n1) legal issues that involve technology;\n2) the technologies that underlie many legal\u2013tech products; and\n3) how technology can be used in empirical legal research.\nThis class also provides practice in the logical reasoning skills important to many areas of legal practice and improves students\u2019 abilities to communicate with clients in high-tech industries.\nNo computer programming experience is required. Class operates in a \u201cflipped\u201d manner with weekly homework and readings, and intensive classroom activities that are designed to help students overcome learning obstacles.", + "title": "Legal Data Science", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5447V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The common-law world only exists because of its shared history. History explains the common lawyer\u2019s profession. This module introduces the study of legal history with an eye to its contemporary relevance. It concentrates on the colonial roots of the laws and legal institutions of common-law countries such as Singapore. By examining colonial settings across three centuries, we shall see how English law dealt with cultural plurality and territorial expansion, and how imperial stakeholders debated and applied ideas from the rule of law to judicial independence. We explore why, how, and for whom law was made, and how these dynamics changed upon decolonisation.", + "title": "Legal History: Themes and Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5448", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The common-law world only exists because of its shared history. History explains the common lawyer\u2019s profession. This module introduces the study of legal history with an eye to its contemporary relevance. It concentrates on the colonial roots of the laws and legal institutions of common-law countries such as Singapore. By examining colonial settings across three centuries, we shall see how English law dealt with cultural plurality and territorial expansion, and how imperial stakeholders debated and applied ideas from the rule of law to judicial independence. We explore why, how, and for whom law was made, and how these dynamics changed upon decolonisation.", + "title": "Legal History: Themes and Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5448V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Water is everywhere. Water is life! But how is water regulated when it crosses national borders? And how is it regulated when it is found underground? Can water in one country be of relevance for the international community as a whole? These are some of the questions that will be discussed in the intensive course on International Water Law. Throughout three weeks students will focus on transboundary surface water (first week), transboundary aquifers (second week) and on three specific water related matters that link water with other key relevant international legal areas (third week): climate change, sustainable development and security.", + "title": "International Water Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5449", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Water is everywhere. Water is life! But how is water regulated when it crosses national borders? And how is it regulated when it is found underground? Can water in one country be of relevance for the international community as a whole? These are some of the questions that will be discussed in the intensive course on International Water Law. Throughout three weeks students will focus on transboundary surface water (first week), transboundary aquifers (second week) and on three specific water related matters that link water with other key relevant international legal areas (third week): climate change, sustainable development and security.", + "title": "International Water Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5449V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a broad overview of Singapore\u2019s legal history, including its historical common law origins and the evolution of its key institutions and traditions. Topics covered include the historical development of Singapore\u2019s sources of law; the Singapore Constitution; judicial system; legal profession, legal service; legal education; criminal law; land law and law reporting. Assessment will be by way of a research paper on a selected topic to submit at the end of the course.", + "title": "Singapore Legal History", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5450", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a broad overview of Singapore\u2019s legal history, including its historical common law origins and the evolution of its key institutions and traditions. Topics covered include the historical development of Singapore\u2019s sources of law; the Singapore Constitution; judicial system; legal profession, legal service; legal education; criminal law; land law and law reporting. Assessment will be by way of a research paper on a selected topic to submit at the end of the course.", + "title": "Singapore Legal History", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5450V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on some of the neglected historical aspects of international law, but also on the techniques of doing a \u201chistory\u201d of the discipline (how is one even to attempt a history (or histories) of Euro-centric international law?). It will concentrate on topics as diverse as territorial acquisition and religious authority (the 1494 Treaty of Tordesillas), on the freedom of the oceans and the slave trade, on colonies and race. The course will also be of particular interest to modalities of accountability for the international legal past, such as the 2000 Women\u2019s International Tribunal on Sexual Violence and the recent advisory opinion of the International Court of Justice in the Chagos Archipelago.", + "title": "An Uncensored History of International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5451", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on some of the neglected historical aspects of international law, but also on the techniques of doing a \u201chistory\u201d of the discipline (how is one even to attempt a history (or histories) of Euro-centric international law?). It will concentrate on topics as diverse as territorial acquisition and religious authority (the 1494 Treaty of Tordesillas), on the freedom of the oceans and the slave trade, on colonies and race. The course will also be of particular interest to modalities of accountability for the international legal past, such as the 2000 Women\u2019s International Tribunal on Sexual Violence and the recent advisory opinion of the International Court of Justice in the Chagos Archipelago.", + "title": "An Uncensored History of International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5451V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When a person refers to \u201cfamily law\u201d, listeners generally assume that the person is referring to divorce law. However, family law in Singapore encompasses much more, e.g. mental capacity, probate, and adoption.\n\nThis course will cover the above areas as well as more specialised topics in family law, e.g. relocation, cross border divorce and maintenance, child abduction, and therapeutic justice, and will also include an introduction to procedural and practical aspects of family law litigation.", + "title": "Specialised Topics in Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5452", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When a person refers to \u201cfamily law\u201d, listeners generally assume that the person is referring to divorce law. However, family law in Singapore encompasses much more, e.g. mental capacity, probate, and adoption.\n\nThis course will cover the above areas as well as more specialised topics in family law, e.g. relocation, cross border divorce and maintenance, child abduction, and therapeutic justice, and will also include an introduction to procedural and practical aspects of family law litigation.", + "title": "Specialised Topics in Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5452V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of how intellectual property laws (e.g. copyright, trademarks and right of publicity) regulate the world of fashion. It will also explore the enforcement of intellectual property laws in the fashion industry from an interdisciplinary perspective drawing on writings in cultural studies and fashion theory.", + "title": "Fashion Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5453", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of how intellectual property laws (e.g. copyright, trademarks and right of publicity) regulate the world of fashion. It will also explore the enforcement of intellectual property laws in the fashion industry from an interdisciplinary perspective drawing on writings in cultural studies and fashion theory.", + "title": "Fashion Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5453V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Commercial conflict of laws is a significant area of legal scholarship and practice. The chief aim of the course is to examine the foundational principles of commercial conflict of laws in Singapore. First, it identifies and assesses the set of rules based on which Singapore courts decide whether to entertain international commercial disputes. Second, the unit outlines the provisions based on which Singapore courts determine the law governing the parties\u2019 cross-border disputes. Finally, the unit outlines the rules according to which courts in Singapore give effect to foreign judgments.", + "title": "Commercial Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5454", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Commercial conflict of laws is a significant area of legal scholarship and practice. The chief aim of this module is to examine the foundational principles of commercial conflict of laws from the perspective of courts in Singapore. First, the module identifies and assesses the set of rules based on which Singapore courts decide whether to entertain international commercial disputes. Second, the module outlines the rules according to which courts in Singapore give effect to foreign judgments. Finally, the module outlines the provisions based on which Singapore courts determine the law governing the parties\u2019 cross-border disputes.", + "title": "Commercial Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5454S", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Commercial conflict of laws is a significant area of legal scholarship and practice. The chief aim of the course is to examine the foundational principles of commercial conflict of laws in Singapore. First, it identifies and assesses the set of rules based on which Singapore courts decide whether to entertain international commercial disputes. Second, the unit outlines the provisions based on which Singapore courts determine the law governing the parties\u2019 cross-border disputes. Finally, the unit outlines the rules according to which courts in Singapore give effect to foreign judgments.", + "title": "Commercial Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5454V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is the second installment on the taxation of cross-border commercial transactions. The first installment, Taxation of Cross-Border Commercial Transactions I, is a pre-requisite. This course will interest those who want to practise tax law and/or those who took the first installment and enjoyed it. \n\nTopics covered: \n- The OECD Model Double Tax Treaty including the Multilateral Instrument (in-depth)\n- Anti-avoidance rules and tax planning\n- Accounting for Tax Consequences\n- The Impact of Bilateral Investment Treaties on International Tax\n- Tax Theory", + "title": "Taxation of Cross-Border Commercial Transactions II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5455", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is the second installment on the taxation of cross-border commercial transactions. The first installment, Taxation of Cross-Border Commercial Transactions I, is a pre-requisite. This course will interest those who want to practise tax law and/or those who took the first installment and enjoyed it. \n\nTopics covered: \n- The OECD Model Double Tax Treaty including the Multilateral Instrument (in-depth)\n- Anti-avoidance rules and tax planning\n- Accounting for Tax Consequences\n- The Impact of Bilateral Investment Treaties on International Tax\n- Tax Theory", + "title": "Taxation of Cross-Border Commercial Transactions II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5455V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Legal innovation and technology are new foci in the legal profession as technologies of automation transform the nature of practice. This module provides a theoretically-informed, hands-on practical experience in producing the types of legaltech that are transforming practice, while also equipping the student with the critical faculties to determine their appropriate application. This module offers highly practical lab-based work where students learn the fundamentals of automating legal services and decision support systems, as well as developing skills required for designing new technologies to aid the practice of law.", + "title": "Legal Technology & Innovation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5456", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Legal innovation and technology are new foci in the legal profession as technologies of automation transform the nature of practice. This module provides a theoretically-informed, hands-on practical experience in producing the types of legaltech that are transforming practice, while also equipping the student with the critical faculties to determine their appropriate application. This module offers highly practical lab-based work where students learn the fundamentals of automating legal services and decision support systems, as well as developing skills required for designing new technologies to aid the practice of law.", + "title": "Legal Technology & Innovation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5456V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The two fundamental goals of the module are to introduce students to topical issues surrounding international human rights law and to lay the foundation for their future advanced studies of, or work in, the field of human rights. The first section addresses normative bases, right-holders, and various types of human rights, corresponding territorial and extraterritorial obligations of states and non-state actors, and international and regional mechanisms of human rights protection. The second section explores the role of human rights in solving pressing global problems, including poverty and inequality, decolonization, social, global and environmental injustice, and other obstacles to sustainable development.", + "title": "International Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5457", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The two fundamental goals of the module are to introduce students to topical issues surrounding international human rights law and to lay the foundation for their future advanced studies of, or work in, the field of human rights. The first section addresses normative bases, right-holders, and various types of human rights, corresponding territorial and extraterritorial obligations of states and non-state actors, and international and regional mechanisms of human rights protection. The second section explores the role of human rights in solving pressing global problems, including poverty and inequality, decolonization, social, global and environmental injustice, and other obstacles to sustainable development.", + "title": "International Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5457V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s expanding influence has been accompanied by a maturing of its legal framework for arbitration, as well as an increasingly active role in investor-state dispute settlement. This course undertakes a detailed examination of all facets of commercial arbitration in China, set within the context of China\u2019s transformational economic rise. It also explores salient issues that arise in commercial and investor-state arbitrations involving Chinese parties or China. Attention will be drawn to the import and impact of recent developments, including the South China Sea and the Belt and Road Initiative, as well as China\u2019s relationship with India, ASEAN and the US.", + "title": "China and International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5458", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s expanding influence has been accompanied by a maturing of its legal framework for arbitration, as well as an increasingly active role in investor-state dispute settlement. This course undertakes a detailed examination of all facets of commercial arbitration in China, set within the context of China\u2019s transformational economic rise. It also explores salient issues that arise in commercial and investor-state arbitrations involving Chinese parties or China. Attention will be drawn to the import and impact of recent developments, including the South China Sea and the Belt and Road Initiative, as well as China\u2019s relationship with India, ASEAN and the US.", + "title": "China and International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5458V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to explore innovation and regulation of FinTech and its embedded platform economy. FinTech and its embedded platform economy, which is empowered by information communication technologies and cantered on data-driven online platforms, has transformed the paradigms of conducting commercial and financial activities. \n\nThrough a series of lectures, seminars, and group discussions, this module will explore the new phenomenon of the platform economy, especailly the FinTech innovation pertinant to Money, Investment, Data and Innovative Dispute Resolutions. A guest lecture by an experienced practitioner will be also arranged. \n\nA research-based, student-centred, and globally-oriented pedagogy will guide the teaching and learning engagement.", + "title": "Law, FinTech and the Platform Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5460", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to explore innovation and regulation of FinTech and its embedded platform economy. FinTech and its embedded platform economy, which is empowered by information communication technologies and cantered on data-driven online platforms, has transformed the paradigms of conducting commercial and financial activities. \n\nThrough a series of lectures, seminars, and group discussions, this module will explore the new phenomenon of the platform economy, especailly the FinTech innovation pertinant to Money, Investment, Data and Innovative Dispute Resolutions. A guest lecture by an experienced practitioner will be also arranged. \n\nA research-based, student-centred, and globally-oriented pedagogy will guide the teaching and learning engagement.", + "title": "Law, FinTech and the Platform Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5460V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the rules and standards that govern the subject of compliance and risk management. It starts by examining questions of governance: boards of directors, and executives. We then examine the compliance function\nthrough the lens of managers, regulators, prosecutors, whistle blowers, and gatekeepers. Next, we consider particular areas of the law: corruption, anti-money\nlaundering, and export controls. We examine case studies where compliance fails and initiatives that go beyond compliance. Finally, we consider risk management as it pertains to lawyers; topics here include the governance of risk; approaches to risk management; reputational, operational, and enterprise risk.", + "title": "Compliance and Risk Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5461", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the rules and standards that govern the subject of compliance and risk management. It starts by examining questions of governance: boards of directors, and executives. We then examine the compliance function\nthrough the lens of managers, regulators, prosecutors, whistle blowers, and gatekeepers. Next, we consider particular areas of the law: corruption, anti-money\nlaundering, and export controls. We examine case studies where compliance fails and initiatives that go beyond compliance. Finally, we consider risk management as it pertains to lawyers; topics here include the governance of risk; approaches to risk management; reputational, operational, and enterprise risk.", + "title": "Compliance and Risk Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5461V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recent decades have witnessed a growth in commercial dealings between EU Member States and South East Asian countries, specially Singapore. Consequently, it is not uncommon for Singaporean individuals or businesses to become involved in commercial disputes with EU-based entities. This elective examines how the ensuing conflict-oflaws questions in these cases are resolved by courts in the EU (which, after Brexit, is dominated by civil law states). This elective would be particularly beneficial to those who are likely to be engaged by clients in Singapore or South East Asia who become involved in litigation before EU Member State courts.", + "title": "Civil Law Approaches to Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5462", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Recent decades have witnessed a growth in commercial dealings between EU Member States and South East Asian countries, specially Singapore. Consequently, it is not uncommon for Singaporean individuals or businesses to become involved in commercial disputes with EU-based entities. This elective examines how the ensuing conflict-oflaws questions in these cases are resolved by courts in the EU (which, after Brexit, is dominated by civil law states). This elective would be particularly beneficial to those who are likely to be engaged by clients in Singapore or South East Asia who become involved in litigation before EU Member State courts.", + "title": "Civil Law Approaches to Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5462V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This externship, co-convened by a senior policymaker and a law professor, is designed to enable the student to gain a better understanding of influence of the law in the arts and adjacent sectors, inter alia, literary, visual and performing arts, in particular intellectual property and contract laws. The student will be involved in the Arts Resource Hub, draft artists\u2019 rights statements and agreement templates for arts practitioners, and perform high-quality research relevant for policymakers.", + "title": "National Arts Council Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5463", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This externship, co-convened by a senior policymaker and a law professor, is designed to enable the student to gain a better understanding of influence of the law in the arts and adjacent sectors, inter alia, literary, visual and performing arts, in particular intellectual property and contract laws. The student will be involved in the Arts Resource Hub, draft artists\u2019 rights statements and agreement templates for arts practitioners, and perform high-quality research relevant for policymakers.", + "title": "National Arts Council Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5463V", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Port financing is crucial to port performance and development. This course thus examines how port financing is supported or not as the case may be by law and regulation. It takes an internationalist and comparative approach to the subject. That said, where appropriate it will consider the Singapore legal system. The topics examined include the role of ports (as beneficiary of financing and as the investor), tools for port financing, legal management of risks and bankability of port projects, good practice in public-private initiatives, port concession agreements and green port financing.", + "title": "Principles of Port Finance and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5464", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Port financing is crucial to port performance and development. This course thus examines how port financing is supported or not as the case may be by law and regulation. It takes an internationalist and comparative approach to the subject. That said, where appropriate it will consider the Singapore legal system. The topics examined include the role of ports (as beneficiary of financing and as the investor), tools for port financing, legal management of risks and bankability of port projects, good practice in public-private initiatives, port concession agreements and green port financing.", + "title": "Principles of Port Finance and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5464V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Geographical Indications (GIs) signal the provenance of reputed products such as Champagne, Darjeeling and Prosciutto di Parma. They also constitute valuable \ncollective brands. This course (i) outlines the relevant international treaties mandating how they should be protected, (ii) compares the three competing models of protection envisaged by these treaties (trade mark law; unfair competition law; and sui generis protection), (iii) via EU law, explains the distinctive features of the sui generis model, and (iv) explores contemporary challenges, including the effects of climate change on terroir and the accommodation of handicrafts in a regime designed around agricultural products.", + "title": "International Geographical Indications Protection (IP)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5465", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Geographical Indications (GIs) signal the provenance of reputed products such as Champagne, Darjeeling and Prosciutto di Parma. They also constitute valuable\ncollective brands. This course (i) outlines the relevant international treaties mandating how they should be protected, (ii) compares the three competing models of protection envisaged by these treaties (trade mark law;\nunfair competition law; and sui generis protection), (iii) via EU law, explains the distinctive features of the sui generis model, and (iv) explores contemporary challenges, including the effects of climate change on terroir and the\naccommodation of handicrafts in a regime designed around agricultural products.", + "title": "International Geographical Indications Protection (IP)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5465V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is based on both theoretical and practical approaches and regulative initiatives related to the digital governance, focusing to the existing and planned AI use-cases by public authorities in the fields. Reconciliation of data driven society with legal society and Rule of Law is a challenge to all of the jurisdictions. This module is using comparative method but is focusing on leading legal standard setting entity, European Union (and its member states, especially Estonia as a flagship country in e-gov), when analysing the norms, explaining the controversies, best practice and new legal doctrines related to Digital Governance.", + "title": "Ethical Digital Governance and Legal Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5471", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is based on both theoretical and practical approaches and regulative initiatives related to the digital governance, focusing to the existing and planned AI use-cases by public authorities in the fields. Reconciliation of data driven society with legal society and Rule of Law is a challenge to all of the jurisdictions. This module is using comparative method but is focusing on leading legal standard setting entity, European Union (and its member states, especially Estonia as a flagship country in e-gov), when analysing the norms, explaining the controversies, best practice and new legal doctrines related to Digital Governance.", + "title": "Ethical Digital Governance and Legal Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5471V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since its adoption nearly a decade ago, the Belt and Road Initiative (BRI) has quickly become a key consideration in China\u2019s trade policy-making, and has attracted growing attention across the globe. This course explores how China produces and enhances its influence in global trade governance through BRI implementation, and how the international community should respond to China\u2019s growing influence. Nine selected issues will be discussed. This course will be conducted in an interactive way, including lectures of the professor, students presentations, and class discussions.", + "title": "The Belt & Road Initiative & Int\u2019l Trade Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5472", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Since its adoption nearly a decade ago, the Belt and Road Initiative (BRI) has quickly become a key consideration in China\u2019s trade policy-making, and has attracted growing attention across the globe. This course explores how China produces and enhances its influence in global trade governance through BRI implementation, and how the international community should respond to China\u2019s growing influence. Nine selected issues will be discussed. This course will be conducted in an interactive way, including lectures of the professor, students presentations, and class discussions.", + "title": "The Belt & Road Initiative & Int\u2019l Trade Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5472V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the international legal frameworks relating to various aspects of the management and governance of energy resources including the impact of\ninvestment law, trade law, property law and environmental law on energy transactions. It assesses how international law impacts on the energy sector and reviews selected national legal regimes concerning the regulation of energy\nresources such as nuclear, renewables, petroleum and gas, in addition to energy infrastructures such as pipelines and offshore platforms.", + "title": "International Energy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5473", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the international legal frameworks relating to various aspects of the management and governance of energy resources including the impact of\ninvestment law, trade law, property law and environmental law on energy transactions. It assesses how international law impacts on the energy sector and reviews selected national legal regimes concerning the regulation of energy\nresources such as nuclear, renewables, petroleum and gas, in addition to energy infrastructures such as pipelines and offshore platforms.", + "title": "International Energy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5473V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a foundational understanding of cybersecurity and privacy law drawing from international, European, and American legal perspectives. The distinct value of the course is that it integrates insights from both cybersecurity and privacy. The course offers an understanding of the core concepts, the relevant rules, and discusses the tensions that underpin these areas of law by addressing their complexities and contradictions. The additional advantage of the course is that it combines multiple legal perspectives. The carefully selected readings reflect the diversity of legal approaches to cybersecurity and privacy, and engage with multiple legal systems.", + "title": "Cybersecurity and Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5474", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a foundational understanding of cybersecurity and privacy law drawing from international, European, and American legal perspectives. The distinct value of the course is that it integrates insights from both cybersecurity and privacy. The course offers an understanding of the core concepts, the relevant rules, and discusses the tensions that underpin these areas of law by addressing their complexities and contradictions. The additional advantage of the course is that it combines multiple legal perspectives. The carefully selected readings reflect the diversity of legal approaches to cybersecurity and privacy, and engage with multiple legal systems.", + "title": "Cybersecurity and Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5474V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the law, directives and guidelines pertaining to the conduct of investment management activity in Singapore. The primary focus is on the regulatory regime in Singapore but significant elements of selected foreign regulatory regimes affecting investment managers in Singapore will also be introduced. Some of the latest industry trends will be examined. The course is tailored to lay a foundation for those considering a career in the investment management industry, either as a legal practitioner in a law firm or as an in-house legal counsel or compliance officer within an investment management company.", + "title": "Law and Practice of Investment Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5475", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the law, directives and guidelines pertaining to the conduct of investment management activity in Singapore. The primary focus is on the regulatory regime in Singapore but significant elements of selected foreign regulatory regimes affecting investment managers in Singapore will also be introduced. Some of the latest industry trends will be examined. The course is tailored to lay a foundation for those considering a career in the investment management industry, either as a legal practitioner in a law firm or as an in-house legal counsel or compliance officer within an investment management company.", + "title": "Law and Practice of Investment Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5475V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in U.S. copyright law, both traditional and digital, in international and comparative perspective. Some of the specific topics we will cover are the subject matter of copyright; ownership; duration and transfer; infringement; fair use; and the Digital Millennium Copyright Act.", + "title": "US Copyright: International & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5476", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in U.S. copyright law, both traditional and digital, in international and comparative perspective. Some of the specific topics we will cover are the subject matter of copyright; ownership; duration and transfer; infringement; fair use; and the Digital Millennium Copyright Act.", + "title": "US Copyright: International & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5476V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The three East Asian jurisdictions (i.e., South Korea, Taiwan and Japan) covered in this course adopt the civil law tradition and have received the Romano-Germanic\ncivil code. The study of civil law in East Asia broadens our legal horizons and enables us to have diverse legal minds in response to the globalisation era. Broadly speaking, the topics covered in this course are as follows: (1) Introduction to Comparative Private Law, (2) Private law in East Asia: History, Development and Methodology, (3) Contract Law in East Asia; (4) Property Law in East Asia; and (5) Trust Law in East Asia.", + "title": "Private Law in East Asia (Korea, Taiwan, Japan)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5477", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The three East Asian jurisdictions (i.e., South Korea, Taiwan and Japan) covered in this course adopt the civil law tradition and have received the Romano-Germanic civil code. The study of civil law in East Asia broadens our legal horizons and enables us to have diverse legal minds in response to the globalisation era. Broadly speaking, the topics covered in this course are as follows: (1) Introduction\nto Comparative Private Law, (2) Private law in East Asia: History, Development and Methodology, (3) Contract Law in East Asia; (4) Property Law in East Asia; and (5) Trust Law in East Asia.", + "title": "Private Law in East Asia (Korea, Taiwan, Japan)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5477V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with private international law (or \u2018conflict of laws\u2019) in the specialized context of international corporate insolvency and restructuring. It provides an opportunity for students who are interested in corporate insolvency and restructuring at the domestic level to consider the legal problems that arise in insolvency and restructuring cases where the assets and creditors are in multiple jurisdictions. The module will consider domestic, regional, and international approaches that lawmakers have developed to promote international cooperation in cross-border insolvency cases, including instruments such as the European Union Insolvency Regulation and the UNCITRAL Model Law on Cross-Border Insolvency.", + "title": "Cross-Border Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5478", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with private international law (or \u2018conflict of laws\u2019) in the specialized context of international corporate insolvency and restructuring. It provides an opportunity for students who are interested in corporate insolvency and restructuring at the domestic level to consider the legal problems that arise in insolvency and restructuring cases where the assets and creditors are in multiple jurisdictions. The module will consider domestic, regional, and international approaches that lawmakers have developed to promote international cooperation in cross-border insolvency cases, including instruments such as the European Union Insolvency Regulation and the UNCITRAL Model Law on Cross-Border Insolvency.", + "title": "Cross-Border Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5478V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Financial markets have been traditionally permeable to technological progress and technology has been an important driving force in the transformation of finance.\nNevertheless, the vertiginous pace of contemporary technological innovation, the multi-layered impact on the market (actors, activities, transactions) and the unpredictable effects of its application on a large scale, represent unprecedented challenges for financial regulators and supervisors. The aim of the course is to\nidentify these legal and regulatory challenges and discuss, compare, and propose possible policy options in establishing a framework conducive to innovation,\ncreativity, and social inclusiveness, without compromising the protection of interests and rights.", + "title": "Challenges of Emerging Technologies to Financial Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5479", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Financial markets have been traditionally permeable to technological progress and technology has been an important driving force in the transformation of finance.\nNevertheless, the vertiginous pace of contemporary technological innovation, the multi-layered impact on the market (actors, activities, transactions) and the unpredictable effects of its application on a large scale, represent unprecedented challenges for financial regulators and supervisors. The aim of the course is to\nidentify these legal and regulatory challenges and discuss, compare, and propose possible policy options in establishing a framework conducive to innovation,\ncreativity, and social inclusiveness, without compromising the protection of interests and rights.", + "title": "Challenges of Emerging Technologies to Financial Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5479V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the course is to analyse the legal phenomenon through the notions of neoclassical economics. The course covers the main topics of the Economic Analysis of the law of obligations (i.e., of Torts law and of Contracts Law), with a special focus on contractual remedies. The course offers an in-depth analysis of the different doctrines that govern unforeseen supervening events and changes of circumstances in the common law and the civil law systems. Through the adoption of the economic analysis of law methodology, the course will shed light on the economic rationale behind such different doctrines.", + "title": "Economic Analysis of Private Law (Contract and Torts)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5480", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the course is to analyse the legal phenomenon through the notions of neoclassical economics. The course covers the main topics of the Economic Analysis of the law of obligations (i.e., of Torts law and of Contracts Law), with a special focus on contractual remedies. The course offers an in-depth analysis of the different doctrines that govern unforeseen supervening events and changes of circumstances in the common law and the civil law systems. Through the adoption of the economic analysis of law methodology, the course will shed light on the economic rationale behind such different doctrines.", + "title": "Economic Analysis of Private Law (Contract and Torts)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5480V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject explores the influence and potential of trusts law in the Asia-Pacific region. It begins by considering the history of trusts diffusion, how trusts law has been used to regulate customary and religious property-holding forms, and assesses the ways in which the trust has been (re)conceptualised in non-common law jurisdictions. It then examines the different uses of the trust in the region: in the family and commercial contexts, as well as a financial product. The subject also considers the reach of constructive and resulting trusts in the region. Finally, it will discuss trusts law\u2019s private international law perspective.", + "title": "Trusts Law in the Asia-Pacific Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5481", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This subject explores the influence and potential of trusts law in the Asia-Pacific region. It begins by considering the history of trusts diffusion, how trusts law has been used to regulate customary and religious property-holding forms, and assesses the ways in which the trust has been (re)conceptualised in non-common law jurisdictions. It then examines the different uses of the trust in the region: in the family and commercial contexts, as well as a financial product. The subject also considers the reach of constructive and resulting trusts in the region. Finally, it will discuss trusts law\u2019s private international law perspective.", + "title": "Trusts Law in the Asia-Pacific Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5481V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the law, institutions, and practices set up in Asia to facilitate political transitions. It examines the international and domestic legal frameworks and principles governing these transitional mechanisms as well as their critique. It studies the many pressing and conflicting needs of post-war societies or societies in transition and how these different needs are captured in transitional mechanisms, such as trials, truth and reconciliation commissions, and reparation schemes. Using Asian case studies (e.g. Timor Leste, Cambodia, Indonesia), this module will explore the challenges faced by societies undergoing political transition and the different measures adopted to address past injustices and facilitate transition.", + "title": "Transitional Justice in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5482", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the law, institutions, and practices set up in Asia to facilitate political transitions. It examines the international and domestic legal frameworks and principles governing these transitional mechanisms as well as their critique. It studies the many pressing and conflicting needs of post-war societies or societies in transition and how these different needs are captured in transitional mechanisms, such as trials, truth and reconciliation commissions, and reparation schemes. Using Asian case studies (e.g. Timor Leste, Cambodia, Indonesia), this module will explore the challenges faced by societies undergoing political transition and the different measures adopted to address past injustices and facilitate transition.", + "title": "Transitional Justice in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5482V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces aircraft financing and the law, the documentation implementing such financing, \u201ctitle\u201d to aircraft and the unique features of title financing. It explores the anatomy of aircraft loan agreements, the types of collateral securing such loans, the cross-border characteristics of financing, insurance, the modular feature of engines and how Export Credit Agencies and capital markets provide financing. The role of Lease financing and Lessors is considered as alternative means for financing aircraft acquisition. Lastly, the course covers airline debt restructuring (following airline insolvencies during the pandemic) and the impact of international treaties, particularly the Cape Town Convention/Protocol.", + "title": "Aviation Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL5483", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces aircraft financing and the law, the documentation implementing such financing, \u201ctitle\u201d to aircraft and the unique features of title financing. It explores the anatomy of aircraft loan agreements, the types of collateral securing such loans, the cross-border characteristics of financing, insurance, the modular feature of engines and how Export Credit Agencies and capital markets provide financing. The role of Lease financing and Lessors is considered as alternative means for financing aircraft acquisition. Lastly, the course covers airline debt restructuring (following airline insolvencies during the pandemic) and the impact of international treaties, particularly the Cape Town Convention/Protocol.", + "title": "Aviation Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL5483V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Administration Of Criminal Justice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Admiralty Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the various concepts relating to the admiralty action in rem, which is the primary means by which a maritime claim is enforced. Topics will include: the nature of an action in rem; the subject matter of admiralty jurisdiction; the invocation of admiralty jurisdiction involving the arrest of offending and sister ships; the procedure for the arrest of ships; liens encountered in admiralty practice: statutory, maritime and possessory liens; the priorities governing maritime claims; and time bars and limitations. This course is essential to persons who intend to practice shipping law.", + "title": "Admiralty Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6002V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the rise of China and India and it\u2019s impact on the international legal order. In particular, students will be led to discuss issues concerning (1) the origin and history of the relationship between developing\ncountries and international law; (2) the rise of China and India and its challenge to the existing international legal order and legal norms; (3) China, India, and the multilateral trading system; (4) China, India and international investment; (5) the international law aspects of domestic policies in China and India; and (6) the international law aspects of competition and disputes between China and \nIndia. The course will also concentrate on demonstrating the interaction between international relations and international law.", + "title": "China, India and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6003V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Aviation Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an insight into international civil aviation and the legal and regulatory issues facing airlines, governments and the common passenger. Issues raised include public air law and policy, aviation security in light of recent global developments and private air law. Emphasis will be placed on issues relevant to Singapore and Asia, given Singapore's status as a major aviation hub and the exponential growth of the industry in the Asia-Pacific. Topics to be discussed include the Chicago Convention on International Civil Aviation, bilateral services agreements, aircraft safety, terrorism and aviation security and carrier liability for death or injury to passengers. Competition among airlines will also be analysed, including business strategies such as code-sharing, frequent flier schemes and alliances. The severe competitive environment introduced by weakening economies, war and terrorism will also be discussed. This course will be relevant for individuals with a keen interest in air travel, and is designed for those interested in joining the aviation industry or large law firms with an aviation practice.", + "title": "Aviation Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6004V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bank Documentation is an advanced contract course situated in the banking context. Students will be introduced to key principles that govern banking transactions as well as a variety of contractual clauses used by banks in their standard-form documentation. The aim of the course is to promote an\nunderstanding of these terms, how they operate and their shortcomings. Some emphasis is placed on contractual techniques used by banks to maintain control over their contractual relationships and to allocate risk, as well as the common law and statutory limits on their effectiveness. Students are required to evaluate the fairness of typical banking terms by applying relevant law and guidelines. Those who successfully complete the module will be equipped to navigate their way around standard form agreements (banking as well as others), recognize and understand the operation of a range of contractual terms, and predict their effectiveness.", + "title": "Bank Documentation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6005V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to familiarise the student with the key principles relating to the modern law of banking. Four main areas will be covered: the law of negotiable instruments, the law of payment systems, the banker customer relationship and bank regulation. Students who wish to obtain a basic knowledge of banking law will benefit from this course. It is also recommended that those who wish to specialize in banking law take this course as a foundational course, prior to studying the more advanced banking courses.", + "title": "Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6006V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biotechnology Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will deal with the basic intellectual property, ethical, regulatory and policy issues in biotechnological innovations. It will focus mainly on patent issues including the patentability of biological materials, gene sequences, animals, plants and humans; infringement, ownership and licensing. Students will also be acquainted with genetic copyright, trade secrets protection and basic ethical and regulatory aspects including gene technology and ES cell research. Apart from Singapore law, a comparative analysis of the legal position in Europe and USA, as well as the major international conventions will be made. Students will also be introduced to the fundamentals of biology and genetics. (Class presentation is subject to change depending on student subscription).", + "title": "Biotechnology Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6007V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Carriage of Goods by Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6008A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on the different transport documents which are used in contracts for the carriage of goods by sea. This will include bills of lading, sea waybills, delivery orders. The course will examine the rights and liabilities of\nthe parties to such contracts, including the shipowner, the charterer, the cargo owner, the lawful holder of the bill of lading etc. Major international conventions on carriage of goods, such as the Hague and Hague-Visby Rules, the Hamburg Rules, and the Rotterdam Rules will also be examined. This course is of fundamental importance to those individuals contemplating a career in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Carriage of Goods By Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6008AV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Carriage of Goods by Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6008B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on charterparties, which are contracts between the shipowner and the charterer for the hire of the vessel, either for a specific voyage (voyage charterparties) or over a period of time (time charterparties). There are in addition, other variants of these basic types, which will also be referred to. This\ncourse will examine the standard forms for each of the charterparties being studied and examine the main terms and legal relationship between shipowners and charterers. This dynamic and important aspect of the law of carriage of goods by sea is frequently the subject of arbitral proceedings and court decisions. This course will be of importance to individuals contemplating a carrier in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Charterparties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6008BV", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the latest legal developments and areas of significance in modern China. Topics covered include Chinese legal system, legal institutions, civil law, corporate law, finance law and dispute resolution. Through this module, students will benefit from learning substantive aspects of modern Chinese law and will be conversant with Mandarin in the legal context. This course is conducted primarily in Chinese (Mandarin) and is intended for students who possess a basic level of Chinese (Mandarin).", + "title": "Modern Chinese Law & Legal Chinese", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will address the central approaches to legal research currently found in legal scholarship. It will look at the central assumptions of each approach, the questions about the law that it seeks to address, how it relates to other approaches. This seminar will also consider the best ways for researching different approaches, and what differentiates good research from less good research within each.", + "title": "Graduate Research Seminar I (Legal Scholarship)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6009GRSI", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the latest legal developments and areas of significance in modern China. Topics covered include Chinese legal system, legal institutions, civil law, corporate law, finance law and dispute resolution. Through this module, students will benefit from learning substantive aspects of modern Chinese law and will be conversant with Mandarin in the legal context. This course is conducted primarily in Chinese (Mandarin) and is intended for students who possess a basic level of Chinese (Mandarin).", + "title": "Modern Chinese Law & Legal Chinese", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6009V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the civil law tradition, principally the French\ncivil law tradition (with occasional references to the German civil law tradition). The French civil law tradition has had a significant influence in a number of ASEAN countries (including Indonesia) and whenever possible the course will refer to provisions of the different ASEAN civil codes and laws. The course will give an overview of the tradition and will touch on a number of topics including private law topics. The approach will be systematic in the sense that the course will try to immerse the students in the civil law system as a whole and help them understand how the system works and is organized. The goal is to teach the students how to think like civilian lawyers, or at least to teach them how civil law jurist approach the law.", + "title": "Civil Law Tradition", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines advanced topics in the civil law tradition using a\ncomparative approach, examining in particular the similiarities and differences between the civil law and the common law (and possibly other traditions) in approaching specific legal problems. The precise topics covered and examples used will vary depending on the instructor teaching the module in a given year, but the topics typically discussed would include the methodological differences between civil and common law (use of legislation and codes, use of case law / jurisprudence, use of doctrine), the differences in policies and values, as well whether we should seek convergence and unification or respect for the mentalit\u00e9 and culture of each legal tradition through harmonization.", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6010A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines advanced topics in the civil law tradition using a\ncomparative approach, examining in particular the similiarities and differences between the civil law and the common law (and possibly other traditions) in approaching specific legal problems. The precise topics covered and examples used will vary depending on the instructor teaching the module in a given year, but the topics typically discussed would include the methodological differences between civil and common law (use of legislation and codes, use of case law / jurisprudence, use of doctrine), the differences in policies and values, as well whether we should seek convergence and unification or respect for the mentalit\u00e9 and culture of each legal tradition through harmonization.", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6010AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course has two primary objectives. The first is to introduce students to the fundamental elements of civil litigation. The second is to inculcate a sound understanding of the underlying principles and policies of civil justice. This will provide students with an analytical approach to litigation and set a foundation for practice. The Rules of Court and related sources of civil procedure will be examined as we go through the various stages of the lawsuit. Students will learn that the civil process is primarily characterised by a variety of initiatives which may be taken according to the circumstances of the case.", + "title": "Civil Justice & Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course has two primary objectives. The first is to introduce students to the fundamental elements of civil litigation. The second is to inculcate a sound understanding of the underlying principles and policies of civil justice. This will provide students with an analytical approach to litigation and set a foundation for practice. The Rules of Court and related sources of civil procedure will be examined as we go through the various stages of the lawsuit. Students will learn that the civil process is primarily characterised by a variety of initiatives which may be taken according to the circumstances of the case.", + "title": "Civil Justice & Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6011V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This discussion-based seminar will focus on issues of comparative constitutional adjudication in common law systems, with particular emphasis on the experiences of India, Singapore and South Africa. The course will therefore focus primarily on the institutional mechanisms of judicial review and the challenges for constitutionalism that are posed within this particular institutional setting.", + "title": "Comparative Constitutional Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6012V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is emerging as a distinct field of law in every nation and region. Legislatures establish environmental laws based upon the need to address perceived environmental problems in their territory or in a region of shared resources such as a river basin or coastal marine regions or the habitats for migratory species. In some instances, national legislation is stimulated by the negotiation and adherence to multilateral environmental agreements.", + "title": "Comparative Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6013V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Construction Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the legal principles that form the foundation of construction law and to the common practical problems that arise in this field. Topics will include: (a) general principles of construction law, including completion, defects, retention and certification; (b) basic provisions of construction contracts; (c) claims procedure & dispute resolution, including arbitration procedure; and (d) relevant provisions of standard form building contracts. This course will be of interest to students interested in construction practice or a practical approach to the study of law. This course is taught by partners from the Construction Practice Group of Wong Partnership.", + "title": "Construction Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6014V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "When the judges at the Nuremberg Tribunal handed down\ntheir decision against the German leaders in October\n1946, they declared \u2018crimes against peace\u2019 \u2013 the initiation\nof aggressive wars \u2013 to be \u2018the supreme international\ncrime\u2019. At the time, the charge was heralded as a legal\nmilestone, but subsequent events revealed it to be a postwar\nanomaly. This module traces the ebb and flow of the\nidea of criminalising aggression \u2013 from its origins after the\nFirst World War, through its high-water mark at the postwar\ntribunals and its abandonment during the Cold War, to\nits recent revival at the International Criminal Court.", + "title": "Topics in Int\u2019l Criminal Law (A): Aggression", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6016A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks mainly at contract law but also at some issues of commercial law in civil law jurisdictions in Asia using as examples a few Asian civil and commercial codes (for example the Indonesian codes which are similar to the\nFrench codes). It also looks at civil law in general as, unfortunately, more materials are available in English on European civil law than on Asian civil law. The course is\ncomparative in nature as it will compare civil and common law solutions. It would be a useful course for those who will works for firms with dealings across Asia.", + "title": "Contract and Commercial Law in Civil-Law Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Tax: Profits & Distributions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Tax: Profits & Distributions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6018V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Credit & Security", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the granting of credit and the taking of security by bank as well as aspects of bank supervision. The course starts with the Part on Bank Supervision and then turns to the discussion of unsecured lending and the Moneylenders' Act. It then focuses on secured credit. The discussion of the general regulation of the giving of security is followed by an examination of specific security devices, such as pledges, trust receipts, Romalpa clauses, factoring, stocks and shares as security, and guarantees and indemnities. The emphasis throughout is on the commercial effectiveness of the system.", + "title": "Credit & Security", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6019V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is aimed at giving students an overview of environmental law and its development, including the legal and administrative structures for their implementation, from the international, regional and national perspectives. It will focus on hard laws (legal instruments, statutory laws, international and regional conventions) and soft laws (Declarations, Charters etc.). In particular, it will examine the basic elements of pollution laws relating to air, water, waste, hazardous substances and noise; as well as nature conservation laws and laws governing environmental impact assessments. Singapore's laws and the laws of selected ASEAN countries will be examined.", + "title": "Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6021V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Apart from the instruments of the World Trade Organization, there are other institutions and techniques which regulate international trade. The World Bank and the International Monetary Fund regulate certain aspects of trade. There are multilateral instruments which deal with issues such as corruption, ethical business standards, investment protection, competition and the regulation of financial services. The jurisdictional reach of large powers over international markets also provides means of self-interested regulation. The international regulation of new technologies such as internet and biotechnology pose novel problems. This course addresses the issues that arise in this area in the theoretical and political contect of globalization.", + "title": "Globalization And International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6022V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Indonesian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6024", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will initiate the student to the basics of Indonesian law (adat law, Islamic law, legal pluralism, constitutional law, administrative law, civil law, judicial process) as well as to others aspects that are of concern to foreigners (foreign investment laws and protections, regional autonomy, mining laws etc.). It will also address some of the problems relating to law enforcement in Indonesia", + "title": "Indonesian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6024V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of rights. It begins with exposition of Wesley Hohfeld\u2019s analysis of the different legal positions often designated as \u201crights\u201d; then uses Hohfeld\u2019s framework to understand the debate between interest and will theorists of rights. It moves on to explicit consideration of moral rights. Finally, applications are considered \u2013 including human rights, and Asian perspectives on \u201crights\u201d discourse.", + "title": "Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of rights. It begins with exposition of Wesley Hohfeld\u2019s analysis of the different legal positions often designated as \u201crights\u201d; then uses Hohfeld\u2019s framework to understand the debate between interest and will theorists of rights. It moves on to explicit consideration of moral rights. Finally, applications are considered \u2013 including human rights, and Asian perspectives on \u201crights\u201d discourse.", + "title": "Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6025V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Infocoms Law: Competition & Convergence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6026V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on the UN Convention on Contracts for the International Sale of Goods, governing international commercial sales in the US and abroad. The objective of this course is to give participants an overview of the (different) ways in which this Convention has been applied by judges and arbitrators throughout the world, thus giving participants the tools to draft international import/export agreements favourable to their future clients. Participants will be given hypothetical cases and will be asked to critically examine the different substantive solutions proposed by courts and arbitrators. As the convention does not deal with all the problems that may arise out of international commercial sales, the course will also deal with the issue of how to fill the gaps left by this Convention.", + "title": "International & Comparative Law Of Sale", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6029", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6029AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6029BV", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic understanding of the law of arbitration to enable them to advise and represent parties in the arbitral process confidence. Legal concepts peculiar to arbitration viz. separability, arbitrability and kompetenze-kompetenze will considered together with the procedural laws on the conduct of the arbitral process, the making of and the enforcement of awards. Students will examine the UNCITRAL Model Law and the New York Convention, 1958. This course is most suited for students with some knowledge of the law of commercial transactions, shipping, banking, international sale of goods or construction.", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6029V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Globalisation has made it more important for lawyers to be knowledgeable about the international aspects of litigation. This course focuses on the jurisdictional techniques most relevant to international commercial litigation: in personam jurisdiction, forum non conveniens, interim protective measures, recognition and enforcement of foreign judgments, public policy, and an outline of choice of law issues for commercial contracts. The course, taught from the perspective of Singapore law, based largely on the common law, is designed to give an insight into the world of international litigation. These skills are relevant to not only litigation lawyers, but also lawyers planning international transactions.", + "title": "International Commercial Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6030V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International law traditionally concerns itself with the relations between states, yet environmental problems transcend borders. International environmental law demonstrates how international norms can affect national sovereignty on matters of common concern. The course surveys international treaties concerning the atmosphere and the conservation of nature, and connections to trade and economic development. Institutions and principles to promote compliance and cooperation are also examined. The course will assist students in their understanding of international law-making. It would be of use to those interested in careers involving international law, both for the government and public sector and those in international trade and investment.", + "title": "International Environmental Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International law traditionally concerns itself with the relations between states, yet environmental problems transcend borders. International environmental law demonstrates how international norms can affect national sovereignty on matters of common concern. The course surveys international treaties concerning the atmosphere and the conservation of nature, and connections to trade and economic development. Institutions and principles to promote compliance and cooperation are also examined. The course will assist students in their understanding of international law-making. It would be of use to those interested in careers involving international law, both for the government and public sector and those in international trade and investment.", + "title": "International Environmental Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6031V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Investment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6032", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the nature of risks to foreign investment and the elimination of those risks through legal means. As a prelude, it discusses the different economic theories on foreign investment, the formation of foreign investment contracts and the methods of eliminating potential risks through contractual provisions. It then examines the different types of interferences with foreign investment and looks at the nature of the treaty protection available against such interference. It concludes by examining the different methods of dispute settlement available in the area. The techniques of arbitration of investment disputes available are fully explored.", + "title": "International Investment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6032V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes a problem-oriented approach to public international law. Its primary objective is to provide students with an understanding of the basic principles of public international law and a framework for analysing international legal disputes. The focus will be a past problem from the Philip C. Jessup International Law Moot Court Competition. This will be used to illustrate the basic principles of public international law applicable in an international dispute. Its second objective is to teach students how to research points of international law and to construct persuasive arguments based on legal precedent, general principles, policy and facts.", + "title": "International Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6033V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Regulation Of Shipping", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6034", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the global regime governing the international regulation of commercial shipping. It will examine the relationship between the legal framework established in the 1982 UN Convention on the Law of the Sea and the work of the International Maritime Organization (IMO), the UN specialized agency responsible for the safety and security of international shipping and the prevention of pollution from ships. The course will focus on selected global conventions administered by the IMO, including those governing safety of life at sea (SOLAS), the prevention of pollution from ships (MARPOL) and the training, certification and watchkeeping for seafarers (STCW). It will also examine the liability and compensation schemes that have been developed for pollution damage caused by the carriage of oil and noxious substances by ships, as well as the conventions designed to ensure that States undertake contingency planning in order to combat spills of oil and other noxious and hazardous substances in their waters. In addition, the course will examine the schemes that have been developed to enhance the security of ships and ports in light of the threat of maritime terrorism. It will also examine the role of the IMO in the prevention of pollution of the marine environment from dumping waste at sea and from seabed activities subject to national jurisdiction. One of the themes of the course will be to consider how the IMO is responding to increased concern about the protection and preservation of the marine environment, including threats such as invasive species and climate change. Another theme will be to consider how the responsibility to enforce IMO Conventions is divided between flag States, coastal States, port States and the IMO. This course will be useful to persons who intend to practice shipping law or work in the private or public maritime sector.", + "title": "International Regulation of Shipping", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6034V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6035V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The sociology of law studies law as a social institution. We will explore the relationships among law, social actors and other social institutions. This is in contrast to the legal academy\u2019s formalist approaches that treat law as\nautonomous and impartial, and jurisprudential concerns about law\u2019s morality. We will consider both theoretical and empirical, and classic and contemporary works in sociology of law. Issues covered include: law and classic social theory; law and contemporary social theory; law and power; the social construction of disputes and dispute resolution; law and organizations; legal mobilization; law, collective action, and social change; legal consciousness; and, sociological perspectives on the legal profession.", + "title": "Sociology of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6037", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The sociology of law studies law as a social institution. We will explore the relationships among law, social actors and other social institutions. This is in contrast to the legal academy's formalist approaches that treat law as autonomous and impartial, and jurisprudential concerns about law's morality. We will consider both theoretical and empirical, and classic and contemporary works in sociology of law. Issues covered include: law and classic social theory; law and contemporary social theory; law and power; the social construction of disputes and dispute resolution; law and organizations; legal mobilization; law, collective action, and social change; legal consciousness; and, sociological perspectives on the legal profession.", + "title": "Sociology of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6037V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will consider the interaction of law and religion in three aspects: firstly, through a consideration of theoretical materials that discuss and debate religion\u2019s (possible) roles in public discourse and in the shaping of law, especially in multi-religious and multi-cultural environments; second, through an examination of a range of religio-legal traditions (e.g., Islamic law, Hindu Law etc); and, third, a consideration of specific instances \u2013 in cases, legislation and public issues etc -- where law and religion meet.", + "title": "Law and Religion", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6042V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Of Marine Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6043", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to give students a firm foundation of existing law; a working understanding of standard form policies; and an understanding of the interaction between the Marine Insurance Act, case law and the Institute Clauses. Topics will include: types of marine insurance policies; insurable interest; principle of utmost good faith; marine insurance policies; warranties; causation; insured and excluded perils; proof of loss; types of losses; salvage, general average and particular charges; measure of indemnity and abandonment; mitigation of losses. This course will appeal to students who wish to specialise in either insurance law or maritime law.", + "title": "Law Of Marine Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6043V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Mediation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6044", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a skills-based workshop and is designed to assist participants in learning about and attaining a basic level of competency as a mediator and mediation advocate. Topics covered include: Interest-based mediation vs Positions-based mediation; The Mediation Process; Opening Statements; Co-Mediation; Preparing a client for mediation; and Mediation advocacy. This workshop is targeted at self-motivated Year 3 & 4 students interested in learning and developing interpersonal and conflict resolution skills.", + "title": "Mediation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6044V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_MC", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Negotiation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6045", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a skills-based workshop and is designed to assist participants in learning about and attaining a basic level of competency as a negotiator. This is particularly important as lawyers commonly engage in negotiation as part of their practice. Topics covered include: Interest-based negotiation vs Position-based negotiation; Preparing for a negotiation; Creating and Claiming Value; and Overcoming Impasse. This workshop is targeted at self-motivated students interested in learning and developing interpersonal and negotiation skills.", + "title": "Negotiation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6045V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_MC", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Principles Of Conflict Of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6049", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of conflict of laws addresses three questions: Which country should hear the case? What law should be applied? What is the effect of its adjudication in another country? This course includes an outline of jurisdiction and judgments techniques, but will focus on problems in choice of law, and issues in the exclusion of foreign law. Coverage includes problems in contract and torts, and other areas may be selected from time to time. This course is complementary to International Commercial Litigation, but it stands on its own as an introduction to theories and methodologies in the conflict of laws.", + "title": "Principles Of Conflict Of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6049V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6050", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundational course introduces the student to the nature, major principles, processes and institutions of the international legal system, the relationship between international and domestic law and the role of law in promoting world public order. Students will acquire an understanding of the conceptual issues underlying this discipline and a critical appreciation of how law inter-relates with contemporary world politics, its global, regional and domestic significance. Topics include the creation and status of international law, participation and competence in the international legal system, primary substantive norms such as the law regulating the use of force and enforcement procedures.", + "title": "Public International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6050V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the central concepts and disputes in the law of restitution, centring on unjust enrichment as an organising theme. The prevention of unjust enrichment as an independent legal principle, capable of founding causes of action, gained currency as an independent branch of the common law only as recently as in 1991. This course covers the operation of key restitutionary concepts in common law and equity, including their relationships to the law of contract, torts, and property, as well as to equitable principles. A selection of topics, which may vary from year to year, will be covered.", + "title": "Principles Of Restitution", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6051", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Domestic and International Sale of Goods", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6054", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of domestic and international sale of goods under the Singapore law. With regard to domestic sales, the course will focus on the Sale of Goods Act. Topics to\nbe studied will include the essential elements of the contract of sale; the passing of title and risk; the implied conditions of title, description, fitness and quality; delivery and payment, acceptance and termination, and the available remedies. With particular reference to a seller\u2019s delivery obligations, the course will also cover substantial aspects of the international sale of goods under the common law, such as FOB and CIF contracts and documentary sales. This course will be of interest to students intending to enter commercial practice.", + "title": "Domestic and International Sale of Goods", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6054V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide an overview of securities regulation, trusts, corporate governance and M & A, in Singapore and jurisdictions like US, China, UK, Australia, Taiwan and HK. Topics to be covered: use of alternative business entities and nature of shares; \"going public\" process; corporate governance of listed companies and trusts; insider trading and securities frauds; globalisation and technology; and the regulation of takeover activity. It also offers an introduction to the law of trusts, including custody arrangements and securitisation. Students are expected to search Internet for comparative materials but will also be provided with assigned readings.", + "title": "Securities Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6055", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6056A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation course seeks to acquaint participants with a basic working knowledge of income tax and goods and services tax issues faced by companies and individuals. It will illustrate the extent to which tax avoidance is acceptable under the rules for deductions, capital allowances and losses. In addition, the taxation of income from employment income, trade and investments will be highlighted. Tax planning opportunities arising from the differences in tax treatment of sole proprietors, partnerships and companies will be highlighted. On policy issues, concepts including economics of taxation, international trends and tax reform will be covered.", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6056AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6056B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation course seeks to acquaint participants with a basic working knowledge of income tax and goods and services tax issues faced by companies and individuals. It will illustrate the extent to which tax avoidance is acceptable under the rules for deductions, capital allowances and losses. In addition, the taxation of income from employment income, trade and investments will be highlighted. Tax planning opportunities arising from the differences in tax treatment of sole proprietors, partnerships and companies will be highlighted. On policy issues, concepts including economics of taxation, international trends and tax reform will be covered.", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6056BV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to examine and critique the philosophical assumptions that underlie the substantive criminal law. We begin with a survey of the various philosophical theories that purport to explain and justify the imposition of criminal liability. Once familiar with the fundamental concepts and issues, we then consider the relationship between moral responsibility and criminal liability by analyzing the theoretical assumptions behind the substantive principles and doctrine of criminal law. This is a seminar-style course aimed at students who already have grounding in criminal law, philosophy of law, or moral theory. Extensive class participation is expected.", + "title": "Theoretical Foundations Of Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6057V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "By examining primary materials focused on the normative context within which the United Nations functions, students will develop an understanding of the interaction between law and practice. This is essential to a proper understanding of the UN Organization, but also to the possibilities and limitations of multilateral institutions more generally. The course is organized in four parts. Part I, \"Relevance\", raises some preliminary questions about the legitimacy and effectiveness of the United Nations, particularly in the area of peace and security. Part II, \"Capacity\", brings together materials on the nature and status of the United Nations. Part III, \"Practice\", examines how the United Nations has exercised its various powers. Part IV, \"Accountability\", concludes with materials on responsibility and accountability of the United Nations and its agents. A background in public international law is strongly recommended.", + "title": "United Nations Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6059V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "World Trade Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6060", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "World Trade Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6060B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be encouraged to reflect upon what is really involved in pursuing a life of intellectual work. To this end, students will undertake a philosophical exploration of research and scholarship as it is routinely conducted across the experimental and social sciences, the humanities, literature and philosophy. Drawing upon insights achieved by historians, scientists, legal thinkers, sociologists, philosophers and literary writers into their respective crafts, students will explore not only the practical techniques recommended by these practitioners, but more significantly, the habits and virtues that have been found to be most conducive to successful practice.", + "title": "Inquiry", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6061", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be encouraged to reflect upon what is really involved in pursuing a life of intellectual work. To this end, students will undertake a philosophical exploration of research and scholarship as it is routinely conducted across the experimental and social sciences, the humanities, literature and philosophy. Drawing upon insights achieved by historians, scientists, legal thinkers, sociologists, philosophers and literary writers into their respective crafts, students will explore not only the practical techniques recommended by these practitioners, but more significantly, the habits and virtues that have been found to be most conducive to successful practice.", + "title": "Inquiry", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6061V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of legal reasoning, and its relationship with broader questions in legal theory. The course will examine, inter alia, the nature of rules, precedent, authority, analogical reasoning, the common law, legal realism, statutory interpretation, judicial opinions, rules and standards, law and fact, and the burden of proof. The overarching questions to be addressed in this course include: In what way(s), if at all, is legal reasoning a distinctive form of reasoning? What is the relationship between legal reasoning and legal theory?", + "title": "Legal Reasoning & Legal Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6062", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of legal reasoning, and its relationship with broader questions in legal theory. The course will examine, inter alia, the nature of rules, precedent, authority, analogical reasoning, the common law, legal realism, statutory interpretation, judicial opinions, rules and standards, law and fact, and the burden of proof. The overarching questions to be addressed in this course include: In what way(s), if at all, is legal reasoning a distinctive form of reasoning? What is the relationship between legal reasoning and legal theory?", + "title": "Legal Reasoning & Legal Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6062V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Business & Finance For Lawyers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6063", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To provide law students who intend to read commercial law electives with a foundation in accounting, finance and other related business concepts. It covers topics such as interpretation and analysis of standard financial statements, the types of players and instruments in the financial markets and the basic framework of a business investment market.The course will employ a hypothetical simulation where lawyers advise on several proposals involving the acquisition and disposal of assets by a client. The issues covered in the hypothetical will include asset valuation models, financing options and techniques, and compliance with accounting and regulatory frameworks.", + "title": "Business & Finance For Lawyers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6063V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the competition law and policy framework in Singapore and will introduce students to the three pillars of the legal and regulatory framework:\n(i) the prohibition against anti-competitive agreements, \n(ii) the prohibition against abuses of market dominance, and \n(iii) the regulation of mergers and concentrations.", + "title": "Competition Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6064", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the competition law and policy framework in Singapore and will introduce students to the three pillars of the legal and regulatory framework:\n(i) the prohibition against anti-competitive agreements, \n(ii) the prohibition against abuses of market dominance, and \n(iii) the regulation of mergers and concentrations.", + "title": "Competition Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6064V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6065", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6067", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "European Union Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6069", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "European Union Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6069V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Foundations of IP Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6070", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to introduce students to the general principles of intellectual property law in Singapore, as well as, major international IP conventions. It is aimed at students who have no knowledge of IP law but are interested in learning more about this challenging area of law. It will also be useful for students intending to pursue the advanced courses in IP/IT by providing them with the necessary foundation on IP law. Students will be assessed based on open book examination, 1 written assignment and 1 class presentation. (Class presentation is subject to change depending on student subscription).", + "title": "Foundations Of Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6070V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The advent of new technologies in this scientific and technological age has led to a dramatic shift in business strategies and global economic development. IP rights (particularly patents) form an \"inexhaustible resource\" from which the fruits of research and innovation can be valued, commercially dealt with and shared. This course will analyse the international, regional and national patent laws, policies and practices including important aspects on successful technology licensing and knowledge transfer, as well as valuation and strategies for monetization of IP (patent) assets.", + "title": "International Patent Law, Policy and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6071", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The advent of new technologies in this scientific and technological age has led to a dramatic shift in business strategies and global economic development. IP rights (particularly patents) form an \"inexhaustible resource\" from which the fruits of research and innovation can be valued, commercially dealt with and shared. This course will analyse the international, regional and national patent laws, policies and practices including important aspects on successful technology licensing and knowledge transfer, as well as valuation and strategies for monetization of IP (patent) assets.", + "title": "International Patent Law, Policy and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6071V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in IP Law B: IP Valuation:Law & Prc", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6072B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6073", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce to students the substantive and procedural framework of international criminal law. We will study international criminal law's historical origins, evolution, and how it is implemented today through a variety of different institutional frameworks. Among others, we will study post-WWII tribunals, the ad hoc international tribunals of Yugoslavia and Rwanda, hybrid tribunals, military tribunals and the permanent International Criminal Court. We will also examine non-criminal law responses to international crimes such as truth and reconciliation commissions. Students will critically explore and question the pros and cons of international criminal justice in terms of its professed goals and objectives.", + "title": "International Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6073V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will begin with an evaluation of the business rationale for M&As and a discussion of the various types of transactions and related terminology. The regulatory issues surrounding these transactions will be analysed through examination of the applicable laws and regulations. The course adopts an nternational comparative perspective, with greater focus on the U.S., U.K. and Singapore. While corporate and securities law issues form the thrust, incidental reference will be made to accounting, tax and competition law considerations. inally, the transactional perspective will consider various\nstructuring matters, planning aspects, transaction costs\nand impact on various stakeholders.", + "title": "Mergers & Acquisitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6074", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will begin with an evaluation of the business rationale for M&As and a discussion of the various types of transactions and related terminology. The regulatory issues surrounding these transactions will be analysed through examination of the applicable laws and regulations. The course adopts an nternational comparative perspective, with greater focus on the U.S., U.K. and Singapore. While corporate and securities law issues form the thrust, incidental reference will be made to accounting, tax and competition law considerations. inally, the transactional perspective will consider various\nstructuring matters, planning aspects, transaction costs\nand impact on various stakeholders.", + "title": "Mergers & Acquisitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6074V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches the overlap between intellectual property and competition law. Students will be challenged to explore the intrinsic tensions that lie between the\nstatutory regimes that regulate market dominance, restrictive agreements and the monopolistic prerogatives and assertions by holders of intellectual property rights.", + "title": "IP and Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6075", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches the overlap between intellectual property and competition law. Students will be challenged to explore the intrinsic tensions that lie between the\nstatutory regimes that regulate market dominance, restrictive agreements and the monopolistic prerogatives and assertions by holders of intellectual property rights.", + "title": "IP and Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6075V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "IT Law I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6076", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. Issues to be examined include the conduct of electronic commerce, cybercrimes, electronic evidence, privacy and data protection. (This course will not cover the intellectual property issues, which are addressed instead in \"IT Law IP Issues\".) Students who are interested in the interface between law, technology and policy will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6076V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. The focus of this course will be on the intellectual property issues such as copyright in software and electronic materials, software patents, electronic databases, trade marks, domain names and rights management information. Students who are interested in the interface between law, technology, policy and economic rights will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6077V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about a form of arbitration which is specific to disputes arising between international investors and host states \u2013 i.e. investor-state disputes \u2013 involving public, treaty rights. In contrast, international commercial arbitration typically deals with the resolution of disputes over private law rights between what are usually private parties.\n\nIt will be of interest to those interested in arbitration, and/or the law of foreign investment.", + "title": "Law & Practice of Investment Treaty Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6078", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the relationship between the public and private power through the historical lens of the East India Company (established in 1600), one of the first multinational corporations. In particular, it examines: the\nformation and evolution of the Company and the legal implications of its ambiguous status as a private or public entity; its transformation into a sovereign power in India against the backdrop of the rise of the modern state and modern constitutionalism in Europe and the United States of America; and the Company\u2019s role in the founding of modern Singapore; and the Company\u2019s demise in 1858.", + "title": "State and Company in Legal-Historical Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6079", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Advocacy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6081", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a broad understanding of the relationship between law and social movements. Why do people mobilize collectively? We begin with this question, and then consider the different approaches of conceptualizing social movements. Next, we delve into questions intersecting social movements and sociology of law: the use of law as social control and repression, the role of lawyers in social movements, legal strategies involved in collective claim\u2010making, and the relationship between law and social change. After that, we examine a selection of case studies such as those concerning prodemocracy\nmovements, sexual rights movements, rightwing and counter movements, and transnational movements.", + "title": "Law & Social Movements", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6082", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Trusts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6085", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6088", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide students with a comparative perspective on selected issues in contract law. It will compare the main principles of contract at common law and that in Chinese law. It will also examine the Chinese\ncontract law perspectives on scope of application, judicial interpretation, formation, performance, modification and assignment of contracts as well as liability for breach of contract.\n\nAt the end of the course, students will be able to understand the Chinese contract law framework and appreciate the differences at common law and that in Chinese law.", + "title": "Chinese Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6088V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Corporate and Securities Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6089", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the laws and the relevant legislation governing the main forms of foreign direct investment (FDI) in China such as equity joint ventures, contractual joint ventures, wholly foreign-owned enterprises and limited liability companies.The aim is to provide students with a critical understanding of the FDI regime in China as well as an understanding of the relationship between the FDI governing laws and other general laws so as to provide updated and accurate information and enable proper legal advice to be given in this area.", + "title": "Chinese Corporate & Securities Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6089V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6093", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6093V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Legal aid aims to ensure that all member of society have access to justice, regardless of their financial means.\n\nThis clinic provides students with a unique experiential learning opportunity. Students will assist an experienced legal practitioner with a Legal Aid Bureau case. Cases will relate to family law matters, and may cover issues relating to divorce, child maintenance, estate division and mental capacity. \n\nUnder guided mentorship, students will experience a meaningful learning journey that will allow them to gain professional practice skills, substantive knowledge in the area of family law, and refine their research, analysis, and drafting skills.", + "title": "The Pro Bono Family Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6094", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic provides students with the opportunity to handle a corporate matter, for a partner organisation, under guided mentorship. Partner organisations presently include the National Gallery Singapore, Singapore Art Museum, The Arts House, Alzheimer's Disease Association, Singapore Hospice Council, Singapore Children\u2019s Society and Ernst & Young (Legal Corporate Social Responsibility Group).\n\nStudents will experience a meaningful learning journey, will gain valuable corporate practice skills, and increase their substantive knowledge in the areas of law that are relevant to the matters they are handling. Matters could cover areas such as personal data protection, contract formation and intellectual property issues.", + "title": "The Corporate Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6094A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic provides students with the opportunity to handle a corporate matter, for a partner organisation, under guided mentorship. Partner organisations presently include the National Gallery Singapore, Singapore Art Museum, The Arts House, Alzheimer's Disease Association, Singapore Hospice Council, Singapore Children\u2019s Society and Ernst & Young (Legal Corporate Social Responsibility Group).\n\nStudents will experience a meaningful learning journey, will gain valuable corporate practice skills, and increase their substantive knowledge in the areas of law that are relevant to the matters they are handling. Matters could cover areas such as personal data protection, contract formation and intellectual property issues.", + "title": "The Corporate Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6094AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The State Courts Clerkship Programme is a judicial clinical legal education programme designed to provide top law students with the opportunity to be attached to senior District Court Judges and acquire experiential knowledge of law practice through direct exposure to judicial work. It is a unique course which allows law students to acquire a different perspective of legal work through personalised interaction with senior Judges, working on actual cases from a judicial perspective and experiencing legal practice in a real-life court setting.", + "title": "NUS-State Courts Judicial Clerkship Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6094B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The State Courts Clerkship Programme is a judicial clinical legal education programme designed to provide top law students with the opportunity to be attached to senior District Court Judges and acquire experiential knowledge of law practice through direct exposure to judicial work. It is a unique course which allows law students to acquire a different perspective of legal work through personalised interaction with senior Judges, working on actual cases from a judicial perspective and experiencing legal practice in a real-life court setting.", + "title": "NUS-State Courts Judicial Clerkship Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6094BV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Access to justice is a fundamental tenet of the rule of law. Many individuals of low means do not qualify for legal aid. Low bono seeks to fill this lacuna.\n\nThis legal clinic provides students with the experiential learning opportunity of assisting lawyers, from Covenant Chambers LLC, with low bono cases. These cases could cover the area of workplace, personal injury, employment, estate or probate law. Under guided mentorship students will gain valuable professional practice skills, further substantive legal knowledge, and refine their research, analysis, and drafting skills while helping those who otherwise may not have adequate access to justice.", + "title": "The Access to Justice Low Bono Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6094C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Access to justice is a fundamental tenet of the rule of law. Many individuals of low means do not qualify for legal aid. Low bono seeks to fill this lacuna.\n\nThis legal clinic provides students with the experiential learning opportunity of assisting lawyers, from Covenant Chambers LLC, with low bono cases. These cases could cover the area of workplace, personal injury, employment, estate or probate law. Under guided mentorship students will gain valuable professional practice skills, further substantive legal knowledge, and refine their research, analysis, and drafting skills while helping those who otherwise may not have adequate access to justice.", + "title": "The Access to Justice Low Bono Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6094CV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the opportunity of being heavily involved in assisting a seasoned practitioner with the handling of a Criminal Legal Aid Scheme (CLAS) case. \n\nUnder close mentorship students will embark upon a hands-on learning journey that will allow them to gain valuable professional practice skills, and deepen their substantive criminal law knowledge. Students could be dealing with cases involving offences under the Computer Misuse and Cybersecurity Act (Cap. 50A) or the Moneylenders Act (Cap. 188). Students will be involved in tasks such as attending client interviews, drafting pleadings and possibly attending court hearings.", + "title": "The Pro Bono Criminal Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6094D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the opportunity of being heavily involved in assisting a seasoned practitioner with the handling of a Criminal Legal Aid Scheme (CLAS) case. \n\nUnder close mentorship students will embark upon a hands-on learning journey that will allow them to gain valuable professional practice skills, and deepen their substantive criminal law knowledge. Students could be dealing with cases involving offences under the Computer Misuse and Cybersecurity Act (Cap. 50A) or the Moneylenders Act (Cap. 188). Students will be involved in tasks such as attending client interviews, drafting pleadings and possibly attending court hearings.", + "title": "The Pro Bono Criminal Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6094DV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the eye-opening experience of assisting a seasoned practitioner with the handling of a case under the Legal Assistance Scheme for Capital Offences (LASCO). \n\nUnder guided mentorship clinical students will experience a learning journey that will allow them to gain valuable professional practice skills, and increase their substantive criminal law knowledge. Students may be involved in tasks such as attending client meetings, drafting pleadings and attending court hearings.\n\nStudents will be able to help accused individuals when they need it most. The experience may cause students to question their own views on justice, and life!", + "title": "The Capital Offences Criminal Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6094E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the eye-opening experience of assisting a seasoned practitioner with the handling of a case under the Legal Assistance Scheme for Capital Offences (LASCO). \n\nUnder guided mentorship clinical students will experience a learning journey that will allow them to gain valuable professional practice skills, and increase their substantive criminal law knowledge. Students may be involved in tasks such as attending client meetings, drafting pleadings and attending court hearings.\n\nStudents will be able to help accused individuals when they need it most. The experience may cause students to question their own views on justice, and life!", + "title": "The Capital Offences Criminal Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6094EV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Legal aid aims to ensure that all member of society have access to justice, regardless of their financial means.\n\nThis clinic provides students with a unique experiential learning opportunity. Students will assist an experienced legal practitioner with a Legal Aid Bureau case. Cases will relate to family law matters, and may cover issues relating to divorce, child maintenance, estate division and mental capacity. \n\nUnder guided mentorship, students will experience a meaningful learning journey that will allow them to gain professional practice skills, substantive knowledge in the area of family law, and refine their research, analysis, and drafting skills.", + "title": "The Pro Bono Family Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6094V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Trademark Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6096", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The emphasis will be on the international and comparative aspects of the subject, including\n\nthe international treaties in this area (Paris Convention; TRIPS; Madrid etc) and regional developments (eg the Community trade mark system in Europe, the harmonization efforts in Asean);\n\ninter-relationship between trade mark law and the law of unfair competition in civil law jurisdictions;\n\ndifferent treatment by countries of topics such as parallel importation; protection of personality interests; dilution; protection of \"trade dress\" or \"get up\".", + "title": "International Trademark Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6096V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Islamic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6097", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Course will introduce history and basic concepts of traditional Islamic law, followed by an account of reforms during the 19th and 20th centuries. The reform period will be covered topically, beginning with method and philosophical foundations, and moving to a variety of issues of positive and procedural law. Finally, some themes related to law and modernity will be explored.", + "title": "Islamic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6097V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6099", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an understanding of the legal issues arising from casualties involving ships. It will examine aspects of the law relating to nationality and registration of ships, the law relating to the management of ships, ship sale and purchase, and the law of collisions, salvage, towage, wreck and general average. Students successfully completing the course will be familiar with the international conventions governing these issues, as well as the domestic law of Singapore.", + "title": "Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6099V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course takes students to the areas of significance in the field of dispute resolution in China, particularly with respect to the resolution of commercial disputes where arbitration plays a major role in today\u2019s China. Major methods of dispute resolution will be examined, such as arbitration, civil litigation, and mediation (as it combines with arbitration and litigation). Some topical issues pertinent to commercial disputes such as corporate litigation, securities enforcement, recognition and enforcement of foreign civil judgments, civil justice reform, and regional judicial assistance in the Greater China region will be looked into in the course as well.", + "title": "Arbitration and Dispute Resolution in China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes students to the areas of significance in the field of dispute resolution in China, particularly with respect to the resolution of commercial disputes where arbitration plays a major role in today\u2019s China. Major methods of dispute resolution will be examined, such as arbitration, civil litigation, and mediation (as it combines with arbitration and litigation). Some topical issues pertinent to commercial disputes such as corporate litigation, securities enforcement, recognition and enforcement of foreign civil judgments, civil justice reform, and regional judicial assistance in the Greater China region will be looked into in the course as well.", + "title": "Arbitration and Dispute Resolution in China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6100V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Torts is designed to build on and further your knowledge of tort law.\nThe course is divided into two parts. In Part One, we will examine some fundamental concepts and debates surrounding tort law. The objective is to understand what is distinctive about torts and how torts are important in a civilised system of law. In Part Two, we will examine torts not already covered in the first year course. This will include consideration of important torts such as defamation, conversion, deceit, conspiracy and breach of statutory duty. These torts will be examined by reference to the best of the literature and by a selection of representative cases.", + "title": "Advanced Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6102V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced-level course which provides an opportunity for rigorous study about the nature of law and broader issues in legal and political theory such as the nature of rights, the nature of justice, and questions about (fair) distribution. The course will examine a range of salient topics related to these issues and will be taught entirely through interactive, discussion-intensive seminars, that will rely heavily on active class participation.", + "title": "Jurisprudence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced-level course which provides an opportunity for rigorous study about the nature of law and broader issues in legal and political theory such as the nature of rights, the nature of justice, and questions about (fair) distribution. The course will examine a range of salient topics related to these issues and will be taught entirely through interactive, discussion-intensive seminars, that will rely heavily on active class participation.", + "title": "Jurisprudence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6104V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Partnership and Alternative Business Vehicles", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6107V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "International Law & Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does Asia relate to the international community and international law? The region's rich diversity of states and socieities challenges assumptions of universality and also affects cooperation between states on issues such as human rights violations, environmental harm and the facilitation of freer trade. Yet a sense of reguinalism within East Asia is growing, with new institutions and mechanisms to deal with these and other contemporary challenges in East Asia. The seminar will discuss key issues of law and legal approaches in Asia, such as sovereignty, as well as provide for presentations bt students on research subjects.", + "title": "International Law & Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6109V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Copyright Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6111V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "The Contemporary Indian Legal System", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "While serving as an introductory course to the Indian legal system, this discussion-based Seminar seeks to focus on topical, contemporary legal issues in India. It will focus primarily on the post-Independence legal system in India, and its important institutions of democratic governance.", + "title": "The Contemporary Indian Legal System", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6122V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The general aim of the course is to impart a critical analytical understanding of International Insolvency Law. There will be consideration of the main features of national insolvency regimes highlighting the similarities and differences followed by a detailed consideration of the scope for cooperation in respect of insolvency matters across national frontiers. The UNCITRAL Model Law on Cross-Border Insolvency and the European Insolvency Regulation will be addressed in detail.", + "title": "International Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6123", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law And Development In China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6125", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law And Development In China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6125V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6128", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The principal objective of this course is to provide an understanding and appreciation of the various legal issues and perspectives involved in carrying out business and corporate transactions in India. The course will begin with a brief introduction to India\u2019s legal system, the Constitution and the judiciary so as to\nset the tone. This part will also contain an evaluation of the changes since 1991 to India\u2019s economic policies that have made it an emerging economic superpower. Thereafter, it will deal with the core through a discussion of he legal aspects involved in setting up business operations in India, the different types of business entities available, shareholders\u2019 rights, joint ventures, raising finance both privately and by accessing public capital markets, and the regimes relating to foreign direct investment, corporate governance, mergers and acquisitions and corporate bankruptcy.Where applicable, the course will provide relevant comparisons with similar laws in other jurisdictions such as the U.S., the U.K. and Singapore. While the course is not intended to involve an exhaustive study of all\napplicable laws and regulations, it will highlight key legal considerations for business transactions in India and allow for deliberation on topical, contemporary issues with real-world examples.", + "title": "Indian Business Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6129", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The principal objective of this course is to provide an understanding and appreciation of the various legal issues and perspectives involved in carrying out business and corporate transactions in India.", + "title": "Indian Business Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6129V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law, Governance & Development in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the wake of Asia's striking economic progress issues of law and governance are now seen as critical for the developing, developed and post-conflict states of Asia. Legal reforms are embracing constitutional, representative government, good governance and accountability, and human rights, based on the rule of law. How and on what principles should Asian states build these new legal orders? Can they sustain economic progress and satisfy the demands for the control of corruption and abuses of powers, and the creation of new forms of accountability? This course examines on a broad comparative canvas the nature, fate and prospects for law and governance in developing democracies in Asia, using case studies drawn especially from SE Asian states. Coverage of the issues will be both theoretical, as we ask questions about the evolving nature of 'law and development'; and practical, as ask questions about the implementation of law and development projects across Asia.", + "title": "Law, Governance & Development in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6131V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Human Rights in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6133", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Firstly, to impart a solid grounding in the history, principles, norms, controversies and institutions of international human rights law. Secondly, to undertake a contextualized socio-legal study of human rights issues within Asian societies, through examining case law, international instruments, policy and state interactions with UN human rights bodies. 'Asia' alone has no regional human rights system; considering the universality and indivisibility of human rights, we consider how regional particularities affect or thwart human rights.

\nSubjects include: justiciability of socio-economic rights, right to development and self-determination, political freedoms, religious liberties, indigenous rights, national institutions, women's rights; MNC accountability for rights violations.", + "title": "Human Rights in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6133V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Migration is not a new phenomenon but the intensity, frequency and ease with which persons are crossing borders today, both voluntarily and involuntarily, is\nunprecedented.\n\nThis course examines the legal issues impacting a person\u2019s migration path into and in Singapore. We will examine the criteria for admission to Singapore on a temporary or permanent basis, the evolution of immigration and nationality laws, as well as the domestic responses to the growing global problem of human trafficking.\n\nTheoretical perspectives on migration and citizenship are examined with a view to a range of normative questions including: How should constitutional democracies respond to and balance rights claims by citizens, residents, and others within their borders?", + "title": "Crossing Borders: Law, Migration & Citizenship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6134", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Migration is not a new phenomenon but the intensity, frequency and ease with which persons are crossing borders today, both voluntarily and involuntarily, is\nunprecedented.\n\nThis course examines the legal issues impacting a person\u2019s migration path into and in Singapore. We will examine the criteria for admission to Singapore on a temporary or permanent basis, the evolution of immigration and nationality laws, as well as the domestic responses to the growing global problem of human trafficking.\n\nTheoretical perspectives on migration and citizenship are examined with a view to a range of normative questions including: How should constitutional democracies respond to and balance rights claims by citizens, residents, and others within their borders?", + "title": "Crossing Borders: Law, Migration & Citizenship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6134V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce patent law and policy in the United States, and how they relate to other systems of law, primarily U.S. trade secret and antitrust law. The course begins with central legal principles and policies, emphasizing the concepts and skills required of a new lawyer with a working knowledge of patent law. By the end of the course, students will understand the requirements for obtaining protection, the doctrinal elements of an infringement action as well as the various types of defences and remedies available. Students will also gain a practice-oriented perspective of \u201creal-world\u201d issues facing inventors and companies as well as how those issues are consistent with, or in tension with, other interests.", + "title": "Patent Law & Practice: Perspectives from the U.S", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6135", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International & Comparative Law of Sale in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6138", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to prepare students for regional and international trade in Asia by providing basic knowledge of domestic laws of sale in both civil and common law systems in Asia (including Singapore's) as well as international rules affecting the contract of sale. The course will cover: comparative private law of contract and of sale in Asia; international private law of sale; private International Law aspects of international sales. The course is meant for students interested in international trade and comparative law in Asia.", + "title": "Int'l&Comp Law of Sale in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6138V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Law of the Sea governs the conduct of States in the oceans. Given that the oceans covers five-seventh of the world\u2019s surface, it is a critical component of international law. It is also relevant for Singapore due to its extensive maritime interests. This course will examine the theoretical underpinnings and the practical implementation of Law of the Sea with the aim of examining how it addresses the ever-increasing challenges in the regulation of the oceans. The course will draw on a wide range of case studies from around the world, with a particular emphasis on Asia.", + "title": "Law of the Sea: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6140", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Law of the Sea governs the conduct of States in the oceans. Given that the oceans covers five-seventh of the world\u2019s surface, it is a critical component of international law. It is also relevant for Singapore due to its extensive maritime interests. This course will examine the theoretical underpinnings and the practical implementation of Law of the Sea with the aim of examining how it addresses the ever-increasing challenges in the regulation of the oceans. The course will draw on a wide range of case studies from around the world, with a particular emphasis on Asia.", + "title": "Law of the Sea: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6140V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is primarily concerned with the age-old dichotomy between law in the law books and law in action. Through the examination of the origin, function and pattern of law in primitive and modern societies from a historical, anthropological and sociological perspective, we will try to understand better, the constraints under which \u2018law\u2019 in modern society operates, and the limits on the use of law as an instrument of social change. \n\nIn the first part of the course, the student will be introduced to basic ideas in classical anthropology and the sociology of law. Questions such as - Are there any \u2018universal\u2019 patterns of human behaviour? To what extent is a society\u2019s perception of law influenced or controlled by environmental and econological factors? How are disputes resolved? Is aggression and warfare inherent in the human condition? - will be dealt with. In the second part of the course, these anthropological methods will be applied to a study of the concept of law in diverse societies from a sociological perspective, and to the actual function of law in \nsociety. Do patterns of human behaviour discernable in primitive societies hold true in more complex \u2018modern\u2019 societies? What are the attributes of a \u2018modern\u2019 legal system? Is the concept of \u2018law\u2019 in the western sense inevitable and universal in all kinds of societies. What happens to the concept of law in plural societies? \n\nTeaching will be by seminars which will include lectures and discussion of assigned readings. No previous knowledge of law anthropology or sociology is required or will be assumed of students.", + "title": "Law & Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6146", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is primarily concerned with the age-old dichotomy between law in the law books and law in action. Through the examination of the origin, function and pattern of law in primitive and modern societies from a historical, anthropological and sociological perspective, we will try to understand better, the constraints under which \u2018law\u2019 in modern society operates, and the limits on the use of law as an instrument of social change. \n\nIn the first part of the course, the student will be introduced to basic ideas in classical anthropology and the sociology of law. Questions such as - Are there any \u2018universal\u2019 patterns of human behaviour? To what extent is a society\u2019s perception of law influenced or controlled by environmental and econological factors? How are disputes resolved? Is aggression and warfare inherent in the human condition? - will be dealt with. In the second part of the course, these anthropological methods will be applied to a study of the concept of law in diverse societies from a sociological perspective, and to the actual function of law in society. Do patterns of human behaviour discernable in primitive societies hold true in more complex \u2018modern\u2019 societies? What are the attributes of a \u2018modern\u2019 legal system? Is the concept of \u2018law\u2019 in the western sense inevitable and universal in all kinds of societies. What happens to the concept of law in plural societies? Teaching will be by seminars which will include lectures and discussion of assigned readings. No previous knowledge of law anthropology or sociology is required or will be assumed of students.", + "title": "Law & Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6146V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative study of the law of secured transactions across the common law world. The first part covers the English law of security and title financing in depth. The second part looks at the notice filing model originally introduced in UCC Article 9 and now enacted as PPSAs in several other jurisdictions. The third part looks at reform of secured transactions law around the world, and, in particular, the Cape Town Convention and the UNCITRAL Legislative Guide and Model Law. This course will be of interest to anyone interested in the debt side of corporate finance, as well as those interested in transnational commercial law.", + "title": "Secured Transactions Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6148", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The settlement of disputes arising from foreign direct investment attracts global interest and attention. Foreign investors often arbitrate their disputes with host States via an arbitration clause contained in a contract. Additionally, investment treaties also empower foreign investors to bring claims in arbitration against host State. The distinct body of law that grew into international investment law, has become one of the most prominent and rapidly evolving branches of international law. The aim of this course is to study the key developments that have taken place in the area. It deals with questions of applicable law, jurisdiction, substantive obligations, as well as award challenge and enforcement, in both investment contract arbitration and investment treaty arbitration.", + "title": "International Investment Law and Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6150", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The settlement of disputes arising from foreign direct investment attracts global interest and attention. Foreign investors often arbitrate their disputes with host States via an arbitration clause contained in a contract. Additionally, investment treaties also empower foreign investors to bring claims in arbitration against host State. The distinct body of law that grew into international investment law, has become one of the most prominent and rapidly evolving branches of international law. The aim of this course is to study the key developments that have taken place in the area. It deals with questions of applicable law, jurisdiction, substantive obligations, as well as award challenge and enforcement, in both investment contract arbitration and investment treaty arbitration.", + "title": "International Investment Law and Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6150V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Police Enforcement Cooperation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6153", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will explore several key topics at the intersection of law and economics. It will commence with an exploration of the concept of rationality as employed in (positive) micro-economic theory. It will also explore the Coase theorem as a means of understanding the importance of legal rules and institutions. These theoretical tools will then be used as a lens for examining, amongst other topics, tort, contract and insolvency law; company law; financial regulation, and the role of law and\nlegal institutions in economic development.", + "title": "Topics in Law & Economics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6155", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive overview of international climate change law as well as examines the legal and regulatory responses of selected Asian jurisdictions to climate change. The first part of the course will examine the UN Framework Convention on Climate Change legal regime.The second part will focus on climate change litigation. In the final part, we examine how selected Asian jurisdictions, including Singapore, have adopted laws and regulatory frameworks for climate change mitigation and adaptation. (78 words)", + "title": "Climate Change Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6158", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive overview of international climate change law as well as examines the legal and regulatory responses of selected Asian jurisdictions to climate change. The first part of the course will examine the UN Framework Convention on Climate Change legal regime.The second part will focus on climate change litigation. In the final part, we examine how selected Asian jurisdictions, including Singapore, have adopted laws and regulatory frameworks for climate change mitigation and adaptation.", + "title": "Climate Change Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6158V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will look at the way economists analyze legal problems and how economics has contributed to our understanding of the legal system. In order to do that, we\u2019ll want to get a firm grounding on what an economist\u2019s lens looks like. We\u2019ll run through the main principles of economic thought. \n\nAfter this introduction to economic thinking, we\u2019ll look at how the principles of economics are applied in specific legal contexts. For these basic applications, we shall take examples from four courses (Property, Contracts, Torts, Criminal Law) to see how an economist might approach these problems.\n\nFollowing on from these basic applications, we\u2019ll look at various extensions to the basic model and special topics.", + "title": "The Economic Analysis of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6159", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will look at the way economists analyze legal problems and how economics has contributed to our understanding of the legal system. In order to do that, we\u2019ll want to get a firm grounding on what an economist\u2019s lens looks like. We\u2019ll run through the main principles of economic thought. \n\nAfter this introduction to economic thinking, we\u2019ll look at how the principles of economics are applied in specific legal contexts. For these basic applications, we shall take examples from four courses (Property, Contracts, Torts, Criminal Law) to see how an economist might approach these problems.\n\nFollowing on from these basic applications, we\u2019ll look at various extensions to the basic model and special topics.", + "title": "The Economic Analysis of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6159V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intelligence Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6161", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intelligence Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6161V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since Singapore\u2019s independence in 1965, its economic development has been remarkable. Singapore\u2019s unique system of corporate governance is one of the keys to its economic success. This course will begin by providing a historical and comparative overview of Singapore\u2019s system of corporate governance. It will then undertake an indepth and comparative analysis of the core aspects of Singapore corporate governance, highlighting the aspects which make it unique. The course will then examine the latest developments in Singapore corporate governance, with an emphasis on analysing the details, policy rationale, and implications of recent reforms. The course will conclude by considering what the future may hold for Singapore\u2019s system of corporate governance and what other jurisdictions may learn from it.", + "title": "Singapore Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6162", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since Singapore\u2019s independence in 1965, its economic development has been remarkable. Singapore\u2019s unique system of corporate governance is one of the keys to its economic success. This course will begin by providing a historical and comparative overview of Singapore\u2019s system of corporate governance. It will then undertake an indepth and comparative analysis of the core aspects of Singapore corporate governance, highlighting the aspects which make it unique. The course will then examine the latest developments in Singapore corporate governance, with an emphasis on analysing the details, policy rationale, and implications of recent reforms. The course will conclude by considering what the future may hold for Singapore\u2019s system of corporate governance and what other jurisdictions may learn from it.", + "title": "Singapore Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6162V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Projects Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6164", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is intended to introduce students to the practice and law relating to international projects and infrastructure. The various methods of procurement and the construction process involved will be reviewed in conjunction with standard forms that are used internationally - such as the FIDIC, JCT and NEC forms, among others. Familiar issues such as defects, time and cost overruns and the implications therefrom (and how these matters are dealt with in an international context) will also be covered.\n\nThe course will provide students with an understanding of how international projects are procured, planned and administered as well as give an insight into how legal and commercial risks are identified, priced, managed and mitigated.", + "title": "International Projects Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6164V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course of private international law which offers a comparative perspective on the traditional issues addressed by rules of private international law, i.e. choice of law, international jurisdiction, and the recognition of foreign judgments. The focus will essentially be the United States and on the European Union, but other jurisdictions will also be considered from time to time.", + "title": "Comparative Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6170", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "ASEAN Environmental Law, Policy and Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6171", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the progressive development of environmental law, policy and governance in ASEAN. It also considers the role of ASEAN in supplementing and facilitating international environmental agreements (MEAs), such as the Convention on International Trade in Endangered Species, the Convention on Biological Diversity, UNESCO Man & Biosphere,etc. It will evaluate the extent of implementation of the ASEAN environmental instruments at national level - some case studies will be examined.", + "title": "ASEAN Environmental Law, Policy & Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6171V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Japanese Corporate Law & Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6172", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Corporate Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6173", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the core legal characteristics of the corporate form in five major jurisdictions: the U.S., the U.K., Japan, Germany and France. It explains the common agency problems that are inherent in the corporate form and compares the legal strategies that each jurisdiction uses to solve these common problems. The major topics that this comparative examination covers include: agency problems; legal personality and limited liability; basic governance structures; creditor protection; related party transactions; significant corporate actions; control transactions; issuer and investor protection; the convergence of corporate law; and, comparative corporate law in developing countries.", + "title": "Comparative Corporate Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6173V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The development of new types of legal phenomena in the global arena has outgrown established understandings of law, and conventional classifications of legal materials. At the point of needing a theoretical underpinning for the novel concerns of academic law occasioned by globalization, fresh considerations of interdisciplinary perspectives on law are opened up, questioning the extent to which a distinctively legal approach to global issues is possible. This course engages with these challenges by exploring the global interconnectedness of law, morality, politics and economics, and considers what contribution legal theory might make to illuminating complex policy issues with a global reach.", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6175", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The development of new types of legal phenomena in the global arena has outgrown established understandings of law, and conventional classifications of legal materials. At the point of needing a theoretical underpinning for the novel concerns of academic law occasioned by globalization, fresh considerations of interdisciplinary perspectives on law are opened up, questioning the extent to which a distinctively legal approach to global issues is possible. This course engages with these challenges by exploring the global interconnectedness of law, morality, politics and economics, and considers what contribution legal theory might make to illuminating complex policy issues with a global reach.", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6175V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide you with an overview of the copyright, trademark and right of publicity issues confronting the entertainment industries of movies, music, books, video games, visual and performing arts, and new media. It provides a transnational perspective with an emphasis on cases from California, New York and the United Kingdom. This is not a course on entertainment law in Singapore, but the principles you learn could be relevant to Singapore law.\n\nWith case studies ranging from Roger Federer to Ariana Grande, Britney Spears to Tiger Woods, Avatar to Star Wars, Blurred Lines to Somebody To Love, this course will cover a number of prominent causes of action brought by celebrities and rights owners.", + "title": "Entertainment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6177", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide you with an overview of the copyright, trademark and right of publicity issues confronting the entertainment industries of movies, music, books, video games, visual and performing arts, and new media. It provides a transnational perspective with an emphasis on cases from California, New York and the United Kingdom. This is not a course on entertainment law in Singapore, but the principles you learn could be relevant to Singapore law.\n\nWith case studies ranging from Roger Federer to Ariana Grande, Britney Spears to Tiger Woods, Avatar to Star Wars, Blurred Lines to Somebody To Love, this course will cover a number of prominent causes of action brought by celebrities and rights owners.", + "title": "Entertainment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6177V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the treaties used by States to protect the interests of their investors when making investments abroad and to attract foreign investment into host economies. It will pay particular attention to investor-State arbitration under investment treaties, which is increasingly becoming widespread in Asia and a growing part of international legal practice. It will examine not only the legal and theoretical underpinnings of these treaties and this form of dispute settlement, but also their practical application to concrete cases and their utility as a tool of government policy.", + "title": "Law and Practice of Investment Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6178", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the treaties used by States to protect the interests of their investors when making investments abroad and to attract foreign investment into host economies. It will pay particular attention to investor-State arbitration under investment treaties, which is increasingly becoming widespread in Asia and a growing part of international legal practice. It will examine not only the legal and theoretical underpinnings of these treaties and this form of dispute settlement, but also their practical application to concrete cases and their utility as a tool of government policy.", + "title": "Law and Practice of Investment Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6178V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Alternative Dispute Resolution", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6179", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Starting by examining the theory and the need for choice of law and jurisdiction clauses, this course will examine various issues with these clauses by involving students in drafting, negotiating, concluding and eventually enforcing choice of law and jurisdiction clauses (in particular arbitration clauses) in international commercial contracts in Asia. This will be done through real life scenarios being introduced into the classroom in which students will act as lawyers advising and representing clients in drafting and negotiating choice of law and jurisdiction clauses as well as attacking or defending them before a tribunal in a dispute context. Accordingly, students will live through the life of various choice of law and jurisdiction clauses and see how they can be drafted, negotiated and enforced in Asian jurisdictions. \nUpon completion of the course, students will have learnt the theories behind choice of law and jurisdiction clauses as well as the practical skills and lessons in negotiating, finalizing and enforcing them.", + "title": "Choice of Law & Jurisdiction in Int\u2019l Commercial Contracts in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6180", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on law, policy and practice in three regulated areas in Singapore: (1) financial markets & sovereign wealth funds; (2) healthcare; and (3) real property. It adopts a cross-disciplinary and practice-related perspective in its examination of competing and overlapping interests and the relevant theories and principles of state regulation driving these fast-developing areas. It also examines the roles, rights and obligations of the Government as a regulator, the government-linked entities as market actors, businesses and individuals, and considers \"market inefficiencies\" relating to accountability, independence, legitimacy and transparency. Students are required to evaluate current substantive law and institutional norms and processes, review comparative models and approaches in other jurisdictions, and propose a model of optimal regulation in one selected area.", + "title": "Government Regulations: Law, Policy & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6185", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on law, policy and practice in three regulated areas in Singapore: (1) financial markets & sovereign wealth funds; (2) healthcare; and (3) real property. It adopts a cross-disciplinary and practice-related perspective in its examination of competing and overlapping interests and the relevant theories and principles of state regulation driving these fast-developing areas. It also examines the roles, rights and obligations of the Government as a regulator, the government-linked entities as market actors, businesses and individuals, and considers \"market inefficiencies\" relating to accountability, independence, legitimacy and transparency. Students are required to evaluate current substantive law and institutional norms and processes, review comparative models and approaches in other jurisdictions, and propose a model of optimal regulation in one selected area.", + "title": "Government Regulations: Law, Policy & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6185V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Philosophical Foundations of Contract Law invites students to critically examine (1) the theoretical underpinnings of contract law at the level of meta theory (e.g. autonomy, reliance, promise, economic, property), but also (2) at the level of foundational concepts such as \u2018autonomy\u2019, \u2018freedom\u2019, \u2018the intention of the parties\u2019, \u2018vitiation\u2019 and \u2018expectation interest\u2019; (3) how the theories help us to explain different aspects of contract law. Students should be able to engage in normative analysis of the law (how the law should be) with a view to desirable law reform. It complements the modules Advanced Contract Law and Property Theory.", + "title": "Philosophical Foundations of Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6187", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The elective course focuses on the legal aspects of corporate finance issues, i.e. raising of funds by a company from the domestic and international markets. Major topics covered include understanding financial statements and financial ratios, equity financing through listing on recognised exchanges (including reverse/backdoor listing and rights' issue) and debt financing such as syndication loans and bond issues. Advisory Note for students from Civil Law Jurisdiction Students who have not taken lessons in trust law, contract law and company law from the common law jurisdiction may have difficulty following the course.", + "title": "Corporate Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6188", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The elective course focuses on the legal aspects of corporate finance issues, i.e. raising of funds by a company from the domestic and international markets. Major topics covered include understanding financial statements and financial ratios, equity financing through listing on recognised exchanges (including reverse/backdoor listing and rights' issue) and debt financing such as syndication loans and bond issues. \nAdvisory Note for students from Civil Law Jurisdiction: Students who have not taken lessons in trust law, contract law and company law from the common law jurisdiction may have difficulty following the course.", + "title": "Corporate Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6188V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative and critical analysis of why and how six corporate mechanisms - (1) sustainability reporting; (2) board gender diversity; (3) constituency directors; (4) stewardship codes; (5) directors' duty to act in the company's best interests; and (6) liability on companies, shareholders and directors - have been or can be used to promote corporate social responsibility in the Asian and AngloAmercian jurisdictions. It equips students with useful, practical skillsets on how to advise clients on CSR issues and with a strong foundation to critically engage with sustainability matters that will be important to them in practice.", + "title": "Corporate Social Responsibility", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6189", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative and critical analysis of why and how six corporate mechanisms - (1) sustainability reporting; (2) board gender diversity; (3) constituency directors; (4) stewardship codes; (5) directors' duty to act in the company's best interests; and (6) liability on companies, shareholders and directors - have been or can be used to promote corporate social responsibility in the Asian and AngloAmercian jurisdictions. It equips students with useful, practical skillsets on how to advise clients on CSR issues and with a strong foundation to critically engage with sustainability matters that will be important to them in practice.", + "title": "Corporate Social Responsibility", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6189V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through examining the jurisprudence in three common law Western liberal democracies of the United States, United Kingdom and Australia, this course compares and critiques how the freedom of speech is construed in these jurisdictions. By confronting the complexities of the US First Amendment, the interplay between Articles 8 and 10 of the European Convention on Human Rights, and the Australian implied constitutional guarantee, one is exposed to different theoretical, practical and often controversial approaches in the protection of free speech. Cases covered span the spectrum from flag burning to duck shooting, from the Gay Olympics to the Barbie Doll, from regulating the display of offensive art to protecting the privacy of a supermodel.\nMode of Assessment: 1 Research Paper (70%) - [to be handed in week 13]; Class Performance - 30%.", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6190", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through examining the jurisprudence in three common law Western liberal democracies of the United States, United Kingdom and Australia, this course compares and critiques how the freedom of speech is construed in these\njurisdictions. By confronting the complexities of the US First Amendment, the interplay between Articles 8 and 10 of the European Convention on Human Rights, and the Australian implied constitutional guarantee, one is exposed to different theoretical, practical and often controversial approaches in the protection of free speech. Cases covered span the spectrum from flag burning to duck shooting, from the Gay Olympics to the Barbie Doll, from regulating the display of offensive art to protecting the privacy of a supermodel.\nMode of Assessment: 1 Research Paper (70%) - [to be handed in week 13]; Class Performance - 30%.", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6190V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal principles and regulatory environment surrounding the wealth management services provided by banking institutions. Major topics that are likely to be covered on the course include the nature and regulation of wealth management services and providers, banks\u2019 potential liability for the provision of wealth management services (such as financial advisory services in general and in relation to complex financial products in particular, the provision of financial information and data, portfolio management services, and custodianship) and the effectiveness of banks\u2019 attempts to exclude or limit liability.", + "title": "Wealth Management Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6191", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Private International Law of IP", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6192", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Negotiating & Drafting Int'l Commercial Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6193", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a practical introduction to the essentials of negotiating and drafting commercial contracts in the Common Law tradition. \nThe course begins with a refresh of plain English writing skills. The second part then reviews key Common Law concepts and considers the Common Law's attitudes to the commercial world. The third looks at the fundamental shape, structure and organisation of commercial contracts. The fourth deals with aspects of law routinely encountered by the practitioner and technical drafting issues. The fifth focuses on technical drafting. The sixth and final part considers the approach of managing legal risk and the practicalities of negotiation.", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6193V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine in depth the law of partnerships. The basic framework is the same in most Commonwealth countries and based still on the UK Partnership Act of 1890. The topics to be covered in relation to general partnerships include the formation of partnerships, partnerships in the modern legal system, the relationship between partners and outsiders, the relationship of partners inter se and the dissolution of partnerships. The module will then examine the variants of limited partnerships, used mainly as investment vehicles, and limited liability partnerships. LLPs, a recent creation, are becoming increasingly popular for the professions especially. They are an amalgam of corporate and partnership concepts but are also developing their own specific legal issues which will only increase with time.", + "title": "Partnership and LLP Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6194", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international law and international relations dimensions of the current international economic systems and discuss the various possibilities for future reforms in light of the past and recent global economic crises. While the discussion will be based on the Bretton Woods System (the GATT/WTO, the IMF, and the World Bank), the course will focus mainly on the international regulatory framework of finance and investment. The purpose of the course is to let the students develop a bird\u2019s eye view of the legal aspects of the international economic architecture as well as the reasons \u2013 or the international political economy \u2013 behind its operation. Students will also be exposed certain fundamentals of international law and international relations concerning global economic affairs. Further, the course will examine the experiences of several countries\u2019 economic development and their use of international economic law to achieve economic growth.", + "title": "International Economic Law & Relations", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6195V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How do Southeast Asian constitutions accommodate religion? Is secularism necessary for democracy? Do public religions undermine religious freedom? These are some of the questions we will be engaging with in this course.\n\nThere are two segments to the course. In the first segment, we will examine general theories of statereligion relations, including liberal assumptions of the dominant theory of the separation of church and state (the \u201cdisestablishment theory\u201d), the rise and fall of the secularization thesis, and alternative theories.\n\nDuring the second segment, we will examine statereligion relations through topical issues in selected countries in Southeast Asia, including how legal systems in Singapore, Malaysia, and Indonesia accommodate Syariah Courts, and how separationist claims based on religious difference and identities are advanced in the Philippines and Thailand.", + "title": "Comparative State and Religion in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6197", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How do Southeast Asian constitutions accommodate religion? Is secularism necessary for democracy? Do public religions undermine religious freedom? These are some of the questions we will be engaging with in this course.", + "title": "Comparative State and Religion in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6197V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ASEAN leaders agreed to create a single market \u2013 the ASEAN Economic Community \u2013 by 2015. Due to sovereignty concerns, ASEAN leaders did not create a single supranational authority to regulate this market. This course examines how ASEAN member states and institutions are filling in the vacuum through formal and informal means. Students will understand how regional policymaking affects domestic laws and policies within ASEAN.", + "title": "ASEAN Economic Community Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ASEAN leaders agreed to create a single market \u2013 the ASEAN Economic Community \u2013 by 2015. Due to sovereignty concerns, ASEAN leaders did not create a single supranational authority to regulate this market. This course examines how ASEAN member states and institutions are filling in the vacuum through formal and informal means. Students will understand how regional policymaking affects domestic laws and policies within ASEAN.", + "title": "ASEAN Economic Community Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6202V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6203", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6203A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6203B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6203C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide students with an overview of the fundamental principles of Islamic commercial law and how they are applied in the modern context in connection with the practice of Islamic finance. The course will begin with \nhistorical doctrines, discuss modern transformations, review practical examples, and consider the treatment of Islamic financial contracts in secular courts.", + "title": "Islamic Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of conflict of laws issues in the context of maritime law and admiralty litigation. The course will provide an introduction to conflicts theory and concepts before focusing on conflict of jurisdictions, parallel proceedings and forum shopping in admiralty matters; role of foreign law in establishing admiralty jurisdiction; recognition and priority of foreign maritime liens and other claims; choice of law and maritime Conventions; conflicts of maritime Conventions; security for foreign maritime proceedings; and recognition and enforcement of oreign maritime judgments.", + "title": "Maritime Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of conflict of laws issues in the context of maritime law and admiralty litigation. The course will provide an introduction to conflicts theory and concepts before focusing on conflict of jurisdictions, parallel proceedings and forum shopping in admiralty matters; role of foreign law in establishing admiralty jurisdiction; recognition and priority of foreign maritime liens and other claims; choice of law and maritime Conventions; conflicts of maritime Conventions; security for foreign maritime proceedings; and recognition and enforcement of oreign maritime judgments.", + "title": "Maritime Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6205V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course encompasses the theoretical and practical concepts underpinning the entire criminal litigation process, from pre-trial to post-conviction. Coverage will include the role of the charge, drafting of charges, plea-bargains, guilty pleas, trials, consequential orders and appeals. Common evidential issues arising in trials will also be discussed. The aim is to provide both a holistic overview of the entire process as well as detailed examination of specific areas. The course will cover criminal procedure and evidence as well as include advocacy exercises in common criminal proceedings and a practical attachment at the Criminal Justice Division.", + "title": "Advanced Criminal Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course encompasses the theoretical and practical concepts underpinning the entire criminal litigation process, from pre-trial to post-conviction. Coverage will include the role of the charge, drafting of charges, plea-bargains, guilty pleas, trials, consequential orders and appeals. Common evidential issues arising in trials will also be discussed. The aim is to provide both a holistic overview of the entire process as well as detailed examination of specific areas. The course will cover criminal procedure and evidence as well as include advocacy exercises in common criminal proceedings and a practical attachment at the Criminal Justice Division.", + "title": "Advanced Criminal Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6208V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the advanced argumentative techniques possible with legal narrative, which refers to how information is selected and organised to construct a persuasive view of the facts. Fact construction plays a particularly prominent role in litigation, but it also appears in methods of alternative dispute resolution and justifications of policy positions. This module will analyze \nthe pervasive reach of fact construction in the law, examine why fact construction is such an effective tool of legal persuasion, and explore advanced techniques of fact\nconstruction.", + "title": "Legal Argument & Narrative", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the advanced argumentative techniques possible with legal narrative, which refers to how information is selected and organised to construct a persuasive view of the facts. Fact construction plays a particularly prominent role in litigation, but it also appears in methods of alternative dispute resolution and justifications of policy positions. This module will analyze \nthe pervasive reach of fact construction in the law, examine why fact construction is such an effective tool of legal persuasion, and explore advanced techniques of fact\nconstruction.", + "title": "Legal Argument & Narrative", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6209V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international intellectual property system and addresses the legal issues raised by the trade of products protected by intellectual property rights (patents, trademarks, and copyrights) across different jurisdictions. This course reviews the key international agreements and provisions in this area, as well as the different national policies, which have been adopted, to date, in several domestic jurisdictions or free trade areas, including the European Union, the U.S., China, Japan, and the ASEAN countries.", + "title": "Intellectual Property and International Trade", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international intellectual property system and addresses the legal issues raised by the trade of products protected by intellectual property rights (patents, trademarks, and copyrights) across different jurisdictions. This course reviews the key international agreements and provisions in this area, as well as the different national policies, which have been adopted, to date, in several domestic jurisdictions or free trade areas, including the European Union, the U.S., China, Japan, and the ASEAN countries.", + "title": "Intellectual Property And International Trade", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6210V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course addresses major regulatory legal aspects of money, payments, and clearing and settlement systems from international, comparative and global perspective. It addresses the design and structure of the monetary and\npayment systems; the infrastructure designed to accommodate the payment and settlement of commercial and financial transactions; sovereign debt; and the impact of sovereign risk on commercial and financial transactions. It covers domestic & international monetary systems; central banking; international retail and wholesale payments in major currencies; settlement of financial transactions; foreign exchange transactions; payment clearing & settlement: mechanisms and risks; systematically important payment systems; and global securities settlement systems.", + "title": "International Public Monetary and Payment Systems Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In an era of globalization marked by a dramatic increase in cross-border interactions and transactions, the legal norms regulating these cross-border phenomena \u2013 from terrorism to environmental protection to business law \u2013 and disputes arising from them are complex and uneven. This rise in transnational legality poses a challenge for the modern concept of law and for state and inter-state law as traditionally conceived. This course traces the emergence of the state and considers how state law has been shaped by and has adapted to globalization. It examines legal and non-legal responses to transnational problems, using examples from several areas of law.", + "title": "Transnational Law in Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module explores principles and rules relating to the exploration for, development and production of oil and gas (upstream operations). The main focus of the module is on the examination of different arrangements governing the\nlegal relationship between states and international oil companies, such as modern concessions, productionsharing agreements, joint ventures, service and hybrid contracts. The agreements governing the relationships between companies involved in upstream petroleum operations (joint operating and unitisation agreements) will also be examined. The module will further explore the\nissues of dispute settlement, expropriation, stability of contracts and a relevant international institutional and legal framework.", + "title": "International and Comparative Oil and Gas Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cyberspace is the online world of computer networks, especially the Internet. This module examines two major points of connection between the law and cyberspace: how communications in cyberspace are regulated; and how\n(intellectual) property rights in cyberspace are enforced. Specific topics include: governing the Internet; jurisdiction and dispute resolution in cyberspace; controlling online content; electronic privacy; trademarks on the Internet;\ncybersquatting; digital copyright; virtual worlds.", + "title": "Cyber Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the legal approach to curbing corruption in three jurisdictions namely: Singapore, US and UK. The focus will be on bribery of public officials both domestic and foreign. The applicable laws \u2013 domestic and\nextra-territorial - in the selected national jurisdictions will be examined to see how effective they are for curbing such corruption. The module will also examine regional and multi-regional laws enacted to curb corruption. Major topics to be coveredinclude: preventive measures; criminalization; corporate liability including criminal and non-criminal sanctions; and jurisdictional principles.", + "title": "Comparative & International Anti-Corruption Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module draws on research, programming and visiting speakers under the Centre for Asian Legal Studies, ASLI Fellows and NUS faculty, bringing students into discussion, interrogation and analysis of major current issues in Asian legal studies. The module will involve reading and analyzing recent work in the field, emphasising theoretical and methodological approaches in a comparative context. It will use current case studies as examples for analysis. These will vary from year to year according to CALS activity.", + "title": "Asian Legal Studies Colloquium", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6218V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Trial of Jesusis an excellent case for students to learn how to conduct non\u2010practical studies of legal and normative issues. It is, arguably, the most consequential\nlegal event in the evolution of Western Civilization. We will examine the historical, political, and legal background to the Trial, and, especially, the procedural propriety of\nthe Trial. Questions to be explored include: Were hisprocedural rights preserved during his trial before the Sanhedrin? Was histrial a miscarriage of justice? Through\nreflecting upon these and other questions, we will explore if and how thistrialshaped the Western culture. \n\nThis module is also concerned with the \u2018method\u2019 or \u2018process\u2019 of how students digest and integrate \u2019substance\u2019 or\u2018content\u2019. Thus,there is emphasis on the significance of understanding and clarifying, the complexity of each and every problem, and not only the importance of offering, or trying to offer, a clever solution to it.", + "title": "The Trial of Jesus in Western Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the legal issues \u2010 both from a conflict of laws perspective and a substantive law one \u2010 that may arise in connection with business contracts (such as contracts for the sale of goods, factoring contracts, leasing\ncontracts, transport contracts, etc.) that involve some element of internationality and examines those issues in light of some of the sets of rules specifically designed to address those issues when embedded in an international\nsetting (such as the United Nations Convention on Contracts for the International Sale of Goods, the International Factoring Convention, the Convention on International Financial Leasing, the Montreal Convention,\nthe Rome I Regulation, etc.). The course will also offer an overview of the basic features of litigation of those issues in state courts and before arbitral tribunals.", + "title": "International Business Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore legal and policy developments pertaining to climate change. Approaches considered will range in jurisdictional scale, temporal scope, policy orientation, regulatory target, and regulatory objective. Although course readings and discussion will focus on existing and actual proposed legal responses to climate change, the overarching aim of the course will be\nto anticipate how the climate change problem will affect our laws and our lives in the long run.", + "title": "Climate Change Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides students with profound knowledge relating to core issues of procedural law (including jurisdiction, admissibility, standing, provisional measures, \napplicable law, and the effect as well as enforcement of international decisions). It combines the discussion of these matters of law with international relations theory and issues of judicial policy. Against the background of a mounting stream of international judicial decisions, students will develop a solid analytical framework to \nappreciate the law and politics of international judicial institutions, focusing on the International Court of Justice, the International Tribunal for the Law of the Sea, the World Trade Organization, and adjudication in investment disputes.", + "title": "The Law & Politics of International Courts & Tribunals", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will analyze and discuss mergers which involve two or more entities which are located in different countries. \n\nAfter outlining the issues and conflicts created by the duality of corporate, control of foreign investment, regulatory and tax (for the latter in general terms) laws, the various solutions available will be discussed. \n\nEmphasis will be given to international treaties and European directives solutions as used in actual transactions. \n\nOther structures, in the absence of regulatory support, such as stock for stock offers and dual listing will be analyzed, also as used in actual transactions.", + "title": "Cross Border Mergers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cybercrime, cyberterrorism and cyberwars have been new threats developed in the interconnected age of the internet. In this Module we are looking at a range of \ncrimes committed through the use of computers, computer integrity offences where computers or networks are the target of the criminal activity and internet crimes \nrelated to the distribution of illegal content. This Module examines substantive criminal law in England, other European countries, the US, Canada and Singapore . It \nexplores the greater risks stemming from criminal activities due to the borderless nature of the internet and the limits of international co-operation. This module also aims to teach the key legal aspects and principles surrounding electronic data and systems security, identity management and authentication.", + "title": "Cybercrime & Information Security Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an overview of the basic economic theory that underlies competition law, an area of law that has expanded dramatically around the world in recent years. Various topics will be covered, including an economic analysis of efficiency and why competition matters from the perspective of social welfare, horizontal agreements, mergers, vertical restraints, and exclusion of competitors. While the course will not attempt to provide a comprehensive overview of antitrust law, relevant economic theory will be discussed in the context of legal cases taken from different jurisdictions around the world (most prominently the United States and Europe).", + "title": "Topics in the Law and Economics of Competition Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Other than the traditional unimodal contract of carriage, a multimodal contract of carriage requires more than one modality to perform the carriage. Think of a shipment of steel coils, traveling per train from Germany to the Netherlands, then by sea to Singapore where the last stretch to the end receiver is performed by truck. The course deals with all the legal aspects of such a multimodal contract of carriage.", + "title": "Multimodal Transport Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Other than the traditional unimodal contract of carriage, a multimodal contract of carriage requires more than one modality to perform the carriage. Think of a shipment of steel coils, raveling per train from Germany to the Netherlands, then by sea to Singapore where the last strech to the end receiver is performed by truck. The course deals with all the legal aspects of such a multimodal contract of carriage.", + "title": "Multimodal Transport Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6226V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the legal and policy framework for civil society, non-profit organizations, and philanthropy in Asia, the United Kingdom, the United States, Australia and other jurisdictions, including the formation and ac tivities of \norganizations, capital formation and fundraising, state restrictions on activities, governance, donations from domestic and foreign sources, and o ther key topics. In 2014 the instructor and students will undertake a publishing project on philanthropy, non-profit organizations and the law in Asia in collaboration with the International Center for Not-for-Profit Law (ICNL, which is based in Washington DC)", + "title": "Philanthropy, Non-profit Organizations, and the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the rules on the use of force in international law. It does so from an historical perspective with special emphasis on state practice so that students can understand how and why the law on the use \nof force has evolved in the way it has. The course sets out the general prohibition on the u se of fo rce in the UN Charter, and introduces students to key concepts such as self-defence, humanitarian intervention, and aggression. Students will be introduced to debates on pre-emption, the use of force in pursuit of self-determination, and terrorism.", + "title": "The Use of Force in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the rules on the use of force in international law. It does so from an historical perspective with special emphasis on state practice so that students can understand how and why the law on the use \nof force has evolved in the way it has. The course sets out the general prohibition on the u se of fo rce in the UN Charter, and introduces students to key concepts such as self-defence, humanitarian intervention, and aggression. Students will be introduced to debates on pre-emption, the use of force in pursuit of self-determination, and terrorism.", + "title": "The Use of Force in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6228V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course adopts a functional approach to Anglo-American company law and integrates company law with corporate governance. The course examines core Company Law and the regulatory framework and practice on corporate governance \u2013 the system (structure and process) by which companies are \ngoverned, and to what purpose. In light of their extraterritorial reach and partly because of th e relationship between their markets and legal systems, the course focusses on the similarities and variations by considering the structural \ndifferences and similarities, legal frameworks and market structure (the effect of retail and institutional investors) as drivers of corporate governance regulation in both jurisdictions.", + "title": "Corporate Governance in the US and UK", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject will provide an introduction to the modern legal system of Myanmar/Burma in social, political and historical context. It will consider the legal framework and institutions of Myanmar in light of the literature on rule of \nlaw reform in transitional and developing contexts. The subject will include a focus on constitutional law; the legislature; the courts; criminal justice; minority rights; \nforeign investment law and special economic zones; the military; and institutional reform. The mode of assessment for this course is 80% research essay, 10% class presentation and 10% class participation.", + "title": "Transition and the Rule of Law in Myanmar", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "European company law can be understood in two ways. It can indicate the EU\u2019s approach to company law and thereby lead to an analysis of the harmonized standards for 28 European nations. It can also be understood as a comparative approach to the different legal systems on the European continent. \n\nThis course includes both aspects. It will first concentrate on EU legislation and jurisdiction, followed by a comparison of the legal systems of the two most important continental European jursidictions, France and Germany. It will lead to an understanding of shared principles of civil law jurisdictions and emphasize important differences to common law systems.", + "title": "European Company Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "European company law can be understood in two ways. It can indicate the EU\u2019s approach to company law and thereby lead to an analysis of the harmonized standards for 28 European nations. It can also be understood as a comparative approach to the different legal systems on the European continent. \n\nThis course includes both aspects. It will first concentrate on EU legislation and jurisdiction, followed by a comparison of the legal systems of the two most important continental European jursidictions, France and Germany. It will lead to an understanding of shared principles of civil law jurisdictions and emphasize important differences to common law systems.", + "title": "European Company Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6233V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the way in which the concept of property has figured in political and legal theory. The module will first investigate the significance of property discourse in modern political theory, beginning with early modern authors such as Grotius and Locke, and then considering later political theorists such as Kant, Hume, Smith and Hegel, as well as utilitarian/economic treatments of property. The course will then draw upon this material to then focus on modern debates about the role of the concept of property in legal theory, covering such \nissues as economic/distributive justice, whether property is a \u2018bundle of rights\u2019, possession, ownership, and equitable property.", + "title": "Property Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the way in which the concept of property has figured in political and legal theory. The module will first investigate the significance of property discourse in modern political theory, beginning with early modern authors such as Grotius and Locke, and then considering later political theorists such as Kant, Hume, Smith and Hegel, as well as utilitarian/economic treatments of property. The course will then draw upon this material to then focus on modern debates about the role of the concept of property in legal theory, covering such issues as economic/distributive justice, whether property is a 'bundle of rights', possession, ownership, and equitable property.", + "title": "Property Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6234V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the onset of globalization, the study of contract law can no longer be confined to arrangements between private entities sharing the same nationality and operating in the same jurisdiction. The costliest and most complex contractual disputes involve States, State entities, or State-linked enterprises, and foreign nationals, as contracting parties. The introduction of States as permanent and powerful participants in economic life led to the emergence of a bespoke body of law \u2013 international contract law \u2013 to regulate these prominent contractual arrangements. This course is for students who have been targeted for regional and international legal practice, or who plan to gravitate towards transnational legal work in multinational corporations.", + "title": "International Contract Law: Principles and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the onset of globalization, the study of contract law can no longer be confined to arrangements between private entities sharing the same nationality and operating in the same jurisdiction. The costliest and most complex contractual disputes involve States, State entities, or State-linked enterprises, and foreign nationals, as contracting parties. The introduction of States as permanent and powerful participants in economic life led to the emergence of a bespoke body of law \u2013 international contract law \u2013 to regulate these prominent contractual arrangements. This course is for students who have been targeted for regional and international legal practice, or who plan to gravitate towards transnational legal work in multinational corporations.", + "title": "International Contract Law: Principles and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6235V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to explore the interaction between legal institutions and economic/business development in Greater China (i.e. China, Taiwan, HK), with focus on China. How has China been able to offset institutional weaknesses at home while achieving impressive economic results worldwide? Have China\u2019s experiences indicated an unorthodox model as captured in the term \u201cBeijing Consensus\u201d? To what extent is this model different from\nEast Asian models and conventional thinking in economic growth? This course reviews theories about market development in the context of Greater China, including securities, corporate regulations, capital markets, property, sovereign wealth funds, foreign investment, and anticorruption etc.", + "title": "Law, Institutions, and Business in Greater China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6237V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover the international, comparative and domestic aspects of corporate finance law and practice. The emphasis of the course will be on the actual application of corporate finance law in practice, the policies that have shaped the laws in Singapore and elsewhere, and the international conventions that have evolved in this area. Topics include: cash flow, value and risk; term loans and loan syndications; fund raising and capital markets; securitisations; derivatives; and financing mergers and acquisitions.", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover the international, comparative and domestic aspects of corporate finance law and practice. The emphasis of the course will be on the actual application of corporate finance law in practice, the policies that have shaped the laws in Singapore and elsewhere, and the international conventions that have evolved in this area. Topics include: cash flow, value and risk; term loans and loan syndications; fund raising and capital markets; securitisations; derivatives; and financing mergers and acquisitions.", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6238V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on contemporary legal and political institutions in the South Asian region, with particular emphasis on understanding the role and nature of law and constitutionalism. Although the primary focus will be on\nBangladesh, India, Pakistan and Sri Lanka, developments in Bhutan and Nepal will also be covered. The module will employ readings and perspectives from the disciplines of history, politics, sociology and economics to understand\nhow these affect the evolution of South Asian legal systems over time. It will also adopt comparative perspectives and analyse how individual legal systems in South Asia are influenced by other nations in the region.", + "title": "Law & Politics in South Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6239V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course begins with an analysis of the fragility of the business model of commercial and investment banks and the negative externalities of bank failure. It then focuses on three principal functions of bank regulation: (1) making banks more resilient to business shocks; (2) making it less likely that banks will suffer shocks; (3) and facilitating the resolution and recovery of banks which fail. The focus will be on the crucial policy choices involved in achieving these objectives; the trade-offs among the available legal strategies; and the problems of regulatory arbitrage (shadow banking).", + "title": "Financial Stability and the Regulation of Banks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will include various aspects of financial regulation. The focus will be on the regulation of credit institutions and the role of central banks. Other forms of regulation of financial intermediaries and financial markets will be discussed in less detail. Since the focus will be on credit institutions, it will be important that the students understand what distinguishes credit institutions from other providers of financial services and how the regulatory approaches differ.\n\nThe part on the regulation of credit institutions will include requirements for their\nauthorization, their permanent supervision and rescue scenarios in situations of insolvency and default. These aspects will be discussed from a comparative perspective with the Basel requirements at the core of the discussion, complemented by the implementing norms in important jurisdictions, above all in Singapore. For resolution and restructuring the European Union has taken on a leading role, and, as a consequence, these EU approaches will be analysed in detail.\n\nThe roles of central banks will remain a core part of the course. Their tasks and objectives will be discussed from a comparative perspective. Their essential role in crisis management, their co-operation with supervisory agencies and their monetary policy will remain essential components of the course.", + "title": "Financial Regulation and Central Banking", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6242V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar explores how different aspects of physicial and social space (ie, geography) influence the efficacy of different kinds of law and regulation. Such understanding is especially useful for explanding one\u2019s understanding of the relationship between law and economics, law and development, and law and society. It is also relevant to issues of public international law, transnational law, human rights law, public law, and comparative law. \n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Law, Economics, Development, and Geography", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar explores how different aspects of physicial and social space (ie, geography) influence the efficacy of different kinds of law and regulation. Such understanding is especially useful for explanding one\u2019s understanding of the relationship between law and economics, law and development, and law and society. It is also relevant to issues of public international law, transnational law, human rights law, public law, and comparative law. \n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Law, Economics, Development, and Geography", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6243V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The administration of criminal justice in Singapore relies on an ethical, professional and skilled disposition and management of criminal cases. A good criminal practitioner needs a sound grounding in criminal law and criminal procedure, and a strong base of written and oral advocacy and communication skills. This is an experiential course that takes students through a case from taking instructions all the way through to an appeal, using the structure of the criminal process to teach criminal law, procedure and advocacy skills. Taught primarily by criminal law practitioners, this course will give an insight into the realities of criminal practice.", + "title": "Criminal Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6244V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Course explores the various ways through which public law contributes to the regulatory construction of the state. Topics will include the ways public law contributes to the various purposes of the state; the tools that public law uses to contribute to these purposes; how public law evolves; and the future of public law in a post-Westphalian world\n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Regulatory Foundations of Public Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6245V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will give students a broad understanding of the law relating to the international carriage of passengers by sea. Topics to be covered include formation of contract, regulation of cruise ships, State jurisdiction over crimes\nagainst the person on board a ship, liability for accidents, limitation of liability, the Athens Convention 1974/1990, and conflict of laws/jurisdictional issues relating to passenger claims. This module will be useful for those who\nare intending to: practice law in a broadly focussed shipping practice; work within the cruise and ferry industry; or otherwise are likely to deal with passengers and/or their claims.", + "title": "International Carriage of Passengers by Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a survey course of topics that include: international sales contract; international trade law; and international investment law. It covers the basic principles of private and public international law that are fundamental\nto the creation of the framework within which business transactions take place. It will also cover the topic of the relationships among international business transactions, globalization and economic development.", + "title": "International Economic Law & Globalisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6247V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine at an advanced level the rights and duties of company shareholders. In doing so the course will critically examine, from a comparative\nperspective, the division of power between the various organs of the modern company and the underlying policy of the law with regard to shareholders rights. The course will also key in on topical issues such as the effectiveness\nof shareholders\u2019 rights, enabling v mandatory theories of shareholders\u2019 rights, the statutory derivative action and its effectiveness and the role of the company in shareholder litigation. Finally, it will look at international developments including institutional shareholder activism.", + "title": "Shareholders' Rights & Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course concentrates on the principles of equity financing in the private and public markets, including the relevant company law rules (eg pre-emption rules), capital market regulation as far as it affects the issues of raising equity finance for public companies, private equity and its regulation, and change of control transactions.", + "title": "Principles of Equity Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the jus in bello \u2013 the law which regulates the conduct of hostilities once the decision to resort to force has been taken. This course will deal with fundamental concepts of the jus in bello, focusing on customary international law. Basic legal concepts that will be discussed include State and individual responsibility, the distinction between combatants and civilians, and the principle of proportionality. The course will also examine topics such as weaponry, international and noninternational conflicts, and the enforcement of the law in situations of conflict.\n\nNote: This course does not deal with the jus ad bellum, or the rules relating to the general prohibition on the use of force in international law.", + "title": "International Humanitarian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Humanitarian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6251V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will develop your understanding of EU law and politics as well as your capacity critically to evaluate the institutional, substantive and constitutional dimensions of European integration. It will consider the nature of the EU as well as the challenges it presents to its Member States. \n\nThe course will provide an overview of the judicial architecture and political structures of the European Union, the authority of EU law, law-making procedures, and the most significant case law in free movement, citizenship, and fundamental rights. It will also introduce more complex questions about the dynamics and direction of the process of regional integration, particularly since the Euro crisis.", + "title": "The EU and its Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Treaties are a principal source of obligation in international law. In this era of globalization, many state and individual activities in many countries are direct results of treaty obligations. In this sense, treaties are the \u201coverworked workhorses\u201d of the global legal order.\n\nDespite this significant impact on our lives, few of us understand what treaties truly mean and what kinds of implications they bring to international relations, our businesses, and private lives. In order to understand the treaty mechanisms, this course covers various aspects of the law of treaties.", + "title": "The Law of Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6253V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the changing role of developing countries in a changing international order. It does so by adopting an approach that combines history, theory, and doctrine. The course will examine the historical origins of the contemporary international legal system, and the theoretical debates that have accompanied its evolution, focusing in particular on relations between the Western and non-Western worlds. It will then examine selected topics of international law that are of current significancethese may include international human rights law, the law relating to the use of force, the international law of trade and foreign investment.", + "title": "Developing States in a Changing World Order", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6254V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary focus of the course will be given to the multilateral rules and cases of trade remedies under WTO jurisprudence. In parallel, domestic trade remedy rules and regulations and policies of China, Korea and Japan will be examined to analyze application of WTO rules to domestic jurisprudence and policies. What are the common characteristics and differences among those rules and policies? Are they consistent with WTO jurisprudence? Which agencies are in charge of trade remedy system and policy making and implementations? What is the best strategy for enterprises to respond to such policies? Answers to these key questions are given through lectures, presentations, and discussions.", + "title": "Trade Remedy Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6255V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Constitutional government in the modern era has developed different organisational and functional models, that draw their inspiration from some main principles (eg. Separation of powers, checks and balances, limited government, democratic accountability) that are distinguishing features of the same type of state. The module will consequently highlight the different forms of (presidential, semi-presidential, parliamentary) government, as experienced by the states belonging to both the common law and the civil law legal traditions. Reference will be made also to forms of constitutional government based on territorial division of powers, such as federal systems and supranational organisations such as the Europe Union.", + "title": "Comparative Constitutional Government", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar deals with ongoing research in the area of financial intermediary supervision, corporate governance and capital markets regulation. Each participant will have to 1) read the discussed papers in advance; 2) write a 10 page commentary on one of the discussed papers and present it in class; 3) comment upon one presentation by a fellow student; and 4) actively participate in the discussion throughout the seminar.", + "title": "Law & Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of key personal property concepts. Topics to be studied will include: types of personal property; personal property entitlements recognised at common law, notably, possession, ownership, title and general and special property, with some reference also to equitable entitlements; the transfer of such entitlements; the conflict between competing entitlements; the protection given by law to such entitlements; the assignment of things in action; security interests over personal property.", + "title": "Personal Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6258V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in alternative investment from both a practical and theoretical perspective. The topics that will be covered include private equity, venture capital, hedge funds, crowdfunding and REITs. The course will discuss selected partnership and corporate issues of alternative investment vehicles. The course will focus on China and will provide relevant comparisons on alternative investment in Singapore, the U.K. and the U.S.", + "title": "Alternative Investments", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6259AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in alternative investment from both a practical and theoretical perspective. The topics that will be covered include private equity, venture capital, hedge funds, crowdfunding and REITs. The course will discuss selected partnership and corporate issues of alternative investment vehicles. The course will focus on China and will provide relevant comparisons on alternative investment in Singapore, the U.K. and the U.S.", + "title": "Alternative Investments", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6259V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the fundamental legal concepts and principles relating to Chinese commercial law. Topics to be covered include: basic principles of PRC civil and commercial law, contracts, business associations and investment vehicles, secured transaction, negotiable instruments, taxation and dispute resolution. It will highlight key legal considerations in carrying out commercial transactions in China. Where applicable, the course will provide relevant comparisons with similar laws in other jurisdictions such as the U.S., the U.K. and Singapore.", + "title": "Chinese Commercial Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6260V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Taken concurrently with \u201cCrossing Borders\u201d but with an emphasis on experiential learning, this module offers students the opportunity to explore the legal issues affecting migrant workers, both in the classroom and through externships and case work. Students will spend most of their time outside of class, gaining practical experience by first interning at the Ministry of Manpower over the holidays and then, during the semester, volunteering an average of 10 hours weekly with either Justice Without Borders (JWB) or the NUS-HOME Theft Project (\u201cTheft Project\u201d). In class, using peer learning, including roundtable case review, students will hone their legal skills while examining the legal framework governing Singapore\u2019s foreign workers. Analysing their externship experiences, students will explore the relationship between law on the books and law in action.", + "title": "Employment Law & Migrant Workers Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6261V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines in interaction between IPRs and competition policy\nfrom two broad perspectives: the endogenous operation of competition policy\nfrom within IPR frameworks (copyright, designs, trade marks and patents),\nand the exogenous limitations placed by competition law rules on an IP\nholder\u2019s freedom to exploit his IPRs. Students enrolled in this module are\nexpected to have completed a basic intellectual property module \u2013 an\nunderstanding of what IPRs protect, the nature of the exclusive rights they\nconfer and how they may be exploited will be presumed.", + "title": "Intellectual Property Rights and Competition Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6263V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the fundamentals of how lawyers \"architect\" deals. It is taught in two parts. \nThe first examines the unique role of the transactional lawyer and asks the questions: What is a \"deal\"? What do transactional or \"deal\" lawyers do? What is the perceived \u201cvalue\u201d of what transactional lawyers do? How can lawyers successfully design and structure a transaction? \nThe second explores in detail the elements of a theory or framework of \u201cprivate orderings\u201d. The framework covers the economic and business considerations that drive the analysis of which legal principles should apply and how risks and benefits are allocated between the parties. The course explores how the framework of private orderings can apply to guide the assessment of transactions and the choice of contracting constructs and regimes.", + "title": "Architecting Deals: A Framework of Private Orderings", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6267V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course facilitates an in-depth understanding of the structure, goals, and nature of private law remedies. An emphasis is placed on the role of remedies within the broader structure of private law, and the question of what, if anything, remedies tell us about the substantive law.\n\nThe course ranges across a variety of substantive private law fields, examining remedies arising from contracts, torts, equity, and other sources of obligations. It will introduce students to basic organising private law concepts such as rights, duties, wrongs, loss, and gain, and the various remedial goals of compensation, vindication, disgorgement, restitution, and punishment.", + "title": "Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course facilitates an in-depth understanding of the structure, goals, and nature of private law remedies. An emphasis is placed on the role of remedies within the broader structure of private law, and the question of what, if anything, remedies tell us about the substantive law.\n\nThe course ranges across a variety of substantive private law fields, examining remedies arising from contracts, torts, equity, and other sources of obligations. It will introduce students to basic organising private law concepts such as rights, duties, wrongs, loss, and gain, and the various remedial goals of compensation, vindication, disgorgement, restitution, and punishment.", + "title": "Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6268V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Privacy may in some cases conflict with intellectual property but in other cases the two may go hand in hand and in addition other rights in personal information may further blur and complexity the boundaries. This module will explore the relationships between privacy, intellectual property and other rights in personal information in a range of contexts across different jurisdictions in an effort to explain and evaluate the current legal position, the various debates and proposals for improvements in the law.", + "title": "Privacy and Intellectual Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course examines the international legal protection of women\u2019s human rights within a framework of international law and feminist legal theories. The course will focus upon the United Nations Convention on the Elimination of All Forms of Discrimination Against Women, 1979 to which Singapore became a party in 1995 and the work of the CEDAW Committee in monitoring and implementing the Convention. The impact of certain conceptual assumptions within international law, and human rights law in particular, that militates against the Adequate protection of women's rights will be considered. After an examination of the general framework, more detailed attention will be given to certain topics including health and reproductive rights, women\u2019s right to education violence against women, including in armed conflict, political participation and trafficking. The course will finally consider the question of whether international human rights law is an appropriate vehicle for the furtherance of women's interests.", + "title": "International Human Rights of Women", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores and contrasts the different methodologies inherent in the disciplinary approaches of legal and policy analysis. What are the biases and assumptions in each method of analysis? How does each method view the other? How is each approach relevant to the other in different practical situations, e.g. in legal advice, court arguments and judgments and in government policy formulation.", + "title": "Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the wake of the Global Financial Crisis (GFC) of 2008, the visibility of finance and financial regulation has increased dramatically. This subject will provide an overview of the global financial system and international efforts to build\nstructures to support its proper functioning. Taking an integrative approach, the subject will look at the evolution of the global financial system, its structure and regulation. In doing so, the subject will analyse financial crises, especially\nthe GFC, and responses thereto, the Basel Committee on Banking Supervision (BCBS), the Financial Stability Board (FSB) and the International Monetary Fund (IMF). The approach will be international and comparative, with a focus on major jurisdictions in the global financial system, and will not focus on any single jurisdiction.", + "title": "International Financial System: Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course deals on a comparative legal basis (US-, EU and Swiss law) with problems related to:\nI. How to coordinate economic activities?\nII. Implementation of a competition system\n1) Competition? Private restrictions to competition and what states can do against it?\n2) The substantive EU- and Swiss-provisions\n\u2013 against agreements restricting competition and abuse of market power\n\u2013 on merger control\n\u2013 on sanctions and leniency programs\n\u2013 Discussion of leading cases\n3) State aids; public and private enforcement\nIII. Correcting the competition system\nPlanned sectors, consumer protection, price controlling\nIV. Controversial questions, the \u201emore economic\napproach\u201c? Efficiency and individual freedom to compete? Global competition?", + "title": "European & International Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6273", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Worldwide, governments are increasingly relying on broad-based consumption taxes, such as the GSTs in Singapore, Malaysia, New Zealand and Australia and the VAT in Europe, to raise revenue. This course will introduce students to theories of comparative tax law and consumption taxation and to key GST law and policy concepts. With these theoretical, conceptual and legal tool kits, we will then explore the complex but fascinating legal and policy issues relating to cross-border trade in goods and services (such as professionals providing services to clients across borders and global digital trade), financial services and real property transactions.", + "title": "Comparative GST Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International organizations play an increasingly important role in the international community. While the state continues to be the supreme form of political organization, international organizations, such as the UN, the WTO, the IMF, the World Bank, the ASEAN, the EU and NATO, are indispensable to cope with globalization and increasing interdependence. The main objective of this course is to familiarize students with the fundamental rules of international institutional law \u2013 that is the body of rules governing the legal status, structure and functioning of international organizations.", + "title": "International Institutional Law:", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6275", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Contract Law invites students to examine some interesting and controversial topics from this foundational subject. Some topics will build on what students already know in their first-year/basic contract law course (e.g. how does contract law deal with change of circumstances?), some will cover new ground (e.g. the role of good faith in contract law). You will be able to write a paper on a topic of particular interest to you. The course also complements the module Advanced Tort Law and Philosophical Foundations of Contract Law.", + "title": "Advanced Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6276", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the tools necessary for students to develop and reflect critically upon contemporary ethical and legal issues in medicine and the biosciences. Its substantive content includes and introduction to medical\nethics and medical law, health care in Singapore (presented comparatively with select jurisdictions, such as the UK and the USA), and professional regulation. The following key areas will be considered:\n- Professional regulation and good governance of medicines;\n- Genetics and reproductive technologies (including abortion and pre-natal harm);\n- Mental health;\n- Regulation of Human Biomedical Research;\n- Innovative treatment and clinical research;\n- Infectious Diseases;\n- Organ transplantation; and\n- End-of-life concerns (e.g. advance care plan and advance directive, discontinuation of life sustaining treatment, etc.).", + "title": "Medical Law and Ethics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6277V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Alongside the European Union the Asia-Pacific is becoming the central arena for trade and investment and its contestation within the world today. This module examines the global, regional and bilateral frameworks governing trade, investment, competition and migration across this region. It has three components. The first looks at how different organisations and regimes \u2013 the WTO, ASEAN, ASEAN Plus Agreements, BITS, NAFTA and Closer Economic Relations \u2013 interact to govern the region and the attempts to reform this, most notably through the TransPacific Partnership Process. The second looks at the detailed laws and processes governing trade in goods and services and investment. The final section looks at a number of further key policies: intellectual property, competition, the professions, and migration.", + "title": "Trade and Investment Law in the Asia-Pacific", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6278V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the conceptual foundation of access to justice and the practical challenges it raises in formal systems of dispute resolution. Using a Research Seminar structure, the module integrates academic analysis with experiential learning by providing students with opportunities to produce and critique original research on themes emerging from student internships and pro bono experiences.", + "title": "Access to Justice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6279V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Companies are both the victims of and vehicles for crime. This module examines both aspects. The first aspect covers crimes against the company by management \u2013 criminal breach of trust, dishonest misappropriation of property, breaches of fiduciary duty, misuse of corporate information. The second aspect will deal with using companies as vehicles for crime \u2013 cheating, money-laundering. Corruption cuts across both aspects. The statutes covered will be the Companies Act; Corruption, Drug Trafficking and Other Serious Crimes (Confiscation of Benefits Act); Penal Code; and Prevention of Corruption Act. Students must have a firm grounding in both Criminal Law and Company Law.", + "title": "Crime and Companies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6280V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module acquaints the students with the laws and principles relating to the civil litigation process. The three distinct stages, namely, pre-commencement of action, pre-trial and post-trial are discussed in detail. The overriding aims of the civil justice system will also be deliberated. This will enable the students to better understand and appreciate the rationale of the application of the provisions of the rules of court. In this regard, the students will be able to make a case on behalf of their clients or against their opponents when the perennial issue of non-compliance with procedural rules takes centre stage. This module is designed to prepare the students to practise law in Singapore. Hence, the focus will primarily be on the Singapore Rules of Court and the decisions from the Singapore courts.", + "title": "Civil Procedure", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6281V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary focus of this module is on the variety of commercial dispute resolution processes available to contracting parties and the essential principles and issues pertinent to these different processes. The overriding aims are to acquaint the students with the characteristics of each of these processes, to highlight the governing principles and to discuss the perennial and emerging issues relating to this aspect of the law. Students who have undertaken this module will be able to consider the plethora of options available to them when drafting dispute resolution clauses and/or providing legal advice and representation when a dispute has arisen.", + "title": "Resolution of Transnational Commercial Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6282V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advancements in computer science have made it possible to deploy information technology to address legal problems. Improved legal searches, fraud detection, electronic discovery, digital rights management, and automated takedowns are only the beginning. We are beginning to see natural language processing, machine learning and data mining technologies deployed in contract formation, electronic surveillance, autonomous machines and even decision making. This course examines the basis behind these technologies, deploys them in basic scenarios, studies the reasons for their acceptance or rejection, and analyses them for their benefits, limitations and dangers.", + "title": "Artificial Intelligence, Information Science & Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6283V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the relevance of Confucianism to law, which includes three eras, namely: (1) Confucian legal theory and Confucian legal tradition; (2) the relevance of Confucianism to different aspects of national legal issues in contemporary East Asia (China, Japan, South Korea, Singapore, and Vietnam), such as human rights, rule of law, democracy, constitutional review, mediation, and family law; and (3) the relevance of Confucianism to international law. It will be of interest to those interested in Confucian legal tradition, customary law, Asian law, law and culture, legal theory, and legal pluralism.", + "title": "Confucianism and Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6284", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will explore key legal questions related to\ninternational dispute settlement with a view to providing a\nbroad overview of the field with respect to State-to-State,\nInvestor-State, and commercial disputes. This course will\ninclude a discussion of the various types of international\ndisputes and settlement mechanisms available for their\nresolution. It will explore the law pertaining to dispute\nsettlement before the ICJ, WTO, ITLOS, as well as\ninternational arbitration, both Investor-State arbitration and\ncommercial arbitration. The course will compare these\ndifferent legal processes on issues such as jurisdiction,\nprovisional remedies/measures, equal treatment,\nevidence, and enforcement.", + "title": "International Dispute Settlement", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6285V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "While terrorism is not a new phenomenon, the sheer scale and transnational nature of that practice in recent years have challenged some of the core tenets of international law. This seminar investigates the role that international law can play, along with its shortcomings, in suppressing and preventing terrorism. It examines the manner in which terrorism and counterterrorism laws and policies have affected the scope and application of diverse international legal regimes including UN collective security, inter-State use of force, the law of international responsibility, international human rights, international humanitarian law, and international criminal law.", + "title": "Transnational Terrorism and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6286V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines ASEAN\u2019s ongoing metamorphosis into a rules-based, tri-pillared (political-security, economic, and socio-cultural) Community pursuant to the mandate of the 2007 ASEAN Charter. It deals primarily with Law but is also attentive to the Non Law and Quasi Law aspects inherent in ASEAN\u2019s character as an international actor and regional organisation; its purposes and principles; and its operational modalities, processes, and institutions. \n \nStudents will grasp the complexities of ASEAN\u2019s conversion to the rule of law and rule of institutions within the context of international law and its frameworks; national competences and jurisdiction; and regional relations and realpolitik.", + "title": "ASEAN Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6287V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies European Union business regulation and how this affects both the EU and other markets. It has three components. The first looks at the types of business regulation deployed. It will include legislative harmonisation,\nprivate standardisation, mutual recognition and regulatory agencies. The second looks at the regulation of key industrial and service sectors, such as food, automobiles, pharmaceuticals, energy chemicals or financial services. The third looks at how EU business regulation interacts with non EU markets, through studying its commercial policy, free trade agreements and extraterritorial jurisdiction.", + "title": "Business, International Commerce and the European Union", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6288V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module has three distinctive features. First, it compares international commercial arbitration (ICA) international investment arbitration (ISA). Second, it focuses on the evolution of arbitration, in particular, on the development of the procedures and substantive law that have gradually enabled arbitration to become a meaningfully autonomous legal system. Third, it surveys a variety of explanations for why the arbitral order has evolved as it has \u2013 into a more \u201cjudicial-like\u201d legal order \u2013 focusing on the role of arbitral centres, state regulatory competition, and the reasoning of tribunals in their awards.", + "title": "The Evolution of International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6289V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The seminar is designed to prepare students to undertake original, primary research in law. Major topics and questions to be covered include:\n- how to write a good literature review and prospectus;\n- why one must have a method, or, how are \u201cmethods\u201d and\n\u201cdata collection\u201d related?;\n- what is research design?;\n- how to avoid, or manage, the problem of \u201cselection bias.\u201d\n\nA major component of the seminar, students will assess a variety of published papers, as well as research projects presented by the faculty.", + "title": "Legal Research: Method & Design", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6290V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The class will survey approaches to understanding legal pluralism in a range of settings, focusing on the various ways in which autonomous normative orders, including systems of law, interact with one another. Topics include: how \u201coutsider\u201d groups (e.g., Mayan Indians in Mexico, Roma-Gypsy communities, merchant guilds) govern themselves while resisting submission to the state law; the tensions between custom, state law, and human rights in Asia after the colonialist period; and the ways in which the pluralist structure of international treaty law and organization are transforming law and courts at the national level.", + "title": "Legal Pluralism and Global Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The class will survey approaches to understanding legal pluralism in a range of settings, focusing on the various ways in which autonomous normative orders, including systems of law, interact with one another. Topics include: how \u201coutsider\u201d groups (e.g., Mayan Indians in Mexico, Roma-Gypsy communities, merchant guilds) govern themselves while resisting submission to the state law; the tensions between custom, state law, and human rights in Asia after the colonialist period; and the ways in which the pluralist structure of international treaty law and organization are transforming law and courts at the national level.", + "title": "Legal Pluralism and Global Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6291V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The law governing the responsibility of States for internationally wrongful acts is absolutely central in public international law and cuts across various sub-fields of that discipline. This seminar investigates the fundamental tenets of the law of State responsibility, both from theoretical and practical standpoints, while tracing some of its historical roots. More broadly, the seminar will provide\nan overview of different doctrines of State responsibility and different theories and approaches to liability under international law. More importantly, the later sessions of the seminar will engage critically with the role that the law\nof State responsibility can play in specific areas.", + "title": "State Responsibility: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6292V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on the instances in which resort to conflict of laws is necessary in the international arbitration context. The objective of this course is to allow participants to realise on how many occasions both State courts and arbitrators will need to report a conflict of laws analysis despite the claim that conflict of laws issues are not relevant in the international commercial arbitration context. Participants will first be taught to identify what conflict of laws rules may apply and will then be given hypothetical cases and will be asked to critically examine whether a solution can be found that does not require a conflict of laws approach.", + "title": "Conflict of Laws in Int\u2019l Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6295", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Does copying always harm creativity? Can innovation\nthrive in the face of imitiation? These questions are at the\nheart of intellectual property theory and doctrine. This\ncourse explores these issues via a close look at a range of\nunusual creative industries, including fashion, cuisine,\nsports, comedy, and tattoos, as well as more traditional\nintellectual property topics, such as music and film.", + "title": "Imitation, Innovation and Intellectual Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6296", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modern corporations draw funding to finance their\nconsumption and investment needs from a variety of\nsources on the basis of extensive cost- benefit\nconsiderations. These include a multitude of factors, such\nas legal considerations, the quantity of funding required\nand cost of capital depending on its source, and impact on\nshareholders and management etc. Corporations may also\nobtain finance by either levering existing assets or\nresorting to unsecured bank lending or bond issues. For\nthe biggest corporations the most important source of\nfinance tends to be the capital markets. These normally\ncomprise the debt and equity markets through which public\ncompanies can offer securities to investors or to transfer\nthe control of the company to new owners in the context of\nan agreed takeover, a hostile take-over bid, or of a private\nequity transaction.\nThis course aims to develop a critical understanding of the\nsubject matter through the combined study of finance\ntheory, corporate law, capital market regulation and the\ncorporate market dynamics, with a special focus on the\ndifferent stakeholders involved in corporate finance. The\nmodule will focus on critical corporate finance issues such\nas: the use of debt and equity; why merge or acquire a\nbusiness; core considerations of the process; purchase\nsale agreements and contractual governance; the role of\nthe board of directors in an acquisition/financing\ntransaction; the permissibility and regulation of takeover\ndefenses in the UK, the US and the EU. It will also discuss\ncross-border IPOS, the problem of market abuse, theory\nand practice of corporate takeovers and their regulation,\nand issues pertinent to private equity transactions, as well\npractical issues relating to structuring corporate acquisition\ndeals and attendant legal documentation. NB: While there\nis inevitably reference to scores of economic concepts and\nsome finance readings the course is specifically addressed\nto law students it is non-mathematical.", + "title": "Practice of Corporate Finance and the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6297", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is the foundation course in international finance. It is meant for all who want to gain a better understanding of what is happening and concerns primarily (a) the way money is recycled through the banking system or the\ncapital market, (b) the products and conduct of the banking, securities and investment industry in this recycling activity, (c) the risks that are taken in the financial services industry (primarily by commercial and investment banks in their different functions) and the tools of risk management, (d) the operation of the financial markets and their infrastructure, (e) the type of regulation of commercial banks and of the intermediaries and issuers in the capital markets, and (f) the objectives, role, shape and effectiveness of this regulation. In this connection, the course will also deal with the smooth operation of payment systems.\n\nFinancial risk and its management is an important theme and the major concern in the course. What can commercial or investment banks and financial regulation achieve in this regard, how is risk management structured, and what academic or other (political) models are used in this connection, how effective are they, e.g. in the capital adequacy and liquidity requirements, and what can or must governments and/or central banks or other regulators do when all fails and financial crises occur? From a legal point of view, an important aspect is the strong public policy undercurrents in the applicable law.\n\nThat is obvious in regulation but may also impact on private law. Another important issuer is that the law applicable to financial products and their regulation is ever more transnationalised and expressed at the international level, especially in terms of transactional and payment finality, financial stability, and even banking resolution facilities or international safety nets. In these circumstances, choice of national laws in the older private international law approach often mean little and it will be discussed how they may fall seriously short especially in in matters of regulatory oversight and bankruptcy situations.", + "title": "International Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6298", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course is designed for students and\npractitioners already acquainted with the fundamentals of\ninternational arbitration, and may be particularly useful for\nthose who may have an inclination to specialize in the\npractice or study of international dispute resolution. Focus\nwill be placed on topics of practical and academic interest\nin all aspects of the international arbitration process,\nlooking in particular to recent trends and evolutions in the\nfield of international dispute settlement.\nThrough seminar discussions, student presentations and\nmoot court sessions, this course will expose students to\ncontemporary controversies in the field of international\ncommercial and investment arbitration. An international\napproach will be adopted in relation to the subjects\nconsidered: students can expect to review a substantial\namount of comparative law sources, including academic\ncommentaries and jurisprudence from France, Singapore,\nSwitzerland, the United Kingdom and the United States, as\nwell as public international law sources and international\narbitral practice.", + "title": "Advanced Issues in the Law & Practice of Int\u2019l Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6299", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will consider the particular and unique issues\nthat the ubiquitous use of the internet for commerce,\neducation and communication has created for copyright\ncreators and users. In particular, it will address the\nincreasingly visual medium of social media and how user\npractices are challenging the boundaries of copyright law. It\nwill consider copyright infringement, fair dealing, personal\nand professional uses and the interaction between\ncopyright, contract and consent.", + "title": "Copyright in the Internet Age", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6300", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides a grounding in the international and\ntheoretical background to the constitutional protection of\nsocial rights; the substantive approach taken by courts to\nvarious social rights, and the interaction between social\nrights in various claims to equality and protection on the\npart of vulnerable groups. The topics covered in the class\nare thus:\n(1) theoretical debates on the nature of social rights,\nand the theoretical underpinnings for their\nrecognition qua rights;\n(2) international human rights law instruments\nrecognising social rights, and international human\nrights understandings of such rights;\n(3) constitutional debates about the capacity and\nlegitimacy of courts enforcing such rights, and\nparticular debates over concepts such as (a)\nweak-versus strong-form review, and (b) notions of\na \u2018minimum core\u2019 to social rights; and\n(4) the actual interpretation of enforcement of key\nsocial rights by courts, with a particular focus on\nthe right to housing, health care, water, food and\nsocial welfare and social security\n(5) questions of gender, poverty and social rights\n(6) the rights of children in relation to social rights\n(7) the rights of non-citizens", + "title": "Topics in Constitutional Law: Socio-Economic Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce to students topical and current issues of interest in the regulation of international financial markets, with a focus on global capital and investment markets. The regulation of investment firms and funds reached a new high with mainly European leadership in regulatory standards and many of these are influential globally. We aim to cover theoretical foundations in regulation, so that students can grasp the law and economic theories and public policy underpinnings of financial regulation, and specific topics that relate to securities and investment regulation. The approach to specific topics would be grounded in theoretical and policy understanding, in order to appreciate the high key highlights of regulatory duties, compliance implications and enforcement.", + "title": "Int'l Regulation of Finance & Investment Markets", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce to students topical and current issues of interest in the regulation of international financial markets, with a focus on global capital and investment markets. The regulation of investment firms and funds reached a new high with mainly European leadership in regulatory standards and many of these are influential globally. We aim to cover theoretical foundations in regulation, so that students can grasp the law and economic theories and public policy underpinnings of financial regulation, and specific topics that relate to securities and investment regulation. The approach to specific topics would be grounded in theoretical and policy understanding, in order to appreciate the high key highlights of regulatory duties, compliance implications and enforcement.", + "title": "Int'l Regulation of Finance & Investment Markets", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6302V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the complex interactions between\nliterature and the law. Even though the two disciplines may\nseem distinct, both law and literature are products of\nlanguage and have overlapped in significant and\ninteresting ways in history. Why do legal themes recur in\nfiction, and what kinds of literary structures underpin legal\nargumentation? How do novelists and playwrights imagine\nthe law, and how do lawyers and judges interpret literary\nworks? Could literature have legal subtexts, and could\nlegal documents be re-interpreted as literary texts? We will\nthink through these questions by juxtaposing fiction,\ndrama, legal cases, and critical theory.", + "title": "Law and Literature", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an interdisciplinary course that invites students to inhabit the field of law and literature by engaging closely with a key topic. Our seminar begins with a broad introduction to the field and related interdisciplinary scholarship, before delving into the focal thematic through close readings of legal and literary texts. This year, we address the question of authorship and its relationship with the law of copyright and intellectual property. Students would become familiar with a constellation of theoretical and historical perspectives from which to rethink our received understandings of authorship, including copyright\u2019s treatment of books, publishers, and authors.", + "title": "Law and Literature", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6303V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the principal problems for the\ntheory and practice of comparative constitutional law,\ngenerally and in the globalizing conditions of the early 21st\ncentury. In doing so, it will range widely over countries and\nconstitutional systems and examine the challenges\npresented by differences in context and culture. The\nconclusions about methodology in the early classes will be\ntested in later ones by reference to a series of topical\nsubstantive issues in constitutional law in Asia and\nelsewhere, ranging from institutional design to rights\nprotection.", + "title": "Global Comparative Constitutional Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course anlayzes connections between human rights\nand intellectual property. While these bodies of law\ndeveloped on separate tracks, the relationship between\nthem has now captured the attention of government\nofficials, judges, civil society groups, legal scholars and\ninternational agencies, including the World Intellectual\nProperty Organization, the United Nations Human Rights\nCouncil, the Committee on Economic, Social and Cultural\nRights, and the Food and Agriculture Organization.\nThe course will be of interest to those interested in\nintellectual property and/or human rights.", + "title": "IP and Human Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on laws governing banks and the other financial intermediaries in China, reflecting the game between regulation and financial innovation. It will be divided into three parts: the first and also the most the essential one will cover the legal requirements of operation and business of traditional commercial banks; the second one will go through the corporate governance of banks, problem bank resolution and currency issues; the last part will discuss the legal issues of new financial products and non-bank financial institutions. This course focuses on the emerging issues in China of that subject, and also pay particular attention to recent legislative reform efforts in China on banking and non-bank financial institutions and will consider both the developments and innovation in scholarship and teaching of financial law since 2008.", + "title": "Chinese Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on laws governing banks and the other financial intermediaries in China, reflecting the game between regulation and financial innovation. It will be divided into three parts: the first and also the most the essential one will cover the legal requirements of operation and business of traditional commercial banks; the second one will go through the corporate governance of banks, problem bank resolution and currency issues; the last part will discuss the legal issues of new financial products and non-bank financial institutions. This course focuses on the emerging issues in China of that subject, and also pay particular attention to recent legislative reform efforts in China on banking and non-bank financial institutions and will consider both the developments and innovation in scholarship and teaching of financial law since 2008.", + "title": "Chinese Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6306V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The European Union plays an increasing role in the\nregulation of international shipping and any shipping\ncompany wishing to do business in Europe will have to\ntake this into consideration. The module will take on\nvarious aspects of this regulation and will place the EU\nrules in the context of international maritime law. To\nensure a common basis for understanding the EU maritime\nlaw, the basic structure and principles of the EU and EU\nlaw will be explained at the outset.", + "title": "EU Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law is a behavioural system. Most law seeks to regulate, incentivize and nudge people to behave in some ways and not in others \u2013 it seeks to shape human behavior. Traditional economic analysis of law is committed to the assumption that people are fully rational, but empirical evidence suggests that people very often exhibit bounded rationality, bounded self-interest, and bounded willpower. This course about behavioural law and economics, with an emphasis on regulation, looks at the implications of actual, not hypothesized, human behaviour for the law. It considers, in particular, how using the mildest forms of interventions, law can steer people\u2019s choices in welfarepromoting\ndirections.", + "title": "Behavioural Economics, Law & Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6308V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to set out the practical realities of dispute resolution in Asia and aims to make students step into the shoes of lawyers and understand how to tackle and strategize real disputes. The course covers topics related to jurisdiction, interim relief, defence and guerrilla tactics, issue estoppel, choice of remedies and dealing with a State in relation to investment treaty disputes to give students a real life understanding of the issues which arise in international disputes. In the context of the substantive issues, the students would also go through facets of the New York Convention and a comparative analysis of the laws of Singapore, England & Wales, India and Hong Kong.", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6309", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to set out the practical realities of dispute resolution in Asia and aims to make students step into the shoes of lawyers and understand how to tackle and strategize real disputes. The course covers topics related to jurisdiction, interim relief, defence and guerrilla tactics, issue estoppel, choice of remedies and dealing with a State in relation to investment treaty disputes to give students a real life understanding of the issues which arise in international disputes. In the context of the substantive issues, the students would also go through facets of the New York Convention and a comparative analysis of the laws of Singapore, England & Wales, India and Hong Kong.", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6309V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar-style module critically examines the impact of international organisations on the formal structures of international law. Do international organisations create and enforce international law? What type of norm-creating activity takes place inside and across international organisations? Does the reality of global governance give rise to concerns about legitimacy or accountability? What are the legal and policy responses to such concerns? Case studies used will range from traditional institutions such as the UN and its specialised agencies, to newer institutions such as the Financial Action Task Force and the Global Fund to Fight AIDS, Tuberculosis and Malaria.", + "title": "International Organisations in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6310V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will offer an historical and comparative focus\non Islamic family law. It will begin by providing a basic\noverview of Islamic law generally and then turn to examine\nIslamic family law specifically. It will then cover major\ntopics that arise in Islamic family law under the classical\nIslamic legal tradition. It will conclude by exploring how\nmany of those issues arise in some modern contexts, as\nIslamic family law is applied both inside and outside of the\nMuslim world.", + "title": "Islamic Law and the Family", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The past two decades have witnessed the emergence of\nnew forms of international organizations (e.g. Basel\nCommittee) alongside traditional organizations (e.g. WTO).\nThese new organizations challenge the traditional premises\nof international law. Moreover, international organizations\nincreasingly issue rules that impact people around the world,\nyet they largely operate within a legal void and go\nunchecked. In view of these challenges, a new legal school\nof thought is emerging that seeks to set more legal\nconstraints and that introduces institutional reforms, such as\nthe growing inclusion of Asian countries in international\norganizations. We will explore these issues.", + "title": "The Law of Global Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6312V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6313", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recent years have witnessed more state-to-state and investor-state disputes, with a substantial increase in resources spent on binding arbitration. Mediation and conciliation are rarely attempted and more rarely successful. This course introduces the student to methods of mediation and conciliation on the international law plane, and surveys existing institutional regimes (ie, ICSID,\nPCA, SIAC). The focus will then turn to identification and critical analysis of the special legal and policy obstacles to voluntary dispute settlement by states (including SOEs), as well as countervailing incentives. The scope is international, with some readings devoted to Asia. Students will study and critique precedents, and conduct basic mediation/conciliation exercises.", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6313V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in private equity and venture capital from both practical and theoretical perspectives. The topics that will be covered explore the laws and practices relating to the whole cycle of the venture capital and private equity, including fundraising, investments, exits, foreign investments and regulation. The course will also discuss equity crowdfunding which is an important emerging method of equity financing. Certain topics of this course will provide relevant comparisons with private equity and venture capital in China, Singapore and the U.S. It will be of interest to legal professionals in the private equity and venture capital sectors.", + "title": "Private Equity and Venture Capital: Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6314V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the law of restitution for unjust enrichment. In particular, it is concerned with when a defendant may be compelled to make restitution to a claimant, because the defendant has been unjustly enriched at the claimant\u2019s expense. It does not cover all of the law relating to gain-based remedies.", + "title": "Restitution of Unjust Enrichment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6316V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will give the students an in-depth look at how cases proceed under the SIAC, HKIAC and MCIA rules, with some comparative coverage of the CIETAC and KLRCA rules. Highlighted will be the salient features of these arbitral institutional rules including the introduction of cutting edge procedures such as the emergency arbitrator and expedited arbitration procedures and consolidation/joinder. The course will also provide a comparative analysis of the arbitral legislative framework in Singapore, Hong Kong and India and offer an in-depth analysis, with case studies, of the role of the courts in Singapore, Hong Kong and India in dealing with specific issues such as challenges to tribunal jurisdiction, enforcement and setting aside of awards. Finally, the course will also look at the peculiar relationship between arbitration and mediation in Asia.", + "title": "International Arbitration in Asian Centres", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6317V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to important topics in public health law and regulation. It explores the use of law as an important tool in protecting the public\u2019s health, responding to health risks and implementing strategies to promote and improve public health. The course reviews the nature and sources of public health law, and regulatory strategies that law can deploy to protect and promote public health. It considers these roles in selected areas within the field: for example, acute public health threats like SARS and pandemic influenza, tobacco control, serious sexually transmitted diseases, and non-communicable diseases such as heart disease, stroke and diabetes.", + "title": "Public Health Law and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6318V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines current problems in international law relating, for instance, to the use of force, human rights, international environmental law and foreign investment law.", + "title": "Current Problems in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6319V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Globally, space-derived products and services combine assets and annual revenues in excess of USD350 billion. The year-on-year growth of the space economy is 9%, three times that of the global economy. This course discusses the international law regulating the use of, and activities in, outer space. It will examine issues such as State responsibility, liability for damage, and environmental protection. It will then debate the law relating to various space sectors such as telecommunications, navigation, military and dual use, resource management, and human spaceflight.", + "title": "International Space Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6320", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Globally, space-derived products and services combine assets and annual revenues in excess of USD350 billion. The year-on-year growth of the space economy is 9%, three times that of the global economy. This course discusses the international law regulating the use of, and activities in, outer space. It will examine issues such as State responsibility, liability for damage, and environmental protection. It will then debate the law relating to various space sectors such as telecommunications, navigation, military and dual use, resource management, and human spaceflight.", + "title": "International Space Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6320V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course applies economic concepts to the practice of structuring business transactions. The materials consist of case studies of actual transactions. We will use those case studies to analyze the economics challenges that parties to a deal must address, and to analyse the mechanisms the parties use to address those challenges. The case studies will cover a selection from bond financings, acquisitions, movie financings, product licenses, biotech alliances, venture capital financings, cross-border joint ventures, private equity investments, corporate reorganizations, and more.", + "title": "Deals: The Economic Structure of Business Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Trade Finance Law considers the different legal structures used to effect payment under, and disincentives breaches of, international agreements for the supply of goods and services. The course analyses and compares documentary and standby letters of credit, international drafts and forfaiting, performance bonds and first demand guarantees and export credit guarantees. Key topics will include the structure, juridical nature and obligational content of the aforementioned instruments; the nature of the harmonised regimes and their interaction with domestic law; the principle of strict compliance and its relaxation; documentary and non-documentary forms of recourse; the autonomy principle and its exceptions; and the conflict of laws principles applicable to autonomous payment undertakings. The course should be of interest to students who have already studied other components of international trade and/or who have an interest in international banking operations.", + "title": "Trade Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Trade Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6322V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a detailed examination of the principles of agency law. Broadly speaking, agency involves one person acting for another. Agents may be of many different kinds spanning different settings and industries. Shop assistants, solicitors, auctioneers, estate agents, are common examples of agents. \nThis course covers both \u2018internal\u2019 and \u2018external\u2019 dimensions of agency. Topics covered include definitions of agency, how agency relationships are created, different types of authority, agency\u2019s application outside contract, and the rights and duties between principal and agent.", + "title": "Law of Agency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a detailed examination of the principles of agency law. Broadly speaking, agency involves one person acting for another. Agents may be of many different kinds spanning different settings and industries. Shop assistants, solicitors, auctioneers, estate agents, are common examples of agents. \nThis course covers both \u2018internal\u2019 and \u2018external\u2019 dimensions of agency. Topics covered include definitions of agency, how agency relationships are created, different types of authority, agency\u2019s application outside contract, and the rights and duties between principal and agent.", + "title": "Law of Agency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6323V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a comparative approach to exploring what is meant by a trade mark, the messages that trade marks communicate and the roles they perform. These are important enquiries because questions of what trade marks do and ought to do have a direct impact on the contours of the law. A major theme will be the relationship between trade marks and brands: to what extent should trade mark law be concerned with protecting brand value? What might a focus on brand value mean for competitors? Is a focus on brand value compatible with the logics of trade mark registration? These questions will be explored by reference to the laws of multiple jurisdictions, most significantly Australia, the EU, Singapore and the USA.", + "title": "Comparative Trade Mark Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Taught by two public international law practitioners, this course invites participants to develop a more practical and strategic understanding of how a State deals with the various types of disputes it may face. Topics covered includes litigation and procedural considerations in inter-State, investor-State, human rights and international criminal disputes, and cross-cutting considerations like national security privileges, immunities, conflicts of public international law. The course will conclude with a seminar where senior practitioners of public international law share their views and insights on acting as a Government advisor and as an advocate.", + "title": "The Int'l Litigation & Procedure of State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the public law system of the United States, with an emphasis on structural issues and governmental processes, especially the creation of regulations and the political and judicial controls over this important activity. Changes resulting from the Trump administration will be an important element.", + "title": "Administrative Justice: Perspectives from the U.S.", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6326", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a practitioner's perspective on the bread and butter of any transactional practice: mergers and acquisitions (M&A) of non-listed, private companies. It will deal with the structuring of an M&A transaction (the why) and the plain vanilla aspects of documentation (the why and how of basic drafting). \n\nMany new graduates seem to be unable to see the wood for the trees. They arrive as trainees, with a reasonable grounding in the law, but an inability to apply it to real life situations. The practicalities elude them and they seem to want to follow templates without much understanding of the transaction. This course will attempt to give them a working knowledge of the issues to be considered in structuring a transaction. It will also cover the main features of standard documentation (bearing in mind that there is a discernible industry-standard set of documentation in common law countries) to explain why documents are drafted the way they are.", + "title": "Mergers and Acquisitions: A Practitioner\u2019s Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6327V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sports Law is a very broad field, encompassing several areas of law unique to the sporting industry, as well as several traditional areas of law applied to the field of sport.This course will focus on the existing and evolving private and public international sports law systems, (where appropriate) the national sports law of several jurisdictions (including Australia, USA, UK and to a lesser extent, Singapore) and provide avenues of multi-jurisdictional comparative analysis. The social, political, commercial and economic influences on the development, content and structure of sports law globally will also be explored.", + "title": "Sports Law & Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6328", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this course is on the litigation of cross-border disputes in the fields of tort, contract, consumer protection and intellectual property including in the online context. The subject will examine the key doctrinal principles and scholarly debates in the area as well as problems commonly encountered in practice. Material will be drawn from leading common law jurisdictions, including Singapore, Australia, England, Hong Kong and Canada. The course is recommended for those with an interest in international dispute resolution, conflict of laws, litigation or international commerce.", + "title": "Cross-Border Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6329", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first part of the course explores how trusts are used to manage family wealth, with emphasis on developments in the \u2018offshore world\u2019. We will discuss how trusts may be used to protect assets, how trustees\u2019 discretions may be controlled, the rights of objects of trusts, and purpose trusts. The second part concerns trusts in commercial transactions. We will explore creditor trusts, constructive trusts, bonds and intermediated holding of securities, equitable assignments and equitable charges. By comparing commercial trusts with private trusts, we will also ask whether there are any significant contextual differences in relation to the trust device.", + "title": "Advanced Trusts Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6330", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the ideal of the rule of law: its value, limitations, costs, and relationship with distinct social aspirations. The teaching is based on leading texts, comparative case law, and video documentaries. The course is divided into nine modules: (1) the meaning and value of the rule of law, (2) emergencies, (3) the relationship(s) between the rule of law, the obligation to obey the law, and the rule of good law, (4) the modern welfare state, (5) criminal law vs. private law, (6) international law, (7) corporations and liberal democracy, (8) colonialism and developmental transitions, and (9) defences for disobedience.", + "title": "The Rule of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The copyright laws of Singapore and the United have in common a general, flexible, open exception designated by the term \u201cfair use.\u201d During the last 25 years, the U.S has had extensive experience with this concept, both in the courts and in fields of practice as diverse as art, filmmaking, education, technology, and journalism. Not only have judicial opinions about fair used cohered into a \u201cunified field theory\u201d of the doctrine, but awareness of its potential applications has increased dramatically among members of relevant communities. The last development has been attributable in part to the development of community-specific Codes of Best Practices for the responsible application of fair use \u2013 an effort in which the instructor for this module has been active. The course will explore the legal background of fair use, its doctrinal evolution over the past 25 years, and a variety of practical situations in which it has been successful employed.", + "title": "Fair Use in Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinical course introduces students to the law, practice, and implementation of international criminal law. Students will learn and examine the content and application of substantive and procedural law on core international crimes\u2014war crimes, crimes against humanity, genocide, and aggression\u2014that attract individual criminal responsibility under international law. As part of the assessment, students will work on research projects in collaboration with the ICRC. Students will be exposed to \u2018real world\u2019 problems and learn the legal knowledge, professional skills, and critical thinking expected of those working in this field. This course will require substantial student initiative, participation and collaboration.", + "title": "International Criminal Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6333", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinical course introduces students to the law, practice, and implementation of international criminal law. Students will learn and examine the content and application of substantive and procedural law on core international crimes\u2014war crimes, crimes against humanity, genocide, and aggression\u2014that attract individual criminal responsibility under international law. As part of the assessment, students will work on research projects in collaboration with the ICRC. Students will be exposed to \u2018real world\u2019 problems and learn the legal knowledge, professional skills, and critical thinking expected of those working in this field. This course will require substantial student initiative, participation and collaboration.", + "title": "International Criminal Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6333V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to increase students\u2019 breadth of empirical knowledge and depth of theoretical understanding of issues of law, justice, and society. With urbanization and industrialization, modern societies have increasingly depended upon law to regulate the behaviour of their members and the activities of their institutions. It will explore issues in law and society in SE Asia, with an emphasis on how sexuality, ethnic and religious diversity are handled, and how justice is conceived; as well as\nissues in the Singaporean justice system, where other examples will be used to compare Singapore\u2019s unique approach to addressing justice and society issues.", + "title": "Law and Society in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6334", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the evolving regime for the regulation and protection of multinational enterprises (MNEs) in international law. Although MNEs remain creations of domestic law, the cross-border activities of MNEs increasingly come within the scope of instruments creating obligations and/or rights in international law. In assessing the challenges faced by states and MNEs alike with respect to such transnational regulation, the module takes a rounded and interdisciplinary view of the issues involved, addressing both the commercial and social dimensions of MNE action. In addition to considering the regulatory powers of individual states, developments under international instruments on human rights, labour conditions, finance, taxation and investment are addressed.", + "title": "Multinational Enterprises and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6335V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the real-life practice of international commercial and treaty arbitration from beginning to end: from clause drafting/treaty jurisdiction, to arbitrator selection, to emergency proceedings, through the written and hearing phases, to award and enforcement strategy. Emphasis will be on primary materials: case law, statutes, institution rules, treaties, commentary, and \u201csoft law\u201d guidelines. Using complex factual scenarios, students will take part in strategy, drafting and advocacy exercises. On the commercial arbitration side, the focus will be on the ICC Court and SIAC; on the treaty side, ICSID and the PCA/UNCITRAL. Ethics issues will be front burner.", + "title": "Advanced Practicum in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6338V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 3, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course considers the way that international adjudicators approach fact-finding and factual determinations. The course analyses essential policy questions as to the way legal systems should deal with evidence; considers comparative law perspectives; and aims to integrate these perspectives with practical consideration of the way documents and witnesses are dealt with in international arbitration. There is no greater divergence between legal families than that pertaining to the treatment of evidence. For international adjudication to meet the needs of participants from all legal families, a proper understanding of comparative approaches and the degree of convergence, is essential to arbitrators and practitioners.", + "title": "Comparative Evidence in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6339", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "One of the most pressing current issues of international concern is the highest ever level of global displacement, with over twenty million refugees in the world. This course examines the international legal regime for the protection of refugees. With the 1951 Refugee Convention as its \u201cbackbone\u201d, the course focuses on the \u201crefugee\u201d definition, the exclusion and withdrawal of refugee status, status determination procedures, the rights of recognised refugees and asylum-seekers, the non-refoulement principle, complementary protection, States\u2019 responsibility-sharing, responsibility-shifting and deterrence of asylum-seekers, the status of Palestinian refugees, UNHCR\u2019s supervisory responsibility, and regional protection systems (particularly the Common European Asylum System).", + "title": "International Refugee Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6340", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the most pressing current issues of international concern is the highest ever level of global displacement, with over twenty million refugees in the world. This course examines the international legal regime for the protection of refugees. With the 1951 Refugee Convention as its \u201cbackbone\u201d, the course focuses on the \u201crefugee\u201d definition, the exclusion and withdrawal of refugee status, status determination procedures, the rights of recognised refugees and asylum-seekers, the non-refoulement principle, complementary protection, States\u2019 responsibility-sharing, responsibility-shifting and deterrence of asylum-seekers, the status of Palestinian refugees, UNHCR\u2019s supervisory responsibility, and regional protection systems (particularly the Common European Asylum System).", + "title": "International Refugee Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6340V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines the relationship between law and politics in the international protection of the forcibly displaced, focusing on five groups of migrants, namely, refugees and asylum-seekers, stateless persons, internally displaced persons, victims of trafficking, and climate-change and environmentally displaced persons. After assessing the protection gaps relating to these five groups, this course considers the more complex phenomena of mass influx and \u201cmixed migration,\u201d immigration detention (specifically of particularly vulnerable migrants), and durable solutions. The roles of regional and institutional organisations will also be studied. An assessed negotiation relating to a present-day forced migration crisis concludes the course.", + "title": "The Law and Politics of Forced Migration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6341", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines the relationship between law and politics in the international protection of the forcibly displaced, focusing on five groups of migrants, namely, refugees and asylum-seekers, stateless persons, internally displaced persons, victims of trafficking, and climate-change and environmentally displaced persons. After assessing the protection gaps relating to these five groups, this course considers the more complex phenomena of mass influx and \u201cmixed migration,\u201d immigration detention (specifically of particularly vulnerable migrants), and durable solutions. The roles of regional and institutional organisations will also be studied. An assessed negotiation relating to a present-day forced migration crisis concludes the course.", + "title": "The Law and Politics of Forced Migration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6341V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will be useful for those who want to practise corporate or tax law.\n\nTopics covered:\n- the Singapore corporate tax, GST and stamp duty implications of (a) related party transactions; (b) restructurings and; (c) M&As\n- structuring techniques to increase tax efficiency in each of these situations\n- selected US corporate tax and Australian GST rules (since the tax consequences of a foreign country will have to be analysed)\n- how structuring strategies may be challenged with rules/proposed rules addressing treaty shopping, debt-equity and entity classification hybridity, and arbitrage opportunities involving the GST treatment of cross-border transations.", + "title": "Taxation of Cross-Border Commercial Transactions I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6342", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will be useful for those who want to practise corporate or tax law.\n\nTopics covered:\n- the Singapore corporate tax, GST and stamp duty implications of (a) related party transactions; (b) restructurings and; (c) M&As\n- structuring techniques to increase tax efficiency in each of these situations\n- selected US corporate tax and Australian GST rules (since the tax consequences of a foreign country will have to be analysed)\n- how structuring strategies may be challenged with rules/proposed rules addressing treaty shopping, debt-equity and entity classification hybridity, and arbitrage opportunities involving the GST treatment of cross-border transations.", + "title": "Taxation of Cross-Border Commercial Transactions I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6342V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The global commons comprises the high seas, the deep seabed, outer space, the airspace above the exclusive economic zone and the high seas, as well as Antarctica, an ice-covered continent, and the Arctic, an ice-covered ocean. Each of these areas are governed by international treaty regimes that were developed specifically for that area. This course will examine and compare the international regimes governing activities in the global commons. It will also examine the evolving law on the obligation of States to ensure that activities within their jurisdiction or control do not cause harm to the environment of the global commons.", + "title": "International Regulation of the Global Commons", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6343", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The global commons comprises the high seas, the deep seabed, outer space, the airspace above the exclusive economic zone and the high seas, as well as Antarctica, an ice-covered continent, and the Arctic, an ice-covered ocean. Each of these areas are governed by international treaty regimes that were developed specifically for that area. This course will examine and compare the international regimes governing activities in the global commons. It will also examine the evolving law on the obligation of States to ensure that activities within their jurisdiction or control do not cause harm to the environment of the global commons.", + "title": "International Regulation of the Global Commons", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6343V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A detailed study of the public and private international law of copyright law focusing on legal responses to cross-border issues and conflicts among private parties and nation states. Topics to be covered include: ASEAN IP relations, connecting factors in private litigation, the major international copyright treaties, major themes in EU copyright jurisprudence, exhaustion of rights, exceptions and limitations, indigenous IP.", + "title": "Public and Private International Copyright Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6344", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A detailed study of the public and private international law of copyright law focusing on legal responses to cross-border issues and conflicts among private parties and nation states. Topics to be covered include: ASEAN IP relations, connecting factors in private litigation, the major international copyright treaties, major themes in EU copyright jurisprudence, exhaustion of rights, exceptions and limitations, indigenous IP.", + "title": "Public and Private International Copyright Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6344V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is it to lead a fulfilled life? This was the central question\nfor ancient philosophers, in both the east and the west, for\nwhom philosophy was not only theory. It was a method\ndesigned to achieve both rigorous conceptual analysis and\na fulfilled human life. In this course we will explore several\nof the methods philosophers have proposed for leading a\nfulfilled life and consider some of the rich suggestions or\nimplications of these methods for leading a fulfilled life of the\nlaw, the life led by law students, lawyers, judges, and others\ninterested in administering, shaping, or living according to\nlaw.", + "title": "The Fulfilled Life and the Life of the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6345", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is it to lead a fulfilled life? This was the central question\nfor ancient philosophers, in both the east and the west, for\nwhom philosophy was not only theory. It was a method\ndesigned to achieve both rigorous conceptual analysis and\na fulfilled human life. In this course we will explore several\nof the methods philosophers have proposed for leading a\nfulfilled life and consider some of the rich suggestions or\nimplications of these methods for leading a fulfilled life of the\nlaw, the life led by law students, lawyers, judges, and others\ninterested in administering, shaping, or living according to\nlaw.", + "title": "The Fulfilled Life and the Life of the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6345V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on provisional and interim\nmeasures in the context of international commercial\narbitration, including emergency arbitrator (EA)\nproceedings. The course will address topics such as the\nnature and scope of provisional and interim relief, the\nauthority of arbitral tribunals (and limitations thereon) to\norder such relief, the concurrent jurisdiction of courts,\nchoice of law issues and the standards for granting interim\nmeasures, issues arising with respect to various categories\nof provisional relief, and judicial enforcement of interim\nmeasures ordered by arbitral tribunals.", + "title": "Interim Measures in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6346", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on provisional and interim\nmeasures in the context of international commercial\narbitration, including emergency arbitrator (EA)\nproceedings. The course will address topics such as the\nnature and scope of provisional and interim relief, the\nauthority of arbitral tribunals (and limitations thereon) to\norder such relief, the concurrent jurisdiction of courts,\nchoice of law issues and the standards for granting interim\nmeasures, issues arising with respect to various categories\nof provisional relief, and judicial enforcement of interim\nmeasures ordered by arbitral tribunals.", + "title": "Interim Measures in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6346V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores international and domestic legal issues and disputes pertaining to the creation, ownership, use, and preservation of works of art and objects of cultural heritage. Cultural objects exist within the larger realm of goods and services moving throughout the marketplace. This course addresses the specialized laws and legal interpretations pertaining to the rights and obligations of individuals, entities, and governments as they discover and interact with these objects, within their own jurisdictions and across national borders, in times of war and peace.", + "title": "Art & Cultural Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6347", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores international and domestic legal issues and disputes pertaining to the creation, ownership, use, and preservation of works of art and objects of cultural heritage. Cultural objects exist within the larger realm of goods and services moving throughout the marketplace. This course addresses the specialized laws and legal interpretations pertaining to the rights and obligations of individuals, entities, and governments as they discover and interact with these objects, within their own jurisdictions and across national borders, in times of war and peace.", + "title": "Art & Cultural Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6347V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Money is an all-pervasive legal concept, and an integral part of public dealings by the state and most private transactions. The module aims to develop a distinctive understanding of the legal institution of money, seen as a subject in itself, from private law and public law perspectives. Although the course may be of interest to those with a background in financial or banking regulation, it deliberately avoids considering the subject of money from those perspectives. It is primarily concerned with the common law of money, as it would apply in Singapore. It does however draw on the comparative perspectives from mixed and civil law jurisdictions, and from legal history. Together these demonstrate the broad functional commonalities that any legal system must develop if is construct a legal notion of money and main purposes its serves in the economy.\n\nThe module explains the role of law in the creation of money and in the ordering of a monetary system. It explains how law has a role to play in recognising and enforcing concepts of monetary value in private transactions. It considers the distinctive ways that property law applies to money, including the role of property law in controlling the consequences of failed or wrongly-procured payment transactions. The module considers the capacity of private law to respond to the special problems of monetary transactions involving a foreign currency system, and the legal challenges posed by new monetary developments such as cyber-currencies.", + "title": "Monetary Law in Comparative Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6348", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Money is an all-pervasive legal concept, and an integral part of public dealings by the state and most private transactions. The module aims to develop a distinctive understanding of the legal institution of money, seen as a subject in itself, from private law and public law perspectives. Although the course may be of interest to those with a background in financial or banking regulation, it deliberately avoids considering the subject of money from those perspectives. It is primarily concerned with the common law of money, as it would apply in Singapore. It does however draw on the comparative perspectives from mixed and civil law jurisdictions, and from legal history. Together these demonstrate the broad functional commonalities that any legal system must develop if is construct a legal notion of money and main purposes its serves in the economy.\n\nThe module explains the role of law in the creation of money and in the ordering of a monetary system. It explains how law has a role to play in recognising and enforcing concepts of monetary value in private transactions. It considers the distinctive ways that property law applies to money, including the role of property law in controlling the consequences of failed or wrongly-procured payment transactions. The module considers the capacity of private law to respond to the special problems of monetary transactions involving a foreign currency system, and the legal challenges posed by new monetary developments such as cyber-currencies.", + "title": "Monetary Law in Comparative Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6348V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces international arbitration\u2019s role in resolving energy disputes. Seminars will address both commercial and investment arbitration.The substantive content of national and international energy laws will be discussed together with the procedural specificities of energy disputes. The course will explore the political aspects of energy disputes, both domestic (resource sovereignty) and international (inter-state boundary disputes).\n\nParticipants will study the recent debates on the role of international arbitration vis-\u00e0-vis climate change and sustainable development.\n\nThe course incorporates practical exercises that will help participants interested in a career in international arbitration and public international law.", + "title": "Energy Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6349", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces international arbitration\u2019s role in resolving energy disputes. Seminars will address both commercial and investment arbitration.The substantive content of national and international energy laws will be discussed together with the procedural specificities of energy disputes. The course will explore the political aspects of energy disputes, both domestic (resource sovereignty) and international (inter-state boundary disputes).\n\nParticipants will study the recent debates on the role of international arbitration vis-\u00e0-vis climate change and sustainable development.\n\nThe course incorporates practical exercises that will help participants interested in a career in international arbitration and public international law.", + "title": "Energy Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6349V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the law on privacy and data protection. It examines the various legal mechanisms by which privacy and personal data are protected. While the focus will be Singapore law, students will also be introduced to the laws of other jurisdictions such as the United States, the European Union, and the United Kingdom.", + "title": "Privacy & Data Protection Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6350", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the law on privacy and data protection. It examines the various legal mechanisms by which privacy and personal data are protected. While the focus will be Singapore law, students will also be introduced to the laws of other jurisdictions such as the United States, the European Union, and the United Kingdom.", + "title": "Privacy & Data Protection Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6350V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines principal corporate law issues from a comparative perspective. As for jurisdictions, it primarily focuses on Japan and Korea in comparison with US and UK. This module is composed of 18 units, two units for each of the nine class dates. Beginning with the peculiar ownership structure of Japan and Korea and the nature of their agency problems, the module explores various legal strategies employed to address these challenges. The topics to be covered include: shareholder power, corporate organizational structure, independent directors, fiduciary duties, shareholder lawsuits, hostile takeovers, and creditor protection.", + "title": "Comparative Corporate Law in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6351", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines principal corporate law issues from a comparative perspective. As for jurisdictions, it primarily focuses on Japan and Korea in comparison with US and UK. This module is composed of 18 units, two units for each of the nine class dates. Beginning with the peculiar ownership structure of Japan and Korea and the nature of their agency problems, the module explores various legal strategies employed to address these challenges. The topics to be covered include: shareholder power, corporate organizational structure, independent directors, fiduciary duties, shareholder lawsuits, hostile takeovers, and creditor protection.", + "title": "Comparative Corporate Law in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6351V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a broad introduction to international economic law related to China, including detailed study of a few core areas and the provision of guidance for students to pursue research on a topic of their choice.\nMajor topics to be covered include: (i) trade in goods; (ii) trade in services; (iii) trade in intellectual property; (iv) investment; (v) dispute settlement; and (vi) the future of China and international economic law.", + "title": "China and International Economic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6352", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a broad introduction to international economic law related to China, including detailed study of a few core areas and the provision of guidance for students to pursue research on a topic of their choice.\nMajor topics to be covered include: (i) trade in goods; (ii) trade in services; (iii) trade in intellectual property; (iv) investment; (v) dispute settlement; and (vi) the future of China and international economic law.", + "title": "China and International Economic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6352V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The law relating to evidence of character has been changing throughout the common law world over the last fifty years. This course will, by reference several common law jurisdictions, including Singapore in particular, cover, most pressingly, how the law deals with evidence of the accused\u2019s bad character. It will also deal with bad character of witnesses in criminal cases, and, in particular, complainants in sexual cases, as well as that of witnesses and others in civil cases. A third element concerns the good character of the accused, of witnesses in criminal cases, and of parties and others in civil cases.", + "title": "Character Evidence in the Common Law World", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6353", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The law relating to evidence of character has been changing throughout the common law world over the last fifty years. This course will, by reference several common law jurisdictions, including Singapore in particular, cover, most pressingly, how the law deals with evidence of the accused\u2019s bad character. It will also deal with bad character of witnesses in criminal cases, and, in particular, complainants in sexual cases, as well as that of witnesses and others in civil cases. A third element concerns the good character of the accused, of witnesses in criminal cases, and of parties and others in civil cases.", + "title": "Character Evidence in the Common Law World", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6353V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Human rights adjudication has expanded in many jurisdictions across the world in the past few decades. Yet there is still scepticism about the role of courts in human rights adjudication. This subject will provide students with the opportunity to reflect critically on the role of courts in human rights adjudication by introducing them to the different approaches to the adjudication of human rights in a range of jurisdictions including South Africa, Canada, Germany, the US, Israel, Australia, India, Singapore and the EU. Several key human rights issues that have arisen in different jurisdictions will be analysed and compared.", + "title": "Comparative Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6354", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Human rights adjudication has expanded in many jurisdictions across the world in the past few decades. Yet there is still scepticism about the role of courts in human rights adjudication. This subject will provide students with the opportunity to reflect critically on the role of courts in human rights adjudication by introducing them to the different approaches to the adjudication of human rights in a range of jurisdictions including South Africa, Canada, Germany, the US, Israel, Australia, India, Singapore and the EU. Several key human rights issues that have arisen in different jurisdictions will be analysed and compared.", + "title": "Comparative Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6354V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept of development has been crucial to structuring international legal relations for the last 70 years. In the political and economic domains, most international institutions engage with the development project in some form. This subject offers a conceptual and intellectual grounding to examine development as an idea and set of practices in dynamic relation with national and international law. The history of development in relation to imperialism, decolonisation, the Cold War and globalisation means that these relations are complex. Understanding them is crucial to understanding the place of international law, and the work development does in the world today.", + "title": "International Law and Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6355", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept of development has been crucial to structuring international legal relations for the last 70 years. In the political and economic domains, most international institutions engage with the development project in some form. This subject offers a conceptual and intellectual grounding to examine development as an idea and set of practices in dynamic relation with national and international law. The history of development in relation to imperialism, decolonisation, the Cold War and globalisation means that these relations are complex. Understanding them is crucial to understanding the place of international law, and the work development does in the world today.", + "title": "International Law and Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6355V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic offers a unique opportunity for students to apply theory to practice in the field of international economic law. Students work in small teams and under the close supervision of professors and invited experts on specific, real-world legal questions of international economic law coming from \"real clients\" such as governments, international organizations, or NGOs. At the end of the semester, the Project Teams submit written legal memos and orally present their projects. They also publish their projects. The clinic is part of \"TradeLab,\" a global network of international economic law clinics at leading law schools around the world.", + "title": "International Economic Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6356", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic offers a unique opportunity for students to apply theory to practice in the field of international economic law. Students work in small teams and under the close supervision of professors and invited experts on specific, real-world legal questions of international economic law coming from \"real clients\" such as governments, international organizations, or NGOs. At the end of the semester, the Project Teams submit written legal memos and orally present their projects. They also publish their projects. The clinic is part of \"TradeLab,\" a global network of international economic law clinics at leading law schools around the world.", + "title": "International Economic Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6356V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introduction to the main debates and issues in the field of regulation covering current debates about what regulation is, and the different institutions and instruments used to regulate our lives. It looks at (i) central concepts used by regulators, e.g. risk, cost-benefit analysis, regulatory impact assessment; (ii) when different strategies should be adopted in regulating a sector; (iii) three central fields where regulation is used \u2013 competition, network industries, cyberspace. This course involves examples from jurisdictions across the world (especially Australasia, Europe and North America) with their insights having particular relevance for law and regulation in Singapore.", + "title": "Regulation & Political Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6357", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introduction to the main debates and issues in the field of regulation covering current debates about what regulation is, and the different institutions and instruments used to regulate our lives. It looks at (i) central concepts used by regulators, e.g. risk, cost-benefit analysis, regulatory impact assessment; (ii) when different strategies should be adopted in regulating a sector; (iii) three central fields where regulation is used \u2013 competition, network industries, cyberspace. This course involves examples from jurisdictions across the world (especially Australasia, Europe and North America) with their insights having particular relevance for law and regulation in Singapore.", + "title": "Regulation & Political Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6357V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The International Chamber of Commerce and its\nInternational Court of Arbitration have played a leading role\nin the establishment and the development of the\ninternational normative framework that makes arbitration so\nattractive today. This course highlights the historical and\ncontemporary contributions of ICC to this normative\nframework, and covers the key issues with which\npractitioners are faced at the main junctures of ICC\narbitration proceedings, from both a practical and a legal\nperspective. The course features in-class practical\nexercises that draw on course resources and enable\nstudents to face a variety of possible real-life scenarios.", + "title": "ICC Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL6358Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Arbitral institutions are important stakeholders in the field\nof international arbitration, but the nature and importance\nof their role have often been overlooked. The course seeks\nto introduce participants to the role and function of arbitral\ninstitutions in the practice of international arbitration, and to\nthe complex issues that arbitral institutions face in the\nadministration of arbitrations, appointment of arbitrators,\nissuing arbitral rules and practice notes and in guiding and\nshaping the development of international arbitration. The\ncourse will be taught by visiting lecturers from the Board,\nCourt of Arbitration and Secretariat of the Singapore\nInternational Arbitration Centre (SIAC).", + "title": "SIAC and Institutional Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL6359Z", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-23", + "end": "2022-09-23" + }, + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-22" + }, + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the current challenges faced by investment arbitration at the global level. It will adopt a three-step approach.\nStudents will first acquire an in-depth understanding of the history and functioning of the existing system. On this basis, the different criticisms and reform proposals will be scrutinized. Finally, students will be invited to make their own informed assessment of the existing system, to discuss its evolution and debate possible improvements.\nThe module will be diversified, as it will address both legal and extra-legal issues. Seminars will be interactive and students will be encouraged to participate actively.", + "title": "Current Challenges to Investment Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL6360Z", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-24", + "end": "2023-02-24" + }, + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-25", + "end": "2023-02-25" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-23", + "end": "2023-02-23" + }, + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "1. Who are the parties to the contract(s) or to the arbitration clause(s) contained therein? The theories applied by courts and arbitral tribunals\n2. The extension of the arbitration clause to non-signatories\n3. The possibility of bringing together in one single proceeding all the parties who have participated in the performance of one economic transaction through interrelated contracts\n4. Joinder and consolidation\n5. Appointment of arbitrators in multiparty arbitration cases\n6. The enforcement of an award in multiparty, multicontract cases\n7. The res judicata effect of an award rendered in a connected arbitration arising from the same project", + "title": "Complex Arbitrations: Multiparty \u2013 Multicontract", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL6361Z", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1500", + "weeks": { + "start": "2023-02-21", + "end": "2023-02-21" + }, + "venue": "LAW_SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6 + ], + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Forensic science can play a large part in criminal litigation, from DNA and fingerprint evidence to the detection of forgery. Forensic scientists can play a significant role by presenting evidence in a trial, and effective trial lawyers should be equipped with the skills and knowledge to manage, present, and challenge forensic evidence. This interdisciplinary module brings law and science undergraduates together to equip them with key communication and analytical skills to present forensic evidence in Court in the most effective way. Key topics covered include advance trial techniques, the law of evidence, and aspects of forensic science.", + "title": "Advanced Criminal Litigation - Forensics on Trial", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6362V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Our courts have to determine the appropriate\npunishment/sentence for every offender who has been\nfound guilty. Thus, sentencing law and practice is an area\nof law that affects the lives of every offender who goes\nthrough our criminal justice process. But what are the\nnumerous considerations going into the calculus of what is\nthe most appropriate punishment for an offender? This\ncourse will cover, among other things, the theoretical and\nempirical perspectives of punishment, sentencing options,\nsentencing methodology, and key aggravating and\nmitigating factors. We will also cover other important\nsentencing issues such as consecutive vs concurrent\nsentence, and parity", + "title": "Sentencing Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6363", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Our courts have to determine the appropriate\npunishment/sentence for every offender who has been\nfound guilty. Thus, sentencing law and practice is an area\nof law that affects the lives of every offender who goes\nthrough our criminal justice process. But what are the\nnumerous considerations going into the calculus of what is\nthe most appropriate punishment for an offender? This\ncourse will cover, among other things, the theoretical and\nempirical perspectives of punishment, sentencing options,\nsentencing methodology, and key aggravating and\nmitigating factors. We will also cover other important\nsentencing issues such as consecutive vs concurrent\nsentence, and parity.", + "title": "Sentencing Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6363V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces important concepts and principles of private law in civil law jurisdictions to students trained in the common law. The focus is on concepts and principles in which the differences between the civil and common law systems are particularly striking. Examples are the core emphasis on obligations, the lack of a strict or any consideration requirement in contract law, the focus on absolute rights in delictual liability, the concept of negotiorum gestio and the design of property law as positive absolute rights. The different concepts of legislation and jurisprudence also form part of the module.", + "title": "Principles of Civil Law: Law of Obligations & Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6364", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces important concepts and principles of private law in civil law jurisdictions to students trained in the common law. The focus is on concepts and principles in which the differences between the civil and common law systems are particularly striking. Examples are the core emphasis on obligations, the lack of a strict or any consideration requirement in contract law, the focus on absolute rights in delictual liability, the concept of negotiorum gestio and the design of property law as positive absolute rights. The different concepts of legislation and jurisprudence also form part of the module.", + "title": "Principles of Civil Law: Law of Obligations & Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6364V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a structured programme for students\nwho wish to understand and acquire skills relevant to the\npractice of public international law in a government\nsetting.\n\nThe module is organised around three key milestones:\nfirst, four \u201ccrash course\u201d lecture-style teaching hours\ngrouped at the beginning of the semester to equip\nstudents with foundational legal concepts concerning\nUnited Nations law-making, including the International\nLaw Commission; second, a mid-semester oral\npresentation with practitioners; and third, preparations in\nSingapore for the annual fall sessions of the Sixth\nCommittee of the UN General Assembly.", + "title": "Singapore at the UN - A Clinical Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6367", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a structured programme for students\nwho wish to understand and acquire skills relevant to the\npractice of public international law in a government\nsetting.\n\nThe module is organised around three key milestones:\nfirst, four \u201ccrash course\u201d lecture-style teaching hours\ngrouped at the beginning of the semester to equip\nstudents with foundational legal concepts concerning\nUnited Nations law-making, including the International\nLaw Commission; second, a mid-semester oral\npresentation with practitioners; and third, preparations in\nSingapore for the annual fall sessions of the Sixth\nCommittee of the UN General Assembly.", + "title": "Singapore at the UN - A Clinical Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6367V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Comparative constitutional law has emerged as one of the\nmost vibrant areas in contemporary public law. The\ncourse explores the principal challenges for the theory and\npractice of constitutionalism across time and place,\ngenerally and in particular under the globalizing conditions\nof the early 21st century. It combines the legal study of\nconstitutional texts and constitutional jurisprudence from a\nwide range of countries and constitutional systems\nworldwide with exploration of pertinent social science\nresearch concerning the global expansion of\nconstitutionalism and judicial review.", + "title": "Comparative Constitutionalism", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6368", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Comparative constitutional law has emerged as one of the\nmost vibrant areas in contemporary public law. The\ncourse explores the principal challenges for the theory and\npractice of constitutionalism across time and place,\ngenerally and in particular under the globalizing conditions\nof the early 21st century. It combines the legal study of\nconstitutional texts and constitutional jurisprudence from a\nwide range of countries and constitutional systems\nworldwide with exploration of pertinent social science\nresearch concerning the global expansion of\nconstitutionalism and judicial review.", + "title": "Comparative Constitutionalism", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6368V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to offer an up-to-date understanding of constitutionalism in Asia, covering a representative number of Asian jurisdictions including China, Hong Kong, India, Japan, Mongolia, Nepal, South Korea, Taiwan and the ten ASEAN states. The students are introduced to leading constitutional cases and selected materials in those jurisdictions and guided to critically examine constitutional jurisprudences developed in those Asian jurisdictions and compared them with \nwhat has been developed elsewhere, particularly in the West.", + "title": "Constitutionalism in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6369", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to offer an up-to-date understanding of constitutionalism in Asia, covering a representative number of Asian jurisdictions including China, Hong Kong, India, Japan, Mongolia, Nepal, South Korea, Taiwan and the ten ASEAN states. The students are introduced to leading constitutional cases and selected materials in those jurisdictions and guided to critically examine constitutional jurisprudences developed in those Asian jurisdictions and compared them with \nwhat has been developed elsewhere, particularly in the West.", + "title": "Constitutionalism in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6369V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the risks associated with protecting and managing the legal and corporate risks associated with the increasingly important and overlapping fields of cybersecurity, privacy and data compliance and offers both legal and practical solutions for regulating and managing such risks within an effective legal and compliance framework.", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6370", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the risks associated with protecting and managing the legal and corporate risks associated with the increasingly important and overlapping fields of cybersecurity, privacy and data compliance and offers both legal and practical solutions for regulating and managing such risks within an effective legal and compliance framework.", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6370V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will look in depth at the content of charity law, the consequences of charity status, and key questions raised by charity law and regulation, in contemporary settings across the world. Topics will include the profile and value of the charity sector; the \u2018heads\u2019 of charity; the public benefit requirement of charity law; charity law\u2019s treatment of political purposes; the sources of charity law;\nthe tax treatment of charities; charitable trusts and discrimination; and the regulation of charities. Singapore\u2019s charity law will be considered in global perspective. \nThis course will not consider the treatment of charity in Islamic law.", + "title": "Charity Law Today", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6371", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will look in depth at the content of charity law, the consequences of charity status, and key questions raised by charity law and regulation, in contemporary settings across the world. Topics will include the profile and value of the charity sector; the \u2018heads\u2019 of charity; the public benefit requirement of charity law; charity law\u2019s treatment of political purposes; the sources of charity law;\nthe tax treatment of charities; charitable trusts and discrimination; and the regulation of charities. Singapore\u2019s charity law will be considered in global perspective. \nThis course will not consider the treatment of charity in Islamic law.", + "title": "Charity Law Today", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6371V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the public and private international law issues concerned with the protection of intellectual property rights (IPRs) globally. It commences with an overview of the sources of public international IP law, including the principal treaties, their interpretation and domestic implementation, and the general architecture of the international IP system. Using selected case studies, it then considers other international obligations that intersect with IPRS, including trade and investment protection measures and human rights obligations. It concludes with a survey of the private international law issues affecting the global exploitation of IPRs, particularly in the context of the Internet.", + "title": "International Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6372", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the public and private international law issues concerned with the protection of intellectual property rights (IPRs) globally. It commences with an overview of the sources of public international IP law, including the principal treaties, their interpretation and domestic implementation, and the general architecture of the international IP system. Using selected case studies, it then considers other international obligations that intersect with IPRS, including trade and investment protection measures and human rights obligations. It concludes with a survey of the private international law issues affecting the global exploitation of IPRs, particularly in the context of the Internet.", + "title": "International Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6372V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced copyright will examine a number of the most recent controversies in copyright law, including challenges to the cable and broadcast TV business models, the copyright status of \"appropriation art\", the permissibility of mass digitization, the phenomenon of \"copyright trolls\", and the copyright implications of universities' electronic library reserve policies. Students must have completed a course in basic copyright law.", + "title": "Advanced Copyright", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6373", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced copyright will examine a number of the most recent controversies in copyright law, including challenges to the cable and broadcast TV business models, the copyright status of \"appropriation art\", the permissibility of mass digitization, the phenomenon of \"copyright trolls\", and the copyright implications of universities' electronic library reserve policies. Students must have completed a course in basic copyright law.", + "title": "Advanced Copyright", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6373V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We will examine water\u2019s importance to economic development and its special interest to lawyers. Water governance concerns both private as well as public\ninterests. Meanwhile, there is fundamental variation in how much is available and where. And because water flows, society must manage it across political boundaries. By drawing on the examples of a few key river basins, we will examine the reasons and processes by which water law has evolved as it has \u2013 and whether and how, given rising pressures and uncertainty, it may change.", + "title": "Water Rights & Resources: Issues in Law & Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6374", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We will examine water\u2019s importance to economic development and its special interest to lawyers. Water governance concerns both private as well as public\ninterests. Meanwhile, there is fundamental variation in how much is available and where. And because water flows, society must manage it across political boundaries. By drawing on the examples of a few key river basins, we will examine the reasons and processes by which water law has evolved as it has \u2013 and whether and how, given rising pressures and uncertainty, it may change.", + "title": "Water Rights & Resources: Issues in Law & Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6374V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to the major themes and\nissues in traditional Chinese legal thought. We will focus\non the close reading and analysis of selected works by\nvarious philosophers and various philosophical schools,\nincluding Confucius and later Confucian thinkers\n(including, but not limited to, Mencius, Xunzi, and Dong\nZhongshu), the Legalists, and the Daoists. Attention will\nalso be placed on understanding these thinkers and\nphilosophical schools in historical context and gaining an\nunderstanding of how law was applied in premodern\nChina. No prior knowledge of Chinese history or Chinese\nphilosophy is required. All required readings are in\nEnglish.", + "title": "Traditional Chinese Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6375", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to the major themes and\nissues in traditional Chinese legal thought. We will focus\non the close reading and analysis of selected works by\nvarious philosophers and various philosophical schools,\nincluding Confucius and later Confucian thinkers\n(including, but not limited to, Mencius, Xunzi, and Dong\nZhongshu), the Legalists, and the Daoists. Attention will\nalso be placed on understanding these thinkers and\nphilosophical schools in historical context and gaining an\nunderstanding of how law was applied in premodern\nChina. No prior knowledge of Chinese history or Chinese\nphilosophy is required. All required readings are in\nEnglish.", + "title": "Traditional Chinese Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6375V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the impact of regulation on the private law of banking and financial services. This would typically include how regulatory rules create private law duties in contract or tort.\n\nIt will be of interest to those interested in financial contracts, financial institutions and the regulation and supervision of financial markets and institutions including\nbanks. \n\nFinancial services constitute an important sector of the economy. Financial markets and institutions including banks are subject to a rapidly expanding field of public\nregulation. Its implementation and enforcement raise many underexplored challenges.", + "title": "Regulation & Private Law in Banking & Financial Service", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6376", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the impact of regulation on the private law of banking and financial services. This would typically include how regulatory rules create private law duties in contract or tort.\n\nIt will be of interest to those interested in financial contracts, financial institutions and the regulation and supervision of financial markets and institutions including\nbanks.\n\nFinancial services constitute an important sector of the economy. Financial markets and institutions including banks are subject to a rapidly expanding field of public\nregulation. Its implementation and enforcement raise many underexplored challenges.", + "title": "Regulation & Private Law in Banking & Financial Service", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6376V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law in Action: Legal Policymaking Externship offers students the opportunity to gain unique insights into Government policy making by working directly on various projects at the Ministry of Law.\n\nThe module provides a structured programme for students who wish to understand and acquire skills relevant to policy development in a Government setting.\n\nStudents will be involved in a wide spectrum of policy and legislative projects, such as civil and criminal procedure, arbitration law, intellectual property and legal industry development. Students will be part of a dynamic and challenging process of shaping policy goals to enhance the legal infrastructure in Singapore.", + "title": "Law in Action: Legal Policymaking Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6377", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law in Action: Legal Policymaking Externship offers students the opportunity to gain unique insights into Government policy making by working directly on various projects at the Ministry of Law.\n\nThe module provides a structured programme for students who wish to understand and acquire skills relevant to policy development in a Government setting.\n\nStudents will be involved in a wide spectrum of policy and legislative projects, such as civil and criminal procedure, arbitration law, intellectual property and legal industry development. Students will be part of a dynamic and challenging process of shaping policy goals to enhance the legal infrastructure in Singapore.", + "title": "Law in Action: Legal Policymaking Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6377V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine recent developments and future directions in international commercial arbitration. Recent innovations such as emergency arbitrations, arb-med-arb protocols, expeditious dismissal of manifestly unmeritorious claims, consolidation and joinder, and expedited procedures will be examined from a comparative and analytical perspective with a focus on jurisdictions in the Asia-Pacific region. It will also attempt to identify future trends in international commercial arbitration, including the use of artificial intelligence, online dispute resolution, block chain technology and other procedural and technological innovations. It will utilize case studies to allow students to gain hands-on experience with arbitral rules, legislation and procedure.", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6379", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine recent developments and future directions in international commercial arbitration. Recent innovations such as emergency arbitrations, arb-med-arb protocols, expeditious dismissal of manifestly unmeritorious claims, consolidation and joinder, and expedited procedures will be examined from a comparative and analytical perspective with a focus on jurisdictions in the Asia-Pacific region. It will also attempt to identify future trends in international commercial arbitration, including the use of artificial intelligence, online dispute resolution, block chain technology and other procedural and technological innovations. It will utilize case studies to allow students to gain hands-on experience with arbitral rules, legislation and procedure.", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6379V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Heritage is a broad term that, for our purposes, encompasses things as diverse as architecture and cultural objects regarded as having historical importance, and intangible aspects of culture such as cuisine, the performing arts, and ritual practices. The course aims to provide an insight into how heritage can be protected and safeguarded for future generations by domestic common law and statutory rules on the one hand; and international law rules on the other. \n\nA prior knowledge of how public international law works is useful but not required for the course.", + "title": "Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6381", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Heritage is a broad term that, for our purposes, encompasses things as diverse as architecture and cultural objects regarded as having historical importance, and intangible aspects of culture such as cuisine, the performing arts, and ritual practices. The course aims to provide an insight into how heritage can be protected and safeguarded for future generations by domestic common law and statutory rules on the one hand; and international law rules on the other.\n\nA prior knowledge of how public international law works is useful but not required for the course.", + "title": "Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6381V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the internationalization of commercial and personal relationships and the increase of cross-border disputes in Singapore\u2019s courts, a working knowledge of private international law, or the conflict of laws, has become essential for legal practice in Singapore. This course offers students a comprehensive overview of the foundations of private international law, with a particular focus on Singapore law. It covers private international law\u2019s three main pillars - jurisdiction, choice of law and foreign judgments - and also touches on broader methodological issues, and questions of sovereignty, comity, and public policy, which undergird and define the boundaries of the field.", + "title": "Private International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6382", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the internationalization of commercial and personal relationships and the increase of cross-border disputes in Singapore\u2019s courts, a working knowledge of private international law, or the conflict of laws, has become essential for legal practice in Singapore. This course offers students a comprehensive overview of the foundations of private international law, with a particular focus on Singapore law. It covers private international law\u2019s three main pillars - jurisdiction, choice of law and foreign judgments - and also touches on broader methodological issues, and questions of sovereignty, comity, and public policy, which undergird and define the boundaries of the field.", + "title": "Private International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6382V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The New York Convention of 1958 on the Recognition and Enforcement of Foreign Arbitral Awards provides for the international enforcement of arbitral awards. Considered as the most successful international convention in international private law, the Convention now has 164 Contracting States and more than 2,500 court decisions interpreting and applying the Convention (as of June 2020). The course will analyze and compare the most important of those decisions. It will offer a unique insight in treaty design, statutory enactments, varying court approaches, and the practice of international arbitration. The course materials will be made available at www.newyorkconvention.org.", + "title": "International Arbitration & the New York Convention", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LL6383Z", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 6 + ], + "venue": "LAW_ESR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-19" + }, + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2022-09-20", + "end": "2022-09-20" + }, + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-21" + }, + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide students with the opportunity to critically engage with some of the core notions they encounter when they study criminal law. The focus will be on a number of issues revolving around the concepts of harm and wrong, such as:\n- How should we understand the notion of wrongdoing?\n- Should the criminal law care about the distinction between intended and foreseen harm?\n- Can the wrongfulness of certain actions depend on the intentions of the agent?\n- What is the relationship between reasons for action and legal justifications?\n- What is wrong with blackmail?", + "title": "Harms and Wrongs", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6384", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide students with the opportunity to critically engage with some of the core notions they encounter when they study criminal law. The focus will be on a number of issues revolving around the concepts of harm and wrong, such as:\n- How should we understand the notion of wrongdoing?\n- Should the criminal law care about the distinction between intended and foreseen harm?\n- Can the wrongfulness of certain actions depend on the intentions of the agent?\n- What is the relationship between reasons for action and legal justifications?\n- What is wrong with blackmail?", + "title": "Harms and Wrongs", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6384V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s global digital world, national tax systems face new challenges. Governments large and small cooperate in tax enforcement including through strengthened anti-abuse rules, yet tax competition continues. Uncertainty,\ncomplexity and risk have increased for taxpayers ranging from individuals to multinational enterprises. Recent developments in the OECD Inclusive Framework and other forums may lead to significant new global tax rules, but an agreed outcome is far from certain. This course explores the latest trends and issues in personal and corporate income tax and Goods and Services Tax that address\ndigital or cross-border services or employment, consumption, and investment.", + "title": "Taxation Law & the Global Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6385", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s global digital world, national tax systems face new challenges. Governments large and small cooperate in tax enforcement including through strengthened anti-abuse rules, yet tax competition continues. Uncertainty,\ncomplexity and risk have increased for taxpayers ranging from individuals to multinational enterprises. Recent developments in the OECD Inclusive Framework and other forums may lead to significant new global tax rules, but an agreed outcome is far from certain. This course explores the latest trends and issues in personal and corporate income tax and Goods and Services Tax that address\ndigital or cross-border services or employment, consumption, and investment.", + "title": "Taxation Law & the Global Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6385V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines emerging trends to identify and analyse ways in which intellectual property laws are being used to commodify self. Through processes of intellectual propertisation, aspects of the human body, human persona, and human expression through art can be converted from \u2018unowned\u2019 to \u2018owned\u2019. Examining\ncontemporary issues such as gene patents, fake news, authenticity and cultural appropriation, as well as emerging technologies such as transplanted and artificial\nbody parts, cyborgs, mind downloads, blockchain and the Internet of Things, the course examines the mechanisms by which the expansion of intellectual property laws is enabling increasing commodification of humankind.", + "title": "Intellectual Property in Body, Persona & Art", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6386", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines emerging trends to identify and analyse ways in which intellectual property laws are being used to commodify self. Through processes of intellectual propertisation, aspects of the human body, human persona, and human expression through art can be converted from \u2018unowned\u2019 to \u2018owned\u2019. Examining contemporary issues such as gene patents, fake news, authenticity and cultural appropriation, as well as emerging technologies such as transplanted and artificial body parts, cyborgs, mind downloads, blockchain and the Internet of Things, the course examines the mechanisms by which the expansion of intellectual property laws is enabling increasing commodification of humankind.", + "title": "Intellectual Property in Body, Persona & Art", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6386V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will survey multiple legal fields that involve the regulation of what are generally referred to as \u201cdigital platforms,\u201d including Google, Facebook, and others. The primary legal fields of study will be competition (antitrust) law and liability for third-party content. Because these areas of law draw heavily from economic theory and research, the course will also survey some of the relevant economics literature as a means of better understanding the relevant markets.", + "title": "Regulation of Digital Platform", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6387", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will survey multiple legal fields that involve the regulation of what are generally referred to as \u201cdigital platforms,\u201d including Google, Facebook, and others. The primary legal fields of study will be competition (antitrust) law and liability for third-party content. Because these areas of law draw heavily from economic theory and research, the course will also survey some of the relevant economics literature as a means of better understanding the relevant markets.", + "title": "Regulation of Digital Platforms", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6387V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores Thai contract law which is a product of civil law traditions and a cornerstone of Thai private law. It covers major areas of contract law from the beginning to the end of a contract, i.e. contract formation, validity, interpretation, breach of contract, and ending and changing a contract. Course participants will be encouraged to make comparisons between Thai and Singapore contract laws on\ncertain issues.", + "title": "Comparative Civil Law: Thai Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6388", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores Thai contract law which is a product of civil law traditions and a cornerstone of Thai private law. It covers major areas of contract law from the beginning to the end of a contract, i.e. contract formation, validity, interpretation, breach of contract, and ending and changing a contract. Course participants will be encouraged to make comparisons between Thai and Singapore contract laws on\ncertain issues.", + "title": "Comparative Civil Law: Thai Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6388V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines so-called \u2018quasi-security\u2019 devices: legal structures that perform the function of personal property security, whilst not being \u2018true\u2019 security in the legal sense. These devices entail the retention of title or absolute\ntransfer of title (rather than the grant of a security interest) and, like \u2018true\u2019 security, secure the performance of an obligation. Hence, consideration will be given to retention of title devices (ROT or \u2018Romapla\u2019 clauses) in the supply of goods to manufacturers or to retailers as stock-in-trade, conditional-sale, hire-purchase, finance-leasing. Absolute transfer of title devices exemplified by receivables financing (factoring, securitisation) will also be covered.", + "title": "Asset-Based Financing: Quasi-Security Devices", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6389", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines so-called \u2018quasi-security\u2019 devices: legal structures that perform the function of personal property security, whilst not being \u2018true\u2019 security in the legal sense. These devices entail the retention of title or absolute\ntransfer of title (rather than the grant of a security interest) and, like \u2018true\u2019 security, secure the performance of an obligation. Hence, consideration will be given to retention of title devices (ROT or \u2018Romapla\u2019 clauses) in the supply of goods to manufacturers or to retailers as stock-in-trade, conditional-sale, hire-purchase, finance-leasing. Absolute transfer of title devices exemplified by receivables financing (factoring, securitisation) will also be covered.", + "title": "Asset-Based Financing: Quasi-Security Devices", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6389V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corporate groups are pervasive in modern, international commerce. Frequently they are structured in order to avoid or minimise liability for wrongdoing and to protect group assets. In other cases, risky physical processes are contracted out to network participants. This course examines the structures and practices of corporate groups and networks, the problems of externalisation of liability, and legal mechanisms for extending liability among participant entities. Extended liability regimes considered span statute law and common law. Consideration is given also to several important suggestions for development of the law in this area.", + "title": "Liability of Corporate Groups and Networks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6393", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corporate groups are pervasive in modern, international commerce. Frequently they are structured in order to avoid or minimise liability for wrongdoing and to protect group assets. In other cases, risky physical processes are contracted out to network participants. This course examines the structures and practices of corporate groups and networks, the problems of externalisation of liability,\nand legal mechanisms for extending liability among participant entities. Extended liability regimes considered span statute law and common law. Consideration is given also to several important suggestions for development of the law in this area.", + "title": "Liability of Corporate Groups and Networks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6393V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In intellectual property law, overlaps of exclusive rights stemming from different protection regimes raise particular problems. Nonetheless, the cumulation of rights has become a standard protection strategy in sectors ranging from software to fashion and entertainment. Against this background, this module offers a detailed analysis of protection overlaps. Which combinations of rights are deemed permissible? Which specific problems arise from the cumulation of intellectual property rights? Using international, US and EU legislation and case law as reference points, these questions will be discussed. Moreover, the module will explore alternative avenues for better law and policy making.", + "title": "Protection Overlaps in Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6394", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In intellectual property law, overlaps of exclusive rights stemming from different protection regimes raise particular problems. Nonetheless, the cumulation of rights has become a standard protection strategy in sectors ranging from software to fashion and entertainment. Against this background, this module offers a detailed analysis of protection overlaps. Which combinations of rights are deemed permissible? Which specific problems arise from the cumulation of intellectual property rights? Using international, US and EU legislation and case law as reference points, these questions will be discussed. Moreover, the module will explore alternative avenues for better law and policy making.", + "title": "Protection Overlaps in Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6394V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using precedents and transactional documents generously supplied by various leading law firms and chambers, the module will examine in much greater depth various representative uses of trusts in the modern world, both to make family provision and in commerce. It will examine how these functions are realised by practising lawyers working within, ad developing, legal doctrine. Finally it will\nexplore the broad theoretical implications of this work.", + "title": "The Law & Practice of Modern Trust Structures", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6395", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using precedents and transactional documents generously supplied by various leading law firms and chambers, the module will examine in much greater depth various representative uses of trusts in the modern world, both to make family provision and in commerce. It will examine how these functions are realised by practising lawyers working within, ad developing, legal doctrine. Finally it will\nexplore the broad theoretical implications of this work.", + "title": "The Law & Practice of Modern Trust Structures", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6395V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6396", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Progra", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6397", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6398", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6399", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biomedical Law & Ethics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6400", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6402", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Intellectual Property (a)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6405A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Intellectual Property (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6405B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law Of Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6407", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6409", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Personal property law cuts across many legal fields, including equity and trusts, and the law of sales, agency, company, insolvency and bankruptcy, insurance, banking, economic torts and crimes. The course covers the following broad areas: (i) defining the interests in personal property; (ii) creation and acquisition of interests in tangible property by consent, including the sale of goods and documentary sales; (iii) creation and acquisition of interests in tangible property by \noperation of law; (iv) intangible property & security interests; (v) persistence of interests in personal property; and (iv) protection of interests in personal property.", + "title": "Personal Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide an overview of securities regulation, corporate governance and mergers and acquisitions, in Singapore and, where relevant, jurisdictions such as the US, UK, Australia, China and HK. Topics to be covered generally include: regulatory authorities and capital markets; supervision of intermediaries; the \"going public\" process; legal position of stockbrokers; insider trading and securities frauds; globalisation, technology and regulatory harmonisation; and regulation of takeover activity. In addition, aspects of syndicated loan and bond financing, and securitisation, will be studied in some detail. Students will be expected to use the Internet to search for comparative materials. Advisory Note for students from Civil Law Jurisdiction: Not appropriate for civil law students.", + "title": "Securities and Capital Markets Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6412", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 3, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 3, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course is about the law governing the processes by which substantive rights are effectuated during civil litigation in Singapore. The emphasis will be on how Rules of Court operate in areas of dispute resolution including the interlocutory stages from filing of an action to the trial, post-judgment matters and the role of amicable settlement in the adversarial culture. The inter-relationship between procedure, evidence and ethics will be analysed. Students will have an understanding of the principles of procedure to consider the efficacy and viability of the governing law in light of fairness, efficiency and justice, and to propose reforms.", + "title": "Civil Justice and Procedure", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LL6413", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the tensions in choice-of-law decision-making in selected areas or sub-fields spanning human rights violations, foreign sovereign debts, environmental liability, currency swaps, international trusts, multiple-listed corporations, and time permitting, economic torts and internet defamation and/or employment and human capital development. In each specific area, it asks whether a choice-of-law theory can shed light on the tensions which the choice-of-law rule seeks to balance and whether another can lead to development of a better or more coherent rule.", + "title": "Choice of Law: Practice and Theories", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6431", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the tensions in choice-of-law decision-making in selected areas or sub-fields spanning human rights violations, foreign sovereign debts, environmental liability, currency swaps, international trusts, multiple-listed corporations, and time permitting, economic torts and internet defamation and/or employment and human capital development. In each specific area, it asks whether a choice-of-law theory can shed light on the tensions which the choice-of-law rule seeks to balance and whether another can lead to development of a better or more coherent rule.", + "title": "Choice of Law: Practice and Theories", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6431V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of international litigation has gained strong recognition as a composite of two branches of the conflict of laws, namely jurisdiction and recognition and enforcement of judgment. This conceptualisation brings into its embrace evolving themes of comity, proximity, efficiency, party autonomy, foreign sovereign immunity, foreign act of state and justiciability, reasonable extraterritoriality, and forum mandatory procedural policies. In this advanced course, each theme is studied in the context of practice in a particular sub-field of jurisdiction or enforcement; although some themes such as that of sovereignty are cross-cutting and are studied in more than one jurisdictional context.", + "title": "International Litigation: Themes and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6432", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of international litigation has gained strong recognition as a composite of two branches of the conflict of laws, namely jurisdiction and recognition and enforcement of judgment. This conceptualisation brings into its embrace evolving themes of comity, proximity, efficiency, party autonomy, foreign sovereign immunity, foreign act of state and justiciability, reasonable extraterritoriality, and forum mandatory procedural policies. In this advanced course, each theme is studied in the context of practice in a particular sub-field of jurisdiction or enforcement; although some themes such as that of sovereignty are cross-cutting and are studied in more than one jurisdictional context.", + "title": "International Litigation: Themes and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6432V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the main themes and approaches in data privacy law in light of various international frameworks (OECD, APEC, ASEAN) and a cross-section of national laws from North America, Europe and Asia. While many countries have enacted or amended laws in recent years, there is no widely-accepted framework for cross-border data transfers and developments in business and technology present new risks and challenges to the protection of individuals\u2019 personal data and privacy. This course will also consider the role of data privacy laws in regulating social media and the Internet, data science, AI and machine learning and cybersecurity.", + "title": "Global Data Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6433", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the main themes and approaches in data privacy law in light of various international frameworks (OECD, APEC, ASEAN) and a cross-section of national laws from North America, Europe and Asia. While many countries have enacted or amended laws in recent years, there is no widely-accepted framework for cross-border data transfers and developments in business and technology present new risks and challenges to the protection of individuals\u2019 personal data and privacy. This course will also consider the role of data privacy laws in regulating social media and the Internet, data science, AI and machine learning and cybersecurity.", + "title": "Global Data Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6433V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The trading of commodities is one of the oldest forms of economic activity known to mankind. Today, it is a sophisticated multi-trillion-dollar industry spanning across the globe. A commodity trade is, at its heart, the sale and purchase of a commodity, but is often coupled with other related transactions such as transportation, storage,\ninsurance and finance. This course seeks to provide students with an overview of international commodity trading law. As an \u201cindustry-focused\u201d course, students will\nbe trained to identify and analyse problems that span across different areas including contract, banking and finance, agency, assignment, set-off \u2013 just like practitioners do.", + "title": "International Commodity Trading Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6434", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The trading of commodities is one of the oldest forms of economic activity known to mankind. Today, it is a sophisticated multi-trillion-dollar industry spanning across the globe. A commodity trade is, at its heart, the sale and purchase of a commodity, but is often coupled with other related transactions such as transportation, storage,\ninsurance and finance. This course seeks to provide students with an overview of international commodity trading law. As an \u201cindustry-focused\u201d course, students will\nbe trained to identify and analyse problems that span across different areas including contract, banking and finance, agency, assignment, set-off \u2013 just like practitioners do.", + "title": "International Commodity Trading Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6434V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is unique because it did not emerge from a single source of law. Rather, it has roots in almost every type of law. Through diverse readings, deep discussions, and independent research, this course will identify and understand the various types of law that, together, give rise to \u201cenvironmental law.\u201d The course will consider environmental law\u2019s roots in common law, regulation, legislation, constitutions, international cooperation, public action, and even private self-governance. Though not exclusively, the focus will be on common law jurisdictions in the British tradition, but independent research will allow students to explore more widely for themselves.", + "title": "Foundations of Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6435", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is unique because it did not emerge from a single source of law. Rather, it has roots in almost every type of law. Through diverse readings, deep discussions, and independent research, this course will identify and understand the various types of law that, together, give rise to \u201cenvironmental law.\u201d The course will consider environmental law\u2019s roots in common law, regulation, legislation, constitutions, international cooperation, public action, and even private self-governance. Though not exclusively, the focus will be on common law jurisdictions in the British tradition, but independent research will allow students to explore more widely for themselves.", + "title": "Foundations of Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6435V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family Law covers a very broad field that involves familial relationships wider than just spousal relationships, children and money matters. It encompasses transnational conflict of laws, marital agreements, international conventions and enforcement issues. It also sees intersectionality with elder law, mental capacity, as well as probate and succession law. It is not possible to cover every aspect of family law in this elective. This course will cover family law and practice in Singapore, with a special emphasis on marriages, divorce and ancillary matters for civil marriages, and the workings of the Family Justice Courts.", + "title": "Family Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6436", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family Law covers a very broad field that involves familial relationships wider than just spousal relationships, children and money matters. It encompasses transnational conflict of laws, marital agreements, international conventions and enforcement issues. It also sees intersectionality with elder law, mental capacity, as well as probate and succession law. It is not possible to cover every aspect of family law in this elective. This course will cover family law and practice in Singapore, with a special emphasis on marriages, divorce and ancillary matters for civil marriages, and the workings of the Family Justice Courts.", + "title": "Family Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6436V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores diverse development patterns of the rule of law and democracy in East Asia. Theories of democracy commonly hold that the acceptance of rule of law in non-democratic countries would lead to democratization, especially along with increasing economic prosperity. This linear thesis, however, have met challenges recently in light of recent developments in China, HK, and other parts of the world. As such, this module scrutinizes this linear thesis by examining the trajectories of legal development in East Asia and the determinants, such as international factors, civil law traditions, legal professionals, foreign law influence, colonial legacies and post-colonial nationalism.", + "title": "Law and Democracy in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6437", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores diverse development patterns of the rule of law and democracy in East Asia. Theories of democracy commonly hold that the acceptance of rule of law in non-democratic countries would lead to democratization, especially along with increasing economic prosperity. This linear thesis, however, have met challenges recently in light of recent developments in China, HK, and other parts of the world. As such, this module scrutinizes this linear thesis by examining the trajectories of legal development in East Asia and the determinants, such as international factors, civil law traditions, legal professionals, foreign law influence, colonial legacies and post-colonial nationalism.", + "title": "Law and Democracy in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6437V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the exciting world of intellectual property arbitration. Traditionally thought of and taught as distinct areas of law, the overlap between IP rights and recourse to arbitration for the protection of those rights has grown significantly in recent years. This pioneering course is not currently offered in any other leading law school in the world. It is designed for students with little to\nno knowledge of IP law. It is also designed for students with an interest in arbitration, regardless of the level of their preexisting knowledge of arbitration.", + "title": "Intellectual Property Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6438", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the exciting world of intellectual property arbitration. Traditionally thought of and taught as distinct areas of law, the overlap between IP rights and recourse to arbitration for the protection of those rights has grown significantly in recent years. This pioneering course is not currently offered in any other leading law school in the world. It is designed for students with little to\nno knowledge of IP law. It is also designed for students with an interest in arbitration, regardless of the level of their preexisting knowledge of arbitration.", + "title": "Intellectual Property Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6438V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to electronic evidence, which covers every area of law. Most legal problems presented to lawyers now include an element of electronic evidence. It is incumbent on judges, lawyers and legal academics to be familiar with the topic in the service of justice. Electronic evidence is ubiquitous.\nUsing an array of mobile technologies, people communicate regularly through social networking sites, e-mail and other virtual methods managed by organisations that are transnational. No area of human activity is free from the networked world \u2013 this also means no area of law is free from the effects of electronic evidence.", + "title": "Electronic Evidence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6440", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to electronic evidence, which covers every area of law. Most legal problems presented to lawyers now include an element of electronic evidence. It is incumbent on judges, lawyers and legal academics to be familiar with the topic in the service of justice. Electronic evidence is ubiquitous.\nUsing an array of mobile technologies, people communicate regularly through social networking sites, e-mail and other virtual methods managed by organisations that are transnational. No area of human activity is free from the networked world \u2013 this also means no area of law is free from the effects of electronic evidence.", + "title": "Electronic Evidence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6440V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks at the economic foundations of corporate bankruptcy and insolvency law. The course will discuss the application of general law-and-economics principles to the governance and reorganization of insolvent and financially distressed business firms. Readings will focus in particular on questions about whether and how general theories of contracts, property, and corporate governance must be amended in the context of insolvency and bankruptcy.", + "title": "Law & Economics of Corporate Bankruptcy & Insolvency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6441", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks at the economic foundations of corporate bankruptcy and insolvency law. The course will discuss the application of general law-and-economics principles to the governance and reorganization of insolvent and financially distressed business firms. Readings will focus in particular on questions about whether and how general theories of contracts, property, and corporate governance must be amended in the context of insolvency and bankruptcy.", + "title": "Law & Economics of Corporate Bankruptcy & Insolvency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6441V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course will consider digital trade's role within the global political economy and its benefits for international economic activity. Students will examine how international trade laws and treaties can affect cross-border digital trade, e-commerce, and emerging technologies (e.g. artificial intelligence, autonomous technology and 5G). Students will explore the legal and economic implications of various regulatory barriers to digital trade, as well as their related public policy concerns (e.g. privacy and cybersecurity), and learn about facilitating digital trade infrastructure, the key intellectual property issues in digital trade, and the linkages between trade and investment in the digital economy.", + "title": "Digital Trade and Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6442", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course will consider digital trade's role within the global political economy and its benefits for international economic activity. Students will examine how international trade laws and treaties can affect cross-border digital trade, e-commerce, and emerging technologies (e.g. artificial intelligence, autonomous technology and 5G). Students will explore the legal and economic implications of various regulatory barriers to digital trade, as well as their related public policy concerns (e.g. privacy and cybersecurity), and learn about facilitating digital trade infrastructure, the key intellectual property issues in digital trade, and the linkages between trade and investment in the digital economy.", + "title": "Digital Trade and Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6442V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how the securities and capital markets are structured and regulated in Asia, particularly in Mainland China and Hong Kong. The topics covered in this course include, amongst others, the regulatory framework for the capital markets, securities offering, stock exchange listing, market misconduct such as insider trading, Fintech issues such as crowdfunding, mobile payment and cryptoassets. Given the nature of the course, a comparative approach will be adopted to examining the topics covered.", + "title": "Capital Markets Law in Mainland China and HKSAR", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6443", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how the securities and capital markets are structured and regulated in Asia, particularly in Mainland China and Hong Kong. The topics covered in this course include, amongst others, the regulatory framework for the capital markets, securities offering, stock exchange listing, market misconduct such as insider trading, Fintech issues such as crowdfunding, mobile payment and cryptoassets. Given the nature of the course, a comparative approach will be adopted to examining the topics covered.", + "title": "Capital Markets Law in Mainland China and HKSAR", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6443V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law of the Marine Environment discusses the legal framework for the international governance of shipping. Within this framework it considers the powers flag, coastal and ports states have to prescribe and enforce environmental shipping regulations. The main characteristics of the established regulatory system is further described. The course then embarks on a detailed analysis of a number of international and national civil liability regimes developed for the recovery of pollution damage. Contemporary environmental challenges faced by shipping, namely, the reduction of atmospheric pollution and greenhouse gas emissions and the issue of recycling of ships are then examined.", + "title": "Law of the Marine Environment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6444", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law of the Marine Environment discusses the legal framework for the international governance of shipping. Within this framework it considers the powers flag, coastal and ports states have to prescribe and enforce environmental shipping regulations. The main characteristics of the established regulatory system is further described. The course then embarks on a detailed analysis of a number of international and national civil liability regimes developed for the recovery of pollution damage. Contemporary environmental challenges faced by shipping, namely, the reduction of atmospheric pollution and greenhouse gas emissions and the issue of recycling of ships are then examined.", + "title": "Law of the Marine Environment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6444V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the theory and practice of constitutionalism in four countries that are located in South and South East Asia: India, Indonesia, Singapore and Sri Lanka. Two of these are among the largest, most pluralistic nations in the world, while the remaining two are small island states. All four nations experienced long periods of colonial rule, which continues to have a decisive impact on their post-colonial legal and constitutional orders. The course will be of interest to those who seek to study constitutionalism against larger societal debates about economic development, cultural values, and human rights.", + "title": "Comparative Constitutionalism in Southern Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6446", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the theory and practice of constitutionalism in four countries that are located in South and South East Asia: India, Indonesia, Singapore and Sri Lanka. Two of these are among the largest, most pluralistic nations in the world, while the remaining two are small island states. All four nations experienced long periods of colonial rule, which continues to have a decisive impact on their post-colonial legal and constitutional orders. The course will be of interest to those who seek to study constitutionalism against larger societal debates about economic development, cultural values, and human rights.", + "title": "Comparative Constitutionalism in Southern Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6446V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a hands-on introduction to legal data science and aims to improve students\u2019 understanding of:\n1) legal issues that involve technology;\n2) the technologies that underlie many legal\u2013tech products; and\n3) how technology can be used in empirical legal research.\nThis class also provides practice in the logical reasoning skills important to many areas of legal practice and improves students\u2019 abilities to communicate with clients in high-tech industries.\nNo computer programming experience is required. Class operates in a \u201cflipped\u201d manner with weekly homework and readings, and intensive classroom activities that are designed to help students overcome learning obstacles.", + "title": "Legal Data Science", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6447", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a hands-on introduction to legal data science and aims to improve students\u2019 understanding of:\n1) legal issues that involve technology;\n2) the technologies that underlie many legal\u2013tech products; and\n3) how technology can be used in empirical legal research.\nThis class also provides practice in the logical reasoning skills important to many areas of legal practice and improves students\u2019 abilities to communicate with clients in high-tech industries.\nNo computer programming experience is required. Class operates in a \u201cflipped\u201d manner with weekly homework and readings, and intensive classroom activities that are designed to help students overcome learning obstacles.", + "title": "Legal Data Science", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6447V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The common-law world only exists because of its shared history. History explains the common lawyer\u2019s profession. This module introduces the study of legal history with an eye to its contemporary relevance. It concentrates on the colonial roots of the laws and legal institutions of common-law countries such as Singapore. By examining colonial settings across three centuries, we shall see how English law dealt with cultural plurality and territorial expansion, and how imperial stakeholders debated and applied ideas from the rule of law to judicial independence. We explore why, how, and for whom law was made, and how these dynamics changed upon decolonisation.", + "title": "Legal History: Themes and Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6448", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The common-law world only exists because of its shared history. History explains the common lawyer\u2019s profession. This module introduces the study of legal history with an eye to its contemporary relevance. It concentrates on the colonial roots of the laws and legal institutions of common-law countries such as Singapore. By examining colonial settings across three centuries, we shall see how English law dealt with cultural plurality and territorial expansion, and how imperial stakeholders debated and applied ideas from the rule of law to judicial independence. We explore why, how, and for whom law was made, and how these dynamics changed upon decolonisation.", + "title": "Legal History: Themes and Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6448V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Water is everywhere. Water is life! But how is water regulated when it crosses national borders? And how is it regulated when it is found underground? Can water in one country be of relevance for the international community as a whole? These are some of the questions that will be discussed in the intensive course on International Water Law. Throughout three weeks students will focus on transboundary surface water (first week), transboundary aquifers (second week) and on three specific water related matters that link water with other key relevant international legal areas (third week): climate change, sustainable development and security.", + "title": "International Water Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6449", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 38, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Water is everywhere. Water is life! But how is water regulated when it crosses national borders? And how is it regulated when it is found underground? Can water in one country be of relevance for the international community as a whole? These are some of the questions that will be discussed in the intensive course on International Water Law. Throughout three weeks students will focus on transboundary surface water (first week), transboundary aquifers (second week) and on three specific water related matters that link water with other key relevant international legal areas (third week): climate change, sustainable development and security.", + "title": "International Water Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6449V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a broad overview of Singapore\u2019s legal history, including its historical common law origins and the evolution of its key institutions and traditions. Topics covered include the historical development of Singapore\u2019s sources of law; the Singapore Constitution; judicial system; legal profession, legal service; legal education; criminal law; land law and law reporting. Assessment will be by way of a research paper on a selected topic to submit at the end of the course.", + "title": "Singapore Legal History", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6450", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a broad overview of Singapore\u2019s legal history, including its historical common law origins and the evolution of its key institutions and traditions. Topics covered include the historical development of Singapore\u2019s sources of law; the Singapore Constitution; judicial system; legal profession, legal service; legal education; criminal law; land law and law reporting. Assessment will be by way of a research paper on a selected topic to submit at the end of the course.", + "title": "Singapore Legal History", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6450V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on some of the neglected historical aspects of international law, but also on the techniques of doing a \u201chistory\u201d of the discipline (how is one even to attempt a history (or histories) of Euro-centric international law?). It will concentrate on topics as diverse as territorial acquisition and religious authority (the 1494 Treaty of Tordesillas), on the freedom of the oceans and the slave trade, on colonies and race. The course will also be of particular interest to modalities of accountability for the international legal past, such as the 2000 Women\u2019s International Tribunal on Sexual Violence and the recent advisory opinion of the International Court of Justice in the Chagos Archipelago.", + "title": "An Uncensored History of International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6451", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on some of the neglected historical aspects of international law, but also on the techniques of doing a \u201chistory\u201d of the discipline (how is one even to attempt a history (or histories) of Euro-centric international law?). It will concentrate on topics as diverse as territorial acquisition and religious authority (the 1494 Treaty of Tordesillas), on the freedom of the oceans and the slave trade, on colonies and race. The course will also be of particular interest to modalities of accountability for the international legal past, such as the 2000 Women\u2019s International Tribunal on Sexual Violence and the recent advisory opinion of the International Court of Justice in the Chagos Archipelago.", + "title": "An Uncensored History of International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6451V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When a person refers to \u201cfamily law\u201d, listeners generally assume that the person is referring to divorce law. However, family law in Singapore encompasses much more, e.g. mental capacity, probate, and adoption.\n\nThis course will cover the above areas as well as more specialised topics in family law, e.g. relocation, cross border divorce and maintenance, child abduction, and therapeutic justice, and will also include an introduction to procedural and practical aspects of family law litigation.", + "title": "Specialised Topics in Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6452", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When a person refers to \u201cfamily law\u201d, listeners generally assume that the person is referring to divorce law. However, family law in Singapore encompasses much more, e.g. mental capacity, probate, and adoption.\n\nThis course will cover the above areas as well as more specialised topics in family law, e.g. relocation, cross border divorce and maintenance, child abduction, and therapeutic justice, and will also include an introduction to procedural and practical aspects of family law litigation.", + "title": "Specialised Topics in Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6452V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of how intellectual property laws (e.g. copyright, trademarks and right of publicity) regulate the world of fashion. It will also explore the enforcement of intellectual property laws in the fashion industry from an interdisciplinary perspective drawing on writings in cultural studies and fashion theory.", + "title": "Fashion Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6453", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Commercial conflict of laws is a significant area of legal scholarship and practice. The chief aim of the course is to examine the foundational principles of commercial conflict of laws in Singapore. First, it identifies and assesses the set of rules based on which Singapore courts decide whether to entertain international commercial disputes. Second, the unit outlines the provisions based on which Singapore courts determine the law governing the parties\u2019 cross-border disputes. Finally, the unit outlines the rules according to which courts in Singapore give effect to foreign judgments.", + "title": "Commercial Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6454", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Commercial conflict of laws is a significant area of legal scholarship and practice. The chief aim of the course is to examine the foundational principles of commercial conflict of laws in Singapore. First, it identifies and assesses the set of rules based on which Singapore courts decide whether to entertain international commercial disputes. Second, the unit outlines the provisions based on which Singapore courts determine the law governing the parties\u2019 cross-border disputes. Finally, the unit outlines the rules according to which courts in Singapore give effect to foreign judgments.", + "title": "Commercial Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6454V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is the second installment on the taxation of cross-border commercial transactions. The first installment, Taxation of Cross-Border Commercial Transactions I, is a pre-requisite. This course will interest those who want to practise tax law and/or those who took the first installment and enjoyed it. \n\nTopics covered: \n- The OECD Model Double Tax Treaty including the Multilateral Instrument (in-depth)\n- Anti-avoidance rules and tax planning\n- Accounting for Tax Consequences\n- The Impact of Bilateral Investment Treaties on International Tax\n- Tax Theory", + "title": "Taxation of Cross-Border Commercial Transactions II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6455", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is the second installment on the taxation of cross-border commercial transactions. The first installment, Taxation of Cross-Border Commercial Transactions I, is a pre-requisite. This course will interest those who want to practise tax law and/or those who took the first installment and enjoyed it. \n\nTopics covered: \n- The OECD Model Double Tax Treaty including the Multilateral Instrument (in-depth)\n- Anti-avoidance rules and tax planning\n- Accounting for Tax Consequences\n- The Impact of Bilateral Investment Treaties on International Tax\n- Tax Theory", + "title": "Taxation of Cross-Border Commercial Transactions II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6455V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Legal innovation and technology are new foci in the legal profession as technologies of automation transform the nature of practice. This module provides a theoretically-informed, hands-on practical experience in producing the types of legaltech that are transforming practice, while also equipping the student with the critical faculties to determine their appropriate application. This module offers highly practical lab-based work where students learn the fundamentals of automating legal services and decision support systems, as well as developing skills required for designing new technologies to aid the practice of law.", + "title": "Legal Technology & Innovation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6456", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Legal innovation and technology are new foci in the legal profession as technologies of automation transform the nature of practice. This module provides a theoretically-informed, hands-on practical experience in producing the types of legaltech that are transforming practice, while also equipping the student with the critical faculties to determine their appropriate application. This module offers highly practical lab-based work where students learn the fundamentals of automating legal services and decision support systems, as well as developing skills required for designing new technologies to aid the practice of law.", + "title": "Legal Technology & Innovation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6456V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The two fundamental goals of the module are to introduce students to topical issues surrounding international human rights law and to lay the foundation for their future advanced studies of, or work in, the field of human rights. The first section addresses normative bases, right-holders, and various types of human rights, corresponding territorial and extraterritorial obligations of states and non-state actors, and international and regional mechanisms of human rights protection. The second section explores the role of human rights in solving pressing global problems, including poverty and inequality, decolonization, social, global and environmental injustice, and other obstacles to sustainable development.", + "title": "International Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6457", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The two fundamental goals of the module are to introduce students to topical issues surrounding international human rights law and to lay the foundation for their future advanced studies of, or work in, the field of human rights. The first section addresses normative bases, right-holders, and various types of human rights, corresponding territorial and extraterritorial obligations of states and non-state actors, and international and regional mechanisms of human rights protection. The second section explores the role of human rights in solving pressing global problems, including poverty and inequality, decolonization, social, global and environmental injustice, and other obstacles to sustainable development.", + "title": "International Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6457V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s expanding influence has been accompanied by a maturing of its legal framework for arbitration, as well as an increasingly active role in investor-state dispute settlement. This course undertakes a detailed examination of all facets of commercial arbitration in China, set within the context of China\u2019s transformational economic rise. It also explores salient issues that arise in commercial and investor-state arbitrations involving Chinese parties or China. Attention will be drawn to the import and impact of recent developments, including the South China Sea and the Belt and Road Initiative, as well as China\u2019s relationship with India, ASEAN and the US.", + "title": "China and International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6458", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s expanding influence has been accompanied by a maturing of its legal framework for arbitration, as well as an increasingly active role in investor-state dispute settlement. This course undertakes a detailed examination of all facets of commercial arbitration in China, set within the context of China\u2019s transformational economic rise. It also explores salient issues that arise in commercial and investor-state arbitrations involving Chinese parties or China. Attention will be drawn to the import and impact of recent developments, including the South China Sea and the Belt and Road Initiative, as well as China\u2019s relationship with India, ASEAN and the US.", + "title": "China and International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6458V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to explore innovation and regulation of FinTech and its embedded platform economy. FinTech and its embedded platform economy, which is empowered by information communication technologies and cantered on data-driven online platforms, has transformed the paradigms of conducting commercial and financial activities. \n\nThrough a series of lectures, seminars, and group discussions, this module will explore the new phenomenon of the platform economy, especailly the FinTech innovation pertinant to Money, Investment, Data and Innovative Dispute Resolutions. A guest lecture by an experienced practitioner will be also arranged. \n\nA research-based, student-centred, and globally-oriented pedagogy will guide the teaching and learning engagement.", + "title": "Law, FinTech and the Platform Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6460", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to explore innovation and regulation of FinTech and its embedded platform economy. FinTech and its embedded platform economy, which is empowered by information communication technologies and cantered on data-driven online platforms, has transformed the paradigms of conducting commercial and financial activities. \n\nThrough a series of lectures, seminars, and group discussions, this module will explore the new phenomenon of the platform economy, especailly the FinTech innovation pertinant to Money, Investment, Data and Innovative Dispute Resolutions. A guest lecture by an experienced practitioner will be also arranged. \n\nA research-based, student-centred, and globally-oriented pedagogy will guide the teaching and learning engagement.", + "title": "Law, FinTech and the Platform Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6460V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the rules and standards that govern the subject of compliance and risk management. It starts by examining questions of governance: boards of directors, and executives. we then examine the compliance function through the lens of managers, regulators, prosecutors, whistle blowers, and gatekeepers. Next, we consider particular areas of the law: corruption, anti-money laundering, and export controls. We examine case studies where compliance fails and initiatives that go beyond compliance. Finally, we consider risk management as it pertains to lawyers; topics here include the governance of risk; approaches to risk management; reputational, operational, and enterprise risk.", + "title": "Compliance and Risk Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6461", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the rules and standards that govern the subject of compliance and risk management. It starts by examining questions of governance: boards of directors, and executives. We then examine the compliance function\nthrough the lens of managers, regulators, prosecutors, whistle blowers, and gatekeepers. Next, we consider particular areas of the law: corruption, anti-money\nlaundering, and export controls. We examine case studies where compliance fails and initiatives that go beyond compliance. Finally, we consider risk management as it pertains to lawyers; topics here include the governance of risk; approaches to risk management; reputational, operational, and enterprise risk.", + "title": "Compliance and Risk Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6461V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recent decades have witnessed a growth in commercial dealings between EU Member States and South East Asian countries, specially Singapore. Consequently, it is not uncommon for Singaporean individuals or businesses to become involved in commercial disputes with EU-based entities. This elective examines how the ensuing conflict-oflaws questions in these cases are resolved by courts in the EU (which, after Brexit, is dominated by civil law states). This elective would be particularly beneficial to those who are likely to be engaged by clients in Singapore or South East Asia who become involved in litigation before EU Member State courts.", + "title": "Civil Law Approaches to Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6462", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Recent decades have witnessed a growth in commercial dealings between EU Member States and South East Asian countries, specially Singapore. Consequently, it is not uncommon for Singaporean individuals or businesses to become involved in commercial disputes with EU-based entities. This elective examines how the ensuing conflict-oflaws questions in these cases are resolved by courts in the EU (which, after Brexit, is dominated by civil law states). This elective would be particularly beneficial to those who are likely to be engaged by clients in Singapore or South East Asia who become involved in litigation before EU Member State courts.", + "title": "Civil Law Approaches to Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6462V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This externship, co-convened by a senior policymaker and a law professor, is designed to enable the student to gain a better understanding of influence of the law in the arts and adjacent sectors, inter alia, literary, visual and performing arts, in particular intellectual property and contract laws. The student will be involved in the Arts Resource Hub, draft artists\u2019 rights statements and agreement templates for arts practitioners, and perform high-quality research relevant for policymakers.", + "title": "National Arts Council Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6463", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This externship, co-convened by a senior policymaker and a law professor, is designed to enable the student to gain a better understanding of influence of the law in the arts and adjacent sectors, inter alia, literary, visual and performing arts, in particular intellectual property and contract laws. The student will be involved in the Arts Resource Hub, draft artists\u2019 rights statements and agreement templates for arts practitioners, and perform high-quality research relevant for policymakers.", + "title": "National Arts Council Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6463V", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Port financing is crucial to port performance and development. This course thus examines how port financing is supported or not as the case may be by law and regulation. It takes an internationalist and comparative approach to the subject. That said, where appropriate it will consider the Singapore legal system. The topics examined include the role of ports (as beneficiary of financing and as the investor), tools for port financing, legal management of risks and bankability of port projects, good practice in public-private initiatives, port concession agreements and green port financing.", + "title": "Principles of Port Finance and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6464", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Port financing is crucial to port performance and development. This course thus examines how port financing is supported or not as the case may be by law and regulation. It takes an internationalist and comparative approach to the subject. That said, where appropriate it will consider the Singapore legal system. The topics examined include the role of ports (as beneficiary of financing and as the investor), tools for port financing, legal management of risks and bankability of port projects, good practice in public-private initiatives, port concession agreements and green port financing.", + "title": "Principles of Port Finance and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6464V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Geographical Indications (GIs) signal the provenance of reputed products such as Champagne, Darjeeling and Prosciutto di Parma. They also constitute valuable \ncollective brands. This course (i) outlines the relevant international treaties mandating how they should be protected, (ii) compares the three competing models of protection envisaged by these treaties (trade mark law; unfair competition law; and sui generis protection), (iii) via EU law, explains the distinctive features of the sui generis model, and (iv) explores contemporary challenges, including the effects of climate change on terroir and the accommodation of handicrafts in a regime designed around agricultural products.", + "title": "International Geographical Indications Protection (IP)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6465", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Geographical Indications (GIs) signal the provenance of reputed products such as Champagne, Darjeeling and Prosciutto di Parma. They also constitute valuable\ncollective brands. This course (i) outlines the relevant international treaties mandating how they should be protected, (ii) compares the three competing models of protection envisaged by these treaties (trade mark law;\nunfair competition law; and sui generis protection), (iii) via EU law, explains the distinctive features of the sui generis model, and (iv) explores contemporary challenges, including the effects of climate change on terroir and the\naccommodation of handicrafts in a regime designed around agricultural products.", + "title": "International Geographical Indications Protection (IP)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6465V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is based on both theoretical and practical approaches and regulative initiatives related to the digital governance, focusing to the existing and planned AI use-cases by public authorities in the fields. Reconciliation of data driven society with legal society and Rule of Law is a challenge to all of the jurisdictions. This module is using comparative method but is focusing on leading legal standard setting entity, European Union (and its member states, especially Estonia as a flagship country in e-gov), when analysing the norms, explaining the controversies, best practice and new legal doctrines related to Digital Governance.", + "title": "Ethical Digital Governance and Legal Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6471", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is based on both theoretical and practical approaches and regulative initiatives related to the digital governance, focusing to the existing and planned AI use-cases by public authorities in the fields. Reconciliation of data driven society with legal society and Rule of Law is a challenge to all of the jurisdictions. This module is using comparative method but is focusing on leading legal standard setting entity, European Union (and its member states, especially Estonia as a flagship country in e-gov), when analysing the norms, explaining the controversies, best practice and new legal doctrines related to Digital Governance.", + "title": "Ethical Digital Governance and Legal Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6471V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since its adoption nearly a decade ago, the Belt and Road Initiative (BRI) has quickly become a key consideration in China\u2019s trade policy-making, and has attracted growing attention across the globe. This course explores how China produces and enhances its influence in global trade governance through BRI implementation, and how the international community should respond to China\u2019s growing influence. Nine selected issues will be discussed. This course will be conducted in an interactive way, including lectures of the professor, students presentations, and class discussions.", + "title": "The Belt & Road Initiative & Int\u2019l Trade Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6472", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Since its adoption nearly a decade ago, the Belt and Road Initiative (BRI) has quickly become a key consideration in China\u2019s trade policy-making, and has attracted growing attention across the globe. This course explores how China produces and enhances its influence in global trade governance through BRI implementation, and how the international community should respond to China\u2019s growing influence. Nine selected issues will be discussed. This course will be conducted in an interactive way, including lectures of the professor, students presentations, and class discussions.", + "title": "The Belt & Road Initiative & Int\u2019l Trade Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6472V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the international legal frameworks relating to various aspects of the management and governance of energy resources including the impact of\ninvestment law, trade law, property law and environmental law on energy transactions. It assesses how international law impacts on the energy sector and reviews selected national legal regimes concerning the regulation of energy\nresources such as nuclear, renewables, petroleum and gas, in addition to energy infrastructures such as pipelines and offshore platforms.", + "title": "International Energy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6473", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the international legal frameworks relating to various aspects of the management and governance of energy resources including the impact of\ninvestment law, trade law, property law and environmental law on energy transactions. It assesses how international law impacts on the energy sector and reviews selected national legal regimes concerning the regulation of energy\nresources such as nuclear, renewables, petroleum and gas, in addition to energy infrastructures such as pipelines and offshore platforms.", + "title": "International Energy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6473V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a foundational understanding of cybersecurity and privacy law drawing from international, European, and American legal perspectives. The distinct value of the course is that it integrates insights from both cybersecurity and privacy. The course offers an understanding of the core concepts, the relevant rules, and discusses the tensions that underpin these areas of law by addressing their complexities and contradictions. The additional advantage of the course is that it combines multiple legal perspectives. The carefully selected readings reflect the diversity of legal approaches to cybersecurity and privacy, and engage with multiple legal systems.", + "title": "Cybersecurity and Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6474", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a foundational understanding of cybersecurity and privacy law drawing from international, European, and American legal perspectives. The distinct value of the course is that it integrates insights from both cybersecurity and privacy. The course offers an understanding of the core concepts, the relevant rules, and discusses the tensions that underpin these areas of law by addressing their complexities and contradictions. The additional advantage of the course is that it combines multiple legal perspectives. The carefully selected readings reflect the diversity of legal approaches to cybersecurity and privacy, and engage with multiple legal systems.", + "title": "Cybersecurity and Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6474V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the law, directives and guidelines pertaining to the conduct of investment management activity in Singapore. The primary focus is on the regulatory regime in Singapore but significant elements of selected foreign regulatory regimes affecting investment managers in Singapore will also be introduced. Some of the latest industry trends will be examined. The course is tailored to lay a foundation for those considering a career in the investment management industry, either as a legal practitioner in a law firm or as an in-house legal counsel or compliance officer within an investment management company.", + "title": "Law and Practice of Investment Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6475", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the law, directives and guidelines pertaining to the conduct of investment management activity in Singapore. The primary focus is on the regulatory regime in Singapore but significant elements of selected foreign regulatory regimes affecting investment managers in Singapore will also be introduced. Some of the latest industry trends will be examined. The course is tailored to lay a foundation for those considering a career in the investment management industry, either as a legal practitioner in a law firm or as an in-house legal counsel or compliance officer within an investment management company.", + "title": "Law and Practice of Investment Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6475V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in U.S. copyright law, both traditional and digital, in international and comparative perspective. Some of the specific topics we will cover are the subject matter of copyright; ownership; duration and transfer; infringement; fair use; and the Digital Millennium Copyright Act.", + "title": "US Copyright: International & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6476", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in U.S. copyright law, both traditional and digital, in international and comparative perspective. Some of the specific topics we will cover are the subject matter of copyright; ownership; duration and transfer; infringement; fair use; and the Digital Millennium Copyright Act.", + "title": "US Copyright: International & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6476V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The three East Asian jurisdictions (i.e., South Korea, Taiwan and Japan) covered in this course adopt the civil law tradition and have received the Romano-Germanic\ncivil code. The study of civil law in East Asia broadens our legal horizons and enables us to have diverse legal minds in response to the globalisation era. Broadly speaking, the topics covered in this course are as follows: (1) Introduction to Comparative Private Law, (2) Private law in East Asia: History, Development and Methodology, (3) Contract Law in East Asia; (4) Property Law in East Asia; and (5) Trust Law in East Asia.", + "title": "Private Law in East Asia (Korea, Taiwan, Japan)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6477", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The three East Asian jurisdictions (i.e., South Korea, Taiwan and Japan) covered in this course adopt the civil law tradition and have received the Romano-Germanic civil code. The study of civil law in East Asia broadens our legal horizons and enables us to have diverse legal minds in response to the globalisation era. Broadly speaking, the topics covered in this course are as follows: (1) Introduction\nto Comparative Private Law, (2) Private law in East Asia: History, Development and Methodology, (3) Contract Law in East Asia; (4) Property Law in East Asia; and (5) Trust Law in East Asia.", + "title": "Private Law in East Asia (Korea, Taiwan, Japan)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6477V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with private international law (or \u2018conflict of laws\u2019) in the specialized context of international corporate insolvency and restructuring. It provides an opportunity for students who are interested in corporate insolvency and restructuring at the domestic level to consider the legal problems that arise in insolvency and restructuring cases where the assets and creditors are in multiple jurisdictions. The module will consider domestic, regional, and international approaches that lawmakers have developed to promote international cooperation in cross-border insolvency cases, including instruments such as the European Union Insolvency Regulation and the UNCITRAL Model Law on Cross-Border Insolvency.", + "title": "Cross-Border Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6478", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with private international law (or \u2018conflict of laws\u2019) in the specialized context of international corporate insolvency and restructuring. It provides an opportunity for students who are interested in corporate insolvency and restructuring at the domestic level to consider the legal problems that arise in insolvency and restructuring cases where the assets and creditors are in multiple jurisdictions. The module will consider domestic, regional, and international approaches that lawmakers have developed to promote international cooperation in cross-border insolvency cases, including instruments such as the European Union Insolvency Regulation and the UNCITRAL Model Law on Cross-Border Insolvency.", + "title": "Cross-Border Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6478V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Financial markets have been traditionally permeable to technological progress and technology has been an important driving force in the transformation of finance.\nNevertheless, the vertiginous pace of contemporary technological innovation, the multi-layered impact on the market (actors, activities, transactions) and the unpredictable effects of its application on a large scale, represent unprecedented challenges for financial regulators and supervisors. The aim of the course is to\nidentify these legal and regulatory challenges and discuss, compare, and propose possible policy options in establishing a framework conducive to innovation,\ncreativity, and social inclusiveness, without compromising the protection of interests and rights.", + "title": "Challenges of Emerging Technologies to Financial Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6479", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Financial markets have been traditionally permeable to technological progress and technology has been an important driving force in the transformation of finance.\nNevertheless, the vertiginous pace of contemporary technological innovation, the multi-layered impact on the market (actors, activities, transactions) and the unpredictable effects of its application on a large scale, represent unprecedented challenges for financial regulators and supervisors. The aim of the course is to\nidentify these legal and regulatory challenges and discuss, compare, and propose possible policy options in establishing a framework conducive to innovation,\ncreativity, and social inclusiveness, without compromising the protection of interests and rights.", + "title": "Challenges of Emerging Technologies to Financial Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6479V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the course is to analyse the legal phenomenon through the notions of neoclassical economics. The course covers the main topics of the Economic Analysis of the law of obligations (i.e., of Torts law and of Contracts Law), with a special focus on contractual remedies. The course offers an in-depth analysis of the different doctrines that govern unforeseen supervening events and changes of circumstances in the common law and the civil law systems. Through the adoption of the economic analysis of law methodology, the course will shed light on the economic rationale behind such different doctrines.", + "title": "Economic Analysis of Private Law (Contract and Torts)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6480", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the course is to analyse the legal phenomenon through the notions of neoclassical economics. The course covers the main topics of the Economic Analysis of the law of obligations (i.e., of Torts law and of Contracts Law), with a special focus on contractual remedies. The course offers an in-depth analysis of the different doctrines that govern unforeseen supervening events and changes of circumstances in the common law and the civil law systems. Through the adoption of the economic analysis of law methodology, the course will shed light on the economic rationale behind such different doctrines.", + "title": "Economic Analysis of Private Law (Contract and Torts)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6480V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject explores the influence and potential of trusts law in the Asia-Pacific region. It begins by considering the history of trusts diffusion, how trusts law has been used to regulate customary and religious property-holding forms, and assesses the ways in which the trust has been (re)conceptualised in non-common law jurisdictions. It then examines the different uses of the trust in the region: in the family and commercial contexts, as well as a financial product. The subject also considers the reach of constructive and resulting trusts in the region. Finally, it will discuss trusts law\u2019s private international law perspective.", + "title": "Trusts Law in the Asia-Pacific Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6481", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This subject explores the influence and potential of trusts law in the Asia-Pacific region. It begins by considering the history of trusts diffusion, how trusts law has been used to regulate customary and religious property-holding forms, and assesses the ways in which the trust has been (re)conceptualised in non-common law jurisdictions. It then examines the different uses of the trust in the region: in the family and commercial contexts, as well as a financial product. The subject also considers the reach of constructive and resulting trusts in the region. Finally, it will discuss trusts law\u2019s private international law perspective.", + "title": "Trusts Law in the Asia-Pacific Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6481V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the law, institutions, and practices set up in Asia to facilitate political transitions. It examines the international and domestic legal frameworks and principles governing these transitional mechanisms as well as their critique. It studies the many pressing and conflicting needs of post-war societies or societies in transition and how these different needs are captured in transitional mechanisms, such as trials, truth and reconciliation commissions, and reparation schemes. Using Asian case studies (e.g. Timor Leste, Cambodia, Indonesia), this module will explore the challenges faced by societies undergoing political transition and the different measures adopted to address past injustices and facilitate transition.", + "title": "Transitional Justice in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6482", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the law, institutions, and practices set up in Asia to facilitate political transitions. It examines the international and domestic legal frameworks and principles governing these transitional mechanisms as well as their critique. It studies the many pressing and conflicting needs of post-war societies or societies in transition and how these different needs are captured in transitional mechanisms, such as trials, truth and reconciliation commissions, and reparation schemes. Using Asian case studies (e.g. Timor Leste, Cambodia, Indonesia), this module will explore the challenges faced by societies undergoing political transition and the different measures adopted to address past injustices and facilitate transition.", + "title": "Transitional Justice in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6482V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces aircraft financing and the law, the documentation implementing such financing, \u201ctitle\u201d to aircraft and the unique features of title financing. It explores the anatomy of aircraft loan agreements, the types of collateral securing such loans, the cross-border characteristics of financing, insurance, the modular feature of engines and how Export Credit Agencies and capital markets provide financing. The role of Lease financing and Lessors is considered as alternative means for financing aircraft acquisition. Lastly, the course covers airline debt restructuring (following airline insolvencies during the pandemic) and the impact of international treaties, particularly the Cape Town Convention/Protocol.", + "title": "Aviation Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LL6483", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces aircraft financing and the law, the documentation implementing such financing, \u201ctitle\u201d to aircraft and the unique features of title financing. It explores the anatomy of aircraft loan agreements, the types of collateral securing such loans, the cross-border characteristics of financing, insurance, the modular feature of engines and how Export Credit Agencies and capital markets provide financing. The role of Lease financing and Lessors is considered as alternative means for financing aircraft acquisition. Lastly, the course covers airline debt restructuring (following airline insolvencies during the pandemic) and the impact of international treaties, particularly the Cape Town Convention/Protocol.", + "title": "Aviation Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LL6483V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Admiralty Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the various concepts relating to the admiralty action in rem, which is the primary means by which a maritime claim is enforced. Topics will include: the nature of an action in rem; the subject matter of admiralty jurisdiction; the invocation of admiralty jurisdiction involving the arrest of offending and sister ships; the procedure for the arrest of ships; liens encountered in admiralty practice: statutory, maritime and possessory liens; the priorities governing maritime claims; and time bars and limitations. This course is essential to persons who intend to practice shipping law.", + "title": "Admiralty Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5002V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Aviation Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an insight into international civil aviation and the legal and regulatory issues facing airlines, governments and the common passenger. Issues raised include public air law and policy, aviation security in light of recent global developments and private air law. Emphasis will be placed on issues relevant to Singapore and Asia, given Singapore's status as a major aviation hub and the exponential growth of the industry in the Asia-Pacific. Topics to be discussed include the Chicago Convention on International Civil Aviation, bilateral services agreements, aircraft safety, terrorism and aviation security and carrier liability for death or injury to passengers. Competition among airlines will also be analysed, including business strategies such as code-sharing, frequent flier schemes and alliances. The severe competitive environment introduced by weakening economies, war and terrorism will also be discussed. This course will be relevant for individuals with a keen interest in air travel, and is designed for those interested in joining the aviation industry or large law firms with an aviation practice.", + "title": "Aviation Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5004V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to familiarise the student with the key principles relating to the modern law of banking. Four main areas will be covered: the law of negotiable instruments, the law of payment systems, the banker customer relationship and bank regulation. Students who wish to obtain a basic knowledge of banking law will benefit from this course. It is also recommended that those who wish to specialize in banking law take this course as a foundational course, prior to studying the more advanced banking courses.", + "title": "Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5006V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biotechnology Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will deal with the basic intellectual property, ethical, regulatory and policy issues in biotechnological innovations. It will focus mainly on patent issues including the patentability of biological materials, gene sequences, animals, plants and humans; infringement, ownership and licensing. Students will also be acquainted with genetic copyright, trade secrets protection and basic ethical and regulatory aspects including gene technology and ES cell research. Apart from Singapore law, a comparative analysis of the legal position in Europe and USA, as well as the major international conventions will be made. Students will also be introduced to the fundamentals of biology and genetics. (Class presentation is subject to change depending on student subscription).", + "title": "Biotechnology Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5007V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Credit & Security", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the granting of credit and the taking of security by bank as well as aspects of bank supervision. The course starts with the Part on Bank Supervision and then turns to the discussion of unsecured lending and the Moneylenders' Act. It then focuses on secured credit. The discussion of the general regulation of the giving of security is followed by an examination of specific security devices, such as pledges, trust receipts, Romalpa clauses, factoring, stocks and shares as security, and guarantees and indemnities. The emphasis throughout is on the commercial effectiveness of the system.", + "title": "Credit & Security", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5019V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Introduction to Indonesian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5024", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will initiate the student to the basics of Indonesian law (adat law, Islamic law, legal pluralism, constitutional law, administrative law, civil law, judicial process) as well as to others aspects that are of concern to foreigners (foreign investment laws and protections, regional autonomy, mining laws etc.). It will also address some of the problems relating to law enforcement in Indonesia", + "title": "Introduction To Indonesian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5024V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Infocoms Law: Competition & Convergence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5026V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5029", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic understanding of the law of arbitration to enable them to advise and represent parties in the arbitral process confidence. Legal concepts peculiar to arbitration viz. separability, arbitrability and kompetenze-kompetenze will considered together with the procedural laws on the conduct of the arbitral process, the making of and the enforcement of awards. Students will examine the UNCITRAL Model Law and the New York Convention, 1958. This course is most suited for students with some knowledge of the law of commercial transactions, shipping, banking, international sale of goods or construction.", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5029V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Globalisation has made it more important for lawyers to be knowledgeable about the international aspects of litigation. This course focuses on the jurisdictional techniques most relevant to international commercial litigation: in personam jurisdiction, forum non conveniens, interim protective measures, recognition and enforcement of foreign judgments, public policy, and an outline of choice of law issues for commercial contracts. The course, taught from the perspective of Singapore law, based largely on the common law, is designed to give an insight into the world of international litigation. These skills are relevant to not only litigation lawyers, but also lawyers planning international transactions.", + "title": "International Commercial Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5030V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Environmental Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International law traditionally concerns itself with the relations between states, yet environmental problems transcend borders. International environmental law demonstrates how international norms can affect national sovereignty on matters of common concern. The course surveys international treaties concerning the atmosphere and the conservation of nature, and connections to trade and economic development. Institutions and principles to promote compliance and cooperation are also examined. The course will assist students in their understanding of international law-making. It would be of use to those interested in careers involving international law, both for the government and public sector and those in international trade and investment.", + "title": "International Environmental Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5031V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Investment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5032", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the nature of risks to foreign investment and the elimination of those risks through legal means. As a prelude, it discusses the different economic theories on foreign investment, the formation of foreign investment contracts and the methods of eliminating potential risks through contractual provisions. It then examines the different types of interferences with foreign investment and looks at the nature of the treaty protection available against such interference. It concludes by examining the different methods of dispute settlement available in the area. The techniques of arbitration of investment disputes available are fully explored.", + "title": "International Investment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5032V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Regulation of Shipping", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5034", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the global regime governing the international regulation of commercial shipping. It will examine the relationship between the legal framework established in the 1982 UN Convention on the Law of the Sea and the work of the International Maritime Organization (IMO), the UN specialized agency responsible for the safety and security of international shipping and the prevention of pollution from ships. The course will focus on selected global conventions administered by the IMO, including those governing safety of life at sea (SOLAS), the prevention of pollution from ships (MARPOL) and the training, certification and watchkeeping for seafarers (STCW). It will also examine the liability and compensation schemes that have been developed for pollution damage caused by the carriage of oil and noxious substances by ships, as well as the conventions designed to ensure that States undertake contingency planning in order to combat spills of oil and other noxious and hazardous substances in their waters. In addition, the course will examine the schemes that have been developed to enhance the security of ships and ports in light of the threat of maritime terrorism. It will also examine the role of the IMO in the prevention of pollution of the marine environment from dumping waste at sea and from seabed activities subject to national jurisdiction. One of the themes of the course will be to consider how the IMO is responding to increased concern about the protection and preservation of the marine environment, including threats such as invasive species and climate change. Another theme will be to consider how the responsibility to enforce IMO Conventions is divided between flag States, coastal States, port States and the IMO. This course will be useful to persons who intend to practice shipping law or work in the private or public maritime sector.", + "title": "International Regulation of Shipping", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5034V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Marine Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5043", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to give students a firm foundation of existing law; a working understanding of standard form policies; and an understanding of the interaction between the Marine Insurance Act, case law and the Institute Clauses. Topics will include: types of marine insurance policies; insurable interest; principle of utmost good faith; marine insurance policies; warranties; causation; insured and excluded perils; proof of loss; types of losses; salvage, general average and particular charges; measure of indemnity and abandonment; mitigation of losses. This course will appeal to students who wish to specialise in either insurance law or maritime law.", + "title": "Law Of Marine Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5043V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Negotiation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5045", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Principles of Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5049", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of conflict of laws addresses three questions: Which country should hear the case? What law should be applied? What is the effect of its adjudication in another country? This course includes an outline of jurisdiction and judgments techniques, but will focus on problems in choice of law, and issues in the exclusion of foreign law. Coverage includes problems in contract and torts, and other areas may be selected from time to time. This course is complementary to International Commercial Litigation, but it stands on its own as an introduction to theories and methodologies in the conflict of laws.", + "title": "Principles Of Conflict Of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5049V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5050", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Principles of Restitution", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5051", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Domestic and International Sale of Goods", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5054", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of domestic and international sale of goods under the Singapore law. With regard to domestic sales, the course will focus on the Sale of Goods Act. Topics to\nbe studied will include the essential elements of the contract of sale; the passing of title and risk; the implied conditions of title, description, fitness and quality; delivery and payment, acceptance and termination, and the available remedies. With particular reference to a seller\u2019s delivery obligations, the course will also cover substantial aspects of the international sale of goods under the common law, such as FOB and CIF contracts and documentary sales. This course will be of interest to students intending to enter commercial practice.", + "title": "Domestic and International Sale of Goods", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5054V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Securities Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5055", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "World Trade Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5060", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Business & Finance For Lawyers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5063", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To provide law students who intend to read commercial law electives with a foundation in accounting, finance and other related business concepts. It covers topics such as interpretation and analysis of standard financial statements, the types of players and instruments in the financial markets and the basic framework of a business investment market.The course will employ a hypothetical simulation where lawyers advise on several proposals involving the acquisition and disposal of assets by a client. The issues covered in the hypothetical will include asset valuation models, financing options and techniques, and compliance with accounting and regulatory frameworks.", + "title": "Business & Finance For Lawyers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5063V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5065", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "It Law I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5076", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. Issues to be examined include the conduct of electronic commerce, cybercrimes, electronic evidence, privacy and data protection. (This course will not cover the intellectual property issues, which are addressed instead in \"IT Law: IP Issues\".) Students who are interested in the interface between law, technology and policy will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5076V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. The focus of this course will be on the intellectual property issues such as copyright in software and electronic materials, software patents, electronic databases, trade marks, domain names and rights management information. Students who are interested in the interface between law, technology, policy and economic rights will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5077V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Trusts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5085", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5099", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an understanding of the legal issues arising from casualties involving ships. It will examine aspects of the law relating to nationality and registration of ships, the law relating to the management of ships, ship sale and purchase, and the law of collisions, salvage, towage, wreck and general average. Students successfully completing the course will be familiar with the international conventions governing these issues, as well as the domestic law of Singapore.", + "title": "Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5099V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5128", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Int'l & Comp Law of Sale in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5138", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to prepare students for regional and international trade in Asia by providing basic knowledge of domestic laws of sale in both civil and common law systems in Asia (including Singapore's) as well as international rules affecting the contract of sale. The course will cover: comparative private law of contract and of sale in Asia; international private law of sale; private International Law aspects of international sales. The course is meant for students interested in international trade and comparative law in Asia.", + "title": "Int'l&Comp Law of Sale in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5138V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Law of the Sea governs the conduct of States in the oceans. Given that the oceans covers five-seventh of the world\u2019s surface, it is a critical component of international law. It is also relevant for Singapore due to its extensive maritime interests. This course will examine the theoretical underpinnings and the practical implementation of Law of the Sea with the aim of examining how it addresses the ever-increasing challenges in the regulation of the oceans. The course will draw on a wide range of case studies from around the world, with a particular emphasis on Asia.", + "title": "Law of the Sea: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5140", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Law of the Sea governs the conduct of States in the oceans. Given that the oceans covers five-seventh of the world\u2019s surface, it is a critical component of international law. It is also relevant for Singapore due to its extensive maritime interests. This course will examine the theoretical underpinnings and the practical implementation of Law of the Sea with the aim of examining how it addresses the ever-increasing challenges in the regulation of the oceans. The course will draw on a wide range of case studies from around the world, with a particular emphasis on Asia.", + "title": "Law of the Sea: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5140V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Projects Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5164", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is intended to introduce students to the practice and law relating to international projects and infrastructure. The various methods of procurement and the construction process involved will be reviewed in conjunction with standard forms that are used internationally - such as the FIDIC, JCT and NEC forms, among others. Familiar issues such as defects, time and cost overruns and the implications therefrom (and how these matters are dealt with in an international context) will also be covered.\n\nThe course will provide students with an understanding of how international projects are procured, planned and administered as well as give an insight into how legal and commercial risks are identified, priced, managed and mitigated.", + "title": "International Projects Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5164V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Starting by examining the theory and the need for choice of law and jurisdiction clauses, this course will examine various issues with these clauses by involving students in drafting, negotiating, concluding and eventually enforcing choice of law and jurisdiction clauses (in particular arbitration clauses) in international commercial contracts in Asia. This will be done through real life scenarios being introduced into the classroom in which students will act as lawyers advising and representing clients in drafting and negotiating choice of law and jurisdiction clauses as well as attacking or defending them before a tribunal in a dispute context. Accordingly, students will live through the life of various choice of law and jurisdiction clauses and see how they can be drafted, negotiated and enforced in Asian jurisdictions. \nUpon completion of the course, students will have learnt the theories behind choice of law and jurisdiction clauses as well as the practical skills and lessons in negotiating, finalizing and enforcing them.", + "title": "Choice of Law & Jurisdiction in Int\u2019l Commercial Contracts in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5180", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of conflict of laws issues in the context of maritime law and admiralty litigation. The course will provide an introduction to conflicts theory and concepts before focusing on conflict of jurisdictions, parallel proceedings and forum shopping in admiralty matters; role of foreign law in establishing admiralty jurisdiction; recognition and priority of foreign maritime liens and other claims; choice of law and maritime Conventions; conflicts of maritime Conventions; security for foreign maritime proceedings; and recognition and enforcement of oreign maritime judgments.", + "title": "Maritime Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of conflict of laws issues in the context of maritime law and admiralty litigation. The course will provide an introduction to conflicts theory and concepts before focusing on conflict of jurisdictions, parallel proceedings and forum shopping in admiralty matters; role of foreign law in establishing admiralty jurisdiction; recognition and priority of foreign maritime liens and other claims; choice of law and maritime Conventions; conflicts of maritime Conventions; security for foreign maritime proceedings; and recognition and enforcement of oreign maritime judgments.", + "title": "Maritime Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5205V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module explores principles and rules relating to the exploration for, development and production of oil and gas (upstream operations). The main focus of the module is on the examination of different arrangements governing the\nlegal relationship between states and international oil companies, such as modern concessions, productionsharing agreements, joint ventures, service and hybrid contracts. The agreements governing the relationships between companies involved in upstream petroleum operations (joint operating and unitisation agreements) will also be examined. The module will further explore the\nissues of dispute settlement, expropriation, stability of contracts and a relevant international institutional and legal framework.", + "title": "International and Comparative Oil and Gas Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Other than the traditional unimodal contract of carriage, a multimodal contract of carriage requires more than one modality to perform the carriage. Think of a shipment of steel coils, traveling per train from Germany to the Netherlands, then by sea to Singapore where the last stretch to the end receiver is performed by truck. The course deals with all the legal aspects of such a multimodal contract of carriage.", + "title": "Multimodal Transport Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Other than the traditional unimodal contract of carriage, a multimodal contract of carriage requires more than one modality to perform the carriage. Think of a shipment of steel coils, raveling per train from Germany to the Netherlands, then by sea to Singapore where the last strech to the end receiver is performed by truck. The course deals with all the legal aspects of such a multimodal contract of carriage.", + "title": "Multimodal Transport Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5226V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will give students a broad understanding of the law relating to the international carriage of passengers by sea. Topics to be covered include formation of contract, regulation of cruise ships, State jurisdiction over crimes\nagainst the person on board a ship, liability for accidents, limitation of liability, the Athens Convention 1974/1990, and conflict of laws/jurisdictional issues relating to passenger claims. This module will be useful for those who\nare intending to: practice law in a broadly focussed shipping practice; work within the cruise and ferry industry; or otherwise are likely to deal with passengers and/or their claims.", + "title": "International Carriage of Passengers by Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The European Union plays an increasing role in the regulation of international shipping and any shipping company wishing to do business in Europe will have to take this into consideration. The module will take on various aspects of this regulation and will place the EU rules in the context of international maritime law. To ensure a common basis for understanding the EU maritime\nlaw, the basic structure and principles of the EU and EU law will be explained at the outset.", + "title": "EU Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Trade Finance Law considers the different legal structures used to effect payment under, and disincentives breaches of, international agreements for the supply of goods and services. The course analyses and compares documentary and standby letters of credit, international drafts and forfaiting, performance bonds and first demand guarantees and export credit guarantees. Key topics will include the structure, juridical nature and obligational content of the aforementioned instruments; the nature of the harmonised regimes and their interaction with domestic law; the principle of strict compliance and its relaxation; documentary and non-documentary forms of recourse; the autonomy principle and its exceptions; and the conflict of laws principles applicable to autonomous payment undertakings. The course should be of interest to students who have already studied other components of international trade and/or who have an interest in international banking operations.", + "title": "Trade Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Trade Finance Law considers the different legal structures used to effect payment under, and disincentives breaches of, international agreements for the supply of goods and services. The course analyses and compares documentary and standby letters of credit, international drafts and forfaiting, performance bonds and first demand guarantees and export credit guarantees. Key topics will include the structure, juridical nature and obligational content of the aforementioned instruments; the nature of the harmonised regimes and their interaction with domestic law; the principle of strict compliance and its relaxation; documentary and non-documentary forms of recourse; the autonomy principle and its exceptions; and the conflict of laws principles applicable to autonomous payment undertakings. The course should be of interest to students who have already studied other components of international trade and/or who have an interest in international banking operations.", + "title": "Trade Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5322V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5396", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5397", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biomedical Law & Ethics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLD5400", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Insolvency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLD5402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLD5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLD5407", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLD5409", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law of the Marine Environment discusses the legal framework for the international governance of shipping. Within this framework it considers the powers flag, coastal and ports states have to prescribe and enforce environmental shipping regulations. The main characteristics of the established regulatory system is further described. The course then embarks on a detailed analysis of a number of international and national civil liability regimes developed for the recovery of pollution damage. Contemporary environmental challenges faced by shipping, namely, the reduction of atmospheric pollution and greenhouse gas emissions and the issue of recycling of ships are then examined.", + "title": "Law of the Marine Environment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5444", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law of the Marine Environment discusses the legal framework for the international governance of shipping. Within this framework it considers the powers flag, coastal and ports states have to prescribe and enforce environmental shipping regulations. The main characteristics of the established regulatory system is further described. The course then embarks on a detailed analysis of a number of international and national civil liability regimes developed for the recovery of pollution damage. Contemporary environmental challenges faced by shipping, namely, the reduction of atmospheric pollution and greenhouse gas emissions and the issue of recycling of ships are then examined.", + "title": "Law of the Marine Environment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLD5444V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Port financing is crucial to port performance and development. This course thus examines how port financing is supported or not as the case may be by law and regulation. It takes an internationalist and comparative approach to the subject. That said, where appropriate it will consider the Singapore legal system. The topics examined include the role of ports (as beneficiary of financing and as the investor), tools for port financing, legal management of risks and bankability of port projects, good practice in public-private initiatives, port concession agreements and green port financing.", + "title": "Principles of Port Finance and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLD5464", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Administration of Criminal Justice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the various concepts relating to the admiralty action in rem, which is the primary means by which a maritime claim is enforced. Topics will include: the nature of an action in rem; the subject matter of admiralty jurisdiction; the invocation of admiralty jurisdiction involving the arrest of offending and sister ships; the procedure for the arrest of ships; liens encountered in admiralty practice: statutory, maritime and possessory liens; the priorities governing maritime claims; and time bars and limitations. This course is essential to persons who intend to practice shipping law.", + "title": "Admiralty Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5002V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the rise of China and India and it\u2019s impact on the international legal order. In particular, students will be led to discuss issues concerning (1) the origin and history of the relationship between developing\ncountries and international law; (2) the rise of China and India and its challenge to the existing international legal order and legal norms; (3) China, India, and the multilateral trading system; (4) China, India and international investment; (5) the international law aspects of domestic policies in China and India; and (6) the international law aspects of competition and disputes between China and \nIndia. The course will also concentrate on demonstrating the interaction between international relations and international law.", + "title": "China, India and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5003V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Aviation Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an insight into international civil aviation and the legal and regulatory issues facing airlines, governments and the common passenger. Issues raised include public air law and policy, aviation security in light of recent global developments and private air law. Emphasis will be placed on issues relevant to Singapore and Asia, given Singapore's status as a major aviation hub and the exponential growth of the industry in the Asia-Pacific. Topics to be discussed include the Chicago Convention on International Civil Aviation, bilateral services agreements, aircraft safety, terrorism and aviation security and carrier liability for death or injury to passengers. Competition among airlines will also be analysed, including business strategies such as code-sharing, frequent flier schemes and alliances. The severe competitive environment introduced by weakening economies, war and terrorism will also be discussed. This course will be relevant for individuals with a keen interest in air travel, and is designed for those interested in joining the aviation industry or large law firms with an aviation practice.", + "title": "Aviation Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5004V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bank Documentation is an advanced contract course situated in the banking context. Students will be introduced to key principles that govern banking transactions as well as a variety of contractual clauses used by banks in their standard-form documentation. The aim of the course is to promote an\nunderstanding of these terms, how they operate and their shortcomings. Some emphasis is placed on contractual techniques used by banks to maintain control over their contractual relationships and to allocate risk, as well as the common law and statutory limits on their effectiveness. Students are required to evaluate the fairness of typical banking terms by applying relevant law and guidelines. Those who successfully complete the module will be equipped to navigate their way around standard form agreements (banking as well as others), recognize and understand the operation of a range of contractual terms, and predict their effectiveness.", + "title": "Bank Documentation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5005V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to familiarise the student with the key principles relating to the modern law of banking. Four main areas will be covered: the law of negotiable instruments, the law of payment systems, the banker customer relationship and bank regulation. Students who wish to obtain a basic knowledge of banking law will benefit from this course. It is also recommended that those who wish to specialize in banking law take this course as a foundational course, prior to studying the more advanced banking courses.", + "title": "Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5006V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biotechnology Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will deal with the basic intellectual property, ethical, regulatory and policy issues in biotechnological innovations. It will focus mainly on patent issues including the patentability of biological materials, gene sequences, animals, plants and humans; infringement, ownership and licensing. Students will also be acquainted with genetic copyright, trade secrets protection and basic ethical and regulatory aspects including gene technology and ES cell research. Apart from Singapore law, a comparative analysis of the legal position in Europe and USA, as well as the major international conventions will be made. Students will also be introduced to the fundamentals of biology and genetics. (Class presentation is subject to change depending on student subscription).", + "title": "Biotechnology Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5007V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on the different transport documents which are used in contracts for the carriage of goods by sea. This will include bills of lading, sea waybills, delivery orders. The course will examine the rights and liabilities of\nthe parties to such contracts, including the shipowner, the charterer, the cargo owner, the lawful holder of the bill of lading etc. Major international conventions on carriage of goods, such as the Hague and Hague-Visby Rules, the Hamburg Rules, and the Rotterdam Rules will also be examined. This course is of fundamental importance to those individuals contemplating a career in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Carriage of Goods By Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5008AV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on charterparties, which are contracts between the shipowner and the charterer for the hire of the vessel, either for a specific voyage (voyage charterparties) or over a period of time (time charterparties). There are in addition, other variants of these basic types, which will also be referred to. This\ncourse will examine the standard forms for each of the charterparties being studied and examine the main terms and legal relationship between shipowners and charterers. This dynamic and important aspect of the law of carriage of goods by sea is frequently the subject of arbitral proceedings and court decisions. This course will be of importance to individuals contemplating a carrier in shipping law and underlines Singapore\u2019s role as a major global port and maritime hub.", + "title": "Charterparties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5008BV", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the latest legal developments and areas of significance in modern China. Topics covered include Chinese legal system, legal institutions, civil law, corporate law, finance law and dispute resolution. Through this module, students will benefit from learning substantive aspects of modern Chinese law and will be conversant with Mandarin in the legal context. This course is conducted primarily in Chinese (Mandarin) and is intended for students who possess a basic level of Chinese (Mandarin).", + "title": "Modern Chinese Law & Legal Chinese", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the latest legal developments and areas of significance in modern China. Topics covered include Chinese legal system, legal institutions, civil law, corporate law, finance law and dispute resolution. Through this module, students will benefit from learning substantive aspects of modern Chinese law and will be conversant with Mandarin in the legal context. This course is conducted primarily in Chinese (Mandarin) and is intended for students who possess a basic level of Chinese (Mandarin).", + "title": "Modern Chinese Law & Legal Chinese", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5009V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the civil law tradition, principally the French\ncivil law tradition (with occasional references to the German civil law tradition). The French civil law tradition has had a significant influence in a number of ASEAN countries (including Indonesia) and whenever possible the course will refer to provisions of the different ASEAN civil codes and laws. The course will give an overview of the tradition and will touch on a number of topics including private law topics. The approach will be systematic in the sense that the course will try to immerse the students in the civil law system as a whole and help them understand how the system works and is organized. The goal is to teach the students how to think like civilian lawyers, or at least to teach them how civil law jurist approach the law.", + "title": "Civil Law Tradition", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines advanced topics in the civil law tradition using a\ncomparative approach, examining in particular the similiarities and differences between the civil law and the common law (and possibly other traditions) in approaching specific legal problems. The precise topics covered and examples used will vary depending on the instructor teaching the module in a given year, but the topics typically discussed would include the methodological differences between civil and common law (use of legislation and codes, use of case law / jurisprudence, use of doctrine), the differences in policies and values, as well whether we should seek convergence and unification or respect for the mentalit\u00e9 and culture of each legal tradition through harmonization.", + "title": "Topics in the Civil Law Tradition (A): EU Harmonisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5010AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course has two primary objectives. The first is to introduce students to the fundamental elements of civil litigation. The second is to inculcate a sound understanding of the underlying principles and policies of civil justice. This will provide students with an analytical approach to litigation and set a foundation for practice. The Rules of Court and related sources of civil procedure will be examined as we go through the various stages of the lawsuit. Students will learn that the civil process is primarily characterised by a variety of initiatives which may be taken according to the circumstances of the case.", + "title": "Civil Justice & Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course has two primary objectives. The first is to introduce students to the fundamental elements of civil litigation. The second is to inculcate a sound understanding of the underlying principles and policies of civil justice. This will provide students with an analytical approach to litigation and set a foundation for practice. The Rules of Court and related sources of civil procedure will be examined as we go through the various stages of the lawsuit. Students will learn that the civil process is primarily characterised by a variety of initiatives which may be taken according to the circumstances of the case.", + "title": "Civil Justice & Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5011V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This discussion-based seminar will focus on issues of comparative constitutional adjudication in common law systems, with particular emphasis on the experiences of India, Singapore and South Africa. The course will therefore focus primarily on the institutional mechanisms of judicial review and the challenges for constitutionalism that are posed within this particular institutional setting.", + "title": "Comparative Constitutional Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5012V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is emerging as a distinct field of law in every nation and region. Legislatures establish environmental laws based upon the need to address perceived environmental problems in their territory or in a region of shared resources such as a river basin or coastal marine regions or the habitats for migratory species. In some instances, national legislation is stimulated by the negotiation and adherence to multilateral environmental agreements.", + "title": "Comparative Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5013V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the legal principles that form the foundation of construction law and to the common practical problems that arise in this field. Topics will include: (a) general principles of construction law, including completion, defects, retention and certification; (b) basic provisions of construction contracts; (c) claims procedure & dispute resolution, including arbitration procedure; and (d) relevant provisions of standard form building contracts. This course will be of interest to students interested in construction practice or a practical approach to the study of law. This course is taught by partners from the Construction Practice Group of Wong Partnership.", + "title": "Construction Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5014V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "When the judges at the Nuremberg Tribunal handed down\ntheir decision against the German leaders in October\n1946, they declared \u2018crimes against peace\u2019 \u2013 the initiation\nof aggressive wars \u2013 to be \u2018the supreme international\ncrime\u2019. At the time, the charge was heralded as a legal\nmilestone, but subsequent events revealed it to be a postwar\nanomaly. This module traces the ebb and flow of the\nidea of criminalising aggression \u2013 from its origins after the\nFirst World War, through its high-water mark at the postwar\ntribunals and its abandonment during the Cold War, to\nits recent revival at the International Criminal Court.", + "title": "Topics in Int\u2019l Criminal Law (A): Aggression", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5016A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Tax: Profits & Distributions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5018V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the granting of credit and the taking of security by bank as well as aspects of bank supervision. The course starts with the Part on Bank Supervision and then turns to the discussion of unsecured lending and the Moneylenders' Act. It then focuses on secured credit. The discussion of the general regulation of the giving of security is followed by an examination of specific security devices, such as pledges, trust receipts, Romalpa clauses, factoring, stocks and shares as security, and guarantees and indemnities. The emphasis throughout is on the commercial effectiveness of the system.", + "title": "Credit & Security", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5019V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is aimed at giving students an overview of environmental law and its development, including the legal and administrative structures for their implementation, from the international, regional and national perspectives. It will focus on hard laws (legal instruments, statutory laws, international and regional conventions) and soft laws (Declarations, Charters etc.). In particular, it will examine the basic elements of pollution laws relating to air, water, waste, hazardous substances and noise; as well as nature conservation laws and laws governing environmental impact assessments. Singapore's laws and the laws of selected ASEAN countries will be examined.", + "title": "Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5021V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Apart from the instruments of the World Trade Organization, there are other institutions and techniques which regulate international trade. The World Bank and the International Monetary Fund regulate certain aspects of trade. There are multilateral instruments which deal with issues such as corruption, ethical business standards, investment protection, competition and the regulation of financial services. The jurisdictional reach of large powers over international markets also provides means of self-interested regulation. The international regulation of new technologies such as internet and biotechnology pose novel problems. This course addresses the issues that arise in this area in the theoretical and political contect of globalization.", + "title": "Globalization And International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5022V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will initiate the student to the basics of Indonesian law (adat law, Islamic law, legal pluralism, constitutional law, administrative law, civil law, judicial process) as well as to others aspects that are of concern to foreigners (foreign investment laws and protections, regional autonomy, mining laws etc.). It will also address some of the problems relating to law enforcement in Indonesia", + "title": "Indonesian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5024V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of rights.\nIt begins with exposition of Wesley Hohfeld\u2019s analysis of the different legal positions often designated as \u201crights\u201d; then uses Hohfeld\u2019s framework to understand the debate between interest and will theorists of rights. It moves on to explicit consideration of moral rights. Finally, applications are considered \u2013 including human rights, and Asian perspectives on \u201crights\u201d discourse.", + "title": "Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of rights.\nIt begins with exposition of Wesley Hohfeld\u2019s analysis of the different legal positions often designated as \u201crights\u201d; then uses Hohfeld\u2019s framework to understand the debate between interest and will theorists of rights. It moves on to explicit consideration of moral rights. Finally, applications are considered \u2013 including human rights, and Asian perspectives on \u201crights\u201d discourse.", + "title": "Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5025V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Infocoms Law: Competition & Convergence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5026V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on the UN Convention on Contracts for the International Sale of Goods, governing international commercial sales in the US and abroad. The objective of this course is to give participants an overview of the (different) ways in which this Convention has been applied by judges and arbitrators throughout the world, thus giving participants the tools to draft international import/export agreements favourable to their future clients. Participants will be given hypothetical cases and will be asked to critically examine the different substantive solutions proposed by courts and arbitrators. As the convention does not deal with all the problems that may arise out of international commercial sales, the course will also deal with the issue of how to fill the gaps left by this Convention.", + "title": "International & Comparative Law Of Sale", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5029BV", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the basic understanding of the law of arbitration to enable them to advise and represent parties in the arbitral process confidence. Legal concepts peculiar to arbitration viz. separability, arbitrability and kompetenze-kompetenze will considered together with the procedural laws on the conduct of the arbitral process, the making of and the enforcement of awards. Students will examine the UNCITRAL Model Law and the New York Convention, 1958. This course is most suited for students with some knowledge of the law of commercial transactions, shipping, banking, international sale of goods or construction.", + "title": "International Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5029V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Globalisation has made it more important for lawyers to be knowledgeable about the international aspects of litigation. This course focuses on the jurisdictional techniques most relevant to international commercial litigation: in personam jurisdiction, forum non conveniens, interim protective measures, recognition and enforcement of foreign judgments, public policy, and an outline of choice of law issues for commercial contracts. The course, taught from the perspective of Singapore law, based largely on the common law, is designed to give an insight into the world of international litigation. These skills are relevant to not only litigation lawyers, but also lawyers planning international transactions.", + "title": "International Commercial Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5030V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International law traditionally concerns itself with the relations between states, yet environmental problems transcend borders. International environmental law demonstrates how international norms can affect national sovereignty on matters of common concern. The course surveys international treaties concerning the atmosphere and the conservation of nature, and connections to trade and economic development. Institutions and principles to promote compliance and cooperation are also examined. The course will assist students in their understanding of international law-making. It would be of use to those interested in careers involving international law, both for the government and public sector and those in international trade and investment.", + "title": "International Environmental Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5031V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Investment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5032", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the nature of risks to foreign investment and the elimination of those risks through legal means. As a prelude, it discusses the different economic theories on foreign investment, the formation of foreign investment contracts and the methods of eliminating potential risks through contractual provisions. It then examines the different types of interferences with foreign investment and looks at the nature of the treaty protection available against such interference. It concludes by examining the different methods of dispute settlement available in the area. The techniques of arbitration of investment disputes available are fully explored.", + "title": "International Investment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5032V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes a problem-oriented approach to public international law. Its primary objective is to provide students with an understanding of the basic principles of public international law and a framework for analysing international legal disputes. The focus will be a past problem from the Philip C. Jessup International Law Moot Court Competition. This will be used to illustrate the basic principles of public international law applicable in an international dispute. Its second objective is to teach students how to research points of international law and to construct persuasive arguments based on legal precedent, general principles, policy and facts.", + "title": "International Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5033V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Regulation of Shipping", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5034", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the global regime governing the international regulation of commercial shipping. It will examine the relationship between the legal framework established in the 1982 UN Convention on the Law of the Sea and the work of the International Maritime Organization (IMO), the UN specialized agency responsible for the safety and security of international shipping and the prevention of pollution from ships. The course will focus on selected global conventions administered by the IMO, including those governing safety of life at sea (SOLAS), the prevention of pollution from ships (MARPOL) and the training, certification and watchkeeping for seafarers (STCW). It will also examine the liability and compensation schemes that have been developed for pollution damage caused by the carriage of oil and noxious substances by ships, as well as the conventions designed to ensure that States undertake contingency planning in order to combat spills of oil and other noxious and hazardous substances in their waters. In addition, the course will examine the schemes that have been developed to enhance the security of ships and ports in light of the threat of maritime terrorism. It will also examine the role of the IMO in the prevention of pollution of the marine environment from dumping waste at sea and from seabed activities subject to national jurisdiction. One of the themes of the course will be to consider how the IMO is responding to increased concern about the protection and preservation of the marine environment, including threats such as invasive species and climate change. Another theme will be to consider how the responsibility to enforce IMO Conventions is divided between flag States, coastal States, port States and the IMO. This course will be useful to persons who intend to practice shipping law or work in the private or public maritime sector.", + "title": "International Regulation of Shipping", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5034V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the major income tax issues faced by businesses operating in a global economy. These issues include causes of multiple taxation, strategies to avoid multiple taxation, the effectiveness of Double Taxation Agreements (DTAs) and the abuse of DTAs. The module will be taught using typical transactions of capital and income flows as the focus and method of instruction. It will identify the main tax risks from undertaking cross-border transactions. As part of the management and mitigation of tax costs to a MNC, tax planning opportunities in the form of tax arbitrage, tax havens, choice of investment vehicle, corporate funding, inbound and outbound investments as well as the repatriation of income and capital will be discussed. The course will also identify the global tax trends arising from increased mobility of capital, technological advancements as well as demographics. In particular, the module will address some of the major issues and challenges that are being addressed in the most ambitious international tax reform under the OECD/G20 Base Erosion and Profit Shifting 2015 (BEPS) initiative ever attempted. As this course seeks to illustrate some of the general strategies in international tax planning, no prior knowledge of country-specific tax rules is required. Instead, the latest OECD Model Tax Convention 2017 will used as a primary source of laws for the purpose of this module.", + "title": "Taxation Issues in Cross-Border Transaction", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5035V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The sociology of law studies law as a social institution. We will explore the relationships among law, social actors and other social institutions. This is in contrast to the legal academy's formalist approaches that treat law as autonomous and impartial, and jurisprudential concerns about law's morality. We will consider both theoretical and empirical, and classic and contemporary works in sociology of law. Issues covered include: law and classic social theory; law and contemporary social theory; law and power; the social construction of disputes and dispute resolution; law and organizations; legal mobilization; law, collective action, and social change; legal consciousness; and, sociological perspectives on the legal profession.", + "title": "Sociology of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5037V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will consider the interaction of law and religion in three aspects: firstly, through a consideration of theoretical materials that discuss and debate religion\u2019s (possible) roles in public discourse and in the shaping of law, especially in multi-religious and multi-cultural environments; second, through an examination of a range of religio-legal traditions (e.g., Islamic law, Hindu Law etc); and, third, a consideration of specific instances \u2013 in cases, legislation and public issues etc -- where law and religion meet.", + "title": "Law and Religion", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5042V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Marine Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5043", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to give students a firm foundation of existing law; a working understanding of standard form policies; and an understanding of the interaction between the Marine Insurance Act, case law and the Institute Clauses. Topics will include: types of marine insurance policies; insurable interest; principle of utmost good faith; marine insurance policies; warranties; causation; insured and excluded perils; proof of loss; types of losses; salvage, general average and particular charges; measure of indemnity and abandonment; mitigation of losses. This course will appeal to students who wish to specialise in either insurance law or maritime law.", + "title": "Law Of Marine Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5043V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a skills-based workshop and is designed to assist participants in learning about and attaining a basic level of competency as a mediator and mediation advocate. Topics covered include: Interest-based mediation vs Positions-based mediation; The Mediation Process; Opening Statements; Co-Mediation; Preparing a client for mediation; and Mediation advocacy. This workshop is targeted at self-motivated Year 3 & 4 students interested in learning and developing interpersonal and conflict resolution skills.", + "title": "Mediation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5044V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_MC", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is a skills-based workshop and is designed to assist participants in learning about and attaining a basic level of competency as a negotiator. This is particularly important as lawyers commonly engage in negotiation as part of their practice. Topics covered include: Interest-based negotiation vs Position-based negotiation; Preparing for a negotiation; Creating and Claiming Value; and Overcoming Impasse. This workshop is targeted at self-motivated students interested in learning and developing interpersonal and negotiation skills.", + "title": "Negotiation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5045V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_MC", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The subject of conflict of laws addresses three questions: Which country should hear the case? What law should be applied? What is the effect of its adjudication in another country? This course includes an outline of jurisdiction and judgments techniques, but will focus on problems in choice of law, and issues in the exclusion of foreign law. Coverage includes problems in contract and torts, and other areas may be selected from time to time. This course is complementary to International Commercial Litigation, but it stands on its own as an introduction to theories and methodologies in the conflict of laws.", + "title": "Principles Of Conflict Of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5049V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundational course introduces the student to the nature, major principles, processes and institutions of the international legal system, the relationship between international and domestic law and the role of law in promoting world public order. Students will acquire an understanding of the conceptual issues underlying this discipline and a critical appreciation of how law inter-relates with contemporary world politics, its global, regional and domestic significance. Topics include the creation and status of international law, participation and competence in the international legal system, primary substantive norms such as the law regulating the use of force and enforcement procedures.", + "title": "Public International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5050V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Principles of Restitution", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5051", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Domestic and International Sale of Goods", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5054", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of domestic and international sale of goods under the Singapore law. With regard to domestic sales, the course will focus on the Sale of Goods Act. Topics to\nbe studied will include the essential elements of the contract of sale; the passing of title and risk; the implied conditions of title, description, fitness and quality; delivery and payment, acceptance and termination, and the available remedies. With particular reference to a seller\u2019s delivery obligations, the course will also cover substantial aspects of the international sale of goods under the common law, such as FOB and CIF contracts and documentary sales. This course will be of interest to students intending to enter commercial practice.", + "title": "Domestic and International Sale of Goods", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5054V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide an overview of securities regulation, trusts, corporate governance and M & A, in Singapore and jurisdictions like US, China, UK, Australia, Taiwan and HK. Topics to be covered: use of alternative business entities and nature of shares; \"going public\" process; corporate governance of listed companies and trusts; insider trading and securities frauds; globalisation and technology; and the regulation of takeover activity. It also offers an introduction to the law of trusts, including custody arrangements and securitisation. Students are expected to search Internet for comparative materials but will also be provided with assigned readings.", + "title": "Securities Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5055", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation course seeks to acquaint participants with a basic working knowledge of income tax and goods and services tax issues faced by companies and individuals. It will illustrate the extent to which tax avoidance is acceptable under the rules for deductions, capital allowances and losses. In addition, the taxation of income from employment income, trade and investments will be highlighted. Tax planning opportunities arising from the differences in tax treatment of sole proprietors, partnerships and companies will be highlighted. On policy issues, concepts including economics of taxation, international trends and tax reform will be covered.", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5056AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation course seeks to acquaint participants with a basic working knowledge of income tax and goods and services tax issues faced by companies and individuals. It will illustrate the extent to which tax avoidance is acceptable under the rules for deductions, capital allowances and losses. In addition, the taxation of income from employment income, trade and investments will be highlighted. Tax planning opportunities arising from the differences in tax treatment of sole proprietors, partnerships and companies will be highlighted. On policy issues, concepts including economics of taxation, international trends and tax reform will be covered.", + "title": "Tax Planning And Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5056BV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to examine and critique the philosophical assumptions that underlie the substantive criminal law. We begin with a survey of the various philosophical theories that purport to explain and justify the imposition of criminal liability. Once familiar with the fundamental concepts and issues, we then consider the relationship between moral responsibility and criminal liability by analyzing the theoretical assumptions behind the substantive principles and doctrine of criminal law. This is a seminar-style course aimed at students who already have grounding in criminal law, philosophy of law, or moral theory. Extensive class participation is expected.", + "title": "Theoretical Foundations Of Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5057V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "By examining primary materials focused on the normative context within which the United Nations functions, students will develop an understanding of the interaction between law and practice. This is essential to a proper understanding of the UN Organization, but also to the possibilities and limitations of multilateral institutions more generally. The course is organized in four parts. Part I, \"Relevance\", raises some preliminary questions about the legitimacy and effectiveness of the United Nations, particularly in the area of peace and security. Part II, \"Capacity\", brings together materials on the nature and status of the United Nations. Part III, \"Practice\", examines how the United Nations has exercised its various powers. Part IV, \"Accountability\", concludes with materials on responsibility and accountability of the United Nations and its agents. A background in public international law is strongly recommended.", + "title": "United Nations Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5059V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "World Trade Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5060", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "World Trade Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5060B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be encouraged to reflect upon what is really involved in pursuing a life of intellectual work. To this end, students will undertake a philosophical exploration of research and scholarship as it is routinely conducted across the experimental and social sciences, the humanities, literature and philosophy. Drawing upon insights achieved by historians, scientists, legal thinkers, sociologists, philosophers and literary writers into their respective crafts, students will explore not only the practical techniques recommended by these practitioners, but more significantly, the habits and virtues that have been found to be most conducive to successful practice.", + "title": "Inquiry", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5061", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will be encouraged to reflect upon what is really involved in pursuing a life of intellectual work. To this end, students will undertake a philosophical exploration of research and scholarship as it is routinely conducted across the experimental and social sciences, the humanities, literature and philosophy. Drawing upon insights achieved by historians, scientists, legal thinkers, sociologists, philosophers and literary writers into their respective crafts, students will explore not only the practical techniques recommended by these practitioners, but more significantly, the habits and virtues that have been found to be most conducive to successful practice.", + "title": "Inquiry", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5061V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of legal reasoning, and its relationship with broader questions in legal theory. The course will examine, inter alia, the nature of rules, precedent, authority, analogical reasoning, the common law, legal realism, statutory interpretation, judicial opinions, rules and standards, law and fact, and the burden of proof. The overarching questions to be addressed in this course include: In what way(s), if at all, is legal reasoning a distinctive form of reasoning? What is the relationship between legal reasoning and legal theory?", + "title": "Legal Reasoning & Legal Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5062", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in analytic jurisprudence, investigating the nature of legal reasoning, and its relationship with broader questions in legal theory. The course will examine, inter alia, the nature of rules, precedent, authority, analogical reasoning, the common law, legal realism, statutory interpretation, judicial opinions, rules and standards, law and fact, and the burden of proof. The overarching questions to be addressed in this course include: In what way(s), if at all, is legal reasoning a distinctive form of reasoning? What is the relationship between legal reasoning and legal theory?", + "title": "Legal Reasoning & Legal Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5062V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To provide law students who intend to read commercial law electives with a foundation in accounting, finance and other related business concepts. It covers topics such as interpretation and analysis of standard financial statements, the types of players and instruments in the financial markets and the basic framework of a business investment market.The course will employ a hypothetical simulation where lawyers advise on several proposals involving the acquisition and disposal of assets by a client. The issues covered in the hypothetical will include asset valuation models, financing options and techniques, and compliance with accounting and regulatory frameworks.", + "title": "Business & Finance For Lawyers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5063V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the competition law and policy framework in Singapore and will introduce students to the three pillars of the legal and regulatory framework:\n(i) the prohibition against anti-competitive agreements, \n(ii) the prohibition against abuses of market dominance, and \n(iii) the regulation of mergers and concentrations.", + "title": "Competition Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5064", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the competition law and policy framework in Singapore and will introduce students to the three pillars of the legal and regulatory framework:\n(i) the prohibition against anti-competitive agreements, \n(ii) the prohibition against abuses of market dominance, and \n(iii) the regulation of mergers and concentrations.", + "title": "Competition Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5064V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5065", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5067", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "European Union Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5069", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "European Union Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5069V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Foundations of IP Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5070", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to introduce students to the general principles of intellectual property law in Singapore, as well as, major international IP conventions. It is aimed at students who have no knowledge of IP law but are interested in learning more about this challenging area of law. It will also be useful for students intending to pursue the advanced courses in IP/IT by providing them with the necessary foundation on IP law. Students will be assessed based on open book examination, 1 written assignment and 1 class presentation. (Class presentation is subject to change depending on student subscription).", + "title": "Foundations Of Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5070V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The advent of new technologies in this scientific and technological age has led to a dramatic shift in business strategies and global economic development. IP rights (particularly patents) form an \"inexhaustible resource\" from which the fruits of research and innovation can be valued, commercially dealt with and shared. This course will analyse the international, regional and national patent laws, policies and practices including important aspects on successful technology licensing and knowledge transfer, as well as valuation and strategies for monetization of IP (patent) assets.", + "title": "International Patent Law, Policy and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5071", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The advent of new technologies in this scientific and technological age has led to a dramatic shift in business strategies and global economic development. IP rights (particularly patents) form an \"inexhaustible resource\" from which the fruits of research and innovation can be valued, commercially dealt with and shared. This course will analyse the international, regional and national patent laws, policies and practices including important aspects on successful technology licensing and knowledge transfer, as well as valuation and strategies for monetization of IP (patent) assets.", + "title": "International Patent Law, Policy and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5071V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in IP Law (B): IP Valuation: Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5072B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5073", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce to students the substantive and procedural framework of international criminal law. We will study international criminal law's historical origins, evolution, and how it is implemented today through a variety of different institutional frameworks. Among others, we will study post-WWII tribunals, the ad hoc international tribunals of Yugoslavia and Rwanda, hybrid tribunals, military tribunals and the permanent International Criminal Court. We will also examine non-criminal law responses to international crimes such as truth and reconciliation commissions. Students will critically explore and question the pros and cons of international criminal justice in terms of its professed goals and objectives.", + "title": "International Criminal Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5073V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will begin with an evaluation of the business rationale for M&As and a discussion of the various types of transactions and related terminology. The regulatory issues surrounding these transactions will be analysed through examination of the applicable laws and regulations. The course adopts an nternational comparative perspective, with greater focus on the U.S., U.K. and Singapore. While corporate and securities law issues form the thrust, incidental reference will be made to accounting, tax and competition law considerations. inally, the transactional perspective will consider various\nstructuring matters, planning aspects, transaction costs\nand impact on various stakeholders.", + "title": "Mergers & Acquisitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5074", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will begin with an evaluation of the business rationale for M&As and a discussion of the various types of transactions and related terminology. The regulatory issues surrounding these transactions will be analysed through examination of the applicable laws and regulations. The course adopts an nternational comparative perspective, with greater focus on the U.S., U.K. and Singapore. While corporate and securities law issues form the thrust, incidental reference will be made to accounting, tax and competition law considerations. inally, the transactional perspective will consider various\nstructuring matters, planning aspects, transaction costs\nand impact on various stakeholders.", + "title": "Mergers & Acquisitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5074V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "IP and Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5075", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches the overlap between intellectual property and competition law. Students will be challenged to explore the intrinsic tensions that lie between the\nstatutory regimes that regulate market dominance, restrictive agreements and the monopolistic prerogatives and assertions by holders of intellectual property rights.", + "title": "IP and Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5075V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "It Law I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5076", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. Issues to be examined include the conduct of electronic commerce, cybercrimes, electronic evidence, privacy and data protection. (This course will not cover the intellectual property issues, which are addressed instead in \"IT Law IP Issues\".) Students who are interested in the interface between law, technology and policy will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5076V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal and policy issues relating to information technology and the use of the Internet. The focus of this course will be on the intellectual property issues such as copyright in software and electronic materials, software patents, electronic databases, trade marks, domain names and rights management information. Students who are interested in the interface between law, technology, policy and economic rights will learn to examine the sociological, political, commercial and technical background behind these rules, evaluate the legal rules and policy ramifications of these rules, and formulate new rules and policies to address these problems.", + "title": "IT Law II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5077V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about a form of arbitration which is specific to disputes arising between international investors and host states \u2013 i.e. investor-state disputes \u2013 involving public, treaty rights. In contrast, international commercial arbitration typically deals with the resolution of disputes over private law rights between what are usually private parties.\n\nIt will be of interest to those interested in arbitration, and/or the law of foreign investment.", + "title": "Law & Practice of Investment Treaty Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5078", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the relationship between the public and private power through the historical lens of the East India Company (established in 1600), one of the first multinational corporations. In particular, it examines: the\nformation and evolution of the Company and the legal implications of its ambiguous status as a private or public entity; its transformation into a sovereign power in India against the backdrop of the rise of the modern state and modern constitutionalism in Europe and the United States of America; and the Company\u2019s role in the founding of modern Singapore; and the Company\u2019s demise in 1858.", + "title": "State and Company in Legal-Historical Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5079", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Advocacy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5081", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a broad understanding of the relationship between law and social movements. Why do people mobilize collectively? We begin with this question, and then consider the different approaches of conceptualizing social movements. Next, we delve into questions intersecting social movements and sociology of law: the use of law as social control and repression, the role of lawyers in social movements, legal strategies involved in collective claim\u2010making, and the relationship between law and social change. After that, we examine a selection of case studies such as those concerning prodemocracy\nmovements, sexual rights movements, rightwing and counter movements, and transnational movements.", + "title": "Law & Social Movements", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5082", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Trusts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5085", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5088", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide students with a comparative perspective on selected issues in contract law. It will compare the main principles of contract at common law and that in Chinese law. It will also examine the Chinese\ncontract law perspectives on scope of application, judicial interpretation, formation, performance, modification and assignment of contracts as well as liability for breach of contract.\n\nAt the end of the course, students will be able to understand the Chinese contract law framework and appreciate the differences at common law and that in Chinese law.", + "title": "Chinese Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5088V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the laws and the relevant legislation governing the main forms of foreign direct investment (FDI) in China such as equity joint ventures, contractual joint ventures, wholly foreign-owned enterprises and limited liability companies.The aim is to provide students with a critical understanding of the FDI regime in China as well as an understanding of the relationship between the FDI governing laws and other general laws so as to provide updated and accurate information and enable proper legal advice to be given in this area.", + "title": "Chinese Corporate & Securities Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5089V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5093", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Legal aid aims to ensure that all member of society have access to justice, regardless of their financial means.\n\nThis clinic provides students with a unique experiential learning opportunity. Students will assist an experienced legal practitioner with a Legal Aid Bureau case. Cases will relate to family law matters, and may cover issues relating to divorce, child maintenance, estate division and mental capacity. \n\nUnder guided mentorship, students will experience a meaningful learning journey that will allow them to gain professional practice skills, substantive knowledge in the area of family law, and refine their research, analysis, and drafting skills.", + "title": "The Pro Bono Family Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5094", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic provides students with the opportunity to handle a corporate matter, for a partner organisation, under guided mentorship. Partner organisations presently include the National Gallery Singapore, Singapore Art Museum, The Arts House, Alzheimer's Disease Association, Singapore Hospice Council, Singapore Children\u2019s Society and Ernst & Young (Legal Corporate Social Responsibility Group).\n\nStudents will experience a meaningful learning journey, will gain valuable corporate practice skills, and increase their substantive knowledge in the areas of law that are relevant to the matters they are handling. Matters could cover areas such as personal data protection, contract formation and intellectual property issues.", + "title": "The Corporate Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5094A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic provides students with the opportunity to handle a corporate matter, for a partner organisation, under guided mentorship. Partner organisations presently include the National Gallery Singapore, Singapore Art Museum, The Arts House, Alzheimer's Disease Association, Singapore Hospice Council, Singapore Children\u2019s Society and Ernst & Young (Legal Corporate Social Responsibility Group).\n\nStudents will experience a meaningful learning journey, will gain valuable corporate practice skills, and increase their substantive knowledge in the areas of law that are relevant to the matters they are handling. Matters could cover areas such as personal data protection, contract formation and intellectual property issues.", + "title": "The Corporate Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5094AV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The State Courts Clerkship Programme is a judicial clinical legal education programme designed to provide top law students with the opportunity to be attached to senior District Court Judges and acquire experiential knowledge of law practice through direct exposure to judicial work. It is a unique course which allows law students to acquire a different perspective of legal work through personalised interaction with senior Judges, working on actual cases from a judicial perspective and experiencing legal practice in a real-life court setting.", + "title": "NUS-State Courts Judicial Clerkship Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5094B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The State Courts Clerkship Programme is a judicial clinical legal education programme designed to provide top law students with the opportunity to be attached to senior District Court Judges and acquire experiential knowledge of law practice through direct exposure to judicial work. It is a unique course which allows law students to acquire a different perspective of legal work through personalised interaction with senior Judges, working on actual cases from a judicial perspective and experiencing legal practice in a real-life court setting.", + "title": "NUS-State Courts Judicial Clerkship Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5094BV", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1730", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Access to justice is a fundamental tenet of the rule of law. Many individuals of low means do not qualify for legal aid. Low bono seeks to fill this lacuna.\n\nThis legal clinic provides students with the experiential learning opportunity of assisting lawyers, from Covenant Chambers LLC, with low bono cases. These cases could cover the area of workplace, personal injury, employment, estate or probate law. Under guided mentorship students will gain valuable professional practice skills, further substantive legal knowledge, and refine their research, analysis, and drafting skills while helping those who otherwise may not have adequate access to justice.", + "title": "The Access to Justice Low Bono Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5094C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Access to justice is a fundamental tenet of the rule of law. Many individuals of low means do not qualify for legal aid. Low bono seeks to fill this lacuna.\n\nThis legal clinic provides students with the experiential learning opportunity of assisting lawyers, from Covenant Chambers LLC, with low bono cases. These cases could cover the area of workplace, personal injury, employment, estate or probate law. Under guided mentorship students will gain valuable professional practice skills, further substantive legal knowledge, and refine their research, analysis, and drafting skills while helping those who otherwise may not have adequate access to justice.", + "title": "The Access to Justice Low Bono Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5094CV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the opportunity of being heavily involved in assisting a seasoned practitioner with the handling of a Criminal Legal Aid Scheme (CLAS) case. \n\nUnder close mentorship students will embark upon a hands-on learning journey that will allow them to gain valuable professional practice skills, and deepen their substantive criminal law knowledge. Students could be dealing with cases involving offences under the Computer Misuse and Cybersecurity Act (Cap. 50A) or the Moneylenders Act (Cap. 188). Students will be involved in tasks such as attending client interviews, drafting pleadings and possibly attending court hearings.", + "title": "The Pro Bono Criminal Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5094D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the opportunity of being heavily involved in assisting a seasoned practitioner with the handling of a Criminal Legal Aid Scheme (CLAS) case. \n\nUnder close mentorship students will embark upon a hands-on learning journey that will allow them to gain valuable professional practice skills, and deepen their substantive criminal law knowledge. Students could be dealing with cases involving offences under the Computer Misuse and Cybersecurity Act (Cap. 50A) or the Moneylenders Act (Cap. 188). Students will be involved in tasks such as attending client interviews, drafting pleadings and possibly attending court hearings.", + "title": "The Pro Bono Criminal Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5094DV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the eye-opening experience of assisting a seasoned practitioner with the handling of a case under the Legal Assistance Scheme for Capital Offences (LASCO). \n\nUnder guided mentorship clinical students will experience a learning journey that will allow them to gain valuable professional practice skills, and increase their substantive criminal law knowledge. Students may be involved in tasks such as attending client meetings, drafting pleadings and attending court hearings.\n\nStudents will be able to help accused individuals when they need it most. The experience may cause students to question their own views on justice, and life!", + "title": "The Capital Offences Criminal Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5094E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic will provide students with the eye-opening experience of assisting a seasoned practitioner with the handling of a case under the Legal Assistance Scheme for Capital Offences (LASCO). \n\nUnder guided mentorship clinical students will experience a learning journey that will allow them to gain valuable professional practice skills, and increase their substantive criminal law knowledge. Students may be involved in tasks such as attending client meetings, drafting pleadings and attending court hearings.\n\nStudents will be able to help accused individuals when they need it most. The experience may cause students to question their own views on justice, and life!", + "title": "The Capital Offences Criminal Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5094EV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Clinical students will predominantly be required to develop a keen understanding of how the respective partner organisations (such as charities and social enterprises) run and assist partner organisations investigate the evolving legal and regulatory landscapes in which they operate, and where applicable, to consider best practices in other jurisdictions. Aside from this research element, clinical students will support the partner organisations on matters of a non-contentious / advisory nature (this could for example include any combination of drafting work, workshops and presentations and corporate secretarial work)", + "title": "The Evolving Legal Landscapes Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5094F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Clinical students will predominantly be required to develop a keen understanding of how the respective partner organisations (such as charities and social enterprises) run and assist partner organisations investigate the evolving legal and regulatory landscapes in which they operate, and where applicable, to consider best practices in other jurisdictions. Aside from this research element, clinical students will support the partner organisations on matters of a non-contentious / advisory nature (this could for example include any combination of drafting work, workshops and presentations and corporate secretarial work)", + "title": "The Evolving Legal Landscapes Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5094FV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This clinic is a collaboration between NUS Centre for Pro Bono and Clinical Legal Education and NUS Entrepreneurship Society (NES). \n\nClinical students will meet fellow student start-up founders taking part in a school-credited, student-run module on entrepreneurship, run via NUS Business School, and provide guidance to them on areas of law relevant to the start-up journey. Students will also have an opportunity to \"pitch\u201d their services to various student start-up founders and, where successful, to drafting legal documentation for specific start-up ideas to help turn the student\u2019s start-up ideas into reality. \n\nAdditionally, students will assist NES review contracts to facilitate NES\u2019s partnerships with external organisations \n\nNote: Students who participate in this clinic will record credit for this clinic in AY2021-22 Semester 2. However, due to the nature of the collaboration between NES and CPBCLE and the timeframe of the NES-run module, the work will be spread out over both Semester 1 and Semester 2.", + "title": "NUS Entrepreneurship Society Collaboration Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5094G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic is a collaboration between NUS Centre for Pro Bono and Clinical Legal Education and NUS Entrepreneurship Society (NES). \n\nClinical students will meet fellow student start-up founders taking part in a school-credited, student-run module on entrepreneurship, run via NUS Business School, and provide guidance to them on areas of law relevant to the start-up journey. Students will also have an opportunity to \"pitch\u201d their services to various student start-up founders and, where successful, to drafting legal documentation for specific start-up ideas to help turn the student\u2019s start-up ideas into reality. \n\nAdditionally, students will assist NES review contracts to facilitate NES\u2019s partnerships with external organisations \n\nNote: Students who participate in this clinic will record credit for this clinic in AY2021-22 Semester 2. However, due to the nature of the collaboration between NES and CPBCLE and the timeframe of the NES-run module, the work will be spread out over both Semester 1 and Semester 2.", + "title": "NUS Entrepreneurship Society Collaboration Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5094GV", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Legal aid aims to ensure that all member of society have access to justice, regardless of their financial means.\n\nThis clinic provides students with a unique experiential learning opportunity. Students will assist an experienced legal practitioner with a Legal Aid Bureau case. Cases will relate to family law matters, and may cover issues relating to divorce, child maintenance, estate division and mental capacity. \n\nUnder guided mentorship, students will experience a meaningful learning journey that will allow them to gain professional practice skills, substantive knowledge in the area of family law, and refine their research, analysis, and drafting skills.", + "title": "The Pro Bono Family Law Litigation Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5094V", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Int''l Trademark Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5096", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The emphasis will be on the international and comparative aspects of the subject, including\n\nthe international treaties in this area (Paris Convention; TRIPS; Madrid etc) and regional developments (eg the Community trade mark system in Europe, the harmonization efforts in Asean);\n\ninter-relationship between trade mark law and the law of unfair competition in civil law jurisdictions;\n\ndifferent treatment by countries of topics such as parallel importation; protection of personality interests; dilution; protection of \"trade dress\" or \"get up\".", + "title": "International Trademark Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5096V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Islamic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5097", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Course will introduce history and basic concepts of traditional Islamic law, followed by an account of reforms during the 19th and 20th centuries. The reform period will be covered topically, beginning with method and philosophical foundations, and moving to a variety of issues of positive and procedural law. Finally, some themes related to law and modernity will be explored.", + "title": "Islamic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5097V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5099", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an understanding of the legal issues arising from casualties involving ships. It will examine aspects of the law relating to nationality and registration of ships, the law relating to the management of ships, ship sale and purchase, and the law of collisions, salvage, towage, wreck and general average. Students successfully completing the course will be familiar with the international conventions governing these issues, as well as the domestic law of Singapore.", + "title": "Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5099V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course takes students to the areas of significance in the field of dispute resolution in China, particularly with respect to the resolution of commercial disputes where arbitration plays a major role in today\u2019s China. Major methods of dispute resolution will be examined, such as arbitration, civil litigation, and mediation (as it combines with arbitration and litigation). Some topical issues pertinent to commercial disputes such as corporate litigation, securities enforcement, recognition and enforcement of foreign civil judgments, civil justice reform, and regional judicial assistance in the Greater China region will be looked into in the course as well.", + "title": "Arbitration and Dispute Resolution in China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Torts is designed to build on and further your knowledge of tort law.\nThe course is divided into two parts. In Part One, we will examine some fundamental concepts and debates surrounding tort law. The objective is to understand what is distinctive about torts and how torts are important in a civilised system of law. In Part Two, we will examine torts not already covered in the first year course. This will include consideration of important torts such as defamation, conversion, deceit, conspiracy and breach of statutory duty. These torts will be examined by reference to the best of the literature and by a selection of representative cases.", + "title": "Advanced Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Torts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5102V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced-level course which provides an opportunity for rigorous study about the nature of law and broader issues in legal and political theory such as the nature of rights, the nature of justice, and questions about (fair) distribution. The course will examine a range of salient topics related to these issues and will be taught entirely through interactive, discussion-intensive seminars, that will rely heavily on active class participation.", + "title": "Jurisprudence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5104V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Partnership and Alternative Business Vehicles", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5107V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does Asia relate to the international community and international law? The region's rich diversity of states and socieities challenges assumptions of universality and also affects cooperation between states on issues such as human rights violations, environmental harm and the facilitation of freer trade. Yet a sense of reguinalism within East Asia is growing, with new institutions and mechanisms to deal with these and other contemporary challenges in East Asia. The seminar will discuss key issues of law and legal approaches in Asia, such as sovereignty, as well as provide for presentations bt students on research subjects.", + "title": "International Law & Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5109V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Copyright Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5111V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "While serving as an introductory course to the Indian legal system, this discussion-based Seminar seeks to focus on topical, contemporary legal issues in India. It will focus primarily on the post-Independence legal system in India, and its important institutions of democratic governance.", + "title": "The Contemporary Indian Legal System", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5122V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The general aim of the course is to impart a critical analytical understanding of International Insolvency Law. There will be consideration of the main features of national insolvency regimes highlighting the similarities and differences followed by a detailed consideration of the scope for cooperation in respect of insolvency matters across national frontiers. The UNCITRAL Model Law on Cross-Border Insolvency and the European Insolvency Regulation will be addressed in detail.", + "title": "International Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5123", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law And Development In China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5125V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Chinese Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5128", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The principal objective of this course is to provide an understanding and appreciation of the various legal issues and perspectives involved in carrying out business and corporate transactions in India. \n\nThe course will begin with a brief introduction to India\u2019s legal system, the Constitution and the judiciary so as to set the tone. This part will also contain an evaluation of the changes since 1991 to India\u2019s economic policies that have made it an emerging economic superpower. Thereafter, it will deal with the core through a discussion of the legal aspects involved in setting up business operations in India, the different types of business entities available, shareholders\u2019 rights, joint ventures, raising finance both privately and by accessing public capital markets, and the regimes relating to foreign direct investment, corporate governance, mergers and acquisitions and corporate bankruptcy. \n\nWhere applicable, the course will provide relevant comparisons with similar laws in other jurisdictions such as the U.S., the U.K. and Singapore. While the course is not intended to involve an exhaustive study of all applicable laws and regulations, it will highlight key legal considerations for business transactions in India and allow for deliberation on topical, contemporary issues with real-world examples.", + "title": "Indian Business Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5129", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The principal objective of this course is to provide an understanding and appreciation of the various legal issues and perspectives involved in carrying out business and corporate transactions in India.", + "title": "Indian Business Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5129V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law, Governance & Development in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the wake of Asia's striking economic progress issues of law and governance are now seen as critical for the developing, developed and post-conflict states of Asia. Legal reforms are embracing constitutional, representative government, good governance and accountability, and human rights, based on the rule of law. How and on what principles should Asian states build these new legal orders? Can they sustain economic progress and satisfy the demands for the control of corruption and abuses of powers, and the creation of new forms of accountability? This course examines on a broad comparative canvas the nature, fate and prospects for law and governance in developing democracies in Asia, using case studies drawn especially from SE Asian states. Coverage of the issues will be both theoretical, as we ask questions about the evolving nature of 'law and development'; and practical, as ask questions about the implementation of law and development projects across Asia.", + "title": "Law, Governance & Development in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5131V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Firstly, to impart a solid grounding in the history, principles, norms, controversies and institutions of international human rights law. Secondly, to undertake a contextualized socio-legal study of human rights issues within Asian societies, through examining case law, international instruments, policy and state interactions with UN human rights bodies. 'Asia' alone has no regional human rights system; considering the universality and indivisibility of human rights, we consider how regional particularities affect or thwart human rights.

\nSubjects include: justiciability of socio-economic rights, right to development and self-determination, political freedoms, religious liberties, indigenous rights, national institutions, women's rights; MNC accountability for rights violations.", + "title": "Human Rights in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5133V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Migration is not a new phenomenon but the intensity, frequency and ease with which persons are crossing borders today, both voluntarily and involuntarily, is\nunprecedented.\n\nThis course examines the legal issues impacting a person\u2019s migration path into and in Singapore. We will examine the criteria for admission to Singapore on a temporary or permanent basis, the evolution of immigration and nationality laws, as well as the domestic responses to the growing global problem of human trafficking.\n\nTheoretical perspectives on migration and citizenship are examined with a view to a range of normative questions including: How should constitutional democracies respond to and balance rights claims by citizens, residents, and others within their borders?", + "title": "Crossing Borders: Law, Migration & Citizenship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5134V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce patent law and policy in the United States, and how they relate to other systems of law, primarily U.S. trade secret and antitrust law. The course begins with central legal principles and policies, emphasizing the concepts and skills required of a new lawyer with a working knowledge of patent law. By the end of the course, students will understand the requirements for obtaining protection, the doctrinal elements of an infringement action as well as the various types of defences and remedies available. Students will also gain a practice-oriented perspective of \u201creal-world\u201d issues facing inventors and companies as well as how those issues are consistent with, or in tension with, other interests.", + "title": "Patent Law & Practice: Perspectives from the U.S", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5135", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to prepare students for regional and international trade in Asia by providing basic knowledge of domestic laws of sale in both civil and common law systems in Asia (including Singapore's) as well as international rules affecting the contract of sale. The course will cover: comparative private law of contract and of sale in Asia; international private law of sale; private International Law aspects of international sales. The course is meant for students interested in international trade and comparative law in Asia.", + "title": "Int'l&Comp Law of Sale in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5138V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Law of the Sea governs the conduct of States in the oceans. Given that the oceans covers five-seventh of the world\u2019s surface, it is a critical component of international law. It is also relevant for Singapore due to its extensive maritime interests. This course will examine the theoretical underpinnings and the practical implementation of Law of the Sea with the aim of examining how it addresses the ever-increasing challenges in the regulation of the oceans. The course will draw on a wide range of case studies from around the world, with a particular emphasis on Asia.", + "title": "Law of the Sea: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5140V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is primarily concerned with the age-old dichotomy between law in the law books and law in action. Through the examination of the origin, function and pattern of law in primitive and modern societies from a historical, anthropological and sociological perspective, we will try to understand better, the constraints under which \u2018law\u2019 in modern society operates, and the limits on the use of law as an instrument of social change. \n\nIn the first part of the course, the student will be introduced to basic ideas in classical anthropology and the sociology of law. Questions such as - Are there any \u2018universal\u2019 patterns of human behaviour? To what extent is a society\u2019s perception of law influenced or controlled by environmental and econological factors? How are disputes resolved? Is aggression and warfare inherent in the human condition? - will be dealt with. In the second part of the course, these anthropological methods will be applied to a study of the concept of law in diverse societies from a sociological perspective, and to the actual function of law in \nsociety. Do patterns of human behaviour discernable in primitive societies hold true in more complex \u2018modern\u2019 societies? What are the attributes of a \u2018modern\u2019 legal system? Is the concept of \u2018law\u2019 in the western sense inevitable and universal in all kinds of societies. What happens to the concept of law in plural societies? \n\nTeaching will be by seminars which will include lectures and discussion of assigned readings. No previous knowledge of law anthropology or sociology is required or will be assumed of students.", + "title": "Law & Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5146", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative study of the law of secured transactions across the common law world. The first part covers the English law of security and title financing in depth. The second part looks at the notice filing model originally introduced in UCC Article 9 and now enacted as PPSAs in several other jurisdictions. The third part looks at reform of secured transactions law around the world, and, in particular, the Cape Town Convention and the UNCITRAL Legislative Guide and Model Law. This course will be of interest to anyone interested in the debt side of corporate finance, as well as those interested in transnational commercial law.", + "title": "Secured Transactions Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5148", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The settlement of disputes arising from foreign direct investment attracts global interest and attention. Foreign investors often arbitrate their disputes with host States via an arbitration clause contained in a contract. Additionally, investment treaties also empower foreign investors to bring claims in arbitration against host State. The distinct body of law that grew into international investment law, has become one of the most prominent and rapidly evolving branches of international law. The aim of this course is to study the key developments that have taken place in the area. It deals with questions of applicable law, jurisdiction, substantive obligations, as well as award challenge and enforcement, in both investment contract arbitration and investment treaty arbitration.", + "title": "International Investment Law and Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5150", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The settlement of disputes arising from foreign direct investment attracts global interest and attention. Foreign investors often arbitrate their disputes with host States via an arbitration clause contained in a contract. Additionally, investment treaties also empower foreign investors to bring claims in arbitration against host State. The distinct body of law that grew into international investment law, has become one of the most prominent and rapidly evolving branches of international law. The aim of this course is to study the key developments that have taken place in the area. It deals with questions of applicable law, jurisdiction, substantive obligations, as well as award challenge and enforcement, in both investment contract arbitration and investment treaty arbitration.", + "title": "International Investment Law and Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5150V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Police Enforcement Cooperation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5153", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will explore several key topics at the intersection of law and economics. It will commence with an exploration of the concept of rationality as employed in\n(positive) micro-economic theory. It will also explore the Coase theorem as a means of understanding the importance of legal rules and institutions. These theoretical tools will then be used as a lens for examining, amongst other topics, tort, contract and insolvency law; company law; financial regulation, and the role of law and legal institutions in economic development.", + "title": "Topics in Law & Economics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5155", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive overview of international climate change law as well as examines the legal and regulatory responses of selected Asian jurisdictions to climate change. The first part of the course will examine the UN Framework Convention on Climate Change legal regime.The second part will focus on climate change litigation. In the final part, we examine how selected Asian jurisdictions, including Singapore, have adopted laws and regulatory frameworks for climate change mitigation and adaptation.", + "title": "Climate Change Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5158", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comprehensive overview of international climate change law as well as examines the legal and regulatory responses of selected Asian jurisdictions to climate change. The first part of the course will examine the UN Framework Convention on Climate Change legal regime.The second part will focus on climate change litigation. In the final part, we examine how selected Asian jurisdictions, including Singapore, have adopted laws and regulatory frameworks for climate change mitigation and adaptation.", + "title": "Climate Change Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5158V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will look at the way economists analyze legal problems and how economics has contributed to our understanding of the legal system. In order to do that, we\u2019ll want to get a firm grounding on what an economist\u2019s lens looks like. We\u2019ll run through the main principles of economic thought. \n\nAfter this introduction to economic thinking, we\u2019ll look at how the principles of economics are applied in specific legal contexts. For these basic applications, we shall take examples from four courses (Property, Contracts, Torts, Criminal Law) to see how an economist might approach these problems.\n\nFollowing on from these basic applications, we\u2019ll look at various extensions to the basic model and special topics.", + "title": "The Economic Analysis of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5159", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intelligence Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5161V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since Singapore\u2019s independence in 1965, its economic development has been remarkable. Singapore\u2019s unique system of corporate governance is one of the keys to its economic success. This course will begin by providing a historical and comparative overview of Singapore\u2019s system of corporate governance. It will then undertake an indepth and comparative analysis of the core aspects of Singapore corporate governance, highlighting the aspects which make it unique. The course will then examine the latest developments in Singapore corporate governance, with an emphasis on analysing the details, policy rationale, and implications of recent reforms. The course will conclude by considering what the future may hold for Singapore\u2019s system of corporate governance and what other jurisdictions may learn from it.", + "title": "Singapore Corporate Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5162V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is intended to introduce students to the practice and law relating to international projects and infrastructure. The various methods of procurement and the construction process involved will be reviewed in conjunction with standard forms that are used internationally - such as the FIDIC, JCT and NEC forms, among others. Familiar issues such as defects, time and cost overruns and the implications therefrom (and how these matters are dealt with in an international context) will also be covered.\n\nThe course will provide students with an understanding of how international projects are procured, planned and administered as well as give an insight into how legal and commercial risks are identified, priced, managed and mitigated.", + "title": "International Projects Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5164V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course of private international law which offers a comparative perspective on the traditional issues addressed by rules of private international law, i.e. choice of law, international jurisdiction, and the recognition of foreign judgments. The focus will essentially be the United States and on the European Union, but other jurisdictions will also be considered from time to time.", + "title": "Comparative Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5170", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the progressive development of environmental law, policy and governance in ASEAN. It also considers the role of ASEAN in supplementing and facilitating international environmental agreements (MEAs), such as the Convention on International Trade in Endangered Species, the Convention on Biological Diversity, UNESCO Man & Biosphere,etc. It will evaluate the extent of implementation of the ASEAN environmental instruments at national level - some case studies will be examined.", + "title": "ASEAN Environmental Law, Policy & Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5171V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Japanese Corporate Law & Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5172", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the core legal characteristics of the corporate form in five major jurisdictions: the U.S., the U.K., Japan, Germany and France. It explains the common agency problems that are inherent in the corporate form and compares the legal strategies that each jurisdiction uses to solve these common problems. The major topics that this comparative examination covers include: agency problems; legal personality and limited liability; basic governance structures; creditor protection; related party transactions; significant corporate actions; control transactions; issuer and investor protection; the convergence of corporate law; and, comparative corporate law in developing countries.", + "title": "Comparative Corporate Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5173V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The development of new types of legal phenomena in the global arena has outgrown established understandings of law, and conventional classifications of legal materials. At the point of needing a theoretical underpinning for the novel concerns of academic law occasioned by globalization, fresh considerations of interdisciplinary perspectives on law are opened up, questioning the extent to which a distinctively legal approach to global issues is possible. This course engages with these challenges by exploring the global interconnectedness of law, morality, politics and economics, and considers what contribution legal theory might make to illuminating complex policy issues with a global reach.", + "title": "Global Legal Orders: Interdisciplinary Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5175V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide you with an overview of the copyright, trademark and right of publicity issues confronting the entertainment industries of movies, music, books, video games, visual and performing arts, and new media. It provides a transnational perspective with an emphasis on cases from California, New York and the United Kingdom. This is not a course on entertainment law in Singapore, but the principles you learn could be relevant to Singapore law.\n\nWith case studies ranging from Roger Federer to Ariana Grande, Britney Spears to Tiger Woods, Avatar to Star Wars, Blurred Lines to Somebody To Love, this course will cover a number of prominent causes of action brought by celebrities and rights owners.", + "title": "Entertainment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5177", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide you with an overview of the copyright, trademark and right of publicity issues confronting the entertainment industries of movies, music, books, video games, visual and performing arts, and new media. It provides a transnational perspective with an emphasis on cases from California, New York and the United Kingdom. This is not a course on entertainment law in Singapore, but the principles you learn could be relevant to Singapore law.\n\nWith case studies ranging from Roger Federer to Ariana Grande, Britney Spears to Tiger Woods, Avatar to Star Wars, Blurred Lines to Somebody To Love, this course will cover a number of prominent causes of action brought by celebrities and rights owners.", + "title": "Entertainment Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5177V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the treaties used by States to protect the interests of their investors when making investments abroad and to attract foreign investment into host economies. It will pay particular attention to investor-State arbitration under investment treaties, which is increasingly becoming widespread in Asia and a growing part of international legal practice. It will examine not only the legal and theoretical underpinnings of these treaties and this form of dispute settlement, but also their practical application to concrete cases and their utility as a tool of government policy.", + "title": "Law and Practice of Investment Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5178", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the treaties used by States to protect the interests of their investors when making investments abroad and to attract foreign investment into host economies. It will pay particular attention to investor-State arbitration under investment treaties, which is increasingly becoming widespread in Asia and a growing part of international legal practice. It will examine not only the legal and theoretical underpinnings of these treaties and this form of dispute settlement, but also their practical application to concrete cases and their utility as a tool of government policy.", + "title": "Law and Practice of Investment Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5178V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Alternative Dispute Resolution", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5179", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Starting by examining the theory and the need for choice of law and jurisdiction clauses, this course will examine various issues with these clauses by involving students in drafting, negotiating, concluding and eventually enforcing choice of law and jurisdiction clauses (in particular arbitration clauses) in international commercial contracts in Asia. This will be done through real life scenarios being introduced into the classroom in which students will act as lawyers advising and representing clients in drafting and negotiating choice of law and jurisdiction clauses as well as attacking or defending them before a tribunal in a dispute context. Accordingly, students will live through the life of various choice of law and jurisdiction clauses and see how they can be drafted, negotiated and enforced in Asian jurisdictions. \nUpon completion of the course, students will have learnt the theories behind choice of law and jurisdiction clauses as well as the practical skills and lessons in negotiating, finalizing and enforcing them.", + "title": "Choice of Law & Jurisdiction in Int\u2019l Commercial Contracts in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5180", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on law, policy and practice in three regulated areas in Singapore: (1) financial markets & sovereign wealth funds; (2) healthcare; and (3) real property. It adopts a cross-disciplinary and practice-related perspective in its examination of competing and overlapping interests and the relevant theories and principles of state regulation driving these fast-developing areas. It also examines the roles, rights and obligations of the Government as a regulator, the government-linked entities as market actors, businesses and individuals, and considers \"market inefficiencies\" relating to accountability, independence, legitimacy and transparency. Students are required to evaluate current substantive law and institutional norms and processes, review comparative models and approaches in other jurisdictions, and propose a model of optimal regulation in one selected area.", + "title": "Government Regulations: Law, Policy & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5185", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on law, policy and practice in three regulated areas in Singapore: (1) financial markets & sovereign wealth funds; (2) healthcare; and (3) real property. It adopts a cross-disciplinary and practice-related perspective in its examination of competing and overlapping interests and the relevant theories and principles of state regulation driving these fast-developing areas. It also examines the roles, rights and obligations of the Government as a regulator, the government-linked entities as market actors, businesses and individuals, and considers \"market inefficiencies\" relating to accountability, independence, legitimacy and transparency. Students are required to evaluate current substantive law and institutional norms and processes, review comparative models and approaches in other jurisdictions, and propose a model of optimal regulation in one selected area.", + "title": "Government Regulations: Law, Policy & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5185V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Philosophical Foundations of Contract Law invites students to critically examine (1) the theoretical underpinnings of contract law at the level of meta theory (e.g. autonomy, reliance, promise, economic, property), but also (2) at the level of foundational concepts such as \u2018autonomy\u2019, \u2018freedom\u2019, \u2018the intention of the parties\u2019, \u2018vitiation\u2019 and \u2018expectation interest\u2019; (3) how the theories help us to explain different aspects of contract law. Students should be able to engage in normative analysis of the law (how the law should be) with a view to desirable law reform. It complements the modules Advanced Contract Law and Property Theory.", + "title": "Philosophical Foundations of Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5187", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_CR3-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The elective course focuses on the legal aspects of corporate finance issues, i.e. raising of funds by a company from the domestic and international markets. Major topics covered include understanding financial statements and financial ratios, equity financing through listing on recognised exchanges (including reverse/backdoor listing and rights' issue) and debt financing such as syndication loans and bond issues. \nAdvisory Note for students from Civil Law Jurisdiction: Students who have not taken lessons in trust law, contract law and company law from the common law jurisdiction may have difficulty following the course.", + "title": "Corporate Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5188", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The elective course focuses on the legal aspects of corporate finance issues, i.e. raising of funds by a company from the domestic and international markets. Major topics covered include understanding financial statements and financial ratios, equity financing through listing on recognised exchanges (including reverse/backdoor listing and rights' issue) and debt financing such as syndication loans and bond issues. \nAdvisory Note for students from Civil Law Jurisdiction: Students who have not taken lessons in trust law, contract law and company law from the common law jurisdiction may have difficulty following the course.", + "title": "Corporate Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5188V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative and critical analysis of why and how six corporate mechanisms - (1) sustainability reporting; (2) board gender diversity; (3) constituency directors; (4) stewardship codes; (5) directors' duty to act in the company's best interests; and (6) liability on companies, shareholders and directors - have been or can be used to promote corporate social responsibility in the Asian and AngloAmercian jurisdictions. It equips students with useful, practical skillsets on how to advise clients on CSR issues and with a strong foundation to critically engage with sustainability matters that will be important to them in practice.", + "title": "Corporate Social Responsibility", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5189", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a comparative and critical analysis of why and how six corporate mechanisms - (1) sustainability reporting; (2) board gender diversity; (3) constituency directors; (4) stewardship codes; (5) directors' duty to act in the company's best interests; and (6) liability on companies, shareholders and directors - have been or can be used to promote corporate social responsibility in the Asian and AngloAmercian jurisdictions. It equips students with useful, practical skillsets on how to advise clients on CSR issues and with a strong foundation to critically engage with sustainability matters that will be important to them in practice.", + "title": "Corporate Social Responsibility", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5189V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through examining the jurisprudence in three common law Western liberal democracies of the United States, United Kingdom and Australia, this course compares and critiques how the freedom of speech is construed in these jurisdictions. By confronting the complexities of the US First Amendment, the interplay between Articles 8 and 10 of the European Convention on Human Rights, and the Australian implied constitutional guarantee, one is exposed to different theoretical, practical and often controversial approaches in the protection of free speech. Cases covered span the spectrum from flag burning to duck shooting, from the Gay Olympics to the Barbie Doll, from regulating the display of offensive art to protecting the privacy of a supermodel.\nMode of Assessment: 1 Research Paper (70%) - [to be handed in week 13]; Class Performance - 30%.", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5190", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through examining the jurisprudence in three common law Western liberal democracies of the United States, United Kingdom and Australia, this course compares and critiques how the freedom of speech is construed in these\njurisdictions. By confronting the complexities of the US First Amendment, the interplay between Articles 8 and 10 of the European Convention on Human Rights, and the Australian implied constitutional guarantee, one is exposed to different theoretical, practical and often controversial approaches in the protection of free speech. Cases covered span the spectrum from flag burning to duck shooting, from the Gay Olympics to the Barbie Doll, from regulating the display of offensive art to protecting the privacy of a supermodel.\nMode of Assessment: 1 Research Paper (70%) - [to be handed in week 13]; Class Performance - 30%.", + "title": "Freedom of Speech: Critical & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5190V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the legal principles and regulatory environment surrounding the wealth management services provided by banking institutions. Major topics that are likely to be covered on the course include the nature and regulation of wealth management services and providers, banks\u2019 potential liability for the provision of wealth management services (such as financial advisory services in general and in relation to complex financial products in particular, the provision of financial information and data, portfolio management services, and custodianship) and the effectiveness of banks\u2019 attempts to exclude or limit liability.", + "title": "Wealth Management Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5191", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Private International Law of IP", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5192", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5193", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a practical introduction to the essentials of negotiating and drafting commercial contracts in the Common Law tradition. \nThe course begins with a refresh of plain English writing skills. The second part then reviews key Common Law concepts and considers the Common Law's attitudes to the commercial world. The third looks at the fundamental shape, structure and organisation of commercial contracts. The fourth deals with aspects of law routinely encountered by the practitioner and technical drafting issues. The fifth focuses on technical drafting. The sixth and final part considers the approach of managing legal risk and the practicalities of negotiation.", + "title": "An Introduction to Negotiating & Drafting Commercial Contracts", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5193V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine in depth the law of partnerships. The basic framework is the same in most Commonwealth countries and based still on the UK Partnership Act of 1890. The topics to be covered in relation to general partnerships include the formation of partnerships, partnerships in the modern legal system, the relationship between partners and outsiders, the relationship of partners inter se and the dissolution of partnerships. The module will then examine the variants of limited partnerships, used mainly as investment vehicles, and limited liability partnerships. LLPs, a recent creation, are becoming increasingly popular for the professions especially. They are an amalgam of corporate and partnership concepts but are also developing their own specific legal issues which will only increase with time.", + "title": "Partnership and LLP Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5194", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international law and international relations dimensions of the current international economic systems and discuss the various possibilities for future reforms in light of the past and recent global economic crises. While the discussion will be based on the Bretton Woods System (the GATT/WTO, the IMF, and the World Bank), the course will focus mainly on the international regulatory framework of finance and investment. The purpose of the course is to let the students develop a bird\u2019s eye view of the legal aspects of the international economic architecture as well as the reasons \u2013 or the international political economy \u2013 behind its operation. Students will also be exposed certain fundamentals of international law and international relations concerning global economic affairs. Further, the course will examine the experiences of several countries\u2019 economic development and their use of international economic law to achieve economic growth.", + "title": "International Economic Law & Relations", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5195V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How do Southeast Asian constitutions accommodate religion? Is secularism necessary for democracy? Do public religions undermine religious freedom? These are some of the questions we will be engaging with in this course.", + "title": "Comparative State and Religion in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5197V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ASEAN leaders agreed to create a single market \u2013 the ASEAN Economic Community \u2013 by 2015. Due to sovereignty concerns, ASEAN leaders did not create a single supranational authority to regulate this market. This course examines how ASEAN member states and institutions are filling in the vacuum through formal and informal means. Students will understand how regional policymaking affects domestic laws and policies within ASEAN.", + "title": "ASEAN Economic Community Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5202V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Moots and Other Competitions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5203", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide students with an overview of the fundamental principles of Islamic commercial law and how they are applied in the modern context in connection with the practice of Islamic finance. The course will begin with \nhistorical doctrines, discuss modern transformations, review practical examples, and consider the treatment of Islamic financial contracts in secular courts.", + "title": "Islamic Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of conflict of laws issues in the context of maritime law and admiralty litigation. The course will provide an introduction to conflicts theory and concepts before focusing on conflict of jurisdictions, parallel proceedings and forum shopping in admiralty matters; role of foreign law in establishing admiralty jurisdiction; recognition and priority of foreign maritime liens and other claims; choice of law and maritime Conventions; conflicts of maritime Conventions; security for foreign maritime proceedings; and recognition and enforcement of oreign maritime judgments.", + "title": "Maritime Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of conflict of laws issues in the context of maritime law and admiralty litigation. The course will provide an introduction to conflicts theory and concepts before focusing on conflict of jurisdictions, parallel proceedings and forum shopping in admiralty matters; role of foreign law in establishing admiralty jurisdiction; recognition and priority of foreign maritime liens and other claims; choice of law and maritime Conventions; conflicts of maritime Conventions; security for foreign maritime proceedings; and recognition and enforcement of oreign maritime judgments.", + "title": "Maritime Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5205V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course encompasses the theoretical and practical concepts underpinning the entire criminal litigation process, from pre-trial to post-conviction. Coverage will include the role of the charge, drafting of charges, plea-bargains, guilty pleas, trials, consequential orders and appeals. Common evidential issues arising in trials will also be discussed. The aim is to provide both a holistic overview of the entire process as well as detailed examination of specific areas. The course will cover criminal procedure and evidence as well as include advocacy exercises in common criminal proceedings and a practical attachment at the Criminal Justice Division.", + "title": "Advanced Criminal Legal Process", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5208V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the advanced argumentative techniques possible with legal narrative, which refers to how information is selected and organised to construct a persuasive view of the facts. Fact construction plays a particularly prominent role in litigation, but it also appears in methods of alternative dispute resolution and justifications of policy positions. This module will analyze \nthe pervasive reach of fact construction in the law, examine why fact construction is such an effective tool of legal persuasion, and explore advanced techniques of fact\nconstruction.", + "title": "Legal Argument & Narrative", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5209V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international intellectual property system and addresses the legal issues raised by the trade of products protected by intellectual property rights (patents, trademarks, and copyrights) across different jurisdictions. This course reviews the key international agreements and provisions in this area, as well as the different national policies, which have been adopted, to date, in several domestic jurisdictions or free trade areas, including the European Union, the U.S., China, Japan, and the ASEAN countries.", + "title": "Intellectual Property And International Trade", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the international intellectual property system and addresses the legal issues raised by the trade of products protected by intellectual property rights (patents, trademarks, and copyrights) across different jurisdictions. This course reviews the key international agreements and provisions in this area, as well as the different national policies, which have been adopted, to date, in several domestic jurisdictions or free trade areas, including the European Union, the U.S., China, Japan, and the ASEAN countries.", + "title": "Intellectual Property And International Trade", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5210V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course addresses major regulatory legal aspects of money, payments, and clearing and settlement systems from international, comparative and global perspective. It addresses the design and structure of the monetary and\npayment systems; the infrastructure designed to accommodate the payment and settlement of commercial and financial transactions; sovereign debt; and the impact of sovereign risk on commercial and financial transactions. It covers domestic & international monetary systems; central banking; international retail and wholesale payments in major currencies; settlement of financial transactions; foreign exchange transactions; payment clearing & settlement: mechanisms and risks; systematically important payment systems; and global securities settlement systems.", + "title": "International Public Monetary and Payment Systems Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In an era of globalization marked by a dramatic increase in cross-border interactions and transactions, the legal norms regulating these cross-border phenomena \u2013 from terrorism to environmental protection to business law \u2013 and disputes arising from them are complex and uneven. This rise in transnational legality poses a challenge for the modern concept of law and for state and inter-state law as traditionally conceived. This course traces the emergence of the state and considers how state law has been shaped by and has adapted to globalization. It examines legal and non-legal responses to transnational problems, using examples from several areas of law.", + "title": "Transnational Law in Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module explores principles and rules relating to the exploration for, development and production of oil and gas (upstream operations). The main focus of the module is on the examination of different arrangements governing the\nlegal relationship between states and international oil companies, such as modern concessions, productionsharing agreements, joint ventures, service and hybrid contracts. The agreements governing the relationships between companies involved in upstream petroleum operations (joint operating and unitisation agreements) will also be examined. The module will further explore the\nissues of dispute settlement, expropriation, stability of contracts and a relevant international institutional and legal framework.", + "title": "International and Comparative Oil and Gas Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cyberspace is the online world of computer networks, especially the Internet. This module examines two major points of connection between the law and cyberspace: how communications in cyberspace are regulated; and how\n(intellectual) property rights in cyberspace are enforced. Specific topics include: governing the Internet; jurisdiction and dispute resolution in cyberspace; controlling online content; electronic privacy; trademarks on the Internet;\ncybersquatting; digital copyright; virtual worlds.", + "title": "Cyber Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the legal approach to curbing corruption in three jurisdictions namely: Singapore, US and UK. The focus will be on bribery of public officials both domestic and foreign. The applicable laws \u2013 domestic and\nextra-territorial - in the selected national jurisdictions will be examined to see how effective they are for curbing such corruption. The module will also examine regional and multi-regional laws enacted to curb corruption. Major topics to be coveredinclude: preventive measures; criminalization; corporate liability including criminal and non-criminal sanctions; and jurisdictional principles.", + "title": "Comparative & International Anti-Corruption Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module draws on research, programming and visiting speakers under the Centre for Asian Legal Studies, ASLI Fellows and NUS faculty, bringing students into discussion, interrogation and analysis of major current issues in Asian legal studies. The module will involve reading and analyzing recent work in the field, emphasising theoretical and methodological approaches in a comparative context. It will use current case studies as examples for analysis. These will vary from year to year according to CALS activity.", + "title": "Asian Legal Studies Colloquium", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5218V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Trial of Jesusis an excellent case for students to learn how to conduct non\u2010practical studies of legal and normative issues. It is, arguably, the most consequential\nlegal event in the evolution of Western Civilization. We will examine the historical, political, and legal background to the Trial, and, especially, the procedural propriety of\nthe Trial. Questions to be explored include: Were hisprocedural rights preserved during his trial before the Sanhedrin? Was histrial a miscarriage of justice? Through\nreflecting upon these and other questions, we will explore if and how thistrialshaped the Western culture. \n\nThis module is also concerned with the \u2018method\u2019 or \u2018process\u2019 of how students digest and integrate \u2019substance\u2019 or\u2018content\u2019. Thus,there is emphasis on the significance of understanding and clarifying, the complexity of each and every problem, and not only the importance of offering, or trying to offer, a clever solution to it.", + "title": "The Trial of Jesus in Western Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the legal issues \u2010 both from a conflict of laws perspective and a substantive law one \u2010 that may arise in connection with business contracts (such as contracts for the sale of goods, factoring contracts, leasing\ncontracts, transport contracts, etc.) that involve some element of internationality and examines those issues in light of some of the sets of rules specifically designed to address those issues when embedded in an international\nsetting (such as the United Nations Convention on Contracts for the International Sale of Goods, the International Factoring Convention, the Convention on International Financial Leasing, the Montreal Convention,\nthe Rome I Regulation, etc.). The course will also offer an overview of the basic features of litigation of those issues in state courts and before arbitral tribunals.", + "title": "International Business Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore legal and policy developments pertaining to climate change. Approaches considered will range in jurisdictional scale, temporal scope, policy orientation, regulatory target, and regulatory objective. Although course readings and discussion will focus on existing and actual proposed legal responses to climate change, the overarching aim of the course will be\nto anticipate how the climate change problem will affect our laws and our lives in the long run.", + "title": "Climate Change Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides students with profound knowledge relating to core issues of procedural law (including jurisdiction, admissibility, standing, provisional measures, \napplicable law, and the effect as well as enforcement of international decisions). It combines the discussion of these matters of law with international relations theory and issues of judicial policy. Against the background of a mounting stream of international judicial decisions, students will develop a solid analytical framework to \nappreciate the law and politics of international judicial institutions, focusing on the International Court of Justice, the International Tribunal for the Law of the Sea, the World Trade Organization, and adjudication in investment disputes.", + "title": "The Law & Politics of International Courts & Tribunals", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will analyze and discuss mergers which involve two or more entities which are located in different countries. \n\nAfter outlining the issues and conflicts created by the duality of corporate, control of foreign investment, regulatory and tax (for the latter in general terms) laws, the various solutions available will be discussed. \n\nEmphasis will be given to international treaties and European directives solutions as used in actual transactions. \n\nOther structures, in the absence of regulatory support, such as stock for stock offers and dual listing will be analyzed, also as used in actual transactions.", + "title": "Cross Border Mergers", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cybercrime, cyberterrorism and cyberwars have been new threats developed in the interconnected age of the internet. In this Module we are looking at a range of \ncrimes committed through the use of computers, computer integrity offences where computers or networks are the target of the criminal activity and internet crimes \nrelated to the distribution of illegal content. This Module examines substantive criminal law in England, other European countries, the US, Canada and Singapore . It \nexplores the greater risks stemming from criminal activities due to the borderless nature of the internet and the limits of international co-operation. This module also aims to teach the key legal aspects and principles surrounding electronic data and systems security, identity management and authentication.", + "title": "Cybercrime & Information Security Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an overview of the basic economic theory that underlies competition law, an area of law that has expanded dramatically around the world in recent years. Various topics will be covered, including an economic analysis of efficiency and why competition matters from the perspective of social welfare, horizontal agreements, mergers, vertical restraints, and exclusion of competitors. While the course will not attempt to provide a comprehensive overview of antitrust law, relevant economic theory will be discussed in the context of legal cases taken from different jurisdictions around the world (most prominently the United States and Europe).", + "title": "Topics in the Law and Economics of Competition Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Other than the traditional unimodal contract of carriage, a multimodal contract of carriage requires more than one modality to perform the carriage. Think of a shipment of steel coils, traveling per train from Germany to the Netherlands, then by sea to Singapore where the last stretch to the end receiver is performed by truck. The course deals with all the legal aspects of such a multimodal contract of carriage.", + "title": "Multimodal Transport Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Other than the traditional unimodal contract of carriage, a multimodal contract of carriage requires more than one modality to perform the carriage. Think of a shipment of steel coils, raveling per train from Germany to the Netherlands, then by sea to Singapore where the last strech to the end receiver is performed by truck. The course deals with all the legal aspects of such a multimodal contract of carriage.", + "title": "Multimodal Transport Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5226V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the legal and policy framework for civil society, non-profit organizations, and philanthropy in Asia, the United Kingdom, the United States, Australia and other jurisdictions, including the formation and ac tivities of \norganizations, capital formation and fundraising, state restrictions on activities, governance, donations from domestic and foreign sources, and o ther key topics. In 2014 the instructor and students will undertake a publishing project on philanthropy, non-profit organizations and the law in Asia in collaboration with the International Center for Not-for-Profit Law (ICNL, which is based in Washington DC)", + "title": "Philanthropy, Non-profit Organizations, and the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the rules on the use of force in international law. It does so from an historical perspective with special emphasis on state practice so that students can understand how and why the law on the use \nof force has evolved in the way it has. The course sets out the general prohibition on the u se of fo rce in the UN Charter, and introduces students to key concepts such as self-defence, humanitarian intervention, and aggression. Students will be introduced to debates on pre-emption, the use of force in pursuit of self-determination, and terrorism.", + "title": "The Use of Force in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5228V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course adopts a functional approach to Anglo-American company law and integrates company law with corporate governance. The course examines core Company Law and the regulatory framework and practice on corporate governance \u2013 the system (structure and process) by which companies are \ngoverned, and to what purpose. In light of their extraterritorial reach and partly because of th e relationship between their markets and legal systems, the course focusses on the similarities and variations by considering the structural \ndifferences and similarities, legal frameworks and market structure (the effect of retail and institutional investors) as drivers of corporate governance regulation in both jurisdictions.", + "title": "Corporate Governance in the US and UK", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject will provide an introduction to the modern legal system of Myanmar/Burma in social, political and historical context. It will consider the legal framework and institutions of Myanmar in light of the literature on rule of \nlaw reform in transitional and developing contexts. The subject will include a focus on constitutional law; the legislature; the courts; criminal justice; minority rights; \nforeign investment law and special economic zones; the military; and institutional reform. The mode of assessment for this course is 80% research essay, 10% class presentation and 10% class participation.", + "title": "Transition and the Rule of Law in Myanmar", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "European company law can be understood in two ways. It can indicate the EU\u2019s approach to company law and thereby lead to an analysis of the harmonized standards for 28 European nations. It can also be understood as a comparative approach to the different legal systems on the European continent. \n\nThis course includes both aspects. It will first concentrate on EU legislation and jurisdiction, followed by a comparison of the legal systems of the two most important continental European jursidictions, France and Germany. It will lead to an understanding of shared principles of civil law jurisdictions and emphasize important differences to common law systems.", + "title": "European Company Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5233V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the way in which the concept of property has figured in political and legal theory. The module will first investigate the significance of property discourse in modern political theory, beginning with early modern authors such as Grotius and Locke, and then considering later political theorists such as Kant, Hume, Smith and Hegel, as well as utilitarian/economic treatments of property. The course will then draw upon this material to then focus on modern debates about the role of the concept of property in legal theory, covering such issues as economic/distributive justice, whether property is a 'bundle of rights', possession, ownership, and equitable property.", + "title": "Property Theory", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5234V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the onset of globalization, the study of contract law can no longer be confined to arrangements between private entities sharing the same nationality and operating in the same jurisdiction. The costliest and most complex contractual disputes involve States, State entities, or State-linked enterprises, and foreign nationals, as contracting parties. The introduction of States as permanent and powerful participants in economic life led to the emergence of a bespoke body of law \u2013 international contract law \u2013 to regulate these prominent contractual arrangements. This course is for students who have been targeted for regional and international legal practice, or who plan to gravitate towards transnational legal work in multinational corporations.", + "title": "International Contract Law: Principles and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5235V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to explore the interaction between legal institutions and economic/business development in Greater China (i.e. China, Taiwan, HK), with focus on China. How has China been able to offset institutional weaknesses at home while achieving impressive economic results worldwide? Have China\u2019s experiences indicated an unorthodox model as captured in the term \u201cBeijing Consensus\u201d? To what extent is this model different from\nEast Asian models and conventional thinking in economic growth? This course reviews theories about market development in the context of Greater China, including securities, corporate regulations, capital markets, property, sovereign wealth funds, foreign investment, and anticorruption etc.", + "title": "Law, Institutions, and Business in Greater China", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5237V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover the international, comparative and domestic aspects of corporate finance law and practice. The emphasis of the course will be on the actual application of corporate finance law in practice, the policies that have shaped the laws in Singapore and elsewhere, and the international conventions that have evolved in this area. Topics include: cash flow, value and risk; term loans and loan syndications; fund raising and capital markets; securitisations; derivatives; and financing mergers and acquisitions.", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5238V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on contemporary legal and political institutions in the South Asian region, with particular emphasis on understanding the role and nature of law and constitutionalism. Although the primary focus will be on\nBangladesh, India, Pakistan and Sri Lanka, developments in Bhutan and Nepal will also be covered. The module will employ readings and perspectives from the disciplines of history, politics, sociology and economics to understand\nhow these affect the evolution of South Asian legal systems over time. It will also adopt comparative perspectives and analyse how individual legal systems in South Asia are influenced by other nations in the region.", + "title": "Law & Politics in South Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5239V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course begins with an analysis of the fragility of the business model of commercial and investment banks and the negative externalities of bank failure. It then focuses on three principal functions of bank regulation: (1) making banks more resilient to business shocks; (2) making it less likely that banks will suffer shocks; (3) and facilitating the resolution and recovery of banks which fail. The focus will be on the crucial policy choices involved in achieving these objectives; the trade-offs among the available legal strategies; and the problems of regulatory arbitrage (shadow banking).", + "title": "Financial Stability and the Regulation of Banks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will include various aspects of financial regulation. The focus will be on the regulation of credit institutions and the role of central banks. Other forms of regulation of financial intermediaries and financial markets will be discussed in less detail. Since the focus will be on credit institutions, it will be important that the students understand what distinguishes credit institutions from other providers of financial services and how the regulatory approaches differ.\n\nThe part on the regulation of credit institutions will include requirements for their\nauthorization, their permanent supervision and rescue scenarios in situations of insolvency and default. These aspects will be discussed from a comparative perspective with the Basel requirements at the core of the discussion, complemented by the implementing norms in important jurisdictions, above all in Singapore. For resolution and restructuring the European Union has taken on a leading role, and, as a consequence, these EU approaches will be analysed in detail.\n\nThe roles of central banks will remain a core part of the course. Their tasks and objectives will be discussed from a comparative perspective. Their essential role in crisis management, their co-operation with supervisory agencies and their monetary policy will remain essential components of the course.", + "title": "Financial Regulation and Central Banking", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5242V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar explores how different aspects of physicial and social space (ie, geography) influence the efficacy of different kinds of law and regulation. Such understanding is especially useful for explanding one\u2019s understanding of the relationship between law and economics, law and development, and law and society. It is also relevant to issues of public international law, transnational law, human rights law, public law, and comparative law. \n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Law, Economics, Development, and Geography", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5243V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The administration of criminal justice in Singapore relies on an ethical, professional and skilled disposition and management of criminal cases. A good criminal practitioner needs a sound grounding in criminal law and criminal procedure, and a strong base of written and oral advocacy and communication skills. This is an experiential course that takes students through a case from taking instructions all the way through to an appeal, using the structure of the criminal process to teach criminal law, procedure and advocacy skills. Taught primarily by criminal law practitioners, this course will give an insight into the realities of criminal practice.", + "title": "Criminal Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5244V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Course explores the various ways through which public law contributes to the regulatory construction of the state. Topics will include the ways public law contributes to the various purposes of the state; the tools that public law uses to contribute to these purposes; how public law evolves; and the future of public law in a post-Westphalian world\n\nA significant portion of this seminar is devoted to helping students identify and develop research projects, and write academic-quality research papers. This includes individual meetings with the instructor, and class discussion on doing research papers.", + "title": "Regulatory Foundations of Public Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5245V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will give students a broad understanding of the law relating to the international carriage of passengers by sea. Topics to be covered include formation of contract, regulation of cruise ships, State jurisdiction over crimes\nagainst the person on board a ship, liability for accidents, limitation of liability, the Athens Convention 1974/1990, and conflict of laws/jurisdictional issues relating to passenger claims. This module will be useful for those who\nare intending to: practice law in a broadly focussed shipping practice; work within the cruise and ferry industry; or otherwise are likely to deal with passengers and/or their claims.", + "title": "International Carriage of Passengers by Sea", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a survey course of topics that include: international sales contract; international trade law; and international investment law. It covers the basic principles of private and public international law that are fundamental\nto the creation of the framework within which business transactions take place. It will also cover the topic of the relationships among international business transactions, globalization and economic development.", + "title": "International Economic Law & Globalisation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5247V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine at an advanced level the rights and duties of company shareholders. In doing so the course will critically examine, from a comparative\nperspective, the division of power between the various organs of the modern company and the underlying policy of the law with regard to shareholders rights. The course will also key in on topical issues such as the effectiveness\nof shareholders\u2019 rights, enabling v mandatory theories of shareholders\u2019 rights, the statutory derivative action and its effectiveness and the role of the company in shareholder litigation. Finally, it will look at international developments including institutional shareholder activism.", + "title": "Shareholders' Rights & Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course concentrates on the principles of equity financing in the private and public markets, including the relevant company law rules (eg pre-emption rules), capital market regulation as far as it affects the issues of raising equity finance for public companies, private equity and its regulation, and change of control transactions.", + "title": "Principles of Equity Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the jus in bello \u2013 the law which regulates the conduct of hostilities once the decision to resort to force has been taken. This course will deal with fundamental concepts of the jus in bello, focusing on customary international law. Basic legal concepts that will be discussed include State and individual responsibility, the distinction between combatants and civilians, and the principle of proportionality. The course will also examine topics such as weaponry, international and noninternational conflicts, and the enforcement of the law in situations of conflict.\n\nNote: This course does not deal with the jus ad bellum, or the rules relating to the general prohibition on the use of force in international law.", + "title": "International Humanitarian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Humanitarian Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5251V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will develop your understanding of EU law and politics as well as your capacity critically to evaluate the institutional, substantive and constitutional dimensions of European integration. It will consider the nature of the EU as well as the challenges it presents to its Member States. \n\nThe course will provide an overview of the judicial architecture and political structures of the European Union, the authority of EU law, law-making procedures, and the most significant case law in free movement, citizenship, and fundamental rights. It will also introduce more complex questions about the dynamics and direction of the process of regional integration, particularly since the Euro crisis.", + "title": "The EU and its Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Treaties are a principal source of obligation in international law. In this era of globalization, many state and individual activities in many countries are direct results of treaty obligations. In this sense, treaties are the \u201coverworked workhorses\u201d of the global legal order.\n\nDespite this significant impact on our lives, few of us understand what treaties truly mean and what kinds of implications they bring to international relations, our businesses, and private lives. In order to understand the treaty mechanisms, this course covers various aspects of the law of treaties.", + "title": "The Law of Treaties", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5253V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the changing role of developing countries in a changing international order. It does so by adopting an approach that combines history, theory, and doctrine. The course will examine the historical origins of the contemporary international legal system, and the theoretical debates that have accompanied its evolution, focusing in particular on relations between the Western and non-Western worlds. It will then examine selected topics of international law that are of current significancethese may include international human rights law, the law relating to the use of force, the international law of trade and foreign investment.", + "title": "Developing States in a Changing World Order", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5254V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary focus of the course will be given to the multilateral rules and cases of trade remedies under WTO jurisprudence. In parallel, domestic trade remedy rules and regulations and policies of China, Korea and Japan will be examined to analyze application of WTO rules to domestic jurisprudence and policies. What are the common characteristics and differences among those rules and policies? Are they consistent with WTO jurisprudence? Which agencies are in charge of trade remedy system and policy making and implementations? What is the best strategy for enterprises to respond to such policies? Answers to these key questions are given through lectures, presentations, and discussions.", + "title": "Trade Remedy Law & Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5255V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Constitutional government in the modern era has developed different organisational and functional models, that draw their inspiration from some main principles (eg. Separation of powers, checks and balances, limited government, democratic accountability) that are distinguishing features of the same type of state. The module will consequently highlight the different forms of (presidential, semi-presidential, parliamentary) government, as experienced by the states belonging to both the common law and the civil law legal traditions. Reference will be made also to forms of constitutional government based on territorial division of powers, such as federal systems and supranational organisations such as the Europe Union.", + "title": "Comparative Constitutional Government", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar deals with ongoing research in the area of financial intermediary supervision, corporate governance and capital markets regulation. Each participant will have to 1) read the discussed papers in advance; 2) write a 10 page commentary on one of the discussed papers and present it in class; 3) comment upon one presentation by a fellow student; and 4) actively participate in the discussion throughout the seminar.", + "title": "Law & Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide students with an understanding of key personal property concepts. Topics to be studied will include: types of personal property; personal property entitlements recognised at common law, notably, possession, ownership, title and general and special property, with some reference also to equitable entitlements; the transfer of such entitlements; the conflict between competing entitlements; the protection given by law to such entitlements; the assignment of things in action; security interests over personal property.", + "title": "Personal Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5258V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Alternative Investments", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5259AV", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in alternative investment from both a practical and theoretical perspective. The topics that will be covered include private equity, venture capital, hedge funds, crowdfunding and REITs. The course will discuss selected partnership and corporate issues of alternative investment vehicles. The course will focus on China and will provide relevant comparisons on alternative investment in Singapore, the U.K. and the U.S.", + "title": "Alternative Investments", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5259V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the fundamental legal concepts and principles relating to Chinese commercial law. Topics to be covered include: basic principles of PRC civil and commercial law, contracts, business associations and investment vehicles, secured transaction, negotiable instruments, taxation and dispute resolution. It will highlight key legal considerations in carrying out commercial transactions in China. Where applicable, the course will provide relevant comparisons with similar laws in other jurisdictions such as the U.S., the U.K. and Singapore.", + "title": "Chinese Commercial Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5260V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Taken concurrently with \u201cCrossing Borders\u201d but with an emphasis on experiential learning, this module offers students the opportunity to explore the legal issues affecting migrant workers, both in the classroom and through externships and case work. Students will spend most of their time outside of class, gaining practical experience by first interning at the Ministry of Manpower over the holidays and then, during the semester, volunteering an average of 10 hours weekly with either Justice Without Borders (JWB) or the NUS-HOME Theft Project (\u201cTheft Project\u201d). In class, using peer learning, including roundtable case review, students will hone their legal skills while examining the legal framework governing Singapore\u2019s foreign workers. Analysing their externship experiences, students will explore the relationship between law on the books and law in action.", + "title": "Employment Law & Migrant Workers Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5261V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines in interaction between IPRs and competition policy\nfrom two broad perspectives: the endogenous operation of competition policy\nfrom within IPR frameworks (copyright, designs, trade marks and patents),\nand the exogenous limitations placed by competition law rules on an IP\nholder\u2019s freedom to exploit his IPRs. Students enrolled in this module are\nexpected to have completed a basic intellectual property module \u2013 an\nunderstanding of what IPRs protect, the nature of the exclusive rights they\nconfer and how they may be exploited will be presumed.", + "title": "Intellectual Property Rights and Competition Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5263V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the fundamentals of how lawyers \"architect\" deals. It is taught in two parts. \nThe first examines the unique role of the transactional lawyer and asks the questions: What is a \"deal\"? What do transactional or \"deal\" lawyers do? What is the perceived \u201cvalue\u201d of what transactional lawyers do? How can lawyers successfully design and structure a transaction? \nThe second explores in detail the elements of a theory or framework of \u201cprivate orderings\u201d. The framework covers the economic and business considerations that drive the analysis of which legal principles should apply and how risks and benefits are allocated between the parties. The course explores how the framework of private orderings can apply to guide the assessment of transactions and the choice of contracting constructs and regimes.", + "title": "Architecting Deals: A Framework of Private Orderings", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5267V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course facilitates an in-depth understanding of the structure, goals, and nature of private law remedies. An emphasis is placed on the role of remedies within the broader structure of private law, and the question of what, if anything, remedies tell us about the substantive law.\n\nThe course ranges across a variety of substantive private law fields, examining remedies arising from contracts, torts, equity, and other sources of obligations. It will introduce students to basic organising private law concepts such as rights, duties, wrongs, loss, and gain, and the various remedial goals of compensation, vindication, disgorgement, restitution, and punishment.", + "title": "Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course facilitates an in-depth understanding of the structure, goals, and nature of private law remedies. An emphasis is placed on the role of remedies within the broader structure of private law, and the question of what, if anything, remedies tell us about the substantive law.\n\nThe course ranges across a variety of substantive private law fields, examining remedies arising from contracts, torts, equity, and other sources of obligations. It will introduce students to basic organising private law concepts such as rights, duties, wrongs, loss, and gain, and the various remedial goals of compensation, vindication, disgorgement, restitution, and punishment.", + "title": "Remedies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5268V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Privacy may in some cases conflict with intellectual property but in other cases the two may go hand in hand and in addition other rights in personal information may further blur and complexity the boundaries. This module will explore the relationships between privacy, intellectual property and other rights in personal information in a range of contexts across different jurisdictions in an effort to explain and evaluate the current legal position, the various debates and proposals for improvements in the law.", + "title": "Privacy and Intellectual Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course examines the international legal protection of women\u2019s human rights within a framework of international law and feminist legal theories. The course will focus upon the United Nations Convention on the Elimination of All Forms of Discrimination Against Women, 1979 to which Singapore became a party in 1995 and the work of the CEDAW Committee in monitoring and implementing the Convention. The impact of certain conceptual assumptions within international law, and human rights law in particular, that militates against the Adequate protection of women's rights will be considered. After an examination of the general framework, more detailed attention will be given to certain topics including health and reproductive rights, women\u2019s right to education violence against women, including in armed conflict, political participation and trafficking. The course will finally consider the question of whether international human rights law is an appropriate vehicle for the furtherance of women's interests.", + "title": "International Human Rights of Women", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores and contrasts the different methodologies inherent in the disciplinary approaches of legal and policy analysis. What are the biases and assumptions in each method of analysis? How does each method view the other? How is each approach relevant to the other in different practical situations, e.g. in legal advice, court arguments and judgments and in government policy formulation.", + "title": "Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the wake of the Global Financial Crisis (GFC) of 2008, the visibility of finance and financial regulation has increased dramatically. This subject will provide an overview of the global financial system and international efforts to build\nstructures to support its proper functioning. Taking an integrative approach, the subject will look at the evolution of the global financial system, its structure and regulation. In doing so, the subject will analyse financial crises, especially\nthe GFC, and responses thereto, the Basel Committee on Banking Supervision (BCBS), the Financial Stability Board (FSB) and the International Monetary Fund (IMF). The approach will be international and comparative, with a focus on major jurisdictions in the global financial system, and will not focus on any single jurisdiction.", + "title": "International Financial System: Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course deals on a comparative legal basis (US-, EU and Swiss law) with problems related to:\nI. How to coordinate economic activities?\nII. Implementation of a competition system\n1) Competition? Private restrictions to competition and what states can do against it?\n2) The substantive EU- and Swiss-provisions\n\u2013 against agreements restricting competition and abuse of market power\n\u2013 on merger control\n\u2013 on sanctions and leniency programs\n\u2013 Discussion of leading cases\n3) State aids; public and private enforcement\nIII. Correcting the competition system\nPlanned sectors, consumer protection, price controlling\nIV. Controversial questions, the \u201emore economic\napproach\u201c? Efficiency and individual freedom to compete? Global competition?", + "title": "European & International Competition Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5273", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Worldwide, governments are increasingly relying on broad-based consumption taxes, such as the GSTs in Singapore, Malaysia, New Zealand and Australia and the VAT in Europe, to raise revenue. This course will introduce students to theories of comparative tax law and consumption taxation and to key GST law and policy concepts. With these theoretical, conceptual and legal tool kits, we will then explore the complex but fascinating legal and policy issues relating to cross-border trade in goods and services (such as professionals providing services to clients across borders and global digital trade), financial services and real property transactions.", + "title": "Comparative GST Law & Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International organizations play an increasingly important role in the international community. While the state continues to be the supreme form of political organization, international organizations, such as the UN, the WTO, the IMF, the World Bank, the ASEAN, the EU and NATO, are indispensable to cope with globalization and increasing interdependence. The main objective of this course is to familiarize students with the fundamental rules of international institutional law \u2013 that is the body of rules governing the legal status, structure and functioning of international organizations.", + "title": "International Institutional Law:", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5275", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Contract Law invites students to examine some interesting and controversial topics from this foundational subject. Some topics will build on what students already know in their first-year/basic contract law course (e.g. how does contract law deal with change of circumstances?), some will cover new ground (e.g. the role of good faith in contract law). You will be able to write a paper on a topic of particular interest to you. The course also complements the module Advanced Tort Law and Philosophical Foundations of Contract Law.", + "title": "Advanced Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5276", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Contract Law invites students to examine some interesting and controversial topics from this foundational subject. Some topics will build on what students already know in their first-year/basic contract law course (e.g. how does contract law deal with change of circumstances?), some will cover new ground (e.g. the role of good faith in contract law). You will be able to write a paper on a topic of particular interest to you. The course also complements the module Advanced Tort Law and Philosophical Foundations of Contract Law.", + "title": "Advanced Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5276V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the tools necessary for students to develop and reflect critically upon contemporary ethical and legal issues in medicine and the biosciences. Its substantive content includes and introduction to medical\nethics and medical law, health care in Singapore (presented comparatively with select jurisdictions, such as the UK and the USA), and professional regulation. The following key areas will be considered:\n- Professional regulation and good governance of medicines;\n- Genetics and reproductive technologies (including abortion and pre-natal harm);\n- Mental health;\n- Regulation of Human Biomedical Research;\n- Innovative treatment and clinical research;\n- Infectious Diseases;\n- Organ transplantation; and\n- End-of-life concerns (e.g. advance care plan and advance directive, discontinuation of life sustaining treatment, etc.).", + "title": "Medical Law and Ethics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5277V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Alongside the European Union the Asia-Pacific is becoming the central arena for trade and investment and its contestation within the world today. This module examines the global, regional and bilateral frameworks governing trade, investment, competition and migration across this region. It has three components. The first looks at how different organisations and regimes \u2013 the WTO, ASEAN, ASEAN Plus Agreements, BITS, NAFTA and Closer Economic Relations \u2013 interact to govern the region and the attempts to reform this, most notably through the TransPacific Partnership Process. The second looks at the detailed laws and processes governing trade in goods and services and investment. The final section looks at a number of further key policies: intellectual property, competition, the professions, and migration.", + "title": "Trade and Investment Law in the Asia-Pacific", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5278V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the conceptual foundation of access to justice and the practical challenges it raises in formal systems of dispute resolution. Using a Research Seminar structure, the module integrates academic analysis with experiential learning by providing students with opportunities to produce and critique original research on themes emerging from student internships and pro bono experiences.", + "title": "Access to Justice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5279V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Companies are both the victims of and vehicles for crime. This module examines both aspects. The first aspect covers crimes against the company by management \u2013 criminal breach of trust, dishonest misappropriation of property, breaches of fiduciary duty, misuse of corporate information. The second aspect will deal with using companies as vehicles for crime \u2013 cheating, money-laundering. Corruption cuts across both aspects. The statutes covered will be the Companies Act; Corruption, Drug Trafficking and Other Serious Crimes (Confiscation of Benefits Act); Penal Code; and Prevention of Corruption Act. Students must have a firm grounding in both Criminal Law and Company Law.", + "title": "Crime and Companies", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5280V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module acquaints the students with the laws and principles relating to the civil litigation process. The three distinct stages, namely, pre-commencement of action, pre-trial and post-trial are discussed in detail. The overriding aims of the civil justice system will also be deliberated. This will enable the students to better understand and appreciate the rationale of the application of the provisions of the rules of court. In this regard, the students will be able to make a case on behalf of their clients or against their opponents when the perennial issue of non-compliance with procedural rules takes centre stage. This module is designed to prepare the students to practise law in Singapore. Hence, the focus will primarily be on the Singapore Rules of Court and the decisions from the Singapore courts.", + "title": "Civil Procedure", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5281V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary focus of this module is on the variety of commercial dispute resolution processes available to contracting parties and the essential principles and issues pertinent to these different processes. The overriding aims are to acquaint the students with the characteristics of each of these processes, to highlight the governing principles and to discuss the perennial and emerging issues relating to this aspect of the law. Students who have undertaken this module will be able to consider the plethora of options available to them when drafting dispute resolution clauses and/or providing legal advice and representation when a dispute has arisen.", + "title": "Resolution of Transnational Commercial Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5282V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advancements in computer science have made it possible to deploy information technology to address legal problems. Improved legal searches, fraud detection, electronic discovery, digital rights management, and automated takedowns are only the beginning. We are beginning to see natural language processing, machine learning and data mining technologies deployed in contract formation, electronic surveillance, autonomous machines and even decision making. This course examines the basis behind these technologies, deploys them in basic scenarios, studies the reasons for their acceptance or rejection, and analyses them for their benefits, limitations and dangers.", + "title": "Artificial Intelligence, Information Science & Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5283V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the relevance of Confucianism to law, which includes three eras, namely: (1) Confucian legal theory and Confucian legal tradition; (2) the relevance of Confucianism to different aspects of national legal issues in contemporary East Asia (China, Japan, South Korea, Singapore, and Vietnam), such as human rights, rule of law, democracy, constitutional review, mediation, and family law; and (3) the relevance of Confucianism to international law. It will be of interest to those interested in Confucian legal tradition, customary law, Asian law, law and culture, legal theory, and legal pluralism.", + "title": "Confucianism and Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5284", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will explore key legal questions related to\ninternational dispute settlement with a view to providing a\nbroad overview of the field with respect to State-to-State,\nInvestor-State, and commercial disputes. This course will\ninclude a discussion of the various types of international\ndisputes and settlement mechanisms available for their\nresolution. It will explore the law pertaining to dispute\nsettlement before the ICJ, WTO, ITLOS, as well as\ninternational arbitration, both Investor-State arbitration and\ncommercial arbitration. The course will compare these\ndifferent legal processes on issues such as jurisdiction,\nprovisional remedies/measures, equal treatment,\nevidence, and enforcement.", + "title": "International Dispute Settlement", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5285V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "While terrorism is not a new phenomenon, the sheer scale and transnational nature of that practice in recent years have challenged some of the core tenets of international law. This seminar investigates the role that international law can play, along with its shortcomings, in suppressing and preventing terrorism. It examines the manner in which terrorism and counterterrorism laws and policies have affected the scope and application of diverse international legal regimes including UN collective security, inter-State use of force, the law of international responsibility, international human rights, international humanitarian law, and international criminal law.", + "title": "Transnational Terrorism and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5286V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines ASEAN\u2019s ongoing metamorphosis into a rules-based, tri-pillared (political-security, economic, and socio-cultural) Community pursuant to the mandate of the 2007 ASEAN Charter. It deals primarily with Law but is also attentive to the Non Law and Quasi Law aspects inherent in ASEAN\u2019s character as an international actor and regional organisation; its purposes and principles; and its operational modalities, processes, and institutions.", + "title": "ASEAN Law and Policy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5287V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies European Union business regulation and how this affects both the EU and other markets. It has three components. The first looks at the types of business regulation deployed. It will include legislative harmonisation,\nprivate standardisation, mutual recognition and regulatory agencies. The second looks at the regulation of key industrial and service sectors, such as food, automobiles, pharmaceuticals, energy chemicals or financial services. The third looks at how EU business regulation interacts with non EU markets, through studying its commercial policy, free trade agreements and extraterritorial jurisdiction.", + "title": "Business, International Commerce and the European Union", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5288V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module has three distinctive features. First, it compares international commercial arbitration (ICA) international investment arbitration (ISA). Second, it focuses on the evolution of arbitration, in particular, on the development of the procedures and substantive law that have gradually enabled arbitration to become a meaningfully autonomous legal system. Third, it surveys a variety of explanations for why the arbitral order has evolved as it has \u2013 into a more \u201cjudicial-like\u201d legal order \u2013 focusing on the role of arbitral centres, state regulatory competition, and the reasoning of tribunals in their awards.", + "title": "The Evolution of International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5289V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The seminar is designed to prepare students to undertake original, primary research in law. Major topics and questions to be covered include:\n- how to write a good literature review and prospectus;\n- why one must have a method, or, how are \u201cmethods\u201d and\n\u201cdata collection\u201d related?;\n- what is research design?;\n- how to avoid, or manage, the problem of \u201cselection bias.\u201d\n\nA major component of the seminar, students will assess a variety of published papers, as well as research projects presented by the faculty.", + "title": "Legal Research: Method & Design", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5290V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The law governing the responsibility of States for internationally wrongful acts is absolutely central in public international law and cuts across various sub-fields of that discipline. This seminar investigates the fundamental tenets of the law of State responsibility, both from theoretical and practical standpoints, while tracing some of its historical roots. More broadly, the seminar will provide\nan overview of different doctrines of State responsibility and different theories and approaches to liability under international law. More importantly, the later sessions of the seminar will engage critically with the role that the law\nof State responsibility can play in specific areas.", + "title": "State Responsibility: Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5292V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on the instances in which resort to conflict of laws is necessary in the international arbitration context. The objective of this course is to allow participants to realise on how many occasions both State courts and arbitrators will need to report a conflict of laws analysis despite the claim that conflict of laws issues are not relevant in the international commercial arbitration context. Participants will first be taught to identify what conflict of laws rules may apply and will then be given hypothetical cases and will be asked to critically examine whether a solution can be found that does not require a conflict of laws approach.", + "title": "Conflict of Laws in Int\u2019l Commercial Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5295", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Does copying always harm creativity? Can innovation\nthrive in the face of imitiation? These questions are at the\nheart of intellectual property theory and doctrine. This\ncourse explores these issues via a close look at a range of\nunusual creative industries, including fashion, cuisine,\nsports, comedy, and tattoos, as well as more traditional\nintellectual property topics, such as music and film.", + "title": "Imitation, Innovation and Intellectual Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5296", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modern corporations draw funding to finance their\nconsumption and investment needs from a variety of\nsources on the basis of extensive cost- benefit\nconsiderations. These include a multitude of factors, such\nas legal considerations, the quantity of funding required\nand cost of capital depending on its source, and impact on\nshareholders and management etc. Corporations may also\nobtain finance by either levering existing assets or\nresorting to unsecured bank lending or bond issues. For\nthe biggest corporations the most important source of\nfinance tends to be the capital markets. These normally\ncomprise the debt and equity markets through which public\ncompanies can offer securities to investors or to transfer\nthe control of the company to new owners in the context of\nan agreed takeover, a hostile take-over bid, or of a private\nequity transaction.\nThis course aims to develop a critical understanding of the\nsubject matter through the combined study of finance\ntheory, corporate law, capital market regulation and the\ncorporate market dynamics, with a special focus on the\ndifferent stakeholders involved in corporate finance. The\nmodule will focus on critical corporate finance issues such\nas: the use of debt and equity; why merge or acquire a\nbusiness; core considerations of the process; purchase\nsale agreements and contractual governance; the role of\nthe board of directors in an acquisition/financing\ntransaction; the permissibility and regulation of takeover\ndefenses in the UK, the US and the EU. It will also discuss\ncross-border IPOS, the problem of market abuse, theory\nand practice of corporate takeovers and their regulation,\nand issues pertinent to private equity transactions, as well\npractical issues relating to structuring corporate acquisition\ndeals and attendant legal documentation. NB: While there\nis inevitably reference to scores of economic concepts and\nsome finance readings the course is specifically addressed\nto law students it is non-mathematical.", + "title": "Practice of Corporate Finance and the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5297", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is the foundation course in international finance. It is meant for all who want to gain a better understanding of what is happening and concerns primarily (a) the way money is recycled through the banking system or the\ncapital market, (b) the products and conduct of the banking, securities and investment industry in this recycling activity, (c) the risks that are taken in the financial services industry (primarily by commercial and investment banks in their different functions) and the tools of risk management, (d) the operation of the financial markets and their infrastructure, (e) the type of regulation of commercial banks and of the intermediaries and issuers in the capital markets, and (f) the objectives, role, shape and effectiveness of this regulation. In this connection, the course will also deal with the smooth operation of payment systems.\n\nFinancial risk and its management is an important theme and the major concern in the course. What can commercial or investment banks and financial regulation achieve in this regard, how is risk management structured, and what academic or other (political) models are used in this connection, how effective are they, e.g. in the capital adequacy and liquidity requirements, and what can or must governments and/or central banks or other regulators do when all fails and financial crises occur? From a legal point of view, an important aspect is the strong public policy undercurrents in the applicable law.\n\nThat is obvious in regulation but may also impact on private law. Another important issuer is that the law applicable to financial products and their regulation is ever more transnationalised and expressed at the international level, especially in terms of transactional and payment finality, financial stability, and even banking resolution facilities or international safety nets. In these circumstances, choice of national laws in the older private international law approach often mean little and it will be discussed how they may fall seriously short especially in in matters of regulatory oversight and bankruptcy situations.", + "title": "International Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5298", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course is designed for students and\npractitioners already acquainted with the fundamentals of\ninternational arbitration, and may be particularly useful for\nthose who may have an inclination to specialize in the\npractice or study of international dispute resolution. Focus\nwill be placed on topics of practical and academic interest\nin all aspects of the international arbitration process,\nlooking in particular to recent trends and evolutions in the\nfield of international dispute settlement.\nThrough seminar discussions, student presentations and\nmoot court sessions, this course will expose students to\ncontemporary controversies in the field of international\ncommercial and investment arbitration. An international\napproach will be adopted in relation to the subjects\nconsidered: students can expect to review a substantial\namount of comparative law sources, including academic\ncommentaries and jurisprudence from France, Singapore,\nSwitzerland, the United Kingdom and the United States, as\nwell as public international law sources and international\narbitral practice.", + "title": "Advanced Issues in the Law & Practice of Int\u2019l Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5299", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will consider the particular and unique issues\nthat the ubiquitous use of the internet for commerce,\neducation and communication has created for copyright\ncreators and users. In particular, it will address the\nincreasingly visual medium of social media and how user\npractices are challenging the boundaries of copyright law. It\nwill consider copyright infringement, fair dealing, personal\nand professional uses and the interaction between\ncopyright, contract and consent.", + "title": "Copyright in the Internet Age", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5300", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides a grounding in the international and\ntheoretical background to the constitutional protection of\nsocial rights; the substantive approach taken by courts to\nvarious social rights, and the interaction between social\nrights in various claims to equality and protection on the\npart of vulnerable groups. The topics covered in the class\nare thus:\n(1) theoretical debates on the nature of social rights,\nand the theoretical underpinnings for their\nrecognition qua rights;\n(2) international human rights law instruments\nrecognising social rights, and international human\nrights understandings of such rights;\n(3) constitutional debates about the capacity and\nlegitimacy of courts enforcing such rights, and\nparticular debates over concepts such as (a)\nweak-versus strong-form review, and (b) notions of\na \u2018minimum core\u2019 to social rights; and\n(4) the actual interpretation of enforcement of key\nsocial rights by courts, with a particular focus on\nthe right to housing, health care, water, food and\nsocial welfare and social security\n(5) questions of gender, poverty and social rights\n(6) the rights of children in relation to social rights\n(7) the rights of non-citizens", + "title": "Topics in Constitutional Law: Socio-Economic Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce to students topical and current issues of interest in the regulation of international financial markets, with a focus on global capital and investment markets. The regulation of investment firms and funds reached a new high with mainly European leadership in regulatory standards and many of these are influential globally. We aim to cover theoretical foundations in regulation, so that students can grasp the law and economic theories and public policy underpinnings of financial regulation, and specific topics that relate to securities and investment regulation. The approach to specific topics would be grounded in theoretical and policy understanding, in order to appreciate the high key highlights of regulatory duties, compliance implications and enforcement.", + "title": "Int'l Regulation of Finance & Investment Markets", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the complex interactions between\nliterature and the law. Even though the two disciplines may\nseem distinct, both law and literature are products of\nlanguage and have overlapped in significant and\ninteresting ways in history. Why do legal themes recur in\nfiction, and what kinds of literary structures underpin legal\nargumentation? How do novelists and playwrights imagine\nthe law, and how do lawyers and judges interpret literary\nworks? Could literature have legal subtexts, and could\nlegal documents be re-interpreted as literary texts? We will\nthink through these questions by juxtaposing fiction,\ndrama, legal cases, and critical theory.", + "title": "Law and Literature", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an interdisciplinary course that invites students to inhabit the field of law and literature by engaging closely with a key topic. Our seminar begins with a broad introduction to the field and related interdisciplinary scholarship, before delving into the focal thematic through close readings of legal and literary texts. This year, we address the question of authorship and its relationship with the law of copyright and intellectual property. Students would become familiar with a constellation of theoretical and historical perspectives from which to rethink our received understandings of authorship, including copyright\u2019s treatment of books, publishers, and authors.", + "title": "Law and Literature", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5303V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the principal problems for the\ntheory and practice of comparative constitutional law,\ngenerally and in the globalizing conditions of the early 21st\ncentury. In doing so, it will range widely over countries and\nconstitutional systems and examine the challenges\npresented by differences in context and culture. The\nconclusions about methodology in the early classes will be\ntested in later ones by reference to a series of topical\nsubstantive issues in constitutional law in Asia and\nelsewhere, ranging from institutional design to rights\nprotection.", + "title": "Global Comparative Constitutional Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course anlayzes connections between human rights\nand intellectual property. While these bodies of law\ndeveloped on separate tracks, the relationship between\nthem has now captured the attention of government\nofficials, judges, civil society groups, legal scholars and\ninternational agencies, including the World Intellectual\nProperty Organization, the United Nations Human Rights\nCouncil, the Committee on Economic, Social and Cultural\nRights, and the Food and Agriculture Organization.\nThe course will be of interest to those interested in\nintellectual property and/or human rights.", + "title": "IP and Human Rights", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on laws governing banks and the other financial intermediaries in China, reflecting the game between regulation and financial innovation. It will be divided into three parts: the first and also the most the essential one will cover the legal requirements of operation and business of traditional commercial banks; the second one will go through the corporate governance of banks, problem bank resolution and currency issues; the last part will discuss the legal issues of new financial products and non-bank financial institutions. This course focuses on the emerging issues in China of that subject, and also pay particular attention to recent legislative reform efforts in China on banking and non-bank financial institutions and will consider both the developments and innovation in scholarship and teaching of financial law since 2008.", + "title": "Chinese Banking Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The European Union plays an increasing role in the\nregulation of international shipping and any shipping\ncompany wishing to do business in Europe will have to\ntake this into consideration. The module will take on\nvarious aspects of this regulation and will place the EU\nrules in the context of international maritime law. To\nensure a common basis for understanding the EU maritime\nlaw, the basic structure and principles of the EU and EU\nlaw will be explained at the outset.", + "title": "EU Maritime Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law is a behavioural system. Most law seeks to regulate, incentivize and nudge people to behave in some ways and not in others \u2013 it seeks to shape human behavior. Traditional economic analysis of law is committed to the assumption that people are fully rational, but empirical evidence suggests that people very often exhibit bounded rationality, bounded self-interest, and bounded willpower. This course about behavioural law and economics, with an emphasis on regulation, looks at the implications of actual, not hypothesized, human behaviour for the law. It considers, in particular, how using the mildest forms of interventions, law can steer people\u2019s choices in welfarepromoting\ndirections.", + "title": "Behavioural Economics, Law & Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5308V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to set out the practical realities of dispute resolution in Asia and aims to make students step into the shoes of lawyers and understand how to tackle and strategize real disputes. The course covers topics related to jurisdiction, interim relief, defence and guerrilla tactics, issue estoppel, choice of remedies and dealing with a State in relation to investment treaty disputes to give students a real life understanding of the issues which arise in international disputes. In the context of the substantive issues, the students would also go through facets of the New York Convention and a comparative analysis of the laws of Singapore, England & Wales, India and Hong Kong.", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5309", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to set out the practical realities of dispute resolution in Asia and aims to make students step into the shoes of lawyers and understand how to tackle and strategize real disputes. The course covers topics related to jurisdiction, interim relief, defence and guerrilla tactics, issue estoppel, choice of remedies and dealing with a State in relation to investment treaty disputes to give students a real life understanding of the issues which arise in international disputes. In the context of the substantive issues, the students would also go through facets of the New York Convention and a comparative analysis of the laws of Singapore, England & Wales, India and Hong Kong.", + "title": "Strategies for Asian Disputes - A Comparative Analysis", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5309V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar-style module critically examines the impact of international organisations on the formal structures of international law. Do international organisations create and enforce international law? What type of norm-creating activity takes place inside and across international organisations? Does the reality of global governance give rise to concerns about legitimacy or accountability? What are the legal and policy responses to such concerns? Case studies used will range from traditional institutions such as the UN and its specialised agencies, to newer institutions such as the Financial Action Task Force and the Global Fund to Fight AIDS, Tuberculosis and Malaria.", + "title": "International Organisations in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5310V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will offer an historical and comparative focus\non Islamic family law. It will begin by providing a basic\noverview of Islamic law generally and then turn to examine\nIslamic family law specifically. It will then cover major\ntopics that arise in Islamic family law under the classical\nIslamic legal tradition. It will conclude by exploring how\nmany of those issues arise in some modern contexts, as\nIslamic family law is applied both inside and outside of the\nMuslim world.", + "title": "Islamic Law and the Family", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The past two decades have witnessed the emergence of\nnew forms of international organizations (e.g. Basel\nCommittee) alongside traditional organizations (e.g. WTO).\nThese new organizations challenge the traditional premises\nof international law. Moreover, international organizations\nincreasingly issue rules that impact people around the world,\nyet they largely operate within a legal void and go\nunchecked. In view of these challenges, a new legal school\nof thought is emerging that seeks to set more legal\nconstraints and that introduces institutional reforms, such as\nthe growing inclusion of Asian countries in international\norganizations. We will explore these issues.", + "title": "The Law of Global Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5312V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Rising dissatisfaction with the time, cost, lost opportunities, and political repercussions of international arbitration has increased interest in alternative methods to resolve State-State and investor-State disputes. International ADR knowledge is fast becoming a necessity for practitioners. This course introduces the student to the history and methods of consensual nonbinding dispute resolution on the international law plane primarily conciliation and mediation, with coverage also of good offices and fact-finding/inquiry. Overarching themes will be why State-level mediation and conciliation have been so rarely attempted and more rarely successful, and why the tide may now be turning, in part because of the successful Timor LesteAustralia boundary conciliation in 2018. The scope is international,", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5313", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recent years have witnessed more state-to-state and investor-state disputes, with a substantial increase in resources spent on binding arbitration. Mediation and conciliation are rarely attempted and more rarely successful. This course introduces the student to methods of mediation and conciliation on the international law plane, and surveys existing institutional regimes (ie, ICSID,\nPCA, SIAC). The focus will then turn to identification and critical analysis of the special legal and policy obstacles to voluntary dispute settlement by states (including SOEs), as well as countervailing incentives. The scope is international, with some readings devoted to Asia. Students will study and critique precedents, and conduct basic mediation/conciliation exercises.", + "title": "Mediation/Conciliation of Inter- & Investor-State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5313V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide students with an understanding of the legal issues that arise in private equity and venture capital from both practical and theoretical perspectives. The topics that will be covered explore the laws and practices relating to the whole cycle of the venture capital and private equity, including fundraising, investments, exits, foreign investments and regulation. The course will also discuss equity crowdfunding which is an important emerging method of equity financing. Certain topics of this course will provide relevant comparisons with private equity and venture capital in China, Singapore and the U.S. It will be of interest to legal professionals in the private equity and venture capital sectors.", + "title": "Private Equity and Venture Capital: Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5314V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the law of restitution for unjust enrichment. In particular, it is concerned with when a defendant may be compelled to make restitution to a claimant, because the defendant has been unjustly enriched at the claimant\u2019s expense. It does not cover all of the law relating to gain-based remedies.", + "title": "Restitution of Unjust Enrichment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5316V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will give the students an in-depth look at how cases proceed under the SIAC, HKIAC and MCIA rules, with some comparative coverage of the CIETAC and KLRCA rules. Highlighted will be the salient features of these arbitral institutional rules including the introduction of cutting edge procedures such as the emergency arbitrator and expedited arbitration procedures and consolidation/joinder. The course will also provide a comparative analysis of the arbitral legislative framework in Singapore, Hong Kong and India and offer an in-depth analysis, with case studies, of the role of the courts in Singapore, Hong Kong and India in dealing with specific issues such as challenges to tribunal jurisdiction, enforcement and setting aside of awards. Finally, the course will also look at the peculiar relationship between arbitration and mediation in Asia.", + "title": "International Arbitration in Asian Centres", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5317V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to important topics in public health law and regulation. It explores the use of law as an important tool in protecting the public\u2019s health, responding to health risks and implementing strategies to promote and improve public health. The course reviews the nature and sources of public health law, and regulatory strategies that law can deploy to protect and promote public health. It considers these roles in selected areas within the field: for example, acute public health threats like SARS and pandemic influenza, tobacco control, serious sexually transmitted diseases, and non-communicable diseases such as heart disease, stroke and diabetes.", + "title": "Public Health Law and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5318V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines current problems in international law relating, for instance, to the use of force, human rights, international environmental law and foreign investment law.", + "title": "Current Problems in International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5319V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Globally, space-derived products and services combine assets and annual revenues in excess of USD350 billion. The year-on-year growth of the space economy is 9%, three times that of the global economy. This course discusses the international law regulating the use of, and activities in, outer space. It will examine issues such as State responsibility, liability for damage, and environmental protection. It will then debate the law relating to various space sectors such as telecommunications, navigation, military and dual use, resource management, and human spaceflight.", + "title": "International Space Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5320", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course applies economic concepts to the practice of structuring business transactions. The materials consist of case studies of actual transactions. We will use those case studies to analyze the economics challenges that parties to a deal must address, and to analyse the mechanisms the parties use to address those challenges. The case studies will cover a selection from bond financings, acquisitions, movie financings, product licenses, biotech alliances, venture capital financings, cross-border joint ventures, private equity investments, corporate reorganizations, and more.", + "title": "Deals: The Economic Structure of Business Transactions", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Trade Finance Law considers the different legal structures used to effect payment under, and disincentives breaches of, international agreements for the supply of goods and services. The course analyses and compares documentary and standby letters of credit, international drafts and forfaiting, performance bonds and first demand guarantees and export credit guarantees. Key topics will include the structure, juridical nature and obligational content of the aforementioned instruments; the nature of the harmonised regimes and their interaction with domestic law; the principle of strict compliance and its relaxation; documentary and non-documentary forms of recourse; the autonomy principle and its exceptions; and the conflict of laws principles applicable to autonomous payment undertakings. The course should be of interest to students who have already studied other components of international trade and/or who have an interest in international banking operations.", + "title": "Trade Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Trade Finance Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5322V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a detailed examination of the principles of agency law. Broadly speaking, agency involves one person acting for another. Agents may be of many different kinds spanning different settings and industries. Shop assistants, solicitors, auctioneers, estate agents, are common examples of agents. \nThis course covers both \u2018internal\u2019 and \u2018external\u2019 dimensions of agency. Topics covered include definitions of agency, how agency relationships are created, different types of authority, agency\u2019s application outside contract, and the rights and duties between principal and agent.", + "title": "Law of Agency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a detailed examination of the principles of agency law. Broadly speaking, agency involves one person acting for another. Agents may be of many different kinds spanning different settings and industries. Shop assistants, solicitors, auctioneers, estate agents, are common examples of agents. \nThis course covers both \u2018internal\u2019 and \u2018external\u2019 dimensions of agency. Topics covered include definitions of agency, how agency relationships are created, different types of authority, agency\u2019s application outside contract, and the rights and duties between principal and agent.", + "title": "Law of Agency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5323V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a comparative approach to exploring what is meant by a trade mark, the messages that trade marks communicate and the roles they perform. These are important enquiries because questions of what trade marks do and ought to do have a direct impact on the contours of the law. A major theme will be the relationship between trade marks and brands: to what extent should trade mark law be concerned with protecting brand value? What might a focus on brand value mean for competitors? Is a focus on brand value compatible with the logics of trade mark registration? These questions will be explored by reference to the laws of multiple jurisdictions, most significantly Australia, the EU, Singapore and the USA.", + "title": "Comparative Trade Mark Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Taught by two public international law practitioners, this course invites participants to develop a more practical and strategic understanding of how a State deals with the various types of disputes it may face. Topics covered includes litigation and procedural considerations in inter-State, investor-State, human rights and international criminal disputes, and cross-cutting considerations like national security privileges, immunities, conflicts of public international law. The course will conclude with a seminar where senior practitioners of public international law share their views and insights on acting as a Government advisor and as an advocate.", + "title": "The Int'l Litigation & Procedure of State Disputes", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the public law system of the United States, with an emphasis on structural issues and governmental processes, especially the creation of regulations and the political and judicial controls over this important activity. Changes resulting from the Trump administration will be an important element.", + "title": "Administrative Justice: Perspectives from the U.S.", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5326", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a practitioner's perspective on the bread and butter of any transactional practice: mergers and acquisitions (M&A) of non-listed, private companies. It will deal with the structuring of an M&A transaction (the why) and the plain vanilla aspects of documentation (the why and how of basic drafting). \n\nMany new graduates seem to be unable to see the wood for the trees. They arrive as trainees, with a reasonable grounding in the law, but an inability to apply it to real life situations. The practicalities elude them and they seem to want to follow templates without much understanding of the transaction. This course will attempt to give them a working knowledge of the issues to be considered in structuring a transaction. It will also cover the main features of standard documentation (bearing in mind that there is a discernible industry-standard set of documentation in common law countries) to explain why documents are drafted the way they are.", + "title": "Mergers and Acquisitions: A Practitioner\u2019s Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5327V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sports Law is a very broad field, encompassing several areas of law unique to the sporting industry, as well as several traditional areas of law applied to the field of sport.This course will focus on the existing and evolving private and public international sports law systems, (where appropriate) the national sports law of several jurisdictions (including Australia, USA, UK and to a lesser extent, Singapore) and provide avenues of multi-jurisdictional comparative analysis. The social, political, commercial and economic influences on the development, content and structure of sports law globally will also be explored.", + "title": "Sports Law & Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5328", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this course is on the litigation of cross-border disputes in the fields of tort, contract, consumer protection and intellectual property including in the online context. The subject will examine the key doctrinal principles and scholarly debates in the area as well as problems commonly encountered in practice. Material will be drawn from leading common law jurisdictions, including Singapore, Australia, England, Hong Kong and Canada. The course is recommended for those with an interest in international dispute resolution, conflict of laws, litigation or international commerce.", + "title": "Cross-Border Litigation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5329", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first part of the course explores how trusts are used to manage family wealth, with emphasis on developments in the \u2018offshore world\u2019. We will discuss how trusts may be used to protect assets, how trustees\u2019 discretions may be controlled, the rights of objects of trusts, and purpose trusts. The second part concerns trusts in commercial transactions. We will explore creditor trusts, constructive trusts, bonds and intermediated holding of securities, equitable assignments and equitable charges. By comparing commercial trusts with private trusts, we will also ask whether there are any significant contextual differences in relation to the trust device.", + "title": "Advanced Trusts Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5330", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the ideal of the rule of law: its value, limitations, costs, and relationship with distinct social aspirations. The teaching is based on leading texts, comparative case law, and video documentaries. The course is divided into nine modules: (1) the meaning and value of the rule of law, (2) emergencies, (3) the relationship(s) between the rule of law, the obligation to obey the law, and the rule of good law, (4) the modern welfare state, (5) criminal law vs. private law, (6) international law, (7) corporations and liberal democracy, (8) colonialism and developmental transitions, and (9) defences for disobedience.", + "title": "The Rule of Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The copyright laws of Singapore and the United have in common a general, flexible, open exception designated by the term \u201cfair use.\u201d During the last 25 years, the U.S has had extensive experience with this concept, both in the courts and in fields of practice as diverse as art, filmmaking, education, technology, and journalism. Not only have judicial opinions about fair used cohered into a \u201cunified field theory\u201d of the doctrine, but awareness of its potential applications has increased dramatically among members of relevant communities. The last development has been attributable in part to the development of community-specific Codes of Best Practices for the responsible application of fair use \u2013 an effort in which the instructor for this module has been active. The course will explore the legal background of fair use, its doctrinal evolution over the past 25 years, and a variety of practical situations in which it has been successful employed.", + "title": "Fair Use in Theory and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to increase students\u2019 breadth of empirical knowledge and depth of theoretical understanding of issues of law, justice, and society. With urbanization and industrialization, modern societies have increasingly depended upon law to regulate the behaviour of their members and the activities of their institutions. It will explore issues in law and society in SE Asia, with an emphasis on how sexuality, ethnic and religious diversity are handled, and how justice is conceived; as well as\nissues in the Singaporean justice system, where other examples will be used to compare Singapore\u2019s unique approach to addressing justice and society issues.", + "title": "Law and Society in Southeast Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5334", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the evolving regime for the regulation and protection of multinational enterprises (MNEs) in international law. Although MNEs remain creations of domestic law, the cross-border activities of MNEs increasingly come within the scope of instruments creating obligations and/or rights in international law. In assessing the challenges faced by states and MNEs alike with respect to such transnational regulation, the module takes a rounded and interdisciplinary view of the issues involved, addressing both the commercial and social dimensions of MNE action. In addition to considering the regulatory powers of individual states, developments under international instruments on human rights, labour conditions, finance, taxation and investment are addressed.", + "title": "Multinational Enterprises and International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5335V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the real-life practice of international commercial and treaty arbitration from beginning to end: from clause drafting/treaty jurisdiction, to arbitrator selection, to emergency proceedings, through the written and hearing phases, to award and enforcement strategy. Emphasis will be on primary materials: case law, statutes, institution rules, treaties, commentary, and \u201csoft law\u201d guidelines. Using complex factual scenarios, students will take part in strategy, drafting and advocacy exercises. On the commercial arbitration side, the focus will be on the ICC Court and SIAC; on the treaty side, ICSID and the PCA/UNCITRAL. Ethics issues will be front burner.", + "title": "Advanced Practicum in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5338V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course considers the way that international adjudicators approach fact-finding and factual determinations. The course analyses essential policy questions as to the way legal systems should deal with evidence; considers comparative law perspectives; and aims to integrate these perspectives with practical consideration of the way documents and witnesses are dealt with in international arbitration. There is no greater divergence between legal families than that pertaining to the treatment of evidence. For international adjudication to meet the needs of participants from all legal families, a proper understanding of comparative approaches and the degree of convergence, is essential to arbitrators and practitioners.", + "title": "Comparative Evidence in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5339", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "One of the most pressing current issues of international concern is the highest ever level of global displacement, with over twenty million refugees in the world. This course examines the international legal regime for the protection of refugees. With the 1951 Refugee Convention as its \u201cbackbone\u201d, the course focuses on the \u201crefugee\u201d definition, the exclusion and withdrawal of refugee status, status determination procedures, the rights of recognised refugees and asylum-seekers, the non-refoulement principle, complementary protection, States\u2019 responsibility-sharing, responsibility-shifting and deterrence of asylum-seekers, the status of Palestinian refugees, UNHCR\u2019s supervisory responsibility, and regional protection systems (particularly the Common European Asylum System).", + "title": "International Refugee Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5340V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course critically examines the relationship between law and politics in the international protection of the forcibly displaced, focusing on five groups of migrants, namely, refugees and asylum-seekers, stateless persons, internally displaced persons, victims of trafficking, and climate-change and environmentally displaced persons. After assessing the protection gaps relating to these five groups, this course considers the more complex phenomena of mass influx and \u201cmixed migration,\u201d immigration detention (specifically of particularly vulnerable migrants), and durable solutions. The roles of regional and institutional organisations will also be studied. An assessed negotiation relating to a present-day forced migration crisis concludes the course.", + "title": "The Law and Politics of Forced Migration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5341V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will be useful for those who want to practise corporate or tax law.\n\nTopics covered:\n- the Singapore corporate tax, GST and stamp duty implications of (a) related party transactions; (b) restructurings and; (c) M&As\n- structuring techniques to increase tax efficiency in each of these situations\n- selected US corporate tax and Australian GST rules (since the tax consequences of a foreign country will have to be analysed)\n- how structuring strategies may be challenged with rules/proposed rules addressing treaty shopping, debt-equity and entity classification hybridity, and arbitrage opportunities involving the GST treatment of cross-border transations.", + "title": "Taxation of Cross-Border Commercial Transactions I", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5342V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The global commons comprises the high seas, the deep seabed, outer space, the airspace above the exclusive economic zone and the high seas, as well as Antarctica, an ice-covered continent, and the Arctic, an ice-covered ocean. Each of these areas are governed by international treaty regimes that were developed specifically for that area. This course will examine and compare the international regimes governing activities in the global commons. It will also examine the evolving law on the obligation of States to ensure that activities within their jurisdiction or control do not cause harm to the environment of the global commons.", + "title": "International Regulation of the Global Commons", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5343V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A detailed study of the public and private international law of copyright law focusing on legal responses to cross-border issues and conflicts among private parties and nation states. Topics to be covered include: ASEAN IP relations, connecting factors in private litigation, the major international copyright treaties, major themes in EU copyright jurisprudence, exhaustion of rights, exceptions and limitations, indigenous IP.", + "title": "Public and Private International Copyright Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5344", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is it to lead a fulfilled life? This was the central question\nfor ancient philosophers, in both the east and the west, for\nwhom philosophy was not only theory. It was a method\ndesigned to achieve both rigorous conceptual analysis and\na fulfilled human life. In this course we will explore several\nof the methods philosophers have proposed for leading a\nfulfilled life and consider some of the rich suggestions or\nimplications of these methods for leading a fulfilled life of the\nlaw, the life led by law students, lawyers, judges, and others\ninterested in administering, shaping, or living according to\nlaw.", + "title": "The Fulfilled Life and the Life of the Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5345", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus in detail on provisional and interim\nmeasures in the context of international commercial\narbitration, including emergency arbitrator (EA)\nproceedings. The course will address topics such as the\nnature and scope of provisional and interim relief, the\nauthority of arbitral tribunals (and limitations thereon) to\norder such relief, the concurrent jurisdiction of courts,\nchoice of law issues and the standards for granting interim\nmeasures, issues arising with respect to various categories\nof provisional relief, and judicial enforcement of interim\nmeasures ordered by arbitral tribunals.", + "title": "Interim Measures in International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5346V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores international and domestic legal issues and disputes pertaining to the creation, ownership, use, and preservation of works of art and objects of cultural heritage. Cultural objects exist within the larger realm of goods and services moving throughout the marketplace. This course addresses the specialized laws and legal interpretations pertaining to the rights and obligations of individuals, entities, and governments as they discover and interact with these objects, within their own jurisdictions and across national borders, in times of war and peace.", + "title": "Art & Cultural Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5347", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Money is an all-pervasive legal concept, and an integral part of public dealings by the state and most private transactions. The module aims to develop a distinctive understanding of the legal institution of money, seen as a subject in itself, from private law and public law perspectives. Although the course may be of interest to those with a background in financial or banking regulation, it deliberately avoids considering the subject of money from those perspectives. It is primarily concerned with the common law of money, as it would apply in Singapore. It does however draw on the comparative perspectives from mixed and civil law jurisdictions, and from legal history. Together these demonstrate the broad functional commonalities that any legal system must develop if is construct a legal notion of money and main purposes its serves in the economy.\n\nThe module explains the role of law in the creation of money and in the ordering of a monetary system. It explains how law has a role to play in recognising and enforcing concepts of monetary value in private transactions. It considers the distinctive ways that property law applies to money, including the role of property law in controlling the consequences of failed or wrongly-procured payment transactions. The module considers the capacity of private law to respond to the special problems of monetary transactions involving a foreign currency system, and the legal challenges posed by new monetary developments such as cyber-currencies.", + "title": "Monetary Law in Comparative Perspective", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5348", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces international arbitration\u2019s role in resolving energy disputes. Seminars will address both commercial and investment arbitration.The substantive content of national and international energy laws will be discussed together with the procedural specificities of energy disputes. The course will explore the political aspects of energy disputes, both domestic (resource sovereignty) and international (inter-state boundary disputes).\n\nParticipants will study the recent debates on the role of international arbitration vis-\u00e0-vis climate change and sustainable development.\n\nThe course incorporates practical exercises that will help participants interested in a career in international arbitration and public international law.", + "title": "Energy Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5349V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the law on privacy and data protection. It examines the various legal mechanisms by which privacy and personal data are protected. While the focus will be Singapore law, students will also be introduced to the laws of other jurisdictions such as the United States, the European Union, and the United Kingdom.", + "title": "Privacy & Data Protection Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5350", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce students to the law on privacy and data protection. It examines the various legal mechanisms by which privacy and personal data are protected. While the focus will be Singapore law, students will also be introduced to the laws of other jurisdictions such as the United States, the European Union, and the United Kingdom.", + "title": "Privacy & Data Protection Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5350V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines principal corporate law issues from a comparative perspective. As for jurisdictions, it primarily focuses on Japan and Korea in comparison with US and UK. This module is composed of 18 units, two units for each of the nine class dates. Beginning with the peculiar ownership structure of Japan and Korea and the nature of their agency problems, the module explores various legal strategies employed to address these challenges. The topics to be covered include: shareholder power, corporate organizational structure, independent directors, fiduciary duties, shareholder lawsuits, hostile takeovers, and creditor protection.", + "title": "Comparative Corporate Law in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5351", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a broad introduction to international economic law related to China, including detailed study of a few core areas and the provision of guidance for students to pursue research on a topic of their choice.\nMajor topics to be covered include: (i) trade in goods; (ii) trade in services; (iii) trade in intellectual property; (iv) investment; (v) dispute settlement; and (vi) the future of China and international economic law.", + "title": "China and International Economic Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5352", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The law relating to evidence of character has been changing throughout the common law world over the last fifty years. This course will, by reference several common law jurisdictions, including Singapore in particular, cover, most pressingly, how the law deals with evidence of the accused\u2019s bad character. It will also deal with bad character of witnesses in criminal cases, and, in particular, complainants in sexual cases, as well as that of witnesses and others in civil cases. A third element concerns the good character of the accused, of witnesses in criminal cases, and of parties and others in civil cases.", + "title": "Character Evidence in the Common Law World", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5353", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Human rights adjudication has expanded in many jurisdictions across the world in the past few decades. Yet there is still scepticism about the role of courts in human rights adjudication. This subject will provide students with the opportunity to reflect critically on the role of courts in human rights adjudication by introducing them to the different approaches to the adjudication of human rights in a range of jurisdictions including South Africa, Canada, Germany, the US, Israel, Australia, India, Singapore and the EU. Several key human rights issues that have arisen in different jurisdictions will be analysed and compared.", + "title": "Comparative Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5354", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept of development has been crucial to structuring international legal relations for the last 70 years. In the political and economic domains, most international institutions engage with the development project in some form. This subject offers a conceptual and intellectual grounding to examine development as an idea and set of practices in dynamic relation with national and international law. The history of development in relation to imperialism, decolonisation, the Cold War and globalisation means that these relations are complex. Understanding them is crucial to understanding the place of international law, and the work development does in the world today.", + "title": "International Law and Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5355", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This clinic offers a unique opportunity for students to apply theory to practice in the field of international economic law. Students work in small teams and under the close supervision of professors and invited experts on specific, real-world legal questions of international economic law coming from \"real clients\" such as governments, international organizations, or NGOs. At the end of the semester, the Project Teams submit written legal memos and orally present their projects. They also publish their projects. The clinic is part of \"TradeLab,\" a global network of international economic law clinics at leading law schools around the world.", + "title": "International Economic Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5356V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR4-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introduction to the main debates and issues in the field of regulation covering current debates about what regulation is, and the different institutions and instruments used to regulate our lives. It looks at (i) central concepts used by regulators, e.g. risk, cost-benefit analysis, regulatory impact assessment; (ii) when different strategies should be adopted in regulating a sector; (iii) three central fields where regulation is used \u2013 competition, network industries, cyberspace. This course involves examples from jurisdictions across the world (especially Australasia, Europe and North America) with their insights having particular relevance for law and regulation in Singapore.", + "title": "Regulation & Political Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5357V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The International Chamber of Commerce and its\nInternational Court of Arbitration have played a leading role\nin the establishment and the development of the\ninternational normative framework that makes arbitration so\nattractive today. This course highlights the historical and\ncontemporary contributions of ICC to this normative\nframework, and covers the key issues with which\npractitioners are faced at the main junctures of ICC\narbitration proceedings, from both a practical and a legal\nperspective. The course features in-class practical\nexercises that draw on course resources and enable\nstudents to face a variety of possible real-life scenarios.", + "title": "ICC Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LLJ5358Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Arbitral institutions are important stakeholders in the field\nof international arbitration, but the nature and importance\nof their role have often been overlooked. The course seeks\nto introduce participants to the role and function of arbitral\ninstitutions in the practice of international arbitration, and to\nthe complex issues that arbitral institutions face in the\nadministration of arbitrations, appointment of arbitrators,\nissuing arbitral rules and practice notes and in guiding and\nshaping the development of international arbitration. The\ncourse will be taught by visiting lecturers from the Board,\nCourt of Arbitration and Secretariat of the Singapore\nInternational Arbitration Centre (SIAC).", + "title": "SIAC and Institutional Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LLJ5359Z", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-23", + "end": "2022-09-23" + }, + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2022-09-22", + "end": "2022-09-22" + }, + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2022-09-24", + "end": "2022-09-24" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the current challenges faced by investment arbitration at the global level. It will adopt a three-step approach.\nStudents will first acquire an in-depth understanding of the history and functioning of the existing system. On this basis, the different criticisms and reform proposals will be scrutinized. Finally, students will be invited to make their own informed assessment of the existing system, to discuss its evolution and debate possible improvements.\nThe module will be diversified, as it will address both legal and extra-legal issues. Seminars will be interactive and students will be encouraged to participate actively.", + "title": "Current Challenges to Investment Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LLJ5360Z", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-25", + "end": "2023-02-25" + }, + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-24", + "end": "2023-02-24" + }, + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-02-23", + "end": "2023-02-23" + }, + "venue": "LAW_SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "1. Who are the parties to the contract(s) or to the arbitration clause(s) contained therein? The theories applied by courts and arbitral tribunals\n2. The extension of the arbitration clause to non-signatories\n3. The possibility of bringing together in one single proceeding all the parties who have participated in the performance of one economic transaction through interrelated contracts\n4. Joinder and consolidation\n5. Appointment of arbitrators in multiparty arbitration cases\n6. The enforcement of an award in multiparty, multicontract cases\n7. The res judicata effect of an award rendered in a connected arbitration arising from the same project", + "title": "Complex Arbitrations: Multiparty \u2013 Multicontract", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LLJ5361Z", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 6 + ], + "venue": "LAW_SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-22", + "end": "2023-02-22" + }, + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-02-20", + "end": "2023-02-20" + }, + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1500", + "weeks": { + "start": "2023-02-21", + "end": "2023-02-21" + }, + "venue": "LAW_SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces important concepts and principles of private law in civil law jurisdictions to students trained in the common law. The focus is on concepts and principles in which the differences between the civil and common law systems are particularly striking. Examples are the core emphasis on obligations, the lack of a strict or any consideration requirement in contract law, the focus on absolute rights in delictual liability, the concept of negotiorum gestio and the design of property law as positive absolute rights. The different concepts of legislation and jurisprudence also form part of the module.", + "title": "Principles of Civil Law: Law of Obligations & Property", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5364V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Comparative constitutional law has emerged as one of the\nmost vibrant areas in contemporary public law. The\ncourse explores the principal challenges for the theory and\npractice of constitutionalism across time and place,\ngenerally and in particular under the globalizing conditions\nof the early 21st century. It combines the legal study of\nconstitutional texts and constitutional jurisprudence from a\nwide range of countries and constitutional systems\nworldwide with exploration of pertinent social science\nresearch concerning the global expansion of\nconstitutionalism and judicial review.", + "title": "Comparative Constitutionalism", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5368", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to offer an up-to-date understanding of constitutionalism in Asia, covering a representative number of Asian jurisdictions including China, Hong Kong, India, Japan, Mongolia, Nepal, South Korea, Taiwan and the ten ASEAN states. The students are introduced to leading constitutional cases and selected materials in those jurisdictions and guided to critically examine constitutional jurisprudences developed in those Asian jurisdictions and compared them with \nwhat has been developed elsewhere, particularly in the West.", + "title": "Constitutionalism in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5369", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the risks associated with protecting and managing the legal and corporate risks associated with the increasingly important and overlapping fields of cybersecurity, privacy and data compliance and offers both legal and practical solutions for regulating and managing such risks within an effective legal and compliance framework.", + "title": "The Law of Cybersecurity, Privacy and Data Compliance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5370", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will look in depth at the content of charity law, the consequences of charity status, and key questions raised by charity law and regulation, in contemporary settings across the world. Topics will include the profile and value of the charity sector; the \u2018heads\u2019 of charity; the public benefit requirement of charity law; charity law\u2019s treatment of political purposes; the sources of charity law;\nthe tax treatment of charities; charitable trusts and discrimination; and the regulation of charities. Singapore\u2019s charity law will be considered in global perspective. \nThis course will not consider the treatment of charity in Islamic law.", + "title": "Charity Law Today", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5371", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the public and private international law issues concerned with the protection of intellectual property rights (IPRs) globally. It commences with an overview of the sources of public international IP law, including the principal treaties, their interpretation and domestic implementation, and the general architecture of the international IP system. Using selected case studies, it then considers other international obligations that intersect with IPRS, including trade and investment protection measures and human rights obligations. It concludes with a survey of the private international law issues affecting the global exploitation of IPRs, particularly in the context of the Internet.", + "title": "International Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5372", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced copyright will examine a number of the most recent controversies in copyright law, including challenges to the cable and broadcast TV business models, the copyright status of \"appropriation art\", the permissibility of mass digitization, the phenomenon of \"copyright trolls\", and the copyright implications of universities' electronic library reserve policies. Students must have completed a course in basic copyright law.", + "title": "Advanced Copyright", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5373", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We will examine water\u2019s importance to economic development and its special interest to lawyers. Water governance concerns both private as well as public\ninterests. Meanwhile, there is fundamental variation in how much is available and where. And because water flows, society must manage it across political boundaries. By drawing on the examples of a few key river basins, we will examine the reasons and processes by which water law has evolved as it has \u2013 and whether and how, given rising pressures and uncertainty, it may change.", + "title": "Water Rights & Resources: Issues in Law & Development", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5374", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to the major themes and\nissues in traditional Chinese legal thought. We will focus\non the close reading and analysis of selected works by\nvarious philosophers and various philosophical schools,\nincluding Confucius and later Confucian thinkers\n(including, but not limited to, Mencius, Xunzi, and Dong\nZhongshu), the Legalists, and the Daoists. Attention will\nalso be placed on understanding these thinkers and\nphilosophical schools in historical context and gaining an\nunderstanding of how law was applied in premodern\nChina. No prior knowledge of Chinese history or Chinese\nphilosophy is required. All required readings are in\nEnglish.", + "title": "Traditional Chinese Legal Thought", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5375", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is about the impact of regulation on the private law of banking and financial services. This would typically include how regulatory rules create private law duties in contract or tort.\n\nIt will be of interest to those interested in financial contracts, financial institutions and the regulation and supervision of financial markets and institutions including\nbanks. \n\nFinancial services constitute an important sector of the economy. Financial markets and institutions including banks are subject to a rapidly expanding field of public\nregulation. Its implementation and enforcement raise many underexplored challenges.", + "title": "Regulation & Private Law in Banking & Financial Service", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5376", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law in Action Legal Policymaking Externship offers students the opportunity to gain unique insights into Government policy making by working directly on various projects at the Ministry of Law. The module provides a structured programme for students who wish to understand and acquire skills relevant to policy development in a Government setting. Students will be involved in a wide spectrum of policy and legislative projects, such as civil and criminal procedure, arbitration law, intellectual property and legal industry development. Students will be part of a dynamic and challenging process of shaping policy goals to enhance the legal infrastructure in Singapore.", + "title": "Law in Action Legal Policymaking Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5377V", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine recent developments and future directions in international commercial arbitration. Recent innovations such as emergency arbitrations, arb-med-arb protocols, expeditious dismissal of manifestly unmeritorious claims, consolidation and joinder, and expedited procedures will be examined from a comparative and analytical perspective with a focus on jurisdictions in the Asia-Pacific region. It will also attempt to identify future trends in international commercial arbitration, including the use of artificial intelligence, online dispute resolution, block chain technology and other procedural and technological innovations. It will utilize case studies to allow students to gain hands-on experience with arbitral rules, legislation and procedure.", + "title": "Future of Int'l Commercial Arbitration in APAC Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5379V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Heritage is a broad term that, for our purposes, encompasses things as diverse as architecture and cultural objects regarded as having historical importance, and intangible aspects of culture such as cuisine, the performing arts, and ritual practices. The course aims to provide an insight into how heritage can be protected and safeguarded for future generations by domestic common law and statutory rules on the one hand; and international law rules on the other.\n\nA prior knowledge of how public international law works is useful but not required for the course.", + "title": "Heritage Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5381V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the internationalization of commercial and personal relationships and the increase of cross-border disputes in Singapore\u2019s courts, a working knowledge of private international law, or the conflict of laws, has become essential for legal practice in Singapore. This course offers students a comprehensive overview of the foundations of private international law, with a particular focus on Singapore law. It covers private international law\u2019s three main pillars - jurisdiction, choice of law and foreign judgments - and also touches on broader methodological issues, and questions of sovereignty, comity, and public policy, which undergird and define the boundaries of the field.", + "title": "Private International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5382V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The New York Convention of 1958 on the Recognition and Enforcement of Foreign Arbitral Awards provides for the international enforcement of arbitral awards. Considered as the most successful international convention in international private law, the Convention now has 164 Contracting States and more than 2,500 court decisions interpreting and applying the Convention (as of June 2020). The course will analyze and compare the most important of those decisions. It will offer a unique insight in treaty design, statutory enactments, varying court approaches, and the practice of international arbitration. The course materials will be made available at www.newyorkconvention.org.", + "title": "International Arbitration & the New York Convention", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "LLJ5383Z", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2022-09-20", + "end": "2022-09-20" + }, + "venue": "LAW_ESR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-21" + }, + "venue": "LAW_ESR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1400", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-19" + }, + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 6 + ], + "venue": "LAW_ESR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide students with the opportunity to critically engage with some of the core notions they encounter when they study criminal law. The focus will be on a number of issues revolving around the concepts of harm and wrong, such as:\n- How should we understand the notion of wrongdoing?\n- Should the criminal law care about the distinction between intended and foreseen harm?\n- Can the wrongfulness of certain actions depend on the intentions of the agent?\n- What is the relationship between reasons for action and legal justifications?\n- What is wrong with blackmail?", + "title": "Harms and Wrongs", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5384", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s global digital world, national tax systems face new challenges. Governments large and small cooperate in tax enforcement including through strengthened anti-abuse rules, yet tax competition continues. Uncertainty,\ncomplexity and risk have increased for taxpayers ranging from individuals to multinational enterprises. Recent developments in the OECD Inclusive Framework and other forums may lead to significant new global tax rules, but an agreed outcome is far from certain. This course explores the latest trends and issues in personal and corporate income tax and Goods and Services Tax that address\ndigital or cross-border services or employment, consumption, and investment.", + "title": "Taxation Law & the Global Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5385", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines emerging trends to identify and analyse ways in which intellectual property laws are being used to commodify self. Through processes of intellectual propertisation, aspects of the human body, human persona, and human expression through art can be converted from \u2018unowned\u2019 to \u2018owned\u2019. Examining contemporary issues such as gene patents, fake news, authenticity and cultural appropriation, as well as\nemerging technologies such as transplanted and artificial body parts, cyborgs, mind downloads, blockchain and the Internet of Things, the course examines the mechanisms\nby which the expansion of intellectual property laws is enabling increasing commodification of humankind.", + "title": "Intellectual Property in Body, Persona & Art", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5386", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will survey multiple legal fields that involve the regulation of what are generally referred to as \u201cdigital platforms,\u201d including Google, Facebook, and others. The primary legal fields of study will be competition (antitrust) law and liability for third-party content. Because these areas of law draw heavily from economic theory and research, the course will also survey some of the relevant economics literature as a means of better understanding the relevant markets.", + "title": "Regulation of Digital Platform", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5387", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores Thai contract law which is a product of civil law traditions and a cornerstone of Thai private law. It covers major areas of contract law from the beginning to the end of a contract, i.e. contract formation, validity, interpretation, breach of contract, and ending and changing a contract. Course participants will be encouraged to make comparisons between Thai and Singapore contract laws on\ncertain issues.", + "title": "Comparative Civil Law: Thai Contract Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5388", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corporate groups are pervasive in modern, international commerce. Frequently they are structured in order to avoid or minimise liability for wrongdoing and to protect group assets. In other cases, risky physical processes are contracted out to network participants. This course examines the structures and practices of corporate groups and networks, the problems of externalisation of liability,\nand legal mechanisms for extending liability among participant entities. Extended liability regimes considered span statute law and common law. Consideration is given also to several important suggestions for development of the law in this area.", + "title": "Liability of Corporate Groups and Networks", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5393V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In intellectual property law, overlaps of exclusive rights stemming from different protection regimes raise particular problems. Nonetheless, the cumulation of rights has become a standard protection strategy in sectors ranging from software to fashion and entertainment. Against this background, this module offers a detailed analysis of protection overlaps. Which combinations of rights are deemed permissible? Which specific problems arise from the cumulation of intellectual property rights? Using international, US and EU legislation and case law as reference points, these questions will be discussed. Moreover, the module will explore alternative avenues for better law and policy making.", + "title": "Protection Overlaps in Intellectual Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5394", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Using precedents and transactional documents generously supplied by various leading law firms and chambers, the module will examine in much greater depth various representative uses of trusts in the modern world, both to make family provision and in commerce. It will examine how these functions are realised by practising lawyers working within, ad developing, legal doctrine. Finally it will\nexplore the broad theoretical implications of this work.", + "title": "The Law & Practice of Modern Trust Structures", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5395", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UNIVERSITY RESEARCH OPPORTUNITIES PROGRAMME", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5396", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students enrolled in the LLM (IADR) degree with the opportunity to do a substantial research paper not exceeding 10,000 words under the direct supervision of a member of the academic staff. Students\nmay not do a directed research on topics that they have studied in other courses or have previously done research assignments on. Students interested in doing the Directed Research are advised to seek the provisional approval of their proposed supervisor.", + "title": "International Arbitration & Dispute Resolution Research", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5396V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5397", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students enrolled in the LLM (IADR) degree with the opportunity to do a substantial research paper not exceeding 10,000 words under the direct supervision of a member of the academic staff. Students\nmay not do a directed research on topics that they have studied in other courses or have previously done research assignments on. Students interested in doing the Directed Research are advised to seek the provisional approval of their proposed supervisor.", + "title": "International Arbitration & Dispute Resolution Research", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5397V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5398", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "University Research Opportunities Programme", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5399", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biomedical Law & Ethics", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5400", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corporate Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5402", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Intellectual Property (a)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5405A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Intellectual Property (B)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5405B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law of Insurance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5407", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Corporate Finance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5409", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Personal property law cuts across many legal fields, including equity and trusts, and the law of sales, agency, company, insolvency and bankruptcy, insurance, banking, economic torts and crimes. The course covers the following broad areas: (i) defining the interests in personal property; (ii) creation and acquisition of interests in tangible property by consent, including the sale of goods and documentary sales; (iii) creation and acquisition of interests in tangible property by \noperation of law; (iv) intangible property & security interests; (v) persistence of interests in personal property; and (iv) protection of interests in personal property.", + "title": "Personal Property Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to provide an overview of securities regulation, corporate governance and mergers and acquisitions, in Singapore and, where relevant, jurisdictions such as the US, UK, Australia, China and HK. Topics to be covered generally include: regulatory authorities and capital markets; supervision of intermediaries; the \"going public\" process; legal position of stockbrokers; insider trading and securities frauds; globalisation, technology and regulatory harmonisation; and regulation of takeover activity. In addition, aspects of syndicated loan and bond financing, and securitisation, will be studied in some detail. Students will be expected to use the Internet to search for comparative materials. Advisory Note for students from Civil Law Jurisdiction: Not appropriate for civil law students.", + "title": "Securities and Capital Markets Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5412", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course is about the law governing the processes by which substantive rights are effectuated during civil litigation in Singapore. The emphasis will be on how Rules of Court operate in areas of dispute resolution including the interlocutory stages from filing of an action to the trial, post-judgment matters and the role of amicable settlement in the adversarial culture. The inter-relationship between procedure, evidence and ethics will be analysed. Students will have an understanding of the principles of procedure to consider the efficacy and viability of the governing law in light of fairness, efficiency and justice, and to propose reforms.", + "title": "Civil Justice and Procedure", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LLJ5413", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the tensions in choice-of-law decision-making in selected areas or sub-fields spanning human rights violations, foreign sovereign debts, environmental liability, currency swaps, international trusts, multiple-listed corporations, and time permitting, economic torts and internet defamation and/or employment and human capital development. In each specific area, it asks whether a choice-of-law theory can shed light on the tensions which the choice-of-law rule seeks to balance and whether another can lead to development of a better or more coherent rule.", + "title": "Choice of Law: Practice and Theories", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5431V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject of international litigation has gained strong recognition as a composite of two branches of the conflict of laws, namely jurisdiction and recognition and enforcement of judgment. This conceptualisation brings into its embrace evolving themes of comity, proximity, efficiency, party autonomy, foreign sovereign immunity, foreign act of state and justiciability, reasonable extraterritoriality, and forum mandatory procedural policies. In this advanced course, each theme is studied in the context of practice in a particular sub-field of jurisdiction or enforcement; although some themes such as that of sovereignty are cross-cutting and are studied in more than one jurisdictional context.", + "title": "International Litigation: Themes and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5432V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the main themes and approaches in data privacy law in light of various international frameworks (OECD, APEC, ASEAN) and a cross-section of national laws from North America, Europe and Asia. While many countries have enacted or amended laws in recent years, there is no widely-accepted framework for cross-border data transfers and developments in business and technology present new risks and challenges to the protection of individuals\u2019 personal data and privacy. This course will also consider the role of data privacy laws in regulating social media and the Internet, data science, AI and machine learning and cybersecurity.", + "title": "Global Data Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5433V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The trading of commodities is one of the oldest forms of economic activity known to mankind. Today, it is a sophisticated multi-trillion-dollar industry spanning across the globe. A commodity trade is, at its heart, the sale and purchase of a commodity, but is often coupled with other related transactions such as transportation, storage,\ninsurance and finance. This course seeks to provide students with an overview of international commodity trading law. As an \u201cindustry-focused\u201d course, students will\nbe trained to identify and analyse problems that span across different areas including contract, banking and finance, agency, assignment, set-off \u2013 just like practitioners do.", + "title": "International Commodity Trading Law Clinic", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5434V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_CR3-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Law is unique because it did not emerge from a single source of law. Rather, it has roots in almost every type of law. Through diverse readings, deep discussions, and independent research, this course will identify and understand the various types of law that, together, give rise to \u201cenvironmental law.\u201d The course will consider environmental law\u2019s roots in common law, regulation, legislation, constitutions, international cooperation, public action, and even private self-governance. Though not exclusively, the focus will be on common law jurisdictions in the British tradition, but independent research will allow students to explore more widely for themselves.", + "title": "Foundations of Environmental Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5435", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family Law covers a very broad field that involves familial relationships wider than just spousal relationships, children and money matters. It encompasses transnational conflict of laws, marital agreements, international conventions and enforcement issues. It also sees intersectionality with elder law, mental capacity, as well as probate and succession law. It is not possible to cover every aspect of family law in this elective. This course will cover family law and practice in Singapore, with a special emphasis on marriages, divorce and ancillary matters for civil marriages, and the workings of the Family Justice Courts.", + "title": "Family Law and Practice", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5436V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_LT", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores diverse development patterns of the rule of law and democracy in East Asia. Theories of democracy commonly hold that the acceptance of rule of law in non-democratic countries would lead to democratization, especially along with increasing economic prosperity. This linear thesis, however, have met challenges recently in light of recent developments in China, HK, and other parts of the world. As such, this module scrutinizes this linear thesis by examining the trajectories of legal development in East Asia and the determinants, such as international factors, civil law traditions, legal professionals, foreign law influence, colonial legacies and post-colonial nationalism.", + "title": "Law and Democracy in East Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5437V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the exciting world of intellectual property arbitration. Traditionally thought of and taught as distinct areas of law, the overlap between IP rights and recourse to arbitration for the protection of those rights has grown significantly in recent years. This pioneering course is not currently offered in any other leading law school in the world. It is designed for students with little to\nno knowledge of IP law. It is also designed for students with an interest in arbitration, regardless of the level of their preexisting knowledge of arbitration.", + "title": "Intellectual Property Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5438V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to electronic evidence, which covers every area of law. Most legal problems presented to lawyers now include an element of electronic evidence. It is incumbent on judges, lawyers and legal academics to be familiar with the topic in the service of justice. Electronic evidence is ubiquitous.\nUsing an array of mobile technologies, people communicate regularly through social networking sites, e-mail and other virtual methods managed by organisations that are transnational. No area of human activity is free from the networked world \u2013 this also means no area of law is free from the effects of electronic evidence.", + "title": "Electronic Evidence", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5440", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks at the economic foundations of corporate bankruptcy and insolvency law. The course will discuss the application of general law-and-economics principles to the governance and reorganization of insolvent and financially distressed business firms. Readings will focus in particular on questions about whether and how general theories of contracts, property, and corporate governance must be amended in the context of insolvency and bankruptcy.", + "title": "Law & Economics of Corporate Bankruptcy & Insolvency", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5441", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course will consider digital trade's role within the global political economy and its benefits for international economic activity. Students will examine how international trade laws and treaties can affect cross-border digital trade, e-commerce, and emerging technologies (e.g. artificial intelligence, autonomous technology and 5G). Students will explore the legal and economic implications of various regulatory barriers to digital trade, as well as their related public policy concerns (e.g. privacy and cybersecurity), and learn about facilitating digital trade infrastructure, the key intellectual property issues in digital trade, and the linkages between trade and investment in the digital economy.", + "title": "Digital Trade and Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5442", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course will consider digital trade's role within the global political economy and its benefits for international economic activity. Students will examine how international trade laws and treaties can affect cross-border digital trade, e-commerce, and emerging technologies (e.g. artificial intelligence, autonomous technology and 5G). Students will explore the legal and economic implications of various regulatory barriers to digital trade, as well as their related public policy concerns (e.g. privacy and cybersecurity), and learn about facilitating digital trade infrastructure, the key intellectual property issues in digital trade, and the linkages between trade and investment in the digital economy.", + "title": "Digital Trade and Digital Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5442V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how the securities and capital markets are structured and regulated in Asia, particularly in Mainland China and Hong Kong. The topics covered in this course include, amongst others, the regulatory framework for the capital markets, securities offering, stock exchange listing, market misconduct such as insider trading, Fintech issues such as crowdfunding, mobile payment and cryptoassets. Given the nature of the course, a comparative approach will be adopted to examining the topics covered.", + "title": "Capital Markets Law in Mainland China and HKSAR", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5443", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how the securities and capital markets are structured and regulated in Asia, particularly in Mainland China and Hong Kong. The topics covered in this course include, amongst others, the regulatory framework for the capital markets, securities offering, stock exchange listing, market misconduct such as insider trading, Fintech issues such as crowdfunding, mobile payment and cryptoassets. Given the nature of the course, a comparative approach will be adopted to examining the topics covered.", + "title": "Capital Markets Law in Mainland China and HKSAR", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5443V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law of the Marine Environment discusses the legal framework for the international governance of shipping. Within this framework it considers the powers flag, coastal and ports states have to prescribe and enforce environmental shipping regulations. The main characteristics of the established regulatory system is further described. The course then embarks on a detailed analysis of a number of international and national civil liability regimes developed for the recovery of pollution damage. Contemporary environmental challenges faced by shipping, namely, the reduction of atmospheric pollution and greenhouse gas emissions and the issue of recycling of ships are then examined.", + "title": "Law of the Marine Environment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5444", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Law of the Marine Environment discusses the legal framework for the international governance of shipping. Within this framework it considers the powers flag, coastal and ports states have to prescribe and enforce environmental shipping regulations. The main characteristics of the established regulatory system is further described. The course then embarks on a detailed analysis of a number of international and national civil liability regimes developed for the recovery of pollution damage. Contemporary environmental challenges faced by shipping, namely, the reduction of atmospheric pollution and greenhouse gas emissions and the issue of recycling of ships are then examined.", + "title": "Law of the Marine Environment", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5444V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the theory and practice of constitutionalism in four countries that are located in South and South East Asia: India, Indonesia, Singapore and Sri Lanka. Two of these are among the largest, most pluralistic nations in the world, while the remaining two are small island states. All four nations experienced long periods of colonial rule, which continues to have a decisive impact on their post-colonial legal and constitutional orders. The course will be of interest to those who seek to study constitutionalism against larger societal debates about economic development, cultural values, and human rights.", + "title": "Comparative Constitutionalism in Southern Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5446", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the theory and practice of constitutionalism in four countries that are located in South and South East Asia: India, Indonesia, Singapore and Sri Lanka. Two of these are among the largest, most pluralistic nations in the world, while the remaining two are small island states. All four nations experienced long periods of colonial rule, which continues to have a decisive impact on their post-colonial legal and constitutional orders. The course will be of interest to those who seek to study constitutionalism against larger societal debates about economic development, cultural values, and human rights.", + "title": "Comparative Constitutionalism in Southern Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5446V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a hands-on introduction to legal data science and aims to improve students\u2019 understanding of:\n1) legal issues that involve technology;\n2) the technologies that underlie many legal\u2013tech products; and\n3) how technology can be used in empirical legal research.\nThis class also provides practice in the logical reasoning skills important to many areas of legal practice and improves students\u2019 abilities to communicate with clients in high-tech industries.\nNo computer programming experience is required. Class operates in a \u201cflipped\u201d manner with weekly homework and readings, and intensive classroom activities that are designed to help students overcome learning obstacles.", + "title": "Legal Data Science", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5447", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a hands-on introduction to legal data science and aims to improve students\u2019 understanding of:\n1) legal issues that involve technology;\n2) the technologies that underlie many legal\u2013tech products; and\n3) how technology can be used in empirical legal research.\nThis class also provides practice in the logical reasoning skills important to many areas of legal practice and improves students\u2019 abilities to communicate with clients in high-tech industries.\nNo computer programming experience is required. Class operates in a \u201cflipped\u201d manner with weekly homework and readings, and intensive classroom activities that are designed to help students overcome learning obstacles.", + "title": "Legal Data Science", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5447V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The common-law world only exists because of its shared history. History explains the common lawyer\u2019s profession. This module introduces the study of legal history with an eye to its contemporary relevance. It concentrates on the colonial roots of the laws and legal institutions of common-law countries such as Singapore. By examining colonial settings across three centuries, we shall see how English law dealt with cultural plurality and territorial expansion, and how imperial stakeholders debated and applied ideas from the rule of law to judicial independence. We explore why, how, and for whom law was made, and how these dynamics changed upon decolonisation.", + "title": "Legal History: Themes and Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5448", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The common-law world only exists because of its shared history. History explains the common lawyer\u2019s profession. This module introduces the study of legal history with an eye to its contemporary relevance. It concentrates on the colonial roots of the laws and legal institutions of common-law countries such as Singapore. By examining colonial settings across three centuries, we shall see how English law dealt with cultural plurality and territorial expansion, and how imperial stakeholders debated and applied ideas from the rule of law to judicial independence. We explore why, how, and for whom law was made, and how these dynamics changed upon decolonisation.", + "title": "Legal History: Themes and Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5448V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Water is everywhere. Water is life! But how is water regulated when it crosses national borders? And how is it regulated when it is found underground? Can water in one country be of relevance for the international community as a whole? These are some of the questions that will be discussed in the intensive course on International Water Law. Throughout three weeks students will focus on transboundary surface water (first week), transboundary aquifers (second week) and on three specific water related matters that link water with other key relevant international legal areas (third week): climate change, sustainable development and security.", + "title": "International Water Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5449", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Water is everywhere. Water is life! But how is water regulated when it crosses national borders? And how is it regulated when it is found underground? Can water in one country be of relevance for the international community as a whole? These are some of the questions that will be discussed in the intensive course on International Water Law. Throughout three weeks students will focus on transboundary surface water (first week), transboundary aquifers (second week) and on three specific water related matters that link water with other key relevant international legal areas (third week): climate change, sustainable development and security.", + "title": "International Water Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5449V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a broad overview of Singapore\u2019s legal history, including its historical common law origins and the evolution of its key institutions and traditions. Topics covered include the historical development of Singapore\u2019s sources of law; the Singapore Constitution; judicial system; legal profession, legal service; legal education; criminal law; land law and law reporting. Assessment will be by way of a research paper on a selected topic to submit at the end of the course.", + "title": "Singapore Legal History", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5450", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a broad overview of Singapore\u2019s legal history, including its historical common law origins and the evolution of its key institutions and traditions. Topics covered include the historical development of Singapore\u2019s sources of law; the Singapore Constitution; judicial system; legal profession, legal service; legal education; criminal law; land law and law reporting. Assessment will be by way of a research paper on a selected topic to submit at the end of the course.", + "title": "Singapore Legal History", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5450V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_ESR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on some of the neglected historical aspects of international law, but also on the techniques of doing a \u201chistory\u201d of the discipline (how is one even to attempt a history (or histories) of Euro-centric international law?). It will concentrate on topics as diverse as territorial acquisition and religious authority (the 1494 Treaty of Tordesillas), on the freedom of the oceans and the slave trade, on colonies and race. The course will also be of particular interest to modalities of accountability for the international legal past, such as the 2000 Women\u2019s International Tribunal on Sexual Violence and the recent advisory opinion of the International Court of Justice in the Chagos Archipelago.", + "title": "An Uncensored History of International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5451", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on some of the neglected historical aspects of international law, but also on the techniques of doing a \u201chistory\u201d of the discipline (how is one even to attempt a history (or histories) of Euro-centric international law?). It will concentrate on topics as diverse as territorial acquisition and religious authority (the 1494 Treaty of Tordesillas), on the freedom of the oceans and the slave trade, on colonies and race. The course will also be of particular interest to modalities of accountability for the international legal past, such as the 2000 Women\u2019s International Tribunal on Sexual Violence and the recent advisory opinion of the International Court of Justice in the Chagos Archipelago.", + "title": "An Uncensored History of International Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5451V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When a person refers to \u201cfamily law\u201d, listeners generally assume that the person is referring to divorce law. However, family law in Singapore encompasses much more, e.g. mental capacity, probate, and adoption.\n\nThis course will cover the above areas as well as more specialised topics in family law, e.g. relocation, cross border divorce and maintenance, child abduction, and therapeutic justice, and will also include an introduction to procedural and practical aspects of family law litigation.", + "title": "Specialised Topics in Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5452", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When a person refers to \u201cfamily law\u201d, listeners generally assume that the person is referring to divorce law. However, family law in Singapore encompasses much more, e.g. mental capacity, probate, and adoption.\n\nThis course will cover the above areas as well as more specialised topics in family law, e.g. relocation, cross border divorce and maintenance, child abduction, and therapeutic justice, and will also include an introduction to procedural and practical aspects of family law litigation.", + "title": "Specialised Topics in Family Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5452V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of how intellectual property laws (e.g. copyright, trademarks and right of publicity) regulate the world of fashion. It will also explore the enforcement of intellectual property laws in the fashion industry from an interdisciplinary perspective drawing on writings in cultural studies and fashion theory.", + "title": "Fashion Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5453", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Commercial conflict of laws is a significant area of legal scholarship and practice. The chief aim of the course is to examine the foundational principles of commercial conflict of laws in Singapore. First, it identifies and assesses the set of rules based on which Singapore courts decide whether to entertain international commercial disputes. Second, the unit outlines the provisions based on which Singapore courts determine the law governing the parties\u2019 cross-border disputes. Finally, the unit outlines the rules according to which courts in Singapore give effect to foreign judgments.", + "title": "Commercial Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5454", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Commercial conflict of laws is a significant area of legal scholarship and practice. The chief aim of the course is to examine the foundational principles of commercial conflict of laws in Singapore. First, it identifies and assesses the set of rules based on which Singapore courts decide whether to entertain international commercial disputes. Second, the unit outlines the provisions based on which Singapore courts determine the law governing the parties\u2019 cross-border disputes. Finally, the unit outlines the rules according to which courts in Singapore give effect to foreign judgments.", + "title": "Commercial Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5454V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is the second installment on the taxation of cross-border commercial transactions. The first installment, Taxation of Cross-Border Commercial Transactions I, is a pre-requisite. This course will interest those who want to practise tax law and/or those who took the first installment and enjoyed it. \n\nTopics covered: \n- The OECD Model Double Tax Treaty including the Multilateral Instrument (in-depth)\n- Anti-avoidance rules and tax planning\n- Accounting for Tax Consequences\n- The Impact of Bilateral Investment Treaties on International Tax\n- Tax Theory", + "title": "Taxation of Cross-Border Commercial Transactions II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5455", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is the second installment on the taxation of cross-border commercial transactions. The first installment, Taxation of Cross-Border Commercial Transactions I, is a pre-requisite. This course will interest those who want to practise tax law and/or those who took the first installment and enjoyed it. \n\nTopics covered: \n- The OECD Model Double Tax Treaty including the Multilateral Instrument (in-depth)\n- Anti-avoidance rules and tax planning\n- Accounting for Tax Consequences\n- The Impact of Bilateral Investment Treaties on International Tax\n- Tax Theory", + "title": "Taxation of Cross-Border Commercial Transactions II", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5455V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Legal innovation and technology are new foci in the legal profession as technologies of automation transform the nature of practice. This module provides a theoretically-informed, hands-on practical experience in producing the types of legaltech that are transforming practice, while also equipping the student with the critical faculties to determine their appropriate application. This module offers highly practical lab-based work where students learn the fundamentals of automating legal services and decision support systems, as well as developing skills required for designing new technologies to aid the practice of law.", + "title": "Legal Technology & Innovation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5456", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Legal innovation and technology are new foci in the legal profession as technologies of automation transform the nature of practice. This module provides a theoretically-informed, hands-on practical experience in producing the types of legaltech that are transforming practice, while also equipping the student with the critical faculties to determine their appropriate application. This module offers highly practical lab-based work where students learn the fundamentals of automating legal services and decision support systems, as well as developing skills required for designing new technologies to aid the practice of law.", + "title": "Legal Technology & Innovation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5456V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The two fundamental goals of the module are to introduce students to topical issues surrounding international human rights law and to lay the foundation for their future advanced studies of, or work in, the field of human rights. The first section addresses normative bases, right-holders, and various types of human rights, corresponding territorial and extraterritorial obligations of states and non-state actors, and international and regional mechanisms of human rights protection. The second section explores the role of human rights in solving pressing global problems, including poverty and inequality, decolonization, social, global and environmental injustice, and other obstacles to sustainable development.", + "title": "International Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5457", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The two fundamental goals of the module are to introduce students to topical issues surrounding international human rights law and to lay the foundation for their future advanced studies of, or work in, the field of human rights. The first section addresses normative bases, right-holders, and various types of human rights, corresponding territorial and extraterritorial obligations of states and non-state actors, and international and regional mechanisms of human rights protection. The second section explores the role of human rights in solving pressing global problems, including poverty and inequality, decolonization, social, global and environmental injustice, and other obstacles to sustainable development.", + "title": "International Human Rights Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5457V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s expanding influence has been accompanied by a maturing of its legal framework for arbitration, as well as an increasingly active role in investor-state dispute settlement. This course undertakes a detailed examination of all facets of commercial arbitration in China, set within the context of China\u2019s transformational economic rise. It also explores salient issues that arise in commercial and investor-state arbitrations involving Chinese parties or China. Attention will be drawn to the import and impact of recent developments, including the South China Sea and the Belt and Road Initiative, as well as China\u2019s relationship with India, ASEAN and the US.", + "title": "China and International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5458", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s expanding influence has been accompanied by a maturing of its legal framework for arbitration, as well as an increasingly active role in investor-state dispute settlement. This course undertakes a detailed examination of all facets of commercial arbitration in China, set within the context of China\u2019s transformational economic rise. It also explores salient issues that arise in commercial and investor-state arbitrations involving Chinese parties or China. Attention will be drawn to the import and impact of recent developments, including the South China Sea and the Belt and Road Initiative, as well as China\u2019s relationship with India, ASEAN and the US.", + "title": "China and International Arbitration", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5458V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to explore innovation and regulation of FinTech and its embedded platform economy. FinTech and its embedded platform economy, which is empowered by information communication technologies and cantered on data-driven online platforms, has transformed the paradigms of conducting commercial and financial activities. \n\nThrough a series of lectures, seminars, and group discussions, this module will explore the new phenomenon of the platform economy, especailly the FinTech innovation pertinant to Money, Investment, Data and Innovative Dispute Resolutions. A guest lecture by an experienced practitioner will be also arranged. \n\nA research-based, student-centred, and globally-oriented pedagogy will guide the teaching and learning engagement.", + "title": "Law, FinTech and the Platform Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5460", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to explore innovation and regulation of FinTech and its embedded platform economy. FinTech and its embedded platform economy, which is empowered by information communication technologies and cantered on data-driven online platforms, has transformed the paradigms of conducting commercial and financial activities. \n\nThrough a series of lectures, seminars, and group discussions, this module will explore the new phenomenon of the platform economy, especailly the FinTech innovation pertinant to Money, Investment, Data and Innovative Dispute Resolutions. A guest lecture by an experienced practitioner will be also arranged. \n\nA research-based, student-centred, and globally-oriented pedagogy will guide the teaching and learning engagement.", + "title": "Law, FinTech and the Platform Economy", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5460V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the rules and standards that govern the subject of compliance and risk management. It starts by examining questions of governance: boards of directors, and executives. we then examine the compliance function through the lens of managers, regulators, prosecutors, whistle blowers, and gatekeepers. Next, we consider particular areas of the law: corruption, anti-money laundering, and export controls. We examine case studies where compliance fails and initiatives that go beyond compliance. Finally, we consider risk management as it pertains to lawyers; topics here include the governance of risk; approaches to risk management; reputational, operational, and enterprise risk.", + "title": "Compliance and Risk Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5461", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the rules and standards that govern the subject of compliance and risk management. It starts by examining questions of governance: boards of directors, and executives. We then examine the compliance function\nthrough the lens of managers, regulators, prosecutors, whistle blowers, and gatekeepers. Next, we consider particular areas of the law: corruption, anti-money\nlaundering, and export controls. We examine case studies where compliance fails and initiatives that go beyond compliance. Finally, we consider risk management as it pertains to lawyers; topics here include the governance of risk; approaches to risk management; reputational, operational, and enterprise risk.", + "title": "Compliance and Risk Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5461V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Recent decades have witnessed a growth in commercial dealings between EU Member States and South East Asian countries, specially Singapore. Consequently, it is not uncommon for Singaporean individuals or businesses to become involved in commercial disputes with EU-based entities. This elective examines how the ensuing conflict-oflaws questions in these cases are resolved by courts in the EU (which, after Brexit, is dominated by civil law states). This elective would be particularly beneficial to those who are likely to be engaged by clients in Singapore or South East Asia who become involved in litigation before EU Member State courts.", + "title": "Civil Law Approaches to Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5462", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Recent decades have witnessed a growth in commercial dealings between EU Member States and South East Asian countries, specially Singapore. Consequently, it is not uncommon for Singaporean individuals or businesses to become involved in commercial disputes with EU-based entities. This elective examines how the ensuing conflict-oflaws questions in these cases are resolved by courts in the EU (which, after Brexit, is dominated by civil law states). This elective would be particularly beneficial to those who are likely to be engaged by clients in Singapore or South East Asia who become involved in litigation before EU Member State courts.", + "title": "Civil Law Approaches to Conflict of Laws", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5462V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This externship, co-convened by a senior policymaker and a law professor, is designed to enable the student to gain a better understanding of influence of the law in the arts and adjacent sectors, inter alia, literary, visual and performing arts, in particular intellectual property and contract laws. The student will be involved in the Arts Resource Hub, draft artists\u2019 rights statements and agreement templates for arts practitioners, and perform high-quality research relevant for policymakers.", + "title": "National Arts Council Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5463", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This externship, co-convened by a senior policymaker and a law professor, is designed to enable the student to gain a better understanding of influence of the law in the arts and adjacent sectors, inter alia, literary, visual and performing arts, in particular intellectual property and contract laws. The student will be involved in the Arts Resource Hub, draft artists\u2019 rights statements and agreement templates for arts practitioners, and perform high-quality research relevant for policymakers.", + "title": "National Arts Council Externship", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5463V", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Port financing is crucial to port performance and development. This course thus examines how port financing is supported or not as the case may be by law and regulation. It takes an internationalist and comparative approach to the subject. That said, where appropriate it will consider the Singapore legal system. The topics examined include the role of ports (as beneficiary of financing and as the investor), tools for port financing, legal management of risks and bankability of port projects, good practice in public-private initiatives, port concession agreements and green port financing.", + "title": "Principles of Port Finance and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5464", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Port financing is crucial to port performance and development. This course thus examines how port financing is supported or not as the case may be by law and regulation. It takes an internationalist and comparative approach to the subject. That said, where appropriate it will consider the Singapore legal system. The topics examined include the role of ports (as beneficiary of financing and as the investor), tools for port financing, legal management of risks and bankability of port projects, good practice in public-private initiatives, port concession agreements and green port financing.", + "title": "Principles of Port Finance and Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5464V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Geographical Indications (GIs) signal the provenance of reputed products such as Champagne, Darjeeling and Prosciutto di Parma. They also constitute valuable \ncollective brands. This course (i) outlines the relevant international treaties mandating how they should be protected, (ii) compares the three competing models of protection envisaged by these treaties (trade mark law; unfair competition law; and sui generis protection), (iii) via EU law, explains the distinctive features of the sui generis model, and (iv) explores contemporary challenges, including the effects of climate change on terroir and the accommodation of handicrafts in a regime designed around agricultural products.", + "title": "International Geographical Indications Protection (IP)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5465", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Geographical Indications (GIs) signal the provenance of reputed products such as Champagne, Darjeeling and Prosciutto di Parma. They also constitute valuable\ncollective brands. This course (i) outlines the relevant international treaties mandating how they should be protected, (ii) compares the three competing models of protection envisaged by these treaties (trade mark law;\nunfair competition law; and sui generis protection), (iii) via EU law, explains the distinctive features of the sui generis model, and (iv) explores contemporary challenges, including the effects of climate change on terroir and the\naccommodation of handicrafts in a regime designed around agricultural products.", + "title": "International Geographical Indications Protection (IP)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5465V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is based on both theoretical and practical approaches and regulative initiatives related to the digital governance, focusing to the existing and planned AI use-cases by public authorities in the fields. Reconciliation of data driven society with legal society and Rule of Law is a challenge to all of the jurisdictions. This module is using comparative method but is focusing on leading legal standard setting entity, European Union (and its member states, especially Estonia as a flagship country in e-gov), when analysing the norms, explaining the controversies, best practice and new legal doctrines related to Digital Governance.", + "title": "Ethical Digital Governance and Legal Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5471", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is based on both theoretical and practical approaches and regulative initiatives related to the digital governance, focusing to the existing and planned AI use-cases by public authorities in the fields. Reconciliation of data driven society with legal society and Rule of Law is a challenge to all of the jurisdictions. This module is using comparative method but is focusing on leading legal standard setting entity, European Union (and its member states, especially Estonia as a flagship country in e-gov), when analysing the norms, explaining the controversies, best practice and new legal doctrines related to Digital Governance.", + "title": "Ethical Digital Governance and Legal Society", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5471V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since its adoption nearly a decade ago, the Belt and Road Initiative (BRI) has quickly become a key consideration in China\u2019s trade policy-making, and has attracted growing attention across the globe. This course explores how China produces and enhances its influence in global trade governance through BRI implementation, and how the international community should respond to China\u2019s growing influence. Nine selected issues will be discussed. This course will be conducted in an interactive way, including lectures of the professor, students presentations, and class discussions.", + "title": "The Belt & Road Initiative & Int\u2019l Trade Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5472", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_LT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Since its adoption nearly a decade ago, the Belt and Road Initiative (BRI) has quickly become a key consideration in China\u2019s trade policy-making, and has attracted growing attention across the globe. This course explores how China produces and enhances its influence in global trade governance through BRI implementation, and how the international community should respond to China\u2019s growing influence. Nine selected issues will be discussed. This course will be conducted in an interactive way, including lectures of the professor, students presentations, and class discussions.", + "title": "The Belt & Road Initiative & Int\u2019l Trade Governance", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5472V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the international legal frameworks relating to various aspects of the management and governance of energy resources including the impact of\ninvestment law, trade law, property law and environmental law on energy transactions. It assesses how international law impacts on the energy sector and reviews selected national legal regimes concerning the regulation of energy\nresources such as nuclear, renewables, petroleum and gas, in addition to energy infrastructures such as pipelines and offshore platforms.", + "title": "International Energy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5473", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the international legal frameworks relating to various aspects of the management and governance of energy resources including the impact of\ninvestment law, trade law, property law and environmental law on energy transactions. It assesses how international law impacts on the energy sector and reviews selected national legal regimes concerning the regulation of energy\nresources such as nuclear, renewables, petroleum and gas, in addition to energy infrastructures such as pipelines and offshore platforms.", + "title": "International Energy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5473V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a foundational understanding of cybersecurity and privacy law drawing from international, European, and American legal perspectives. The distinct value of the course is that it integrates insights from both cybersecurity and privacy. The course offers an understanding of the core concepts, the relevant rules, and discusses the tensions that underpin these areas of law by addressing their complexities and contradictions. The additional advantage of the course is that it combines multiple legal perspectives. The carefully selected readings reflect the diversity of legal approaches to cybersecurity and privacy, and engage with multiple legal systems.", + "title": "Cybersecurity and Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5474", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a foundational understanding of cybersecurity and privacy law drawing from international, European, and American legal perspectives. The distinct value of the course is that it integrates insights from both cybersecurity and privacy. The course offers an understanding of the core concepts, the relevant rules, and discusses the tensions that underpin these areas of law by addressing their complexities and contradictions. The additional advantage of the course is that it combines multiple legal perspectives. The carefully selected readings reflect the diversity of legal approaches to cybersecurity and privacy, and engage with multiple legal systems.", + "title": "Cybersecurity and Privacy Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5474V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the law, directives and guidelines pertaining to the conduct of investment management activity in Singapore. The primary focus is on the regulatory regime in Singapore but significant elements of selected foreign regulatory regimes affecting investment managers in Singapore will also be introduced. Some of the latest industry trends will be examined. The course is tailored to lay a foundation for those considering a career in the investment management industry, either as a legal practitioner in a law firm or as an in-house legal counsel or compliance officer within an investment management company.", + "title": "Law and Practice of Investment Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5475", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the law, directives and guidelines pertaining to the conduct of investment management activity in Singapore. The primary focus is on the regulatory regime in Singapore but significant elements of selected foreign regulatory regimes affecting investment managers in Singapore will also be introduced. Some of the latest industry trends will be examined. The course is tailored to lay a foundation for those considering a career in the investment management industry, either as a legal practitioner in a law firm or as an in-house legal counsel or compliance officer within an investment management company.", + "title": "Law and Practice of Investment Management", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5475V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in U.S. copyright law, both traditional and digital, in international and comparative perspective. Some of the specific topics we will cover are the subject matter of copyright; ownership; duration and transfer; infringement; fair use; and the Digital Millennium Copyright Act.", + "title": "US Copyright: International & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5476", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in U.S. copyright law, both traditional and digital, in international and comparative perspective. Some of the specific topics we will cover are the subject matter of copyright; ownership; duration and transfer; infringement; fair use; and the Digital Millennium Copyright Act.", + "title": "US Copyright: International & Comparative Perspectives", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5476V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The three East Asian jurisdictions (i.e., South Korea, Taiwan and Japan) covered in this course adopt the civil law tradition and have received the Romano-Germanic\ncivil code. The study of civil law in East Asia broadens our legal horizons and enables us to have diverse legal minds in response to the globalisation era. Broadly speaking, the topics covered in this course are as follows: (1) Introduction to Comparative Private Law, (2) Private law in East Asia: History, Development and Methodology, (3) Contract Law in East Asia; (4) Property Law in East Asia; and (5) Trust Law in East Asia.", + "title": "Private Law in East Asia (Korea, Taiwan, Japan)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5477", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "E-Learn_D", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The three East Asian jurisdictions (i.e., South Korea, Taiwan and Japan) covered in this course adopt the civil law tradition and have received the Romano-Germanic civil code. The study of civil law in East Asia broadens our legal horizons and enables us to have diverse legal minds in response to the globalisation era. Broadly speaking, the topics covered in this course are as follows: (1) Introduction\nto Comparative Private Law, (2) Private law in East Asia: History, Development and Methodology, (3) Contract Law in East Asia; (4) Property Law in East Asia; and (5) Trust Law in East Asia.", + "title": "Private Law in East Asia (Korea, Taiwan, Japan)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5477V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with private international law (or \u2018conflict of laws\u2019) in the specialized context of international corporate insolvency and restructuring. It provides an opportunity for students who are interested in corporate insolvency and restructuring at the domestic level to consider the legal problems that arise in insolvency and restructuring cases where the assets and creditors are in multiple jurisdictions. The module will consider domestic, regional, and international approaches that lawmakers have developed to promote international cooperation in cross-border insolvency cases, including instruments such as the European Union Insolvency Regulation and the UNCITRAL Model Law on Cross-Border Insolvency.", + "title": "Cross-Border Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5478", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with private international law (or \u2018conflict of laws\u2019) in the specialized context of international corporate insolvency and restructuring. It provides an opportunity for students who are interested in corporate insolvency and restructuring at the domestic level to consider the legal problems that arise in insolvency and restructuring cases where the assets and creditors are in multiple jurisdictions. The module will consider domestic, regional, and international approaches that lawmakers have developed to promote international cooperation in cross-border insolvency cases, including instruments such as the European Union Insolvency Regulation and the UNCITRAL Model Law on Cross-Border Insolvency.", + "title": "Cross-Border Insolvency Law", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5478V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Financial markets have been traditionally permeable to technological progress and technology has been an important driving force in the transformation of finance.\nNevertheless, the vertiginous pace of contemporary technological innovation, the multi-layered impact on the market (actors, activities, transactions) and the unpredictable effects of its application on a large scale, represent unprecedented challenges for financial regulators and supervisors. The aim of the course is to\nidentify these legal and regulatory challenges and discuss, compare, and propose possible policy options in establishing a framework conducive to innovation,\ncreativity, and social inclusiveness, without compromising the protection of interests and rights.", + "title": "Challenges of Emerging Technologies to Financial Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5479", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR4-3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Financial markets have been traditionally permeable to technological progress and technology has been an important driving force in the transformation of finance.\nNevertheless, the vertiginous pace of contemporary technological innovation, the multi-layered impact on the market (actors, activities, transactions) and the unpredictable effects of its application on a large scale, represent unprecedented challenges for financial regulators and supervisors. The aim of the course is to\nidentify these legal and regulatory challenges and discuss, compare, and propose possible policy options in establishing a framework conducive to innovation,\ncreativity, and social inclusiveness, without compromising the protection of interests and rights.", + "title": "Challenges of Emerging Technologies to Financial Regulation", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5479V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the course is to analyse the legal phenomenon through the notions of neoclassical economics. The course covers the main topics of the Economic Analysis of the law of obligations (i.e., of Torts law and of Contracts Law), with a special focus on contractual remedies. The course offers an in-depth analysis of the different doctrines that govern unforeseen supervening events and changes of circumstances in the common law and the civil law systems. Through the adoption of the economic analysis of law methodology, the course will shed light on the economic rationale behind such different doctrines.", + "title": "Economic Analysis of Private Law (Contract and Torts)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5480", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "LAW_SR5-5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the course is to analyse the legal phenomenon through the notions of neoclassical economics. The course covers the main topics of the Economic Analysis of the law of obligations (i.e., of Torts law and of Contracts Law), with a special focus on contractual remedies. The course offers an in-depth analysis of the different doctrines that govern unforeseen supervening events and changes of circumstances in the common law and the civil law systems. Through the adoption of the economic analysis of law methodology, the course will shed light on the economic rationale behind such different doctrines.", + "title": "Economic Analysis of Private Law (Contract and Torts)", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5480V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject explores the influence and potential of trusts law in the Asia-Pacific region. It begins by considering the history of trusts diffusion, how trusts law has been used to regulate customary and religious property-holding forms, and assesses the ways in which the trust has been (re)conceptualised in non-common law jurisdictions. It then examines the different uses of the trust in the region: in the family and commercial contexts, as well as a financial product. The subject also considers the reach of constructive and resulting trusts in the region. Finally, it will discuss trusts law\u2019s private international law perspective.", + "title": "Trusts Law in the Asia-Pacific Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5481", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "LAW_SR5-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This subject explores the influence and potential of trusts law in the Asia-Pacific region. It begins by considering the history of trusts diffusion, how trusts law has been used to regulate customary and religious property-holding forms, and assesses the ways in which the trust has been (re)conceptualised in non-common law jurisdictions. It then examines the different uses of the trust in the region: in the family and commercial contexts, as well as a financial product. The subject also considers the reach of constructive and resulting trusts in the region. Finally, it will discuss trusts law\u2019s private international law perspective.", + "title": "Trusts Law in the Asia-Pacific Region", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5481V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the law, institutions, and practices set up in Asia to facilitate political transitions. It examines the international and domestic legal frameworks and principles governing these transitional mechanisms as well as their critique. It studies the many pressing and conflicting needs of post-war societies or societies in transition and how these different needs are captured in transitional mechanisms, such as trials, truth and reconciliation commissions, and reparation schemes. Using Asian case studies (e.g. Timor Leste, Cambodia, Indonesia), this module will explore the challenges faced by societies undergoing political transition and the different measures adopted to address past injustices and facilitate transition.", + "title": "Transitional Justice in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5482", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the law, institutions, and practices set up in Asia to facilitate political transitions. It examines the international and domestic legal frameworks and principles governing these transitional mechanisms as well as their critique. It studies the many pressing and conflicting needs of post-war societies or societies in transition and how these different needs are captured in transitional mechanisms, such as trials, truth and reconciliation commissions, and reparation schemes. Using Asian case studies (e.g. Timor Leste, Cambodia, Indonesia), this module will explore the challenges faced by societies undergoing political transition and the different measures adopted to address past injustices and facilitate transition.", + "title": "Transitional Justice in Asia", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5482V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR5-3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces aircraft financing and the law, the documentation implementing such financing, \u201ctitle\u201d to aircraft and the unique features of title financing. It explores the anatomy of aircraft loan agreements, the types of collateral securing such loans, the cross-border characteristics of financing, insurance, the modular feature of engines and how Export Credit Agencies and capital markets provide financing. The role of Lease financing and Lessors is considered as alternative means for financing aircraft acquisition. Lastly, the course covers airline debt restructuring (following airline insolvencies during the pandemic) and the impact of international treaties, particularly the Cape Town Convention/Protocol.", + "title": "Aviation Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LLJ5483", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces aircraft financing and the law, the documentation implementing such financing, \u201ctitle\u201d to aircraft and the unique features of title financing. It explores the anatomy of aircraft loan agreements, the types of collateral securing such loans, the cross-border characteristics of financing, insurance, the modular feature of engines and how Export Credit Agencies and capital markets provide financing. The role of Lease financing and Lessors is considered as alternative means for financing aircraft acquisition. Lastly, the course covers airline debt restructuring (following airline insolvencies during the pandemic) and the impact of international treaties, particularly the Cape Town Convention/Protocol.", + "title": "Aviation Financing", + "faculty": "Law", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "LLJ5483V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LAW_SR4-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Experienced teachers from SCELSE and highly selected guest instructors both local and international, give lectures, interact in discussions and hold tutorials/hands-on session on the following topics: \n1) Emerging concepts of microbial physiology and ecology in biofilms context.\n2) Experimental systems and their design, statistical analyses and interpretation.\n3) Developments in systems biology \u2013 metagenomics, proteomics, metabolomics and systems biology.\n4) Applications on engineering processes, human health and the Environment.\n5) Academic research skills in discussions and presentations", + "title": "Fundamentals of Environmental Life Sciences Engineering", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "LSE6101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Study of biofilms in a variety of natural and engineered\nsystems. The emphasis will be on understanding unique\ncharacteristics and on critically evaluating old and new\nbiofilm literature. We will formulate and test working\nhypotheses regarding development of biofilms, spatial\nstructure (\u201carchitecture\u201d), existence of steady states, and\nthe determining factors for biofilm function as well as\nadhesion and detachment. Specific examples include\nquantitative characterization of processes occurring in\nbiofilm reactors for the treatment of water and wastewater.", + "title": "Biofilm Processes", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSE6201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Designed as a gateway for the Life Sciences Major, this module explores biological challenges faced by humankind today and how solutions are being developed. We will use three main case studies to illustrate current struggles and how distinct approaches from sub-disciplines of Biology contribute to providing solutions. The nature of scientific inquiry and concepts in genetics, ecology, and evolutionary biology will be explained via the case studies.", + "title": "Biological Challenges and Opportunities for Humankind", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM1111", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Friday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module that explores what a living thing is, the basics of life, and the science behind it. The course will introduce the chemistry of life and the unit of life. The question of how traits are inherited will be discussed and the field of biotechnology, including its applications and the ethical issues involved be will introduced. The diversity of life on earth will be explored, with discussions how life on earth possibly came about and how biologists try to classify and make sense of the diversity. The course will also introduce the concept of life functions from cells to tissues and from organs to systems. The concept of how organisms maintain their internal constancy and organisation of major organ systems will be discussed. The focus will be to introduce the unifying concepts in biology and how they play a role in everyday life.", + "title": "General Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM1301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Monday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Monday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Understanding animal behaviour awakens the individual to the complexity of daily phenomenon in the animal kingdom - how animals live and survive in their environment. Much of this occurs around us every day and everywhere we go. But the city-dweller lives in increasing isolation of animals and understands little of the world around them. This module will highlight behaviours such as learning, sociality, territoriality, predation and defense, courtship and communication, with examples from across animal diversity. How behaviors have evolved to fit specific ecological conditions will be examined. Students will gain understanding of and empathy for animals.", + "title": "Animal Behaviour", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM1303", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S2-03LAB7", + "day": "Monday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S2-03LAB7", + "day": "Monday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "All living organisms generate waste. The prehistoric waste generated by animals and humans gives us clues to past climate and living conditions. Today\u2019s waste generation by humans is higher than ever. This module examines the relationship between human and waste generation. It also study the various types of waste generated from current food production, households and industries and examine their impact on the environment. Various options will be explored to manage waste better in order to ensure environmental sustainability and to create business opportunities such that they can be made useful. Singapore\u2019s waste management issues will also be investigated.", + "title": "Waste and Our Environment", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM1307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biology Advanced Placement", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM1601", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers topics on (i) the patterns of inheritance, (ii) the molecular properties of genes and chromosomes, (iii) transcription and translation, (iv) genetic methods and technology, and (v) genetic analysis of individuals and populations. This will include an in-depth understanding of mendelian patterns of inheritance and variations that could occur due to multiple alleles, lethal genes, chromosomal variations, linkage, gene interaction and other genetic phenomena. Emphasis is placed on the understanding of the underlying molecular and biochemical basis of inheritance. Quantitative and population genetics will also be discussed with the emphasis of understanding the processes and forces in nature that promote genetic changes.", + "title": "Molecular Genetics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Thursday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "LT26", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Thursday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective is to provide the student with a firm and rigorous foundation in current concepts of the structure and functions of biomolecules in molecular cellular biology. These fundamental concepts form the basis of almost all recent advances in biological and the biomedical sciences. The lectures will introduce various cellular organelles as models to gain insights into how structures and functions of classes of biomolecules participating in important cellular processes.", + "title": "Fundamental Biochemistry", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7_LAB8", + "day": "Friday", + "lessonType": "Laboratory", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7_LAB8", + "day": "Friday", + "lessonType": "Laboratory", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Evolutionary biology covers the history of life on our planet and the processes that produced the multiple life forms of Earth. Topics include: the origins of life, the eukaryotic cell, and multicellularity; the generation of genetic variation and the sorting of that variation through random processes and through natural and sexual selection; the origin of new traits, new life histories, and new species; the origins of sex, sociality, and altruism; the evolution of humans; and applications of evolutionary biology to solving modern-day problems.", + "title": "Evolutionary Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the theory and practical applications of techniques used in molecular biology and protein biochemistry. Factual knowledge in recombinant DNA techniques, such as RNA isolation, reverse transcription, polymerase chain reaction, recombinant DNA construction and recombinant protein expression; and in protein purification, such as liquid chromatography, polyacrylamide gel electrophoresis and western blotting, will be integrated with laboratory practice.", + "title": "Laboratory Techniques in Life Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2191", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-03LAB1", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4_LAB9", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7_LAB8", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4_LAB9", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-03LAB1", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7_LAB8", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a basic introduction to human structure and function, comprising gross anatomy integrated with microscopic anatomy. Histological organization of the primary tissues: epithelial, connective, muscular and nervous tissues will also be covered. Clinical relevance of the anatomical structures will be discussed.", + "title": "Human Anatomy", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD10-01-01", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comprehensive understanding of sub-cellular structures, functions and interactions in unicellular and multi-cellular systems. Emphasis is on cellular functions. Topics include structures and functions of organelles, organelle biogenesis (including organelle inheritance and import of proteins into organelles), intracellular protein trafficking, the cytoskeleton, and cell movements. In addition, students will be introduced to the current concepts of intercellular and intracellular signalling, molecular basis of cell proliferation and apoptosis.", + "title": "Cell Biology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Friday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Over the past 30 years, there has been an explosion in the amount of quantitative biological data. This is due to advances in imaging, genetics, and sequencing. This module introduces methods necessary for understanding and analysing such quantitative biological data. We use systems from across biology, from photosynthesis to human sleep cycles, to demonstrate the power and applicability of these approaches. We introduce the mathematical and physical concepts necessary through the course. Thismodule is suitable for all Life Sciences students regardless of background in the physical sciences.", + "title": "Introduction to Quantitative Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2234", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to the concepts, tools and techniques of bioinformatics, a field of immense importance for understanding molecular evolution, individualized medicine, and data intensive biology. The module includes a conceptual framework for modern bioinformatics, an introduction to key bioinformatics topics such as databases and software, sequence analysis, pairwise alignment, multiple sequence alignment, sequence database searches, and profile-based methods, molecular phylogenetics, visualization and basic homology modelling of molecular structure, pathway analysis and personal genomics. Concepts emphasized in the lectures are complemented by hands-on use of bioinformatics tools in the practicals.", + "title": "Introductory Bioinformatics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2241", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the science of ecology and its role in understanding environmental processes. It covers both the major concepts and their real-world applications. Topics will include models in ecology, organisms in their environment, evolution and extinction, life history strategies, population biology, ecological interactions, community ecology, ecological energetics, nutrient cycling, landscape ecology.", + "title": "Ecology and Environment", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2251", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S2-03LAB7", + "day": "Monday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S2-03LAB7", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to inculcate in students an understanding for the need of a diverse and intricate balance of nature and the morality of conservation. It involves an introduction to the diversity of major groups of living organisms, and the importance of maintaining diversity in natural ecosystems. Emphasis is on the need for conservation of biodiversity to maintain a balance of nature. The course will highlight to the students the biodiversity in the major habitats and vegetation types in and around Singapore.", + "title": "Biodiversity", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-03LAB7", + "day": "Friday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-03LAB7", + "day": "Friday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to contemporary plant biology. It focuses on the flowering plants (angiosperms), one of the most successful plant groups that sustains all life on earth, and examines how they are organized, grow, and respond to the environment. A major theme that the module will highlight is that plant growth is highly dynamic \u2013 plants control growth and development through integrating intrinsic and external signals to best adapt to the changing surroundings. The concepts and techniques of gene manipulation for studying plants, as well as their applications in plant biotechnology, will also be discussed.", + "title": "Fundamentals of Plant Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2254", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S1A-04LAB3", + "day": "Monday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1 + ], + "venue": "S2-0414", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Basic UROPS in Life Sciences I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Life Sciences I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2288R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Basic UROPS in Life Sciences II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Life Sciences II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2289R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an overview of microbial diversity, the biological properties of microbes, methods and approaches in the study of microbiology. At the end of the module, students should have fundamental knowledge of microbiology, including tools in the study of cells and microbes and the awareness of biosafety, and students should be excited by the microbial world and wishing to know more.", + "title": "Fundamental Techniques in Microbiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2291", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD4_LAB9", + "day": "Monday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD4_LAB9", + "day": "Monday", + "lessonType": "Laboratory", + "size": 82, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Thursday", + "lessonType": "Lecture", + "size": 82, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This series of topical seminars will introduce students to the latest innovations and developments in a range of industries. Leading technical experts will be brought in to share their insights and advise students on the knowledge, skills and abilities that are needed to enter and succeed in each field. Complementary field trips will allow students to see how theory is applied in industrial context. Workshops will provide the opportunity to develop and apply industry-valued transferrable skills, such as the ability to prioritize urgent and important work, and practise stakeholder management. This will culminate in an actionable career development plan.", + "title": "Life Sciences Industry Seminar", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LSM2301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Computational thinking is becoming increasingly important across the life sciences, from molecular and cell biology to evolution and ecology. This module will introduce students to computational thinking and will focus on how to solve biological problems using computational approaches. How can you become a computational thinker? How do computers represent and solve problems? How can computers and computational thinking be used to solve problems of relevance to biology? The applied component of the module will teach the basics of programming in R and will focus on biological problems including population growth modelling, epidemic modelling, and analysis of biological data.", + "title": "Computational Thinking for Life Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM2302", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 1ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LSM2310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "LSM2312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "LSM2313", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the philosophy, principles and processes of life sciences research and communication. It aims to equip students with the essential knowledge that complements the hands-on research training which students undertake for UROPS and Honours projects\u2019 requirements. The module covers the essentials of scientific research including importance and pitfalls of problem formulation and hypothesis generation; essentials of experimental designs; practical tips and pitfalls during experimental execution; good and bad practices of data collection, analysis and evaluation; form and function of scientific communication; and research ethics.", + "title": "Research and Communication in Life Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Overview of the biosynthesis and catabolism of carbohydrates, proteins, lipids and nucleic acids in the context of human health and disease. Emphasis on the integration and regulation of metabolic pathways in different tissues and organs. Principles of bioenergetics and mitochondrial energy metabolism, free radicals, enzyme deficiencies in metabolic disorders will also be covered.", + "title": "Metabolism and Regulation", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide basic principles of receptor pharmacology and of pharmacokinetics with emphasis on molecular and cellular mechanisms of action, clinical uses and adverse effects using lectures, tutorials and practicals. The lecture topics will start with the classical drug receptor theory followed by pharmacokinetics and molecular pharmacology of drug receptors and their regulation including receptor-mediated signal transduction and membrane ion channel function. Autonomic pharmacology (adrenergic and cholinergic) will be introduced. The module also focuses on the pharmacology of autacoids, non-steroidal anti-inflammatory agents, corticosteroids, immunosuppressants, anti-asthma drugs, and anti-arthritic drugs.", + "title": "Fundamental Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-07-01A", + "day": "Monday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-07-01A", + "day": "Monday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0435", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-07-01A", + "day": "Monday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The heart and lungs are central to the maintenance of homeostasis in the human body by bringing essential materials to and removing wastes from the body?s cells. This module covers the basic physiology of the cardiovascular and pulmonary systems using exercise to illustrate the onset of homeostatic imbalances and the body's responses to restore homeostasis. Students will be able to identify the benefits that exercise imparts to cardiorespiratory fitness and overall health.", + "title": "Human Physiology: Cardiopulmonary System", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "LT28-01-01", + "day": "Friday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "LT28-01-01", + "day": "Friday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers several human physiological systems using hormonal control of homeostasis as a basis for understanding normal function and health. The student will be able to appreciate the interactions occurring amongst the endocrine, digestive, renal, and reproductive systems, and be able to relate them to the body's biological rhythms (or clocks), growth, responses to stress, and reproductive processes. Major Topics Covered: endocrine system, central endocrine glands, peripheral endocrine glands, digestive system, digestive processes, energy balance, urinary system, fluid processing, fluid balance, reproductive system, male reproductive physiology, female reproductive physiology.", + "title": "Human Physiology - Hormones and Health", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3214", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Tutorial", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide fundamental knowledge about how neuronal signaling and its higher functions, such as encoding and retrieval of memory, occur in our brain. Learning and memory mechanisms are conserved in all organisms. This module covers topics including the ionic basis of resting and action potentials, molecular biology of ion and TRP channels, ion channelopathies, and the auditory system. It also focuses on neurotransmission with particular emphasis on the glutamate receptors and neuropharmacology. In addition it touches the cellular and molecular basis of learning and memory, and energy utilization in the brain.", + "title": "Neuronal Signaling and Memory Mechanisms", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CELS-04-01", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on key events that take place in different stages of vertebrate nervous system development including neural induction, neurogenesis, glial biology, neuronal growth and polarity, axonal guidance, synapse formation, and regeneration. Pathological states such as muscular dystrophy, spinal cord injury, Parkinson\u2019s disease, and other neurodegenerative diseases will be studied, both in terms of understanding the deficits as well as examining potential solutions to improve the outcomes of these neuronal diseases. Latest findings will be discussed, allowing students to learn the current state of research in developmental neurobiology.", + "title": "Neuronal Development and Diseases", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3216", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the physiological changes during ageing. Cardiovascular disease is a leading cause of mortality globally and sarcopenia is a major cause of disability and frailty among older adults, which decrease healthy lifespan. We will review the mechanism underlying the functional deterioration of system ageing. Moreover, we will also discuss the emerging evidence to explain how motor neuron and immune cells might contribute and respond to system ageing.", + "title": "Human Ageing", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on drugs used to treat cardiovascular and pulmonary diseases. It provides an understanding of the pharmacological basis of cardiovascular therapeutics, and addresses the pharmacological properties of clinically useful drugs for cardiovascular and pulmonary systems. This module demonstrates the scientific basis of the therapeutic applications of these drugs, and these foundation principles will enhance understanding of safe and rational use of drugs in cardiovascular and pulmonary diseases.", + "title": "Cardiopulmonary Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the pharmacological treatment of nervous system. It covers the actions of drugs and how they affect cellular function in the nervous system, and the neural mechanisms through which they influence behavior.\nExamples of drugs used to treat diseases and disorders of the nervous systems will be discussed.", + "title": "Neuropharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3219", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 14, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 44, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the structure, organization and function of genes and genomes in both prokaryotes and eukaryotes (e.g. DNA topology, hierarchy of packaging of DNA in chromosomes and relationship to gene activity and genome dynamics). The functional roles of DNA regulatory cis-elements and transcription factors involved in gene expression will be examined. The molecular events in the control and regulation of transcription; post-transcriptional modifications and RNA processing; temporal and spatial gene expression will be examined in detail. The cause and/or effect of dysfunction of gene expression in diseases will be discussed.", + "title": "Genes, Genomes and Biomedical Implications", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A working knowledge of human neuroanatomy is essential for many fields of biomedical science, practice and research. The purpose of this module is to cover the basic functional neuroanatomy of the human nervous system, including overview, neurohistology, peripheral nervous system, autonomic nervous system and central nervous system. It takes a regional-systemic approach to understanding human nervous system structure and function - that parallels the core knowledge used in clinical practice. Emphasis is placed on the unique anatomical features and neurochemistry of different parts of the central and peripheral nervous system, while demonstrating their synaptic connectivity and interrelatedness of their functions.", + "title": "Human Neuroanatomy", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 51, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 51, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides the central concepts of immunology and the foundation for understanding how immunity functions. The subjects of innate immunity and haematopoiesis introduce the origin and role of different cell types in immunity. The mechanisms of how the body protects itself from disease are explored in relation to T and B cell biology, antibodies, cytokines, major histocompatibility complex and antigen presentation. Other topics include hypersensitivity, immunodeficiencies, tolerance, autoimmunity, resistance and immunization to infectious diseases.", + "title": "Immunology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 2, + 6, + 8, + 10, + 12 + ], + "venue": "MD4_LAB9", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 10, + 12 + ], + "venue": "MD4_LAB9", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD4_LAB9", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students primarily with in-depth knowledge of the basic molecular mechanisms of common human diseases, such as cancer, atherosclerosis, obesity, diabetes, and muscle wasting conditions; and to prepare them for future translational research. There will be extensive discussion on results from current cutting-edge research. Since the focus of this module is on the current molecular mechanisms underlying the pathogenesis of each disease, prospective students should have basic knowledge of molecular and cell biology, genetics and general human physiology before registering for this module.", + "title": "Molecular Basis of Human Diseases", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD7_LAB8", + "day": "Monday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2 + ], + "venue": "MD7-02-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the application of advanced technologies in molecular biology to the study of microorganisms, there are many implications on how we can identify and detect microbes, as well as treat and prevent diseases caused by both existing and newly emerged pathogens. In this course, the students will be taught the molecular principles of the physiological processes involved in the life cycle of different types of microbes and how these affect human health and disease.", + "title": "Molecular Microbiology in Human Diseases", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD4_LAB9", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the growing aging population and number of immunocompromised patients, fungal infections are increasingly becoming relevant. This module will re-examine Koch\u2019s postulates in relation to the roles opportunistic and primary fungal pathogens play in mycoses. Issues surrounding the molecular, physiological and biochemical aspects of fungal cells that make them successful microbial pathogens will be discussed. Key mechanisms of anti-fungal resistance in relation to challenges facing the discovery of new therapeutics will be examined. Students will have the opportunity to design and conduct a typical drugsusceptibility screen and drug discovery process.", + "title": "Medical Mycology and Drug Discovery", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3226", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD7_LAB8", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2 + ], + "venue": "MD7-02-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores virology, which is the study of viruses\nthat infect different forms of living organisms. It introduces\ngeneral concepts related to the viral structure, host\nspectrum and replication. We will elaborate how viruses\nare identified, how viruses go \u201cviral\u201d and how we can live\nwith viruses. The impacts of viral diseases on human\nhealth, food security and environment will be discussed.\nThe course also includes new developments in how\nviruses can be used as vectors for drug delivery,\nnanomaterials and bio-control agents. Students will have\nchances to practice virus culture, isolation and infectivity\nassay.", + "title": "General Virology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S1A-04LAB3", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In nature, microbes exist as multispecies communities (microbiota) interacting with each other and also the environment/host. This typically occurs in the context of biofilms where organisms are in close proximity within a protected environment of the biofilm matrix. This module primarily explores the human microbiome and its effect on development and disease, and explore the role of pre- and pro-biotics in health. Mechanistic insights into microbial communities can also be gained through more controlled studies focusing on experimental biofilms. Appreciating the biology of biofilms allows us to understand the context that both human and environmental microbiota operate in.", + "title": "Microbiomes and Biofilms", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD4_LAB9", + "day": "Monday", + "lessonType": "Laboratory", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a strong foundation in the study of protein structure and function. The following topics that will be covered: structures and structural complexity of proteins and methods used to determine their primary, secondary and tertiary structures; biological functions of proteins in terms of their regulatory, structural, protective and transport roles; the catalytic action of enzymes, their mechanism of action and regulation; various approaches used in studying the structure-function relationships of proteins.", + "title": "Protein Structure and Function", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD7_LAB8", + "day": "Monday", + "lessonType": "Laboratory", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1 + ], + "venue": "MD7-02-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Principles of Microbiology, with emphasis on the properties, functions and classification of the major classes of microorganisms, especially bacteria, fungi and viruses. Understanding microbial activities and their influence on microbial diseases, industrial applications, ecology, food and water quality.", + "title": "Microbiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3232", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD4_LAB9", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD4_LAB9", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will showcase and examine embryogenesis, starting from fertilisation to birth in the case of animal development; and to germination, growth and differentiation in plants. Students will be exposed to concepts, principles and mechanisms that underlie development in plants and animals. Different organism models will be studied to demonstrate the rapid advances in this field of life sciences.", + "title": "Developmental Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Growth and form are fundamental to all living organisms, crucial to health and diseases. Development in imaging methods and tools has transformed biological and biomedical sciences. This module will introduce basic concepts in imaging and their applications. The major topics will include basic optics, light and electron microscopy, fluorescence and related methods. Introduction of each imaging technology will be linked with a set of biological problems of fundamental interests and biomedical implications.", + "title": "Biological Imaging of Growth and Form", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-03LAB2", + "day": "Friday", + "lessonType": "Laboratory", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-03LAB2", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Friday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concept of epigenetics, the relationship between the genome and the epigenome, and the translational aspects of epigenetics in relation to human health and diseases. The topics that will be covered include epigenetic variation, genomic technologies to study epigenetics, epigenetics in development, epimedicine, epigenetics in human diseases and epigenetics in ageing.", + "title": "Epigenetics in Human Health and Diseases", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3235", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From zebra stripes and rose petal spirals to swarming bird flocks, the biological world is full of mesmerizing patterns. How do these patterns form, and what is the underlying mechanism that explains these seemingly unrelated phenomena? This module takes an interdisciplinary approach to introduce how complex biological phenomena can emerge from simple rules. Through interactive lectures, guided reading and hands-on tutorials and simulations, students will learn to appreciate how basic concepts like feedback and robustness generate biodiversity across multiples scales.", + "title": "Pattern Formation and Self-organisation in Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1 + ], + "venue": "S2-0415", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces practical, real-world genomic data analysis: when a genomic experiment is performed, and bioinformatics analysis is required, how is it done? In \u201cData Access and Integration\u201d, students will learn how to distinguish databases and integrate data. In \u201cGenomics and NGS\u201d, students will learn practical analysis of microarray and next-generation sequencing (NGS) data. Students will learn how to map sequencing data to genomes in a variety of problem settings and interpret results. In \u201cIntegrative Analysis\u201d, students will learn how approaches including pathway analysis and analysis of gene regulatory networks can add power to interpretation of genomic experiments.", + "title": "Genomic Data Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S2-04LAB5", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the underlying principles and wide-ranging industrial,\nenvironmental, pharmaceutical, and biomedical applications of microbiology. The objectives are (a) to gain an understanding of the role of microorganisms for biotechnology applications in the fields of medicine, agriculture, organic chemistry, synthetic biology, public health, biomass conversion, and biomining; and (b) to review advances in genetics and molecular biology of industrial microorganisms, enzyme engineering, environmental microbiology, food microbiology, and molecular biotechnology. A particular focus will be on the meaning and impact of microbiology on human health and the development of new therapeutic approaches.", + "title": "Translational Microbiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3242", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Thursday", + "lessonType": "Lecture", + "size": 47, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD4_LAB9", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 47, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a physical background of macromolecular conformations and a description of biophysical techniques for studies of structure, dynamics and interactions of biomolecules. Topics will include conformation of biological macromolecules, protein folding, protein-ligand interaction, biological membrane, and biophysical techniques.", + "title": "Molecular Biophysics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Traditional genetic engineering has been relatively successful for modern applied biotechnology, however its limitations in direct manipulation of genome is apparent. For this, genome engineering has emerged as the next wave in biotechnology. Genome engineering is a direct and precise approach to whole-genome design and mutagenesis to enable a rapid and controlled exploration of an organism's phenotypic landscape for biotechnology. Key advances included de novo genome synthesis, and genome-editing technology. This module will focus on how genome engineering is used together with existing or new applications of biotechnology to tackle global problems ranging from human and animal health to agriculture.", + "title": "Molecular Biotechnology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3244", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S1A-04LAB3", + "day": "Monday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the roles of RNA, coding and in particular non-coding (ncRNA), in regulation of gene expression, host\u2013pathogen interaction, and catalysis as well as their applications in research, diagnosis, and therapy of human diseases. The topics cover the \u2018RNA world hypothesis\u2019, the relation between structure and function of RNA, the mechanisms of regulation and\ndysregulation of gene expression by ncRNAs, selection and design of functional RNAs, features and usage of ncRNAs, the role of RNA in early stage pharmaceutical developments, and RNA-based drug development.", + "title": "RNA Biology and Technology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3245", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 47, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 47, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 47, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The ability to rationally engineer living cells has been a long anticipated goal dating back for more than half a century. With the advent of DNA synthesis and genome engineering tools, biological systems can now be systematically designed for a myriad of industrial applications including disease prevention, biochemicals production and drug development. This module aims to provide basic principles to the engineering of biology with emphasis on the design and construction of synthetic gene circuits in living cells. The module also discusses current and emerging applications driven by synthetic biology, and the socio-ethical responsibilities that are required of synthetic biologists.", + "title": "Synthetic Biology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3246", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Synthetic biology is the science of engineering biology, and is very much an experimental science. Building on the basic principles of synthetic biology introduced in the theoretical module LSM3246, this module aims to\nemphasize on the experimental techniques required for the design and construction of synthetic metabolic pathways and genetic circuits in living cells. The module also introduces advanced experimental protocols including\nCRISPR-Cas genome editing tools that are revolutionising fields in life and biomedical sciences.", + "title": "Practical Synthetic Biology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3247", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD7_LAB8", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objectives are to build on the students' foundation in evolutionary concepts and to advance their knowledge and skills related to comparative biology. The lectures present the theory of evolution as the unifying discipline in biology, and enhance the integrated understanding of four main themes: natural selection, palaeobiology, the tree of life and comparative genomics. Overall the module emphasises the importance and application of evolutionary biology for explaining a wide variety of phenomena in biology, from the history of life to genes, genomes and cellular processes.", + "title": "Evolution and Comparative Genomics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3252", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S2-03LAB7", + "day": "Monday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Aquatic environments make up >70% of the Earth\u2019s surface. They host a huge diversity of life and ecosystems, many of which are vital to man. Topics covered in this module include diversity and ecology of freshwater and marine habitats and organisms, the impacts of humans on these environments, and the conservation and management of these critical resources. Overall learning outcomes include an appreciation and understanding of aquatic habitats, their physical and biological properties and their associated ecosystems. The importance of both\nmarine and freshwater environments to Singapore will be highlighted.", + "title": "Ecology of Aquatic Environments", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3254", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S2-03LAB7", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to principles of terrestrial ecology. Major topics will include diversity and distributions of terrestrial environments, soils and nutrient cycling, animal-plant interactions [pollination, seed dispersal, herbivory], disturbance ecology and succession, energy flow and food webs, population biology, and fragmentation. The course will have a strong quantitative focus. The module will also cover ecological processes in rural (agricultural) and urban terrestrial environments.", + "title": "Ecology of Terrestrial Environments", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3255", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S2-03LAB7", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamentals of tropical horticulture, with emphasis on the situation in Singapore, a tropical garden city. Topics include plant growth and development and factors affecting them, pests and diseases and their control, growing media, plant nutrition, tropical urban horticulture of ornamentals, vegetable and fruit crops, and native plants, vertical and roof greening, turf grass management, landscape design, organic methods and impact of horticulture on conservation. Field trips, demonstrations, and projects will enable students to enjoy hands-on experience in cultivating plants.", + "title": "Tropical Horticulture", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3256", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S2-03LAB7", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1 + ], + "venue": "S2-0414", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Managing, analyzing, interpreting and displaying data to support-decision making has become a fundamental skill for environmental biology. This module will train students with the skills and knowledge to design and perform data analysis on typical problems in the areas of ecology, conservation and environmental sustainability. Students will learn the R language with an emphasis on spatial data, onthe-ground ecological data collection and geographic information systems. Students will use the collected spatial data to support environmental impact assessment and sustainability reporting.", + "title": "Applied Data Analysis in Ecology and Evolution", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3257", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the basic relationships between the diverse forms and functions in plants. Each plant group shares a common basic structural plan but contains many members that deviate from the basic plan in response to selection pressures from the environment. Knowledge of organismal biology is enhanced through selected topics in morpho-anatomical designs and functional adaptions.", + "title": "Comparative Botany", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3258", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S2-03LAB7", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "S2-0415", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of the diversity of fungi which include the mushrooms, yeasts, molds, rusts, and toadstools. Fungal symbionts such as lichens and mycorrhizae are also covered. Fungi are one of the four main eukaryotes on Earth (the other three being animals, plants and protists). Without fungi, decomposition and nutrient recycling will be severely impacted. Almost all land plants form symbiotic relationships with fungi which help the living plants absorb scant minerals such as phosphates and nitrates and to protect the hosts from diseases. Fungi are exploited for food, medicine, bioremediation and biotechnology.", + "title": "Fungal Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3259", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S1A-04LAB4", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "S2-0415", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Insects and other related terrestrial arthropod groups are the most diverse forms of life on earth. Insects are ideal models for studies in evolution, ecology, behaviour and the environment as the same body plan has been adapted to diverse functions, in almost all terrestrial environments, and in most human endeavour. This module will equip students with knowledge in insect dentification, phylogeny, ecology, beneficial and pestiferous interactions with humans, and methods for their control.", + "title": "Entomology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3265", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S2-03LAB7", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Birds are widely studied and constitute a model for many scientific disciplines from genetics to ecology. This module explores bird biology from an evolutionary perspective. Topics include: (1) birds\u2019 dinosaur origins; (2) present-day diversity with emphasis on Asian bird families; (3) evolutionary processes that may have led to avian flight, small genome size and other avian traits; and (4) challenges birds face in Earth\u2019s modern extinction crisis. This module is suitable for students passionate about biological processes ranging from organismic evolution at the molecular level to broad ecological and biogeographic contexts.", + "title": "Avian Biology and Evolution", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3266", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S2-03LAB7", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth coverage of the relationships that organisms have with each other and with the environment. Key concepts in organismal interactions, illustrated with examples from general diverse animals and ecological systems, to ultimate and proximate explanations of animal interactions and other life history characteristics, will be covered. Students will be given the opportunity to assimilate and critically evaluate contemporary literature on relevant current issues. Experimental studies will be designed, proposed and carried out by students to improve the understanding of animal behaviour and to appreciate the significance of behaviour in ecology as well as other related disciplines.", + "title": "Behavioural Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3267", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S2-03LAB7", + "day": "Monday", + "lessonType": "Laboratory", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to promote an understanding of Global Change Biology from a multidisciplinary approach. Students will discuss and explore selected themes of prevailing environmental, biological, socio-economical and technological issues and solutions through lectures based on literature reviews and documentaries of relevant themes, field trips and group projects.", + "title": "Global Change Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3272", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S2-03LAB7", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Singapore is a highly urbanized small tropical island country with reduced pristine lowland rainforests and marine intertidal habitats. In comparison, sub-tropical Taiwan is larger and has numerous unspoilt habitat types. Using a variety of field techniques, students will learn about organismal ecology and biodiversity, from intertidal marine habitats (Singapore) to lowland (Singapore) and montane (~3000m; Taiwan) tropical forests. In view of environmental and climate change (i.e. sea level rise), students will appreciate the significance of field techniques and understand the fragile nature of these habitats and their inhabitants.", + "title": "Eco-Biodiversity Field Techniques in Taiwan & Singapore", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Advanced UROPS in Life Sciences I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Life Sciences I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3288R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Advanced UROPS in Life Sciences II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Life Sciences II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM3289R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LSM3310", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students from Cohorts AY2020/2021 and before, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "LSM3311", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 16-20 weeks during regular semester. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "FOS Undergraduate Professional Internship Programme 3S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "LSM3312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduates students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 3S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "LSM3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Undertake a year-long research project and submit a written thesis for examination.", + "title": "Honours Project in Life Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "LSM4199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Biomedical science is the spectrum of Life Sciences that addresses human health and diseases. From genetics to metabolism, developmental biology to ageing, neurobiology to physiology, these key topics interplay to build up our understanding of the human body and how it responses to internal disruptions and external disturbances especially in disease conditions. This module puts a focus on selected topics in biomedical science with strong emphasis on the techniques used to study metabolic disorders and ageing, and how the human brain faces both challenges.", + "title": "Topics in Biomedical Science: Brain, Metabolism, Ageing", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "S2-0415", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This introductory course is aimed at providing the basic principles and modern concepts of toxicology ? adverse effects of chemicals on humans and the biosphere. The students will understand how to make quantitative risk assessments from exposure to hazardous compounds, how to extrapolate from animal data, and how to link adverse effects at the molecular level to overall toxic responses in humans. Lecture topics include health hazards from drugs, naturally occurring toxins, industrial chemicals, or environmental toxicants; toxicokinetics and toxicodynamics; cellular and molecular mechanisms of toxicity; organ-selective toxicity; and safety evaluation of drugs and other chemicals. The general concepts will be illustrated with a number of both classical and highly topical examples.", + "title": "Toxicology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the scientific bases for all aspects of human variability in clinical responses to drugs and other xenobiotics. The course will provide both the theoretical and technical know-how to conduct and interpret simple studies relating to intraindividual, interindividual as well as interpopulational differences in drug responses.", + "title": "Pharmacogenetics and Drug Responses", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary goal of this module is to understand how (a) neurons, assembled into circuits, mediate behavior and (b) pathophysiology of neurons leading to dysfunctional cellular and molecular processes and behavior. This course draws on basic knowledge of the cell biology and physiology of neurons.", + "title": "Systems Neurobiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "S14-0619", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 9 + ], + "venue": "S13-M-08", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 75 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the general principles of\n\ndrug actions that underpin their therapeutic applications\n\nagainst cancers, from conventional (non-specific)\n\nchemotherapy to target-specific drugs. It will provide details of\n\ndrugs used in specific cancer types, ranging from those with\n\nproven efficacy in clinics (e.g. Gleevec) to experimental agents\n\nin trials. Conceptual and theoretical targets (e.g. RNAi and\n\ngene therapies) will also be introduced.", + "title": "Cancer Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module describes how the human body responds to exposure and exercise in environmental extremes such as hypoxic and hyperbaric conditions, thermal stressors, microgravity and trauma. Latest research findings, including some of the controversial topics, will be presented and discussed. Students will understand what the physiological changes are under extreme conditions and how acute and chronic adaptations occur in response to these stresses. This will allow students to appreciate how the human body adapts to changing environments.", + "title": "Extreme Physiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4215", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD9-01-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Nutrients are essential for sustenance. Nutrients and metabolites have a deep impact on cellular response and adaptation at the genetic, epigenetic and signalling level and vice versa. Nutrients also have an effect on intestinal microbiota, which in turn alters the absorption and utilization of nutrients. This module will cover interactions between nutrients and genes, epigenetics, cell signalling and microbiota. Molecular approaches to conduct nutrition related research would be discussed.", + "title": "Molecular Nutrition and Metabolic Biology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "MD7-02-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Populations around the world are rapidly ageing and it is important to understand the functional decline in ageing populations. Functional age is defined as a combination of chronological, biological and psychological ages. Molecular processes governing ageing will be covered during the first half while the second half will be on societal perception, burden of disease, healthy ageing interventions and ageless society. The ageing process will be explained based on the experimental and epidemiological studies. This module will integrate biology and sociology of ageing which will provide avenues for better understanding of ageing in a society.", + "title": "Functional Ageing", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4217", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The revolutionary advances of modern biotechnology and biomedical science have had significant impacts on how a drug is discovered and developed. This module focuses on the contributions of biotechnology to the advancement in drug discovery and development by exploring how genes, proteins and cells are transformed into biotherapeutic drugs. Topics covered include recombinant protein and peptide drugs, antibody and nanobody therapeutics, DNA and siRNA drugs, cell therapeutics, new technology in vaccine generation and cancer vaccines, diagnostics-based targeted therapeutics (theranostics), as well as how the omics technology (genomics, proteomics and metabolomics) changes drug discovery.", + "title": "Biotechnology and Biotherapeutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the stages that a drug that is developed for clinical use goes through before it is marketed: discovery/synthesis, preclinical studies, clinical drug trials, registration and post-market surveillance. The different phases of clinical drug trials and the guidelines for ethics and good clinical practice will be discussed. Students are also divided into groups to design clinical trials. At the end of the course the students will have an overview of the processes involved in bringing a drug from the laboratory to the market.", + "title": "Drug Discovery and Clinical Trials", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This objective of this course is to provide students with a current and up to date view of immunology. Breakthrough areas will certainly vary from year to year, but the broad subject matter will remain. Among the highly competitive areas of immunology research focuses on innate immunity, dendritic cell biology, antigen processing and presentation, lymphocyte development and differentiation, induction of tolerance, mechanism of autoimmunity and allergy, and vaccine development.", + "title": "Advanced Immunology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "MD4-02-03E", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2 + ], + "venue": "MD7-02-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An advanced course in the study of infectious diseases of man with emphasis on new and emerging infections as well as those of major clinical/economic importance. Core topics include understanding the principles and practice of Medical Microbiology, the nature and emergence of antimicrobial resistance, changing epidemiology of infections and laboratory diagnosis using classical diagnostic techniques and current molecular approaches. Seminars will be conducted as team presentations to explore current topics on infectious diseases in depth. A strong practical component is included.", + "title": "Advances in Antimicrobial Strategies", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4_LAB9", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "S14-0619", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the role of free radicals and antioxidants in human health and disease, with a focus on molecular and cellular aspects. Topics covered include free radical chemistry, antioxidant defences, their role in normal metabolism, cardiovascular and neurodegenerative diseases, cancer and the ageing process. At the end of this module students should be able to evaluate critically current literature in this area.", + "title": "Free Radicals and Antioxidant Biology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended to provide a good foundation and stimulate students\u2019 interest in specialized topics in Genetics and Genomics related to translational research. The module will provide students with knowledge of current practices in Genetic Medicine. Students will also know how gene identification, diagnostic and therapeutic strategies are formulated and performed. They will also be expected to show how to translate new genetic and genomic discoveries into novel diagnostic and therapeutic strategies. Major topics covered are gene identification, genetic diagnosis, and gene therapy. Ethical, legal, and social issues (ELSI) in genetic medicine will also be covered.", + "title": "Genetic Medicine in the Post-Genomic Era", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2 + ], + "venue": "MD7-02-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at providing an in-depth knowledge in the field of host-pathogen interactions, i.e how the immune system deals with pathogens, and how the pathogens deal with the host\u2019s immune system. An introductory lecture\nseries covers the basics in microbiology (bacteriology, virology, parasitology), immunology, vaccinology, and general principles of host-pathogen interactions. Selected diseases illustrate host-pathogens interactions along with\nthe consequences for vaccine and drug design. The following set of lectures covered by clinicians and professionals focus on patient management, field study, as well as safety aspects when working with pathogens in a research lab. Tutorials are broken into \u201cjournal club\u201d, \u201carticle write-up exercise\u201d and \u201cproblem-based study\u201d and are directly related to the topics developed during the lectures.", + "title": "Infection and Immunity", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "MD4-02-03E", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide a detailed and critical introduction in the biology of stem cells and regenerative medicine. Students will investigate the origin of embryonic and adult stem cells and learn biological concepts relating to pluripotency, self-renewal, transdifferentiation, reprogramming and regeneration. The cell-fate determination and differentiation of selected types of cells, with a focus on their potential biological and medical applications, will be presented. Specialized topics on cancer stem cells, wound healing and tissue regeneration will provide a glimpse of how mankind's future could be further shaped.", + "title": "Stem Cell Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Experimental models including animal and cellular models are pivotal for the study of human diseases and development of therapeutics. They help to characterize disease pathophysiology, evaluate the mechanism of action of existing drugs, discover and validate new drug targets and candidates, establish pharmacodynamic/pharmacokinetic (PK/PD) relationships, estimate clinical dosing regimens and determine safety margins and toxicity. Recent advancement of genomic and gene editing technology facilited the establishment of more disease models that can closely mimic human diseases, including diseases that involve environmental factors. In this module, we will discuss the technology, application as well as limitations of the current experimental models.", + "title": "Experimental Models for Human Disease and Therapy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "S2-0415", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S1A-04LAB3", + "day": "Friday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Toxins are thought as villains as they cause death and debilitation. In reality, they have contributed more to improving our lives than cause death. This module will introduce the contributions of toxins to our knowledge in biomedical and pharmacological fields. Toxin research has helped in understanding molecular mechanisms of a number of processes such as neurotransmission, blood coagulation and platelet aggregation. Toxins have been useful in the development of therapeutic agents, diagnostic reagents and research tools. The module will examine the recent advances and future prospects in toxin research.", + "title": "Therapeutic and diagnostic agents from animal toxins", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4229", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overall view on the structure determination of protein molecules, protein complexes, protein ? DNA complexes and viral assemblies. Topics will include the theory and practice of the three major methods ? electron microscopy (EM), nuclear magnetic resonance (NMR) and X-ray crystallography.", + "title": "Structural Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4231", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "S2-0415", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Technological advances allow us to study and modulate various cellular processes generated from the dynamic remodeling of cytoskeleton in cells, and explore the roles and interplay of mechanical forces and biochemical signaling on how they migrate the cell, mediate intracellular trafficking and eventually move our body. This module explores the mechanism of cytoskeleton dynamics and apply it to the process of cell movement and intracellular trafficking, which are important for our body physiology such as skeletal muscle performance. Emphasis will be placed on understanding the cellular and molecular mechanisms that lend themselves to experimental manipulation and for future therapeutic intervention.", + "title": "Advanced Cell Biology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4232", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to mechanobiology, an emerging field of life sciences that explores mechanical regulation and implications underlying numerous biological events from prokaryotes to higher organisms. It covers regulation of cell functions by cytoskeletal networks, mechanics of movement of tissue/cell/sub-cellular organelle, cellular/molecular force-sensing, mechanical modulation of biochemical signaling, physical landscapes of peri-/trans-/intra-nuclear events including transcription, and mechanical control of multicellular living organization. It also refers to physical and engineering aspects of physiological or pathological backgrounds of human health and diseases. In addition, students learn cutting-edge technologies to dissect mechanical/physical aspects of cellular/molecular functions.", + "title": "Mechanobiology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4234", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop an understanding of the relationship between physico-chemical constraints that underlie chromosome organization and its impact on regulating genetic information within the 3D nuclear architecture. In addition, mechanisms of nuclear mechanotransduction and its coupling to mechanofeedback genetic circuits during differentiation, development and in diseases will be discussed.", + "title": "Nuclear Mechanics and Genome Regulation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module develops the foundations of human microscopic anatomy essential for research or clinical applications. It covers the visualization of biomolecules in tissues of the body. Interpretation of images occurs in the context of knowledge about the normal microscopic anatomy of different tissues and organs of the human body. Suitable clinical problems will be introduced throughout the course to show the application of scientific knowledge.", + "title": "Human Microscopic Anatomy", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 51, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Thursday", + "lessonType": "Lecture", + "size": 51, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce selected topics on functional genomics. Areas covered include : the assignment of functions to novel genes following from the genome-sequencing projects of human and other organisms; the principles underlying enabling technologies: DNA microarrays, proteomics, protein chips, structural genomics, yeast two-hybrid system, transgenics, and aspects of bioinformatics and its applications; and to understand the impact of functional genomics on the study of diseases such as cancer, drug discovery, pharmacogenetics and healthcare.", + "title": "Functional Genomics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD7-02-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will familiarize students with the technologies that can be used to produce and engineer various proteins for basic biological research and biotechnology applications. The fundamental principles for manipulating protein production as desired and the common expression systems will be presented. The emphasis will be on the experimental strategies and approaches to improve protein properties and to create novel enzymatic activities. The topics include gene expression and protein production systems, uses of gene fusions for protein production and purification, directed molecular evolution and DNA shuffling, and engineering of proteins and enzymes for improved or novel properties. Some specific examples in protein engineering will be highlighted.", + "title": "Protein Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the understanding of processes that regulate cell growth and proliferation, and the intricate mechanism(s) that result in abnormal proliferation and oncogenesis. Molecular basis of immortalization and the acquisition of the neoplastic phenotype, namely oncogene activation, immune evasion, potential for local and distant spread, and resistance to cell death etc. will be discussed. Role of DNA damage/repair, telomere/telomerase in genome instability and tumourigenesis will be examined. A brief session on target therapies including gene therapy approaches will also be included. Tumour immunology role of inflammation in tumours will be discussed.", + "title": "Tumour Biology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4243", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 56, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Lecture", + "size": 56, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Oncogenes are key drivers of cancer development. They do so by deregulating signalling cascades that control biochemical events such as transcription, protein turnover, metabolism, and cellular activities such as cell cycle, cell adhesion, movement and invasion through extracellular matrix. The module will primarily focus on basic concepts and central dogmas associated with each major signalling\npathway. Many oncogenes have been discovered in the past few decades and new ones continue to be unearthed. In addition to well-established oncogenes, the module will cover scientific knowledge on newer oncogenes and associated signalling pathways.", + "title": "Oncogenes and Signal Transduction", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce concepts and molecular mechanism of epigenetics. Students will learn the historic discoveries of epigenetic research, DNA methylation, post-translational histone modifications, noncoding RNA, chromatin remodelling and epigenetic reprogramming. The module will focus on the role of epigenetic modifications in biological functions. The clinical applications of epigenetics will also be discussed.", + "title": "Advanced Epigenetics and Chromatin Biology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Growth and development of higher vascular plants through their life cycles. Discussion in this module include selected topics in gamete development, fertilization, embryo development, seed germination, development of various plant organs and flowering, the role of plant growth regulators, and the cellular, physiological and molecular basis of plant morphogenesis. The molecular basis of various stages of plant development will be discussed using developmental mutant analyses.", + "title": "Plant Growth and Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4251", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the events and mechanisms leading to the development and differentiation of gonads and sexes in animals and humans, and eventually to the reproduction and propagation of a new generation. It describes the use of invertebrate (Drosophila, C. elegans) and vertebrate models (fish, mouse) in reproduction research, and discusses selected topics to highlight the current trends in animal and human reproduction. This includes new trends in hormonal control of human reproduction (endocrinology), cellular mechanisms and genetic control underlying gonad differentiation, and diseases of the reproductive system.", + "title": "Reproductive Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4252", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "S2-0414", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to taxonomy and systematics; i.e., the science of grouping biodiversity into species, describing the species, and classifying this\ndiversity into higher-level taxa that reflect evolutionary history. The module has two main goals: (1) It introduces the main concepts and goals of taxonomy and\nsystematics. (2) It teaches the qualitative and quantitative techniques that are today used to describe/identify species and higher-level taxa based on the analysis of\nmorphological and DNA sequence evidence. The aim is to equip environmental as well as other biologists with a thorough understanding of taxonomic/systematic units and the tools needed for evaluating and quantifying diversity in samples of plant and animal specimens.", + "title": "Principles of Taxonomy and Systematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The use of mathematics has a long history in the life sciences, allowing scientists to clearly articulate their assumptions, rigorously test their ideas about how biological systems work, and make predictions. In this module, students will explore both current and classical questions in mathematical biology, such\nas: What factors constrain and contribute to the species diversity of an ecosystem? Under what conditions can we expect the stable coexistence of predator and prey populations, or competitors in an ecosystem? What proportion of a human population do we have to vaccinate to prevent an epidemic?", + "title": "Methods in Mathematical Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4255", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to integrate two disciplines, Evolutionary Biology and Developmental Biology into a common framework. The module explores the evolution of animal bodies, e.g. legs, segments, eyes, wings, etc., by focusing on changes at the molecular and developmental levels. This course will introduce important concepts such as hox genes, selector genes, homology, serial homology, modularity, gene regulatory networks, genetic architecture, developmental basis of sexual dimorphism, and phenotypic plasticity, and give a broad organismic-centred perspective on the evolution of novel traits.", + "title": "Evolution of Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4256", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Aquatic vertebrates are essential components of freshwater and marine ecosystems, often occupying higher trophic/food web levels with wider ecological influence. As relatively sizeableand abundant elements of aquatic ecosystems, these organisms are also central to the ecosystem goods and services provided. Besides fishes, the most speciose extant vertebrate group, the remaining four vertebrate classes all include aquatic lineages. This module offers a firm foundation in the global diversity of aquatic vertebrates in the context of their biology, ecology, and conservation. Emphasis on Southeast Asian aquatic vertebrate biota provides a framework that informs management of regional imperilled freshwater and marine ecosystems.", + "title": "Aquatic Vertebrate Diversity", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4257", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Why do some species invest all their resources in securing a mate to reproduce with whilst others avoid sex altogether by cloning themselves? This module takes an integrative approach to understanding the mechanisms of inheritance and reproduction from an evolutionary perspective across plants and animals. We will adopt evidence-based learning, review both classic and current primary literature, as well as offer hands-on practicals on analysing datasets (e.g. selection experiments, population genome data etc.). Topics covered include the evolution of sex, operation of sexual selection, the genetics of reproduction and the rapid evolution of immune function and reproduction.", + "title": "Evolutionary Genetics of Reproduction", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4259", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Phytoplankton and zooplankton are a vital part of aquatic ecosystems and form the basis of aquatic food webs. Understanding the role of plankton in aquatic ecosystems will help in advancing the solutions to problems facing today\u2019s water resources (harmful algal blooms, eutrophication and pollution). This module focuses on the biodiversity and ecology of phytoplankton and zooplankton, the roles they play in marine and freshwater ecosystems, their potential uses as biofuel and in aquaculture. The module will consist of lectures, practicals and a hands-on application of modelling on phytoplankton datasets.", + "title": "Plankton Ecology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4260", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "S16-0304", + "day": "Friday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Main focus on the understanding and appreciation of marine environment, the diversity of marine life, and the constant interaction between man and the sea. Marine biology as the scientific study of marine animals and the marine environment. Fundamentals of oceanography. The range of marine environments and variety of organisms inhabiting them. Benefits of the marine environment and its resources to humans. The impact of exploitation and human activities on the oceans.", + "title": "Marine Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4261", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "S2-0415", + "day": "Friday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Conservation and the loss of biodiversity and natural ecosystems are currently regarded as one of the most pressing problems facing mankind. The course will highlight the impact of habitat loss on biodiversity and the basis for formulation of effective conservation management strategies. The course will also introduce students to the theory of current conservation biology as illustrated by applications in tropical areas, species conservation issues, ecological challenges, role of zoological gardens, legal challenges etc. Conservation of tropical biota, management of local and regional environmental problems, appreciation and consideration of the socio-economic issues will also be treated.", + "title": "Tropical Conservation Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4262", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0415", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "LSM4263 will introduce students to field biology, the basic techniques involved, sampling design and basic data gathering and data management. From field practicals, students will experience and encounter tropical environs and habitats, namely coastal, mangrove, primary and secondary forest. A 6 day field course is incorporated and will be conducted in Pulau Tioman, Malaysia. There students, who will be divided into small groups, will conduct 4 mini-projects in 4 separate habitats, under the supervision of experienced field-orientated teaching assistants. This module will involve overseas university students as well as NUS Life Sciences students.", + "title": "Field Studies in Biodiversity", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4263", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1300", + "weeks": { + "start": "2023-06-23", + "end": "2023-06-30" + }, + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-05" + }, + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1500", + "weeks": { + "start": "2023-07-21", + "end": "2023-07-21" + }, + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-07-14", + "end": "2023-07-14" + }, + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-06-20", + "end": "2023-06-27" + }, + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-06-23", + "end": "2023-06-23" + }, + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1300", + "weeks": { + "start": "2023-07-04", + "end": "2023-07-04" + }, + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Freshwater is essential to life, yet constitutes less than 3% of Earth\u2019s total water. With many freshwater ecosystems under threat, understanding the biology of freshwaters is fundamentally important to their management, conservation and restoration. This module introduces the study of inland waters, with emphasis on aquatic ecology, structure and function, and aquatic conservation. Topics discussed will include diversity and ecology of freshwater habitats and aquatic organisms, and aquatic conservation issues including policies, regulation and management of freshwater resources in local and international contexts.", + "title": "Freshwater Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4264", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "S2-0414", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the ecology of urban areas, with a focus on tropical cities. It will deal with terrestrial, freshwater and coastal marine environments in which urbanization is the key ecological factor. Topics\ncovered will include the origins of cities, urbanization as a process, urban landscapes, urban environments (soils, hydrology, climates and pollution), urban biodiversity, alien species, landscape design, urban greenery, pest and\nvector control, ecological footprints, and the sustainable city. Students will undertake a small-group research project involving the design, implementation, analysis and presentation of an urban ecology study.", + "title": "Urban Ecology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4265", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Invertebrate biodiversity is an important component of aquatic environments and ecosystems. Its study is essential for conservation and management of such environments. This module aims to enhance students\u2019 knowledge of tropical aquatic biodiversity through directed studiesin freshwater and marine invertebrates. Biota in Singapore will be highlighted. Emphasis is on organismal diversity, taxonomy and classification. Other topics such as structure and function, ecology, conservation, and economic importance will be covered within the context of selected organismal groups. Appreciation of the importance of aquatic biodiversity as well as knowledge, familiarity, and understanding of selected groups of aquatic biodiversity are the learning outcomes.", + "title": "Aquatic Invertebrate Diversity", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4266", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Animals rely on various sensory systems to detect environmental information; a common mode involves light detection. Many rely on visual stimuli for numerous behavioural activities; humans often fail to understand these light signals. This module will introduce (i) the fundamentals of light detection, (ii) the instrumentation and software involved in accurate detection, quantification/characterisation of animal/plant light signals, (iii) the formulation of hypotheses in animal-animal and animal-plant visual communication from interdisciplinary sciences (e.g. behaviour, conservation, optics), and (iv) relevant industrial applications. This module will also visit some other systems beyond the visible light spectrum, for example infrared reception and thermoreception.", + "title": "Light & Vision in Animal Communication", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4267", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-0414", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Although animals sense their physical and biotic environments via various modalities, how they sense the environment acoustically is still poorly understood. From low frequency minute vibrations to infrasonic and ultrasonic frequencies, from waterborne to air-transmitted sounds, this module will introduce what sound is (i.e. fundamentals of sound, how sound travels etc), how and why it matters to animals (i.e. mechanisms and adaptive functions of sound production and reception) in both terrestrial and marine habitats, bioacoustic instrumentation and software, industrial applications, and how environmental issues involving sounds such as terrestrial and ocean noise pollution are affecting animals and humans.", + "title": "Environmental Bioacoustics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4268", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-03LAB7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For Bachelor of Science (Honours) students to participate full-time in a six-month-long project in an applied context that culminates in a project presentation and report.", + "title": "Applied Project in Life Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "LSM4299", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The vegetation types and plant diversity of Southeast Asia, including Singapore, will be introduced from ecological, evolutionary and biogeographical perspectives. Plant classification and major evolutionary lineages will be discussed, along with the fundamental importance of exploration, herbarium and living reference collections and taxonomic research. Plant identification, an indispensable tool in resource and conservation assessment, and for supporting management approaches including in urban landscapes, will be highlighted through practical sessions and fieldwork. The significance of plants for human societies, against a background of deforestation, agriculture, climate change, diseases and new medicines, will be underscored.", + "title": "Vegetation and Plant Diversity of Southeast Asia", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LSM4351", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Saturday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1 + ], + "venue": "E-Hybrid_B", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This course is aimed at giving students an overview of environmental law and its development, including the legal and administrative structures for their implementation, from the international, regional and national perspectives. It will focus on basic pollution laws relating to air, water, waste, hazardous substances and noise; nature conservation laws and laws governing environmental impact assessments. Singapore's laws and the laws of selected ASEAN countries will be examined. Targeted Students - For students on the M.Sc. (Environmental Management) program. Research students and students from other graduate programmes in NUS may apply subject to suitability of candidate and availability of places.", + "title": "Environmental Law", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "LX5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 43, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the entry-level module for a sound education in modern mathematics, to prepare students for higher level mathematics courses. The first goal is to build the necessary mathematical foundation by introducing the basic language, concepts, and methods of contemporary mathematics, with focus on discrete and algebraic notions. The second goal is to develop student\u2019s ability to construct rigorous arguments and formal proofs based on logical reasoning. Main topics: logic, sets, maps, equivalence relations, natural numbers, integers, rational numbers, congruences, counting and cardinality. Major results include: binomial theorem, fundamental theorem of arithmetic, infinitude of primes, Chinese remainder theorem, Fermat-Euler theorem.", + "title": "Basic Discrete Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA1100", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to develop the learning capabilities and hone the problem solving skills of talented students at a mathematically deeper and more rigorous level. It is intended for students with strong mathematical inclination and motivation. The emphasis will be on rigour, depth, and conceptual understanding. The contents of this module will consist of those in the regular module (MA1100) and the following additional topics: axiomatic development of basic mathematics, equivalence relations, congruences.", + "title": "Basic Discrete Mathematics (T)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA1100T", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as a bridging module for students without 'A' - level mathematics. Its aim is to equip students with appropriate mathematical knowledge and skill so as to prepare them for further study of mathematics-related disciplines. At the end of the course, students are expected to attain a level of proficiency in algebra and calculus equivalent to the GCE Advanced Level. Major topics: Sets, functions and graphs, polynomials and rational functions, inequalities in one variable, logarithmic and exponential functions, trigonometric functions, sequences and series, techniques of differentiation, applications of differentiation, maxima and minima, increasing and decreasing functions, curve sketching, techniques of integration, applications of integration, areas, volumes of solids of revolution, solution of first order ordinary differential equations by separation of variables and by integrating factor, complex numbers, vectors.", + "title": "Introductory Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA1301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_D", + "day": "Thursday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_D", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_D", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_D", + "day": "Monday", + "lessonType": "Lecture", + "size": 320, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as a bridging module for students without 'A' - level mathematics. Its aim is to equip students with appropriate mathematical knowledge and skill so as to prepare them for further study of mathematics-related disciplines. At the end of the course, students are expected to attain a level of proficiency in algebra and calculus equivalent to the GCE Advanced Level. Major topics: Sets, functions and graphs, polynomials and rational functions, inequalities in one variable, logarithmic and exponential functions, trigonometric functions, sequences and series, techniques of differentiation, applications of differentiation, maxima and minima, increasing and decreasing functions, curve sketching, techniques of integration, applications of integration, areas, volumes of solids of revolution, solution of first order ordinary differential equations by separation of variables and by integrating factor, complex numbers, vectors.", + "title": "Introductory Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA1301X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the basic concepts in matrix algebra which has applications in science, engineering, statistics, economics and operations research. The main objective is to equip students with the basic skills in computing with real vectors and matrices. Specially designed for students not majoring in mathematics, in particular those who read a minor in mathematics, it is also suitable for students who are keen to pick up mathematical skills that will be useful in their own areas of studies. \n\n \n\nMajor topics: Gaussian elimination, solutions to simultaneous equations, matrices, vectors, special matrices, matrix inverses, linear independence, rank, determinants, vectors in geometry, and cross product,\n\nintroduction to eigenvalues and eigenvectors.", + "title": "Matrix Algebra", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA1311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module contains the main ideas of calculus that are often encountered in the formulation and solution of practical problems. The approach of this course is intuitive and heuristic. The objective is to develop a competent working knowledge of the main concepts and methods introduced. This module is also designed for students who intend to do a minor in mathematics or for those who are keen to pick up some mathematical skills that might be useful in their own areas of studies. Major topics Real numbers and elementary analytic geometry. Functions, limits, continuity and derivative. Trigonometric functions. Trigonometric functions. Applications of the derivative. Optimization problems. Inverse functions. The indefinite integral. The definite integral. Applications of the definite integral arc length, volume and surface area of solid of revolution. Logarithmic and exponential functions. Techniques of Integration. Taylor's Formula. Differential equations. Some applications in Business, Economics and Social Sciences.", + "title": "Calculus with Applications", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA1312", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a basic foundation for calculus and its related subjects required by engineering students. The objective is to equip the students with various calculus techniques for their engineering courses. The module emphasises problem solving and mathematical methods in single-variable calculus, sequences and series, differential calculus for functions of several variables, multiple integrals, vector-valued Functions and vector fields.", + "title": "Mathematics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA1505", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Monday", + "lessonType": "Lecture", + "size": 330, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is targeted at students from the Faculty of Engineering and it provides the basic fundamental principles of Linear Algebra relevant to the field of Engineering. Topics include: System of linear equations and their solutions. Gaussian elimination. Matrices, matrix operations and invertibility. Determinant of a matrix. Euclidean space and vectors. Subspaces, linear combinations and linear span. Linear independence, basis and coordinate vectors. Dimension of a vector space. Rank and nullity theorem for matrices. Linear approximation and least squares solution to a linear system. Orthogonal projection. Eigenvalues, eigenvectors and diagonalization. Complex numbers. Applications of eigenvalues and eigenvectors to differential equation", + "title": "Linear Algebra for Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA1508E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Thursday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT421", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a seven-week module specially designed for students majoring in Engineering. It introduces the basic concepts in one variable and several variable calculus with applications in engineering. Main topics: One variable calculus. Power series. Partial differentiation. Multiple integrals. Vector Calculus.", + "title": "Engineering Calculus", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MA1511", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-10-08T05:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-03-11T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a seven-week module specially designed for students majoring in Engineering. It introduces the basic concepts in differential equations with applications in engineering. Major topics: First order ordinary differential equations and applications. Second order ordinary differential equations and applications. Partial differential equations and applications. Laplace transforms and applications.", + "title": "Differential Equations for Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MA1512", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a six-week module specially designed for students majoring in Engineering. It introduces the basic concepts in linear algebra with applications in engineering. Major topics: Matrix algebra, linear system of equations, vector spaces, linear independence, basis, orthogonality, rank, linear transformations, eigenvalues and eigenvectors, diagonalization, linear systems of differential equations, linearization of nonlinear systems.", + "title": "Linear Algebra with Differential Equations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MA1513", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 440, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "EA-02-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "EA-02-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 440, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-10-08T01:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "05", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E3-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-03-11T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a basic foundation for calculus and its related subjects required by computing students. The objective is to train the students to be able to handle calculus techniques arising in their courses of specialization. In addition to the standard calculus material, the course also covers simple mathematical modeling techniques and numerical methods in connection with ordinary differential equations. Major topics Preliminaries on sets and number systems. Calculus of functions of one variable and applications. Sequences, series and power series. Functions of several variables. Extrema. First and second order differential equations. Basic numerical methods for ordinary differential equations.", + "title": "Calculus for Computing", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA1521", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Friday", + "lessonType": "Lecture", + "size": 425, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 425, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Friday", + "lessonType": "Lecture", + "size": 425, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 425, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Monday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Mathematics Advanced Placement", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA1601", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a first course in linear algebra. Fundamental concepts of linear algebra will be introduced and investigated in the context of the Euclidean spaces R^n. Proofs of results will be presented in the concrete setting. Students are expected to acquire computational facilities and geometric intuition with regard to vectors and matrices. Some applications will be presented. Major topics Systems of linear equations, matrices, determinants, Euclidean spaces, linear combinations and linear span, subspaces, linear independence, bases and dimension, rank of a matrix, inner products, eigenvalues and eigenvectors, diagonalization, linear transformations between Euclidean spaces, applications.", + "title": "Linear Algebra I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0302", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0302", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "31", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0302", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "35", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "36", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Monday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Monday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0302", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Monday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 630, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Monday", + "lessonType": "Lecture", + "size": 630, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0302", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0302", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0302", + "day": "Friday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0302", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "7", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Friday", + "lessonType": "Lecture", + "size": 630, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Thursday", + "lessonType": "Lecture", + "size": 630, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Monday", + "lessonType": "Lecture", + "size": 630, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 630, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in single-variable calculus. We will introduce precise definitions of limit, continuity, derivative, and the Riemann integral. Students will be exposed to computational techniques and applications of differentiation and integration. This course concludes with an introduction to first order differential equations. Major topics Functions; limit and continuity; derivative; Intermediate Value Theorem; chain rule; implicit differentiation; higher derivatives; Mean Value Theorem; Riemann integral; Fundamental Theorem of Calculus; elementary transcendental functions and their inverses; techniques of integration; computation of area, volume and arc length using definite integrals; first order differential equations.", + "title": "Calculus", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "14", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Thursday", + "lessonType": "Lecture", + "size": 350, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "9", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Thursday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of MA1101 Linear Algebra I intended for second year students. The student will learn more advanced topics and concepts in linear algebra. A key difference from MA1101 is that there is a greater emphasis on conceptual understanding and proof techniques than on computations.\n\n\n\nMajor topics: Matrices over a field. Determinant. Vector spaces. Subspaces. Linear independence. Basis and dimension. Linear transformations. Range and kernel. Isomorphism. Coordinates. Representation of linear transformations by matrices. Change of basis. Eigenvalues and eigenvectors. Diagonalizable linear operators. Cayley-Hamilton Theorem. Minimal polynomial. Jordan canonical form. Inner product spaces. Cauchy-Schwartz inequality. Orthonormal basis. Gram-Schmidt Process. Orthogonal complement. Orthogonal projections. Best approximation. The adjoint of a linear operator. Normal and self-adjoint operators. Orthogonal and unitary operators.", + "title": "Linear Algebra II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to develop the learning capabilities and hone the problem solving skills of talented students at a mathematically deeper and more rigorous level. In addition to the classes of the regular module, one extra special hour each week will be devoted to solving challenging problems and studying some additional topics and those topics briefly mentioned in the regular module.\n\n\n\nThe contents of this module will consist of those in the regular module (MA2101) and the following additional topics: proofs of Jordan Normal Form Theorem, Cayley Hamilton Theorem, introductory module theory, further applications of linear algebra.", + "title": "Linear Algebra II (S)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MA2101S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Friday", + "lessonType": "Lecture", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a module on the calculus of functions of several real variables, applications of which abound in mathematics, the physical sciences and engineering. The aim is for students to acquire computational skills, ability for 2- and 3-D visualisation and to understand conceptually fundamental results such as Green\u2019s Theorem, Stokes\u2019 Theorem and the Divergence Theorem. Major topics Euclidean distance and elementary topological concepts in Rn, limit and continuity, implicit functions. Partial differentiation, differentiable functions, differentials, chain rules, directional derivatives, gradients, mean value theorem, Taylor\u2019s formula, extreme value theorem, Lagrange multipliers. Multiple integrals and iterated integrals, change of order of integration, applications, Jacobian matrix, change of variables in multiple integrals. Line integrals and Green\u2019s theorem. Surface integrals, Stokes\u2019 Theorem, Divergence Theorem.", + "title": "Multivariable Calculus", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Friday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of MA1100. The main objective is to further develop the student's mastery of the mathematical language, concepts, and methods. The focus here is more on the analytic and topological notions such as convergence and continuity, which are essential for a rigorous treatment of mathematical analysis. The student's ability to read and write mathematical proofs is also further developed in this module. Main topics: real numbers, sequences and series of real numbers, metrics in Euclidean spaces, open and closed sets, continuous functions, compact sets, connected sets, sequences of functions. Major applications include: intermediate value theorem, extreme value theorem.", + "title": "Mathematical Analysis I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Friday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to develop the learning capabilities and hone the problem solving skills of talented students at a mathematically deeper and more rigorous level. In addition to the classes of the regular module, one extra special hour each week will be devoted to solving challenging problems and studying some additional topics and those topics briefly mentioned in the regular module.\n\n\n\nThe contents of this module will consist of those in the regular module (MA2108) and the following additional topics: conditions equivalent to the completeness axiom, rearrangement of series, trigonometric series.", + "title": "Mathematical Analysis I (S)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MA2108S", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an elementary introduction to probability theory for students with knowledge of elementary calculus. It will cover not only the mathematics of probability theory but will work through diverse examples to illustrate the wide scope of applicability of probability, such as in engineering and computing, social and management sciences. Topics covered are counting methods, sample space and events, axioms of probability, conditional probability, independence, random variables, discrete and continuous distributions, joint and marginal distributions, conditional distribution, independence of random variables, expectation, conditional expectation, moment generating function, central limit theorem, and weak law of large numbers.", + "title": "Probability", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2116", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "5", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Friday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces basic concepts in group theory. Major topics: Modular arithmetics. Binary operations. Groups. Sugroups. Group homomorphisms. Examples of groups Symmetric groups and Cayley's theorem. Cyclic groups. Cosets and Theorem of Lagrange. Fermat's Little Theorem and Euler's phi function. Direct products of groups. Normal subgroups. Quotient groups. Isomorphism Theorems. Group actions. Stabilizers and orbits.Examples and applications.\n\n\n\nMajor topics: Divisibility, congruences. Permutations. Binary operations. Groups. Examples of groups including finite abelian groups from the study of integers and finite non-abelian groups constructed from permutations. Subgroups. Cyclic groups. Cosets. Theorem of Lagrange. Fermat\u2019s Little Theorem and Euler's Theorem. Direct products of groups. Normal subgroups. Quotient groups. Isomorphism Theorems", + "title": "Algebra I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to develop the learning\n\ncapabilities and hone the problem solving skills of talented\n\nstudents at a mathematically deeper and more rigorous\n\nlevel. The contents of this module will consist of those in\n\nthe regular module (MA2202 Algebra I) and the following\n\nadditional topics: Group action, group representations,\n\nprofinite groups and classical groups.", + "title": "Algebra I (S)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MA2202S", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a first course on the theory and applications of numerical approximation techniques. Through the study of this module, the students will gain an understanding of how in practice mathematically formulated problems are solved using computers, and how computational errors are analysed and tackled. The students will be equipped with a number of commonly used numerical algorithms and knowledge and skill in performing numerical computation using MATLAB. The module is intended for mathematics majors and students from engineering and physical sciences. It will provide a firm basis for future study of numerical analysis and scientific computing. Major topics Computational errors, direct method for systemsof linear equations, interpolation and approximation, numerical integration, use of MATLAB software.", + "title": "Numerical Analysis I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S17-0304", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S17-0304", + "day": "Friday", + "lessonType": "Laboratory", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S17-0302", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S17-0302", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this module is to introduce to students fundamental principles and techniques in combinatorics as well as the basics of graph theory, which have practical applications in such areas as computer science and operations research. The major topics from combinatorics are: Permutations and Combinations, Binomial and Multinomial Coefficients, The Principle of Inclusion\nand Exclusion, Generating Functions, Recurrence Relations, Special Numbers including Fibonacci Numbers, Stirling Numbers, Catalan Numbers, Harmonic Numbers and Bernoulli Numbers. The major topics from graph theory are: Basic Concepts and Results, Bipartite graphs and trees.", + "title": "Combinatorics and Graphs I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Thursday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives a first introduction to various kinds of\n\ngeometries ranging from elementary Euclidean geometry\n\non the plane, inversive geometry on the sphere, as well as\n\nprojective geometry and Non-Euclidean geometry. Topics\n\ncovered include: Conics, Quadric surfaces, Affine\n\ngeometry, Affine transformations, Ceva's theorem,\n\nMenelaus' theorem, Projective geometry, projective\n\ntransformations, homogeneous coordinates, cross-ratio,\n\nPappus' theorem, Desargues' theorem, duality and\n\nprojective conics, Pascal's theorem, Brianchon's theorem,\n\nInversions, coaxal family of circles, Non-Euclidean\n\ngeometry, Mobius transformations, distance and area in\n\nNon-Euclidean geometry.", + "title": "Introduction to Geometry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is entirely project based. It allows the student the opportunity to engage in independent learning and research. It also affords the student the chance to delve into topics that may not be present in the regular curriculum.", + "title": "Basic UROPS in Mathematics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is entirely project based. It allows the student the opportunity to engage in independent learning and research. It also affords the student the chance to delve into topics that may not be present in the regular curriculum. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Mathematics I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2288R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This provides a continuation of work done in MA2288 and the project should be of two semester's duration. Please see section 4.4.3.", + "title": "Basic UROPS in Mathematics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This provides a continuation of work done in MA2288 and the project should be of two semester's duration. Please see section 4.4.3. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Mathematics II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2289R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a module providing students fundamental mathematical knowledge that is useful in a wide range of scientific disciplines. The scope of this module covers the basic mathematical concepts and techniques in linear algebra, calculus, and probability. Major topics include matrices and vectors, solving linear systems, diagonalization of matrices, differentiation and integration, random variables and probability density functions, law of large numbers, and central limit theorem.", + "title": "Basic Applied Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 1ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MA2310", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module applies advanced calculus to practical mathematical problems, and is for students with advanced calculus background and with interest in the applications of calculus. Major topics Sequences, series, power series. Vector algebra in R2 and R3. Scalar- and vector-valued functions of several variables. Partial derivatives, total differentials. Mean value Theorem. Taylor's formula. Jacobian. Chain rule. Lagrange multiplier. Multiple integrals.", + "title": "Techniques in Advanced Calculus", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2311", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0598", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_D", + "day": "Monday", + "lessonType": "Lecture", + "size": 480, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_D", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 480, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the basic concepts and techniques of differential equations. The objective is to develop a competent working knowledge of the main concepts and methods introduced. It is designed for students who read a minor in mathematics or for those who are keen to pick up some mathematical skills that might be useful in their own areas of studies. Major topics: First-order differential equations. Linear differential equations of second order or higher. System of linear differential equations. Power series solutions and Laplace transforms.", + "title": "Introduction to Differential Equations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "MA2312U", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "MA2313", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents a gentle introduction to programming using the statistical software R and uses R to introduce essential concepts in calculus, linear algebra and probability for data analytics. Topics include: getting started with R; functions and graphing, derivatives, integrals, dynamics; vectors and matrices, solving systems of linear equations, projections, eigenvalues and eigenvectors; probability, conditional probability and Bayes\u2019 Theorem, random variables and their properties, useful discrete, continuous and bivariate/multivariate distributions, the Central Limit Theorem. Strong emphasis is placed on computation and simulation.", + "title": "Introductory Mathematics with R", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA2401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide the essentials of ring theory and module theory. Major topics: rings, ring isomorphism theorems, prime and maximal ideals, integral domains, field of fractions, factorization, unique factorization domains, principal ideal domains, Euclidean domains, factorization in polynomial domains, modules, module isomorphism theorems, cyclic modules, free modules of finite rank, finitely generated modules, finitely generated modules over a principal ideal domain.", + "title": "Algebra II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory mathematical course in set theory. There are two main objectives: One is to present some basic facts about abstract sets, such as, cardinal and ordinal numbers, axiom of choice and transfinite recursion; the other is to explain why set theory is often viewed as foundation of mathematics. This module is designed for students who are interested in mathematical logic, foundation of mathematics and set theory itself.\n\n\n\nMajor topics: Algebra of sets. Functions and relations. Infinite sets. Induction and definition by recursion. Countable and uncountable sets. Linear orderings. Well orderings and ordinals. Axiom of choice.", + "title": "Set Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-03-0506", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module revisits ideas in analysis from a more abstract point of view, in the settings of metric spaces\nand topological spaces. These abstract notions form the basis for much of modern mathematics, especially\nin geometry and analysis. Main topics: metric spaces, convergence, completeness, contraction mappings,\ntopological spaces, compactness, compact spaces of functions, locally compact spaces.", + "title": "Metric and Topological Spaces", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a continuation of MA2108 Mathematical Analysis I. The objective of this module is to develop rigorously all the basic results in one- and multi-variable calculus. The emphasis is on logical rigour. Major topics: total and partial derivatives, Jacobian matrix, differentiable functions, chain rule, mean value theorem, l\u2019Hopital\u2019s rule, Taylor\u2019s theorem, convergence of derivatives; Riemann and Darboux integrals, Fubini\u2019s theorem, convergence of integrals, improper integral of functions, fundamental theorem of calculus, integration by parts, differentiation under integral sign, change of variable formula.", + "title": "Mathematical Analysis II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a first course on the analysis of one complex variable. In this module, students will learn the basic theory and techniques of complex analysis as well as some of its applications. Target students are mathematics undergraduate students in the Faculty of Science. Major topics: complex numbers, analytic functions, Cauchy-Riemann equations, harmonic functions, contour integrals, Cauchy-Goursat theorem, Cauchy integral formulas, Taylor series, Laurent series, residues and poles, applications to computation of improper integrals.", + "title": "Complex Analysis I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to develop the learning capabilities and hone the problem solving skills of talented students at a mathematically deeper and more rigorous level. The contents of this module will consist of those in the regular module (MA3111 Complex Analysis I) and the following additional topics: Casorati-Weierstrass Theorem, \ninfinite products of analytic functions, normal families of\n\nanalytic functions.", + "title": "Complex Analysis I (S)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MA3211S", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0511", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0511", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0511", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modern algebra is used in a variety of areas such as coding theory and cryptography. The focus of this module is to introduce elementary concepts of abstract algebra and some of their applications. Upon completing this module, the student will have some basic knowledge of modern algebra and an understanding of some applications such as those in coding theory and cryptography. Major Topics: Integers, binary operations, groups, cosets, rings, division domain, polynomial rings, fields, finite fields. Introduction to coding theory, block codes, linear codes, Hamming distances, Hamming codes, Reed-Muller codes, cyclic codes, Reed-Solomon codes. Introduction to cryptography, substitution ciphers, permutation cipher, block ciphers. Other applications.", + "title": "Applied Algebra", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course on the formal theory of computable functions. In particular, we will describe the notion of computability and answer the question whether every function from N (the set of natural numbers) to N is computable. Major topics: Turing machines. Partial recursive functions. Recursive sets. Recursively enumerable sets. Unsolvable problems.", + "title": "Computability Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The study of ordinary differential equations (ODEs) has been a centerpiece in both pure and applied mathematics, such as in mathematical analysis, dynamical systems and mathematical modeling. The aim of this module is to give a thorough treatment on the fundamental theory of ODEs and the methods of solving ODEs. Major topics: Review of first order equations, Basic theory of linear differential equations, Variation of parameters, Principle of superposition, Wronskian, Abel's formula, Adjoint and self-adjoint equations, Lagrange and Green's identities, Sturm's separation and comparison theorems, Linear differential systems, Series solutions of second order linear differential equations, Method of Frobenius, Initial value problems, Lipschitz condition, Picard's method of successive approximations, Existence and uniqueness of solution, Gronwall\u2019s inequality, Continuous dependence on initial value.", + "title": "Ordinary Differential Equations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of MA2213 Numerical Analysis I. It introduces and\nanalyzes important numerical methods for solving linear and nonlinear systems,\ntwo-point boundary value problems, as well as Monte Carlo methods and their\napplications in such fields as quantitative finance and physics. The module aims at\ndeveloping students\u2019 problem-solving skills in emerging applications of modern\nscientific computing, and is intended for mathematics and quantitative finance\nmajors and students from engineering, computer science and physical sciences.\nMajor topics: Iterative methods for systems of linear equations and their\nconvergence analysis, numerical solutions of systems of nonlinear equations,\nmethods for solving two-point boundary value problems, Monte Carlo methods\nand their applications.", + "title": "Numerical Analysis II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Geometric modelling combines elementary geometry, analysis and computing for applications in various disciplines in science and technology, such as computer aided design, computer graphics, biomedical modeling and visualization. The course involves modeling, design and analysis of freeform curves and surfaces and covers the basic mathematics and algorithms. Topics covered include Bernstein polynomials, de Casteljau algorithm, Bezier curves, curve splitting, composite Bezier curves, geometric continuity, tensor product Bezier surfaces; Chaikin's algorithm, uniform Bsplines, refinement equations, uniform B-spline curves and surfaces, uniform B-spline subdivision algorithms; Non-uniform B-splines, recurrence relations, derivatives, discrete B-splines, nonuniformm B-spline curves and surfaces, discrete B-spline algorithm, homogeneous coordinates and projective transformations, non-uniform rational B-splines (NURBS), NURBS curves and surfaces. NURBS is the current industry standard in computer aided design and computer graphics.", + "title": "Intro. to Geometric Modelling", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a continuation of MA2214 Combinatorics and Graphs I. The objective is to introduce to students fundamental principles and techniques in Graph Theory. Major topics: Connectivity, Eulerian Multigraphs and Hamiltonian Graphs, Matching, Covering and Independence, Vertex Coloring (including basics of Planar Graphs), Digraphs, Basic Spectral Graph Theory (including Eigenvalues of Graphs and Graph Laplacians).", + "title": "Combinatorics and Graphs II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Optimization principles are of undisputed importance in modern design and system operation. The objective of this course is to present these principles and illustrate how algorithms can be designed from the mathematical theories for solving optimization problems. Major topics: Fundamentals, unconstrained optimization: one-dimensional search, Newton-Raphson method, gradient method, constrained optimization: Lagrangian multipliers method, Karush-Kuhn-Tucker optimality conditions, Lagrangian duality and saddle point optimality conditions, convex programming: Frank-Wolfe method.", + "title": "Non-Linear Programming", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concept of modelling dependence and focuses on discrete-time Markov chains. Topics include discrete-time Markov chains, examples of discrete-time Markov chains, classification of states, irreducibility, periodicity, first passage times, recurrence and transience, convergence theorems and stationary distributions. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Stochastic Processes I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Friday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Friday", + "lessonType": "Tutorial", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to work on optimization problems which can be formulated as linear and network optimization problems. We formulate linear programming (LP) problems and solve them by the simplex method (algorithm). We also look at the geometrical aspect and develop the mathematical theory of the simplex method. We further study problems which may be formulated using graphs and networks. These optimization problems can be solved by using linear or integer programming approaches. However, due to its graphical structure, it is easier to handle these problems by using network algorithmic approaches. Applications of LP and network optimization will be demonstrated. This course should help the student in developing confidence in solving many similar problems in daily life that require much computing. \n\n\n\nMajor topics: Introduction to LP: solving 2-variable LP via graphical methods. Geometry of LP: polyhedron, extreme points, existence of optimal solution at extreme point. Development of simplex method: basic solution, reduced costs and optimality condition, iterative steps in a simplex method, 2-phase method and Big-M method. Duality: dual LP, duality theory, dual simplex method. Sensitivity Analysis. Network optimization problems: minimal spanning tree problems, shortest path problems, maximal flow problems, minimum cost flow problems, salesman problems and postman problems.", + "title": "Linear and Network Optimisation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3252", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Friday", + "lessonType": "Lecture", + "size": 190, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Major topics: Historical review. Modern cryptosystems. Data Encryption Standard (DES). Stream cipher. Introduction to complexity theory. Public key cryptosystems (including RSA and knapsack schemes). Authentication. Digital signature and cryptographic applications (e.g. smart card).", + "title": "Applied Cryptography", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to methods and popular software tools for solving computational problems in genomics. It studies exact algorithms for those problems that can be solved easily and approximation and/or heuristic algorithms for hard problems. The objective is to develop competitive knowledge in formulating biological problems in computational terms and solving these problems using algorithm approach. This module is for students with interests in computational molecular biology and bioinformatics. Major topics: Sequence analysis, multiple sequence alignment, phylogenetic analysis, genome sequencing, gene prediction and motif finding, genome rearrangement.", + "title": "Mathematical Methods in Genomics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3259", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0511", + "day": "Friday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0511", + "day": "Friday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to introduce the use of mathematics as an effective tool in solving real-world problems through mathematical modelling and analytical and/or numerical computations. By using examples in physical, engineering, biological and social sciences, we show how to convert real-world problems into mathematical equations through proper assumptions and physical laws. Qualitative analysis and analytical solutions for some models will be provided to interpret and explain qualitative and quantitative phenomena of the real-world problems. Major topics: Introduction of modelling; dynamic (or ODE) models: population models, pendulum motion; electrical networks, chemical reaction, etc; optimization and discrete models: profit of company, annuity, etc; probability models: president election poll, random walk, etc; Model analysis: dimensional analysis, equilibrium and stability, bifurcation, etc; and some typical applications.", + "title": "Mathematical Modelling", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3264", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Number theory is an area that attracts the attention of many great mathematicians. Attempts to solve some number theoretic problems (such as the Fermats Last Theorem) often lead to new areas of mathematics. A recent application of an elementary number theoretic result called the Eulers Theorem to cryptography (RSA system) has further established the importance of this area in applied mathematics. The aim of this course is to introduce various topics in number theory and to connect these topics with algebra, analysis and combinatorics. \n\n\n\nMajor topics: Prime numbers, multiplicative functions, theory of congruences, quadratic residues, algebraic numbers and integers, sums of squares and gauss sums, continued fractions, transcendental numbers, quadratic forms, genera and class group, partitions, diophantine equations, basic theory of elliptic curves", + "title": "Introduction to Number Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3265", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the students to the basics of financial mathematics and targets all students who have an interest in building a foundation in financial mathematics. Topics include basic mathematical theory of interest, term structure of interest rates, fixed income securities, risk aversion, basic utility theory, single-period portfolio optimization, basic option theory. Mathematical rigor will be emphasized.", + "title": "Mathematical Finance I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3269", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Friday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Monday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Monday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is entirely project based. It allows the student the opportunity to engage in independent learning and research. It also affords the student the chance to delve into topics that may not be present in the regular curriculum. Projects registered under MA3288 are intended to be at a more advanced level than those under MA2288/9.", + "title": "Advanced UROPS in Mathematics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is entirely project based. It allows the student the opportunity to engage in independent learning and research. It also affords the student the chance to delve into topics that may not be present in the regular curriculum. Projects registered under MA3288 are intended to be at a more advanced level than those under MA2288/9. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Mathematics I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3288R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a continuation of work done in MA3288 and the project should be of two semesters' duration. Please see section 4.4.3.", + "title": "Advanced UROPS in Mathematics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a continuation of work done in MA3288 and the project should be of two semesters' duration. Please see section 4.4.3. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Mathematics II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3289R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The seminar module aims to train the students\u2019 ability to present, discuss and write about mathematics. The topic(s) for the module will be chosen by the instructor and may change from year to year. Students will give presentations and contribute to the discussion at seminars. They may collaborate in studying the topics, but each will write an individual report. Students may also be tested on their grasp of the mathematical content through other forms of assessment.", + "title": "Undergraduate Seminar in Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA3291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MA3310", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. Module is open to FoS undergraduate students from Cohorts AY2020/2021 and before, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MA3311", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 16-20 weeks during regular semester. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "FOS Undergraduate Professional Internship Programme 3S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "MA3312", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduates students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 3S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "MA3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Honours project is intended to give students the opportunity to work independently, to encourage students develop and exhibit aspects of their ability not revealed or tested by the usual written examination, and to foster skills that could be of continued usefulness in their subsequent careers. The project work duration is one year (including assessment).", + "title": "Honours Project in Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "MA4199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a second course on commutative rings and is targeted at aspiring undergraduates who intend to pursue a graduate course in pure mathematics and wish to have some commutative algebra background. Commutative algebra has applications in many areas of abstract algebra, including representation theory, number theory and algebraic geometry. Major topics: Radicals of commutative rings, Nakayama's lemma, localisation, integral dependence, primary decomposition, Noetherian and Artinian rings.", + "title": "Commutative Algebra", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to study field theory and its application to classical problems such as squaring a circle, trisecting an angle and solving the quintic polynomial equation by radicals. Major topics: Field extensions, finite and algebraic extensions, automorphisms of fields, splitting fields and normal extensions, separable extensions, primitive elements, finite fields, Galois extensions, roots of unity, norm and trace, cyclic extensions, solvable and radical extensions.", + "title": "Galois Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory mathematical course in logic. It gives a mathematical treatment of basic ideas and results of logic, such as the definition of truth, the definition of proof and Godel's completeness theorem. The objectives are to present the important concepts and theorems of logic and to explain their significance and their relationship to other mathematical work.\n\n\n\nMajor topics: Sentential logic. Structures and assignments. Elementary equivalence. Homomorphisms of structures. Definability. Substitutions. Logical axioms. Deducibility. Deduction and generalization theorems. Soundness, completeness and compactness theorems. Prenex formulas.", + "title": "Mathematical Logic", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Monday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0406", + "day": "Thursday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is for students who are majors in pure mathematics or who need functional analysis in their applied mathematics courses. The objective of the module is to study linear mappings defined on Banach spaces and Hilbert spaces, especially linear functionals (real-valued mappings) on L(p), C[0,1] and some sequence spaces. In particular, the four big theorems in functional analysis, namely, Hahn-Banach theorem, uniform boundedness theorem, open mapping theorem and Banach-Steinhaus theorem will be covered. \n\n\n\nMajor topics: Normed linear spaces and Banach spaces. Bounded linear operators and continuous linear functionals. Dual spaces. Reflexivity. Hanh-Banach Theorem. Open Mapping Theorem. Uniform Boundedness Principle. Banach-Steinhaus Theorem. The classical Banach spaces : c0, lp, Lp, C(K). Compact operators. Inner product spaces and Hilbert spaces. Orthonormal bases. Orthogonal complements and direct sums. Riesz Representation Theorem. Adjoint operators.", + "title": "Functional Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this introductory course is to provide the basic properties of partial differential equations as well as the techniques to solve some partial differential equations. Partial differential equations are the important tools for understanding the physical world and mathematics itself. This course will cover three types of partial differential equations and will provide a broad perspective on the subject, illustrate the rich variety of phenomena and impart a working knowledge of the most important techniques of analysis of the equations and their solutions.\n\nMajor topics: First-order equations. Quasi-linear equations. General first-order equation for a function of two variables. Cauchy problem. Wave equation. Wave equation in two independent variables. Cauchy problem for hyperbolic equations in two independent variables. Heat equation. The weak maximum principle for parabolic equations. Cauchy problem for heat equation. Regularity of solutions to heat equation. Laplace equation. Green's formulas. Harmonic functions. Maximum principle for Laplace equation. Dirichlet problem. Green's function and Poisson's formula.", + "title": "Partial Differential Equations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Fourier analysis occupies a central position in both pure and applied mathematics. This module introduces some of the main ideas of Fourier analysis while trying to keep the technical prerequisites to a minimum. In particular, Lebesgue integration is not required. Selected applications to approximation problems are presented. Main topics: Fourier series, summability, pointwise and mean square convergence of Fourier series. Fejer\u2019s Theorem, localization principle and Dini\u2019s test. Applications: Weierstrass Approximation Theorem, orthogonal polynomials, mean square approximation, best uniform polynomial approximation.", + "title": "Fourier Analysis and Approximation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4229", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides essential ideas and techniques as well as algorithms in numerical linear algebra that are needed in scientific computing and data analytics for effectively working with vectors and matrices. The major difficulties faced in solving problems in linear algebra numerically are discussed, as well as the associated applications often seen in practice. The emphasis is on the development of elegant and powerful algorithms and their applications for solving practical problems. Major topics include basic vector and matrix manipulation, the singular value decomposition, QR factorization, least squares problems, conditioning and stability, eigenvalue problems, and various applications in scientific computing and data science.", + "title": "Matrix Computation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The theory of dynamical systems studies the long-term behaviour of evolving systems. The aim of the module is to introduce fundamental elements of the mathematical theory of dynamical systems, understand nonlinear phenomena including chaos and bifurcation, and illustrate some of the most important ideas and methods to analyze nonlinear systems. Major topics: dynamics of circle maps, structural stability; dynamics of interval maps, symbolic dynamics and chaos, kneading sequence; bifurcation theory for one-dimensional maps; examples of higher dimensional dynamics.", + "title": "Dynamical Systems", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers some advanced as well as special topics in Graph Theory. The topics are to be chosen from: Domination Theory, Edge Coloring, List Coloring, Graph Ramsey Theory, Chromatic Polynomials, Reconstruction Problem, Planar Graphs, Perfect Graphs, Matroid Theory.", + "title": "Topics in Graph Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4235", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a second course in complex analysis which aims to introduce the student to some of the beautiful main results and applications of complex analysis. The nature of the topic allows the student to learn and understand the proofs and applications of some very strong results with relatively little background, it also shows the interplay between geometry, analysis and algebra.\n\nMajor topics: Argument principle (including Rouche's Theorem), open mapping theorem, maximum modulus principle, conformal mapping and linear fractional transformations, harmonic functions, and analytic continuation.", + "title": "Complex Analysis II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on ST3236 and introduces an array of stochastic models with biomedical and other real world applications. Topics include Poisson process, compound Poisson process, marked Poisson process, point process, epidemic models, continuous time Markov chain, birth and death processes, martingale. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Stochastic Processes II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Lecture", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The field of ordinary differential equations (ODEs) is a fundamental area in mathematics. There is a great range of real-world phenomena to which the theory and methods of ODEs can be applied. The central aim of this course is to study the qualitative aspects of ODEs. Major topics: Review of firstorder non-linear equations (including continuous dependence on initial conditions). Linear systems, periodic systems, asymptotic behaviour. Stability theory, stable, unstable and asymptotically stable solutions. Lyapunov\u2019s direct method. Two dimensional autonomous systems, critical points, phase portrait, limit cycles and periodic solutions, Poincare-Bendixson Theorem.", + "title": "Advanced Ordinary Differential Equations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Discrete optimization deals with problems of maximizing or minimizing a function over a feasible region of discrete structure. These problems come from many fields like operations research, management science and computer science. The primary objective of this module is twofold: (a) to study key techniques to separate easy problems from difficult ones and (b) to use typical methods to deal with difficult problems. \n\nMajor topics: Integer programming: cutting plane techniques, branch and bound enumeration, partitioning algorithms, the fixed charge and plant location problems. Sequencing and job-shop scheduling. Vehicle routing problems.", + "title": "Discrete Optimization", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4254", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ordinary and partial differential equations are routinely used to model a variety of natural and social phenomena. This course is concerned with the basic theory of numerical methods for solving these equations. Through the study of this module, students will gain an understanding of (1) various numerical integration schemes for solving ordinary differential equations, and (2) finite difference methods for solving various linear partial differential equations. Major topics: (ODE) One-step and linear multistep methods, Runge-Kutta methods, A-stability, convergence; (PDE) Difference calculus, finite difference methods for initial value problems, boundary value problems, and initial-boundary value problems, consistency, stability analysis via von Neumann method and matrix method, convergence, Lax Equivalence Theorem.", + "title": "Numerical Methods in Differential Equations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4255", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a stochastic operations research module and has many applications in production planning, warehousing and logistics. This module gives an introduction on how operations research models (with emphasis on optimization models) are formulated and solved. Many inventory and queuing models are derived to cater for different situations and problems in the real world. The solutions of these models can be obtained analytically. The tools of dynamic programming, heuristics and simulation are also introduced to derive the solutions. \n\n\n\nMajor topics: The basic economic order quantity model and its extension. Dynamic lot sizing models. Inventory models with uncertain demands: single-period decision models, continuous review and periodic review policies. Recent developments in inventory theory. Modelling arrival and service processes. Basic queuing models. Cost considerations in queuing models. Queuing network. Simulation of inventory and queuing models.", + "title": "Stochastic Operations Research", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4260", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Error-correcting codes and security codes are very important in the data communication and storage. The focus of this module is the mathematical aspect of coding theory and cryptography. Upon completing this module, the student will have a basic appreciation of some key issues in coding theory and cryptography, some understanding of the basic theory concerning codes and ciphers and a good knowledge of some well-known codes and ciphers. Major Topics: Communication channels and Shannon\u2019s theorem, block codes and linear codes, maximum-likelihood decoding and syndrome decoding, bounds on codes and optimal codes, cyclic codes, BCH codes, encoding and decoding of cyclic codes. Public-key cryptography, RSA cryptosystem, public-key cryptosystems based on the discrete logarithm problem, elliptic curve cryptosystems, factorization algorithm and pseudoprime.", + "title": "Coding and Cryptography", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4261", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to the theory of Lebesgue measure and Lebesgue integration, with an eye to\nexamples and applications drawn from probability theory. In addition to those majoring in mathematics, it\nmay be of interest to students in statistics, science, engineering or economics who wish to acquire a\nworking knowledge of the modern approach to integration. Major topics include: construction of Lebesgue\nmeasure, definition of Lebesgue integral, convergence theorems, applications to probability such as the\nBorel-Cantelli Lemma, Law of Large Numbers and the Central Limit Theorem.", + "title": "Measure and Integration", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4262", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to introduce the standard techniques in analytic number theory through the study of two classical results, namely, the prime number theorem and Dirichlet's theorem on primes in arithmetic progressions.\n\n\n\nMajor topics: Arithmetical functions. Merten's estimates. Riemann zeta function. Prime number theorem. Characters of abelian groups. Dirichlet's theorem on primes in arithmetic progression.", + "title": "Introduction to Analytic Number Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Game theory provides a mathematical tool for multi-person decision making. The aim of this module is to provide an introduction to game theory, studying basic concepts, models and solutions of games and their applications.\n\n\n\nMajor topics: Games of normal form and extensive form; Applications in Economics; Relations between game theory and decision making. Games of complete information: Static games with finite or infinite strategy spaces, Nash equilibrium of pure and mixed strategy; Dynamic games, backward induction solutions, information sets, subgame-perfect equilibrium, finitely and infinitely repeated games. Games of incomplete information: Bayesian equilibrium; First price sealed auction, second price sealed auction, and other auctions; Dynamic Bayesian games; Perfect Bayesian equilibrium; Signaling games. Cooperative games: Bargaining theory; Cores of n-person cooperative games; The Shapley value and its applications in voting, cost sharing, etc.", + "title": "Game Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4264", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The (point-set) topology covered in this module is an abstraction of metric space concepts, and was largely developed in the first half of last century. It forms the basis for much modern mathematics, especially in geometry and analysis, and beyond mathematics is important in computer science, mathematical economics, mathematical physics and robotics. Major topics: metric and topological spaces, continuous maps, bases, homeomorphisms, subspaces, sum, product and quotient topologies, orbit spaces, separation axioms, compact spaces, Tychonoff's theorem, compactness in metric spaces, Urysohn's lemma, Tietze Extension Theorem, connected and path-connected spaces, components, locally compact spaces, function spaces and the compact-open topology.", + "title": "Topology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4266", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Major topics:\n\n(I) Single-Period Financial Markets\n[1] Modeling and Pricing: The single-period market model, Absence of arbitrage, Risk-neutral probability measures, Pricing contingent claims, Complete and incomplete markets, Risk and return.\n[2] Portfolio Optimization: Optimal portfolios, The risk-neutral computational approach, Mean-variance analysis, Optimal portfolios in incomplete markets.\n\n(II) Multi-Period Financial Markets\n[1] Modeling: The multi-period market model, Filtration, Conditional expectation and martingales, Trading strategies, Absence of arbitrage, Martingale measures, The binomial or Cox-Ross-Rubinstein model.\n[2] Pricing Contingent Claims: Contingent claims, Complete and incomplete markets, European options, American options, Snell envelopes, Futures.3. Portfolio Optimization:Dynamic programming approach, The risk-neutral computational approach, Optimal portfolios in incomplete markets", + "title": "Discrete Time Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This multi-disciplinary module focuses on various important mathematical methods addressing problems arising in imaging and vision. Topics covered include: Continuous and discrete Fourier transform, Gabor transform, Wiener filter, variational principle, level set method, applied differential geometry, linear and nonlinear least squares, regularization methods.", + "title": "Mathematics for Visual Data Processing", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4268", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims at presenting important mathematical concepts and computational methods that are often used for modelling and analysis of big data sets and complex networks. The emphasis is on mathematical modelling and computational methods for practical problems in data science. Major topics include: basics on convex analysis, numerical methods for large-scale convex problems, dimensionality reduction, numerical methods for machine learning, kernel methods for pattern analysis, sparse coding and dictionary learning.", + "title": "Data Modelling and Computation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4270", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Monday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students of this module will learn how to apply their knowledge in advanced calculus and linear algebra to the study of the geometry of smooth curves and surfaces in the three dimensional Euclidean space. Major topics: theory of smooth space curves, differentiable structures on a smooth surface, local theory of the geometry of smooth surfaces, the first and second fundamental form, Guass map, parallel transport, geodesics, global properties of surfaces: triangulation, Euler number and orientation, global Gauss-Bonnet formula and its applications.", + "title": "Differential Geometry of Curves and Surfaces", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the mathematical tools for data science. Its objective is for students to develop competitive knowledge for working in the industry. It is offered to students with interests in industrial applications of mathematics. Major topics include basic mathematics in visualization and analyses of big data, basic principles and computational tools for high-dimensional data from imaging and sensing, basic programming techniques for optimization modelling, and popular software tools for data analytics.", + "title": "Mathematical Tools for Data Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this course is to introduce modern algebraic geometry to advanced undergraduates, with a focus on curves and some discussion of surfaces. Topics covered in this course are: affine spaces and varieties, Zariski topology, projective spaces and varieties, function fields, algebraic morphisms and rational maps, birational equivalence, smoothness and singularities, algebraic curves, Bezout's theorem, divsors and differentials, genus, Riemann-Hurwitz theorem, Riemann-Roch theorem, elliptic curves, algebraic surfaces, 27 lines on a cubic surface.", + "title": "Algebraic Geometry of Curves and Surfaces", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4273", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This topics module is intended as an elective module for\nstrong and motivated students specialising in\nmathematics. The topics for the module will be chosen\nfrom a fundamental area of mathematics and may change\nfrom year to year. Besides regular lectures, each student\nwill do independent study, give presentations and submit a\nterm paper. There will be opportunities in the course for\nthe students to conduct individual or group research on the\ntopics discussed.", + "title": "Undergraduate Topics in Mathematics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topics module is intended as an elective module for\n\nstrong and motivated students specialising in\n\nmathematics. The topics for the module will be chosen\n\nfrom a fundamental area of mathematics and may change\n\nfrom year to year. Besides regular lectures, each student\n\nwill do independent study, give presentations and submit a\n\nterm paper. There will be opportunities in the course for\n\nthe students to conduct individual or group research on the\n\ntopics discussed.", + "title": "Undergraduate Topics in Mathematics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA4292", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A theme or one or several topics in mathematics, which may vary from semester to semester, will be chosen by the lecturer-in-charge or students enrolled in the module. Students will take turns to give seminar presentations on the chosen topics. Students will also be required to provide verbal critique and submit written reports on selected presentations.", + "title": "Graduate Seminar Module in Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MA5198", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to classical algebraic number theory. It covers topics chosen from algebraic integers, unique factorization of ideals, class group, unit theorem, ramification, decomposition and inertia groups, geometry of numbers, zeta functions and L-functions. If time permits, further topics which may be covered include p-adic numbers, adeles and ideles, prime number theorem and modular forms.", + "title": "Number Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in both pure and applied mathematics. It covers topics from the five basic areas of groups, rings, modules, fields and multi-linear algebra, including group actions, Sylow theorems, Jordan-Holder theorem, semisimple modules, chain conditions, bimodules, tensor products and localizations, algebraic, separable and normal field extensions, algebraic closures, multilinear forms, quadratic forms, symmetric and exterior algebras.", + "title": "Graduate Algebra I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MA5203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a basic introduction to commutative and homological algebra. It covers the following topics: prime spectrum of a commutative ring, exact sequences, projective, injective and flat modules, Ext and Tor, integral ring extensions, Noether\u2019s normalization and Hilbert\u2019s Nullstellensatz, Noetherian and Artinian rings and moduels, dimension theory, Dedekind domains and discrete valuation ring.", + "title": "Graduate Algebra IIA", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers Lebesgue integration and related topics. It is intended for graduate students in mathematics. Major topics:\n(1) Quick review of properties of Rn, Lebesgue measure on Rn, Borel sets, Lebesgue nonmeasurable sets, Riemann-Lebesgue function, Lusin\u2019s and Egoroff\u2019s Theorems, convergence in measure.\n(2) Lebesgue integration, convergence theorems, evaluation of the integral in terms of the distribution function, Lp spaces, density of C\udbc0\udc92 functions in Lp(Rn), p < \udbc0\udc92, abstract integration.\n(3) Product integration, Fubini\u2019s and Tonelli\u2019s Theorems, application to convolution, approximate identities and maximal function.\n(4) Lebesgue Differentiation Theorem, Vitali covering, functions of bounded variation, absolutely continuous functions.", + "title": "Graduate Analysis I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MA5205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers basic functional analysis and selected applications. It is intended for graduate students in mathematics. Major topics: (1) Norms and seminorms, Banach and Fr\u00e9chet spaces, Hahn-Banach and separation theorems, Uniform Boundedness Principle, Open Mapping and Closed Graph Theorems. (2) Dual spaces, uniformly convex and reflexive spaces, Radon-Nikod\u00fdm Theorem and the dual of Lp, Banach-Alaoglu\u2019s Theorem, Mazur\u2019s Theorem, adjoint operators. (3) Compact operators, compactness of adjoint, spectral theory and Fredholm alternative for compact operators, application to differential equations. (4) Hilbert space and operators on Hilbert space, Lax-Milgram Theorem, Fourier series, spectral theorem for compact self-adjoint operators, application to differential equations.", + "title": "Graduate Analysis II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a first course in algebraic geometry, introducing the basic objects (varieties) and basic geometric constructs and notions (products, fibers of morphisms, dimensions, tangent spaces, smoothness) with applications to curves and surfaces. It is suitable for students who intend to work in number theory, representation theory, algebraic geometry and topology and geometry in general.", + "title": "Algebraic Geometry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies topology using algebraic methods. It covers the following major topics: Fundamental groups, covering spaces, computation of fundamental groups, van Kampen Theorem, the classification of covering spaces, braid groups, simplicial complexes, simplicial homology, simplicial approximation, maps of spheres, classification of surfaces, Brouwer Fixed-point Theorem and Lefschetz Fixed-point Theorem.", + "title": "Algebraic Topology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies differentiable manifolds and the calculus on such manifolds. It covers the following topics: tangent spaces and vector fields in Rn, the Inverse Mapping Theorem, differential manifolds, diffeomorphisms, immersions, submersions, submanifolds, tangent bundles and vector fields, cotangent bundles and tensor fields, tensor and exterior algebras, orientation of manifolds, integration on manifolds, Stokes' theorem. The course is for mathematics graduate students with interest in topology or geometry.", + "title": "Differentiable Manifolds", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies Lie groups/algebras and their finite dimensional representations. It covers the following topics: Lie groups and Lie algebras, maximal tori, Weyl group, root systems and Dynkin diagram, structure of (compact) semisimple Lie groups/algebras representations, highest weight theory and Weyl character formula. The course is suitable for graduate students with interest in number theory, representation theory, topology or geometry.", + "title": "Lie Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced course on partial differential equations. It covers the following topics the Laplace equations, subharmonic functions, Dirichlet and Neumann problems, the Poisson equations, hyperbolic equations, Cauchy problems, mixed boundary value problems, parabolic equations, initial value problems, maximum principle, mixed boundary value problems. The course is for mathematics graduate students with interest in differential equations and its applications.", + "title": "Advanced Partial Differential Equations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is a course on differential geometry aimed at students who have had some exposure to differentiable manifolds. Major topics include: Riemannian metrics, connections, curvatures, warped products, Hyperbolic spaces, metrics on Lie Groups, Riemannian submersions, geodesic and distance, sectional curvature comparison, Killing fields, Hodge Theory, harmonic forms, curvature\ntensors, curvature operators.", + "title": "Differential Geometry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5216", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended to be a rigorous introduction to the study of functions of one complex variable, aimed at the first year graduate level. Major topics: Holomorphic functions, Cauchy\u2019s integral formula and applications, residue and poles, Argument Principle, Maximal Modulus Principle and the Schwarz Lemma, conformal mappings, harmonic functions and analytic continuation.", + "title": "Graduate Complex Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to representation theory of finite groups and other related topics. The first third of the course is devoted to the study of semisimple rings and algebras, culminating in the Wedderburn-Artin structure theorem. The remainder of the course is devoted to representation theory of finite groups, character theory and applications such as Burnside\u2019s theorem. If time permits, further topics may be discussed, such as Artin\u2019s and Brauer\u2019s theorems, rationality questions or representations of compact groups", + "title": "Graduate Algebra IIB", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics, and students in computer science and philosophy who have sufficient mathematical background. The core of the module is Gdels incompleteness theorem. Before that, some basic knowledge on first order logic, such as compactness theorem and properties of reducts of number theory, will be discussed. After that, some basic topics in Recursion Theory and Model Theory are introduced.", + "title": "Logic and Foundation of Mathematics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics, and students in computer science and philosophy who have sufficient mathematical background. The course will be devoted to prove the consistency and independence of Continuum Hypothesis (CH) as well as Axiom of Choice. The topics include Gdels constructible universe and Cohens forcing method. This course will provide the students not only some basics in modern Set Theory, but also deeper understanding of fundamental phenomena in logic, such as constructibility and independence.", + "title": "Logic and Foundation of Mathematics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics. It focuses on modeling problems in real life and other disciplines into mathematical problems and simulating their solutions by scientific computing methods. Major topics covered include modeling and numerical simulations in selected areas of physical and engineering sciences, biology, finance, imaging and optimization.", + "title": "Modeling and Numerical Simulations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5232", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module studies computational methods in mathematics. It covers the following topics: computational linear algebra, numerical solution of ordinary and partial differential equations, parallel algorithms. The course is for mathematics graduate students with interest in computation methods.", + "title": "Computational Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced course on graph theory. It covers the following topics: tournaments and generalizations, perfect graphs, Ramsey theory, extremal graphs, matroids. The course is for mathematics graduate students with interest in graph theory and its applications.", + "title": "Advanced Graph Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5235", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics. It covers the following major topics: Homological algebra: categories and functors, chain complexes, homology, exact sequences, Snake Lemma, Mayer-Vietoris, Kunneth Theorem. Homology theory: Eilenberg-Steenrod homology axioms, singular homology theory, cellular homology, cohomology, cup and cap products, applications of homology (Brouwer fixed-point theorem, vector fields on spheres, Jordan Curve Theorem), H-spaces and Hopf algebra. Manifolds: de Rham cohomology, orientation, Poincare duality.", + "title": "Homology Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics. It covers the following major topics: Fourier series, Fourier transform on R^n, distributions and generalized functions, Sobolev spaces and their applications to partial differential equations. Introduction to singular integrals.", + "title": "Fourier Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the finite element method. It covers the following topics: variational principles, weak solutions of differential equations, Galerkin/Ritz method, Lax-Milgram theorem, finite element spaces, stiffness matrices. Shape functions, Barycentric coordinates, numerical integration in Rn, calculation of stiffness matrices, constraints and boundary conditions, iterative methods and approximate solutions, error estimates. The course is for mathematics graduate students with interest in finite element method and its applications.", + "title": "Finite Element Method", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in applied mathematics and other related disciplines in science and engineering. It covers the following topics: discrete wavelet transform, discrete wavelet frame and tight frame, sparse approximation in redundant systems, variational methods for ill-posed inverse problems, sampling theory, compressed sensing, low rank matrix approximation, and non-local image restoration approaches.", + "title": "Computational Harmonic Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a course focusing on the theory of wavelets and frames. It covers the following topics: Gabor transform and continuous wavelet transform, Gabor frame and wavelet frame, multi-resolution analysis, tight wavelet frame and orthonormal wavelet basis, applications of wavelet and frame in signal/image processing. The course is for graduate students who are interested in the theory or applications of wavelets and frames.", + "title": "Wavelets", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics. It covers the following major topics:\nIntroduction to convex analysis; Theory of constrained optimization; Lagrangian duality; \nAlgorithms for constrained optimization, in particular, penalty, barrier and augmented Lagrangian methods; Interior-point methods for convex programming, in particular, linear and semidefinite programming.", + "title": "Advanced Mathematical Programming", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5243", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced course on operations research. It covers topics which will be chosen from the following: Large-scale linear and nonlinear programming; Global Optimisation; Variational inequality problems; NP-hard problems in combinatorial Optimisation; Stochastic programming; Multi-objective mathematical programming. The course is for mathematics graduate students with interest in operations research.", + "title": "Advanced Topics in Operations Research", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for honours students in the Quantitative Finance programme and post-graduate students in mathematical finance or quantitative finance. It aims to further students\u2019 understanding in various areas of financial mathematics. Topics include selected materials in the following aspects: Stochastic analysis, stochastic control, and partial differential equations with applications in financial mathematics, exotic options, bond and interest rate models, asset pricing, portfolio selection, Monte Carlo simulation, credit risk analysis, risk management, incomplete markets.", + "title": "Advanced Financial Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the basic techniques in stochastic analysis as well as their applications in mathematical finance. Major topics: Brownian motion, stochastic calculus, stochastic differential equations, mathematical markets, arbitrage, completeness, optimal stopping problems, stochastic control, risk-neutral pricing, and generalized Black-Scholes models.", + "title": "Stochastic Analysis in Mathematical Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5248", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the basic techniques in stochastic analysis as well as their applications in mathematical finance.\n\nMajor topics: Brownian motion, stochastic calculus, stochastic differential equations, mathematical markets, arbitrage, completeness, optimal stopping problems, stochastic control, risk-neutral pricing, and generalized Black-Scholes models.", + "title": "Stochastic Analysis in Mathematical Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5248A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses theories for Markov chain, and how to implement them in various stochastic algorithms. We investigate Markov chains in both discrete and continuous-time settings. We discuss how to implement one step analysis and derive equations for important quantities such as hitting times. We also discuss how to derive martingales to control the process. Finally, we investigate how does a\nMarkov chain converges to its invariant measure using coupling techniques. These theoretical tools will be applied to design and analyze various stochastic algorithms.", + "title": "Stochastic Processes and Algorithms", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5249", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics. It focuses on high-resolution numerical methods and their analysis and applications in computational fluid dynamics. It covers the following major topics: Hyperbolic conservation laws and shock capturing schemes, convergence, accuracy and stability, high-resolution methods for gas dynamics and Euler equations, applications in multi-phase flows and combustion.", + "title": "Computational Fluid Dynamics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics. It focuses on some basic theoretical results on spectral approximations as well as practical algorithms for implementing spectral methods. It will specially emphasize on how to design efficient and accurate spectral algorithms for solving PDEs of current interest. Major topics covered include Fourier-spectral methods, basic results for polynomial approximations, Galerkin and collocation methods using Legendre and Chebyshev polynomials, fast elliptic solvers using the spectral method and applications to various PDEs of current interest.", + "title": "Spectral Methods and Applications", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for graduate students interested in pursuing research in applied and computational mathematics. It provides a concise and self-contained introduction to important methods used in applied mathematics, especially in the asymptotic analysis of differential equations involving multiple scales. Major topics include scaling analysis, perturbation methods, the WKB method, the averaging method, multi-scale expansion and the method of homogenization.", + "title": "Methods of Applied Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will be an introduction to Riemann surfaces, focusing on topics such as topology of Riemann surfaces, divisors and line bundles, differential forms and Hodge theory, the Riemann-Roch theorem, period mappings, the Poincar\u00e9-Koebe uniformisation theorem. We will also discuss more advanced topics such as algebraic curves, hyperbolic geometry and discrete groups of automorphisms.", + "title": "Riemann Surfaces", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the theory of probability. It covers the following topics: probability space, weak law of large numbers, strong law of large numbers, convergence of random series, zero-one laws, weak convergence of probability measures, characteristic function, central limit theorem. The course is for graduate students with interest in the theory of probability.", + "title": "Probability Theory I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course to introduce students the basics of Brownian motion and martingale theory. For Brownian motion, we cover topics such as existence and uniqueness of Brownian motion, Skorokhod embedding, Donsker's invariance principle, exponential martingales associated with Brownian motion, sample path properties of Brownian motion. As for martingales, we confine ourselves to discrete time parameter martingales and cover topics such as conditional expectations and their properties, martingales (submartingales and supermartinmgales), previsible processes, Doob's upcrossing lemma, Doob's martingale convergence theorem, stopping times, martingale transforms and Doob's optional sampling theorems, martingale inequalities and inequalities for martingale transforms.", + "title": "Probability Theory II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5260", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a course on stochastic processes and their applications. It covers topics in stochastic processes emphasizing applications, branching processes, point processes, reliability theory, renewal theory. The course is for graduate students with interest in the applications of stochastic processes.", + "title": "Applied Stochastic Processes", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies stochastic operations research models. It covers the following topics: stochastic dynamic programming, reliability theory, selected topics in inventory theory, selected topics in queuing theory. The course is for graduate students with interest in operations research.", + "title": "Stochastic Operations Research Models", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5262", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is for graduate students with interest in computational molecular biology. The objective is to develop knowledge and research ability in the subject. \n\nThis module studies computational biology problems along both algorithmic and statistical approaches. It covers different methods for multiple sequence alignment, genome sequencing, comparative analysis of genome information, gene prediction, finding signals in DNA, phylogenetic analysis, protein structure prediction. Other topics covered include micro-array gene expression analysis and computational proteomics.", + "title": "Computational Molecular Biology Ii", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Basic iterative methods. Projection methods. Krylov subspace methods. Preconditioned iteration and preconditioning techniques. Methods for nonlinear systems of equations: fixed point methods, Newton's method, quasi-Newton methods, steepest descent techniques, homotopy and continuation methods. Numerical ODEs: Euler's methods, Runge-Kutta Methods, multi-step method, shooting method. Numerical PDEs: Introduction to finite difference and finite element methods. Fast linear system solvers: FFT and multi-grid methods.", + "title": "Advanced Numerical Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5265", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Linear optimisation: extreme points, reduced costs, simplex method, interior point methods, formulations of integer linear programming, cutting plane algorithm, branch and bound algorithm, approximation methods. Nonlinear optimisation: gradient and Newton's methods for unconstrained optimisation, Karush-Kuhn-Tucker optimality conditions, minimax theory, sequential quadratic programming methods. Dynamic programming: Examples and formulations, recursive equations for disrete and continuous problems.", + "title": "Optimization", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5266", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Brownian motion. Quadratic variations. Martingales. Levy's martingale characterisation. Ito integral: Definition and construction. Properties of Ito integrals. Stochastic differential and Ito formula. Ito processes. Integration by parts formula. Stochastic differential equations (SDEs). Examples of some solvable SDEs. Girsanov transform.", + "title": "Stochastic Calculus", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comprehensive introduction to the basic theory and algorithms for nonlinear optimization problems with polyhedral and non-polyhedral constraints. Major topics to be covered include: smooth optimization,\nconstraint qualifications, second order necessary and sufficient conditions, composite nonsmooth optimization, first and second order methods for large scale problems.", + "title": "Theory and algorithms for nonlinear optimization", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental theory of optimal stopping and stochastic control. Two typical examples arising from finance will be elaborated: American option pricing and portfolio selection. Major topics include optimal stopping problems, stochastic control problems, HJB equations, viscosity solution, variational inequality equations, etc.", + "title": "Optimal Stopping and Stochastic Control in Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA5269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Student is expected to conduct research on a topic or area in mathematics, write a report and give an oral presentation on it.", + "title": "Dissertation For Msc By Coursework", + "faculty": "Science", + "gradingBasisDescription": "Not Computed in CAP/Marks", + "moduleCredit": "8", + "moduleCode": "MA5295", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having academic foundation, students with good soft skills and industrial experience often stand a better chance when seeking for jobs upon their graduation. This module gives postgraduate Science students the opportunity to acquire work experience via internship/s during their candidature. The module requires students to perform a minimum of 20hours per week structured internship in an approved company/institution for stipulated minimum period of 6 weeks.", + "title": "Graduate Internship in Mathematics I", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MA5401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having academic foundation, students with good soft skills and industrial experience often stand a better chance when seeking for jobs upon their graduation. This module gives postgraduate Science students the opportunity to acquire work experience via internship/s during their candidature. The module requires students to perform a minimum of 20hours per week structured internship in an approved company/institution for stipulated minimum period of 12 weeks.", + "title": "Graduate Internship in Mathematics II", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "MA5402", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in algebra and number theory are offered", + "title": "Topics in Algebra and Number Theory I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0511", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in algebra and number theory are offered.", + "title": "Topics in Algebra and Number Theory Ii", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in real analysis, complex analysis, Fourier analysis, functional analysis, operator theory and harmonic analysis are offered.", + "title": "Topics in Analysis I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in real analysis, complex analysis, Fourier analysis, functional analysis, operator theory and harmonic analysis are offered.", + "title": "Topics in Analysis Ii", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in differential geometry, algebraic geometry and topology are offered.", + "title": "Topics in Geometry and Topology I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0511", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0511", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in differential geometry, algebraic geometry and topology are offered.", + "title": "Topics in Geometry and Topology II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in ordinary differential equations and partial differential equations are offered.", + "title": "Topics in Differential Equations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced course on dynamical systems. It covers the following topics: higher dimensional real dynamics, one-dimensional complex dynamics, hyperbolic dynamical systems, symbolic dynamics, chaos, strange attractors, fractals in higher dimensions. Julia sets, Meldebrot sets, quasi-conformal mappings. The course is for mathematics graduate students with interest in dynamical systems.", + "title": "Advanced Dynamical Systems", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6216", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics. It covers the following major topics: Homotopy theory: homotopy groups, fibrations, Hurewicz Theorem, Whitehead Theorem, Postnikov systems and Eilenberg-MacLane spaces, simplicial homotopy theory, simplicial groups, James construction, Hopf invariants, Whitehead products, Hilton-Milnor Theorem, cohomology operations and the Steenrod algebra. Homology theory: homology of fibre spaces and Leray-Serre spectral sequences. Geometry: homotopy and homology of Lie groups and Grassmann manifolds, fibre bundles.", + "title": "Homotopy Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics who are interested in mathematical logic. It consists of the following parts: (a) background knowledge in recursion theory; (b) basic techniques in degree theory, such as forcing and priority methods; (c) some generalizations and applications of recursion theory.", + "title": "Recursion Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics, who have sufficient background in mathematical logic. The course will be structured around Morley\u2019s Categoricity Theorem. To set up the stage of the proof of Morley\u2019s Theorem, some necessary knowledge is also introduced, which turns out to be a good training in model theory.", + "title": "Model Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in combinatorics and graph theory are offered.", + "title": "Topics in Combinatorics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in logic are offered.", + "title": "Topics in Logic I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in logic are offered.", + "title": "Topics in Logic II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0511", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in coding theory and cryptography are offered.", + "title": "Topics in Coding Theory and Cryptography", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Selected topics in financial mathematics are offered.", + "title": "Topics in Financial Mathematics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered will be of advanced mathematical nature and will be selected by the Department.", + "title": "Topics in Numerical Methods", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered will be of advanced mathematical nature and will be selected by the Department.", + "title": "Topics in Applied Mathematics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S17-0405", + "day": "Saturday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered will be of advanced mathematical nature and will be selected by the Department.", + "title": "Topics in Applied Mathematics Ii", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in mathematics whose research areas fall within optimization and operations research. It focuses on fundamental theory and algorithms for linear and nonlinear conic programming problems. Major topics covered include first order optimality conditions, second order necessary and sufficient conditions, sensitivity and perturbation analysis, and design and convergence analysis and various Newton's methods.", + "title": "Conic Programming", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered will be of advanced mathematical nature and will be selected by the Department.", + "title": "Topics in Mathematics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered will be of advanced mathematical nature and will be selected by the Department.", + "title": "Topics in Mathematics Ii", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6292", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics offered will be of advanced mathematical nature and will be selected by the Department.", + "title": "Topics in Mathematics Iii", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MA6293", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0511", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "External Institution Module 2", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MB5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "External Institution Module 3", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "MB5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "External Institution Module 4", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MB5004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "External Institution Module 6", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MB5006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "External Institution Module 8", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MB5008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "External Institution Module 10", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "MB5010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "External Institution Module 12", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "MB5012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To provide a working understanding of the basic cell functions and processes with the physical and chemical principles underlying them. In practical terms, we will attempt to solve a number of important problems relevant to replication, transcription, translation, translocation, motility, and other important functions. The assignments will primarily involve the solution of practical cellular problems using quantitative measurements and parameters given in class and original literature will be critically discussed.", + "title": "The Cell as a Machine", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MB5101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To provide a working understanding of basic problems of mechanobiology. In practical terms, we will present to the students a number of important problems relevant to force-generation and force-sensing in living systems, and how the cells interpret the mechanical cues for regulation of their functions. The teaching will primarily involved the discussion of the studies that are performed at MBI and reading original literatures under the guidance of MBI investigators. The \nassignment will involve writing of several science features devoted to the studies conducted at MBI, 1 mini-review devoted to selected mechanobiology field analysed indepth and an oral presentation of the mini-review in class.", + "title": "Topics in Mechanobiology", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MB5102", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module, required for doctoral students in Mechanobiology, studies the scientific seminar as a mode of communication, as well as studying a variety of\nmechanobiology topics that will be presented in seminar format. Students will have opportunities to work on 1) extracting information from research seminars;\n2) critical listening; 3) constructive criticism and identifying areas for\nimprovement; and 4) presenting a brief seminar on material directly related to\ntheir own research. Seminars will be presented by visiting scientists, members\nof the RCE, and the students themselves. Seminars are an effective way for students to interact with the broader scientific community and to keep abreast of the most recent research. The ultimate goal for this module is to\nenable students to get the greatest benefit from research seminars, whether they are participating as audience members or as speakers.", + "title": "Research Seminars in Mechanobiology", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MB5103", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an intensive 2-week \u201cBootcamp\u201d course aimed at introducing new graduate students from biology or physical science backgrounds to key fundamental concepts and practical approaches in understanding cellular function. The focus is to develop a breadth of knowledge that allows students to pursue further depth in their respective research work. Major topics include the Central Dogma of Molecular Biology, gene cloning and editing, microscopy and bioimaging, coding and quantitative methods in biology, the choice and limitations of model organisms. These topics will be covered in lectures and reinforced in thematic-based practicals.", + "title": "Integrative Approach To Understand Cell Functions", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MB5104", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This modules aims at teaching the basic principles of soft lithography techniques that are classically used by biologists. Although clean room techniques will be presented to help understand the whole fabrication process and limitation, a strong emphasis will be placed on post processing that is often performed at the bench such as surface treatment, protein adsorbtion, UV treatment, polymerization. The modules will be articulated around \ni- a theoretical description of fabrication process, polymerization schemes and surface treatment scheme.\nii- Practical fabrication work at the bench in small groups. We will study both \u201cclassic\u201d devices and processes as well as \u201ccustom\u201d devices proposed by students.", + "title": "Microfabrication for Biologists", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MB5105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of the course is to describe the physical principles at stake in a microscope. The principles of light emission, the notion of coherence, of diffraction, of adsorption, of interferences and of spatial filtering will be\npresented in the context of imaging of biological samples. The course aims at providing a deeper understanding and physical grounds to the various practical approaches implemented in a microscope. The idea is to follow the imaging path of a light microscope and to introduce physical principles and mathematical simplest formalism to understand the underlying mechanism in the acquisition of biological relevant images.", + "title": "Advanced Optics for Microscopy", + "faculty": "Mechanobiology Institute (MBI)", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MB5106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Epidemiology I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MCI5001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Epidemiology and Biostatistics Ii", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MCI5006", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Scientific Writing", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MCI5007", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Project", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MCI5008", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces health services research topics and methods most relevant to clinical researchers. The research methods covered include assessment of patient-reported outcomes, economic evaluation, analysis of qualitative data, and systematic review. The model integrates elements of epidemiology, statistics, health economics, and incorporates a diverse range of subjects\nincluding survey methods, decision analysis, and cost effectiveness analysis. Students will also be taught to design their own health services research.", + "title": "Health Services Research Methods for Clinicians", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MCI5009", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biochemistry", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD1120A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Physiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD1130A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Normal Structure and Function", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Pass and Fail", + "moduleCredit": "1", + "moduleCode": "MD1140", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Microbiology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD2112A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Abnormal Structure and Function", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Pass and Fail", + "moduleCredit": "0", + "moduleCode": "MD2140", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Pathology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD2141A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The programme is a revamp of the former elementary clinical course, to keep in line with the curricular changes in the School of Medicine. The Clinical Skills Foundation Programme has three main components 1. Clinical Skills in history taking and physical examination 2. Skills in effective communication and professional behaviour with patients and their relatives 3. Competencies in basic set of procedural skills The learning activities include lectures, tutorials, simulation, direct experience with patients, and feedback.", + "title": "Clinical Skills Foundation Programme", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Pass and Fail", + "moduleCredit": "0", + "moduleCode": "MD2150", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Medicine", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD3000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Medicine", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD3011A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatrics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD3012A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Surgery", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD3021A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "MD3140 Core Clinical Practice aims to provide a solid foundation for the management of core medical problems, and equip students with necessary knowledge, skills, and behaviour to commence training as an effective junior doctor within Singapore\u2019s health care system upon graduation. There will be five postings Medicine, Family Medicine, Paediatrics, Surgery, and Orthopaedic Surgery where students will be integrated within the health care teams in the teaching hospitals.", + "title": "Core Clinical Practice", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD3140", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Acute and Speciality Clinical Practice consists of three major postings (Obstetrics and Gynaecology; Psychological Medicine, and Acute Care comprising of Anaesthesia and Emergency Medicine), as well as three shorter postings (Ophthalmology, Otolaryngology, and Pathology and Forensic Medicine). Three major postings will constitute three blocks and three shorter posting will constitute one block. There will be one CA for each of the four blocks. The postings will allow the students to expand their knowledge, skills, and attitudes obtained from the Core Clinical Practice and focus on more in-depth clinical care experience.", + "title": "Acute and Specialty Clinical Practice", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD4140", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Community Health Posting (CHP) seeks to create an environment and experience for students to \n\na. provide a direct community perspective towards health and disease by defining a specific health problem in the community, conducting a simple survey to assess the health problem and providing recommendations for improvement of the health to the community;\n\nb. participate in research that allows application of the theory of epidemiology and biostatistics and to further develop potential for research;\n\nc. understand scientific integrity and comply with ethical frameworks for good research and clinical practice; and\n\nd. experience and appreciate working in teams.", + "title": "Community Health Posting", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Not Computed in Marks", + "moduleCredit": "1", + "moduleCode": "MD4150", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The focus of the medicine module will consist of the following student internship programme (medicine, paediatric medicine, geriatric medicine) and clinical postings (Infectious Disease and Dermatology). The Student Internship Programme (SIP) and clinical postings will allow the students to expand their knowledge and skills obtained from the core clinical practice year and acute and speciality clinical practice year, as well as to apply the knowledge and skills in a clinical setting as student interns under supervision.", + "title": "Advanced Clinical Postings", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD5140", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The focus of the surgery module will consist of the following student internship programme (surgery, orthopaedic surgery) and simulation posting. The Student Internship Programmes (SIP) and simulation posting will allow the students to expand their knowledge and skills obtained from the core clinical practice year and acute and speciality clinical practice year, as well as to apply the knowledge and skills in a clinical setting as student interns under supervision.", + "title": "Student Internship Program", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "MD5150", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Electives module is a self-planned and self-directed learning program, where students are given the discretion to decide the institutions, venues, dates and duration for their elective posting, within a specified elective term. They will have the opportunity to pursue areas of study or scholarship that are of interest to them and beyond the traditional curriculum, and to develop skills in independent, self-directed learning. Electives may be in the form of clinical attachments in a hospital or ambulatory care setting, non-clinical attachments, and research attachments to a laboratory, or a research program/institute.", + "title": "Electives", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Not Computed in Marks", + "moduleCredit": "1", + "moduleCode": "MD5160", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Urop", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Not Computed in Marks", + "moduleCredit": "1", + "moduleCode": "MD5171", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop understanding of the fundamental principles underlying common experimental techniques, as well as the advantages and limitations of each technique for specific research applications. This in turn will facilitate the critical analysis of experimental data. Techniques covered will include different ways to study nucleic acids, proteins and lipids, key recent advances such as next-generation sequencing and CRISPR, disease-specific approaches such as in stem cell and cancer biology, and the importance of big data analysis in the fast-evolving biomedical research landscape.", + "title": "Techniques in Biomedical Research", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5102", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Biostatistics For Basic Research", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MDG5108", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to help students gain an in-depth understanding of advanced topics in (1) General pharmacology, (2) Neuropharmacology and (3) Cancer pharmacology using lectures and journal clubs given by clinical and basic science experts.", + "title": "Advanced Topics in Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5204", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Neuroscience", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5205", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the last decade significant advances have been made in our understanding of the molecular and cellular control of immune responses. These discoveries are now being translated into the design and testing of immunotherapeutic interventions for a range of diseases including cancer, autoimmunity, respiratory and infectious diseases. This module is for graduate students who wish to extend their knowledge and skills in both immunology and its translation to immunotherapeutics. The module aims to allow the students to understand the research process, from the fundamental discoveries at the forefront of immunological research, to the application of novel interventional immune-based therapies.", + "title": "Clinical immunology and Immunotherapeutics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5207", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Skills", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5214", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to healthcare law and clinical ethics. No experience in law or bioethics is needed. The module will cover the core legal and ethical issues in clinical practice including clinical decision-making (consent, mental capacity, refusal, end of life, role of family, mature minors, lasting powers of attorney, advance plans, best interests), medical negligence, patient confidentiality and disclosure, vulnerable adults and children at risk, innovative treatments and telemedicine. The module aims to develop skills of critical thinking and analysis to equip participants to apply bioethical and legal principles to various healthcare issues in healthcare practice.", + "title": "Healthcare Law & Ethics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5215", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students to identify and critically evaluate ethical considerations in policies, systems and interventions intended to protect and promote the health of populations. Students will be introduced to ethical theories and frameworks used in public health, and asked to consider the role of culture, values and context in applying these in practice. Seminars will revolve around topics in disease prevention and control, resource allocation in healthcare, and global health. Case studies in, e.g. vaccination ethics, use of technology in healthcare, tobacco control, etc, will illustrate the application of key principles. Students will be assessed via presentations and written submissions, and participation in class discussions and an online forum.", + "title": "Applied Ethics in Public Health and Healthcare Policy", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5216", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the module, principles of cell biology and signal transduction will be discussed, by using various signalling pathways as examples. The focus of the module is on\napplying the scientific method to define research questions, devise experimental strategies to test hypotheses and to critically analyze data. To this end, the module will consist of paper discussions, group presentations and research proposal development. The module will primarily focus on basic cell biology and signalling but also include clinical research related aspects.", + "title": "Biochemical and genetic approaches to understanding cell biology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5218", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The dawn of the human genome project in the 1990s has fuelled advances in 2 key technologies. They are the microarray technology for genomics and mass\nspectrometry for proteomics. From these platforms, many other specialty fields have emerged including array comparative genomic hybridization, microRNA array,\nphosphoproteomics, protein arrays and metabolomics, etc. These tools have propelled discoveries in basic and translational research. The module will educate students on these tools and their diverse applications of \u201carray and\nomics\u201d in this era of functional genomics.", + "title": "Array and Omics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MDG5220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The ability to manipulate gene expression in a cell, an organ or a whole organism is an important aspect in the delineation of the molecular mechanisms in health and disease. Hence, many conventional as well as newly developed techniques for gene expression manipulation are being used in biomedical research. One of the most used strategies involves the use of genetically engineered viruses to infect mammalian cells. This module will cover the use of viral gene delivery vectors for \n(i) Exogenous expression of genes \n(ii) Knockdown of genes by RNA interference", + "title": "Viral vectors for manipulating gene expression", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MDG5221", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the fundamental concepts in cardiovascular and metabolic diseases. The curriculum approaches the diseases from both the scientific and clinical perspectives with lecturers who are practising clinicians and cardiovascular scientists. Students will have the opportunity to visit the cardiac catheterization laboratory.", + "title": "Cardiovascular and Metabolic Diseases", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5222", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce students to stem cell\nbiology, their origins, properties, function in tissue\nrepair/regeneration, and utility in therapy.\nMajor topics are\n1) ES cells\n2) Neural stem cells\n3) Muscle stem cells\n4) Stem cells and cancer\n5) Hematopoeitic stem cells\n6) Mesenchymal stem cells\n7) Induced pluripotent stem cells.", + "title": "Stem Cells and Regenerative Medicine", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MDG5223", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 2MC module is designed to introduce students to commonly-used animal replica of key human diseases including cancer, muscular diseases, neurological and immune disorders. Major topics to be covered include non-mammalian models as well as rodent and non-human primate models of human diseases, with an emphasis of mammalian disease models, including iPSCs derived from human patients, and how animal disease models are used in drug discovery.", + "title": "Animal Models of Human Diseases", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MDG5224", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to explore antimicrobial resistance and\nprograms in drug discovery. Multidrug-resistant and extensively drug-resistant strains are responsible for deadly outbreaks and hospital-acquired infections around the globe, undermining advances in health and medicine. The purpose of the course is to become cognizant of the growing threat of drug resistant and current programs in antimicrobial discovery. Besides of traditional\nantimicrobial discovery programs; alternative, novel therapies including antibody based immunotherapy; CAR-T-cell and microbiome therapies are explored. The course addresses critical issues of antimicrobial-resistance, mechanisms of resistance, and programs in drug discovery from target and lead finding to clinical trials.", + "title": "Antimicrobial resistance and drug discovery", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5226", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers comprehensively the important elements required to build and develop a bio-business through a series of lectures and highly interactive tutorials, workshops and panel discussions with experts. A diverse team of lecturers will bring in expert practitioners\u2019 experience and knowledge on different aspects of a biobusiness. The course will guide the students through the process of generating an idea and developing it to a business pitch.", + "title": "Bio-Innovation & Entrepreneurship", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5227", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to give the students a system understanding of the key signal transduction pathways in the cell, with close implication in health and disease. The main topics include the following: \n(1) PI3K-MTOR pathways \n(2) MAPK pathways \n(3) Tyrosine kinase pathways \n(4) GPCR \n(5) Small GTPase \n(6) TNF signalling pathways \n(7) NF-kB pathways \n(8) Jak-STAT pathways \n(9) TGFb-Smad pathways \n(10) Hippo signaling \n(11) Hedgehog signalling \n(12) AMPK signaling \n(13) Ubiquitination and protein degradation\nThese topics will be taught by leading experts with strong research background from NUHS, Duke-NUS and IMCB.", + "title": "Advanced Topics in Signal Transduction", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5229", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ethical issues (questions about values, right and wrong) pervade many areas of biomedicine and biomedical science. This module aims to provide students with the theoretical understanding and practical skills necessary to reflect critically upon bioethical issues and engage effectively in discussions about them. Students will be introduced to the major theoretical and empirical approaches in bioethics and develop highly transferrable skills in ethical reasoning, critical reflection and moral justification. Students will learn how to integrate normative analysis with empirical research findings to address questions about what ought to be done.", + "title": "Bioethics: Core Philosophical and Empirical Approaches", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5230", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "History and theoretical foundations of ethics in biomedical and behavioural research as well as examination of major ethical issues arising in the conduct of such research; topics covered include history of research ethics, theories and concepts in research ethics review, ethical issues relating to various research methodologies, and ethical issues arising in various types of biomedical and behavioural research", + "title": "Topics in Biomedical and Behavioural Research Ethics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5231", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The unique aspect of this module is that it allows students to meet successful members of the local biotechnology community. This provides an opportunity to learn directly from industry leaders about commercially viable technologies, and about the job roles and lifestyles of industry scientists. This will be done by examining specific companies as \u201ccase studies\u201d. Each case study will involve the evaluation of the company\u2019s technology and the market environment. This module is ideal for students considering industry or alternative (non-research) careers, and would like to make contacts and gain insight into such roles.", + "title": "Current Practices in Biotechnology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5232", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to a range of existing and emerging therapy modalities including how compounds are identified and developed. This will lead into the mechanism of drug action, drug delivery and drug metabolism specific to each class of drug. Additionally, an emphasis on advanced techniques for drug design and development specific to each class of drug will also be given. Furthermore, drug candidate selection, patenting, clinical trial design, objectives and roles of regulatory bodies will be covered. This module is ideal for students considering careers in drug development. Students should consider taking the companion module, MDG5232 Case studies in the biotechnology industry.", + "title": "Current Topics in Drug Design and Development", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5233", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "PhD and MSc candidates may undertake independent study of a topic in bioethics under the supervision of a Centre for Biomedical Ethics (CBmE) faculty. They can formulate a topic of interest in advance and approach their prospective supervisor (with relevant research interests) to discuss and write a proposal for the Independent Study Module (ISM). They are advised to start working on the project several weeks before the start of the semester so that they can have sufficient time for any project revision if necessary. Students and supervisors are required to submit the CBmE ISM Contract agreeing to a plan of work and assessment. Students may check with CBmE to check for the list of ISM projects and prerequisites.", + "title": "Independent Study Module (CBmE)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5234", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the various pathways from fundamental\nto applied research in the biomedical field. Using major\ndiseases as a backdrop, dynamic researchers with\nestablished track records in interdisciplinary and\ntranslational research will teach on various topics, with the\nobjective of illustrating the evolution of projects from bench\nto bedside/ industry.", + "title": "Pathways to Biomedical Innovation and Enterprise", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MDG5236", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the Capstone Project is for the students to\nengage in research and apply multi-disciplinary knowledge\nthey have acquired from their MSc program, to a real-world\nproblem focused on clinical health issues. During the\nproject, students utilise the entire process of solving a realworld\nteam-based project, from collecting to processing the\nactual data, to applying suitable analytic methods to the\nproblem. Students will work in small teams on a project\nsupervised by a mentor from various departments of NUH\nand NUS. The final project will be delivered in a written\nreport and a formal presentation.", + "title": "Biomedical Innovation Capstone", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MDG5237", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare master of nursing students with the general principles and concepts of pharmacokinetics (body\u2019s handling of drug) and harmacodynamics (principles/mechanism of drug action) in humans. A sound understanding of these foundation principles, which constitute the scientific basis of therapeutics, will promote the safe and rational use of drugs in disease conditions. The module will then progress to the study of the pharmacological properties of various classes of clinically useful drugs, starting with autonomic nervous systems, and followed by gastrointestinal, respiratory and cardiovascular systems. These topics will be\ncovered by faculties in Department of Pharmacology. In addition, it will cover legal and ethical principles underpinning the advanced practice nurse\u2019s role in administration of drugs and will be covered by ALCNS faculty.", + "title": "Clinical Pharmacology and Pharmacotherapeutics I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5238", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is a continuation from MDG5238 Clinical Pharmacology and Pharmacotherapeutics I on the study of pharmacological properties of various classes of clinically useful drugs. It is organized according to drugs acting on various body systems; namely the neurology, musculoskeletal, pain and endocrinology. The whole group of antimicrobials for the treatment of infections and anti-cancer drugs will also be included. The scientific basis of the therapeutic applications of these drugs will be demonstrated to the students, thus promoting the safe and rational use of drugs in clinical therapeutics.", + "title": "Clinical Pharmacology and Pharmacotherapeutics II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5239", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the ISM is for the students to engage and promote self-study, critical thinking and independent research abilities, to a real-world problem focused on clinical health issues. The team-based project, from solving\na real-world clinical health issue to commercialising the product or process, must be relevant to industrial and clinical areas. Students will work in small teams on a project which must be approved by the module coordinator before\nthay are allowed to proceed. The students should identify a supervisor/mentor who is willing to oversee the projects and obtain their approval before submitting the proposal for consideration.", + "title": "Independent Study Module \u2013Innovation Capstone Project", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MDG5240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will present modern statistical methods for analyzing large-scale -omics data, with emphasis on application to real-world data. A variety of statistical methods and computing approaches will be covered, including hypothesis testing for high-dimensional data, dimension reduction techniques, and machine learning methods commonly employed in -omics data analysis such as tree-based methods and support vector machine. The module will also include in-class computing exercise for model estimation and inference, such as the expectation-maximization algorithm and sampling-based Bayesian inference. The module will end with advanced statistical approaches for the integration of two or more -omics data.", + "title": "Advanced Statistical Methods for Bioinformatics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5241", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops the foundations of microscopy and\nchemical microanatomy essential for research and clinical\napplications. It covers the visualization of biomolecules in\ntissues and cells, including nuclei acids, proteins, lipids,\nmetabolites, inorganic materials and elements, in the fixed\nand living state, and in the context of human microscopic\nanatomy. Students will be introduced to different\nmicroscopy techniques with emphasis on structure-function\nrelationships, and shown examples of how these can be\napplied to solve problems in biomedical sciences. Suitable\nclinical problems will be introduced throughout the course\nto show the application of scientific knowledge, and to\nintegrate across disciplines.", + "title": "Advances in Microscopy and Chemical\nMicroanatomy", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To deliver an understanding of human disease from a bench to bedside perspective. \n\nTo introduce students to the basic biology and clinical pathology underlying human disease. \n\nThe discussion of each disease will be led by two faculty members, highlighting the fundamental molecular basis of cellular function, followed by a clinical perspective.", + "title": "Biology of Disease", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5243", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we take multidisciplinary approach to understand the cellular and the neural basis of cognition We will discuss:\n1.\tThe encoding of noxious stimuli and the neural basis of the affective-motivational and cognitive effects linked to pain,\n2.\tReinforcement learning: modulation of synaptic plasticity, prediction errors, comparison of machine learning algorithms and biologically plausible models,\n3.\tApproaches to studying cognition in healthy humans and current insights into how cognitive processes are represented in the brain from synaptic to behavioural level, \n4.\tAnimal models of cognitive and behavioural abnormalities associated with psychiatric and neurodegenerative diseases.", + "title": "Behavioral & Cognitive Neuroscience", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5244", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we take multidisciplinary approach to understand the cellular and molecular basis of neuronal signalling and the mechanisms of memory and effective learning:\n\nWe will discuss:\n1.Basic functions of neurons, memberane potential, action potential and channel properties and functions.\n2. Pre and Post synaptic mechanisms of neurotransmission.\n3. Taxonomy of memory and functions of different brain areas for the formation , storage and retrieval of memory.\n4. Synaptic Plasticity and its mechanisms for short and long-term memory formation.\n5. Molecular mechanisms of memory.\n6. Disorders of brain function and memory.", + "title": "Neuronal Signaling and mechanisms of effective Learning", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5245", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with an overview of the molecular pathogenesis of infectious diseases in general, followed by a focus on current research methods being used and discussions on infectious disease-related research ethics. Field trip visits (pending COVID-19 restrictions) to the investigational medicine unit are being planned to allow students the opportunity to understand infectious disease-related clinical research.\n\nThe course is designed for entering M.Sc. or Ph.D. students in their first year, to help provide perspective for their choice of labs and basic concepts that will be useful for their future thesis work. Topics include, viruses; bacteria; parasites and fungi with integration of molecular pathogenesis, host-pathogen interactions, disease physiology/pathology, innate & adaptive immunity and laboratory models of infectious disease and treatment challenges discussed throughout each pathogen family. Other topics include epidemiology and global health and research ethics related to infectious disease. In addition, there will be interactive sessions for students to strengthen communication and presentation skills through debates and journal club presentations.", + "title": "Infectious Diseases: Principles & Research Methods", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5246", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce principles and applications of novel and evolving imaging technologies relevant to biological applications. Elucidation of molecular and structural characteristics of living cells with a focus on Microbiology and Immunology will be addressed through different techniques such as correlative light-electron microscopy (CLEM), ultra-microscopy, Confocal Microscopy, Transmission Electron Microscopy (TEM), Holotomography (HT), Super Resolution Microscopy, Atomic Force Microscopy (AFM), AFM- Infrared Radiation Spectroscopy (AFM-IR) and Focused ion beam/scanning electron microscope (FIB/SEM). This module will integrate didactic lectures, seminars and tutorials to introduce theory and applications of the above-mentioned techniques across disciplines of biology, bio-engineering and medicine.", + "title": "Bio-Imaging: Advanced Tools and Applications", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MDG5247", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the ways in which ethical values, analysis, and reflection can inform the development, promulgation, and use of novel biotechnologies, enabling students to critically engage with ethical nuances and tradeoffs that pervade the area. We will provide general tools for ethical analysis, then apply these tools to three topics of particular relevance to cutting-edge biotechnology: the use of Big Data and Artificial Intelligence; precision medicine and genomics; and the rapid development of novel diagnostics, therapeutics and vaccines during global health emergencies.", + "title": "The Ethics of Biotechnology and Innovation", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5248", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course approaches the ethics of ageing from the contemporary ageing person\u2019s moral choices. It invites learners to theorise more fully the study of our universal concerns as ageing subjects, and gain proficiency in framing their thinking in terms of consequences, duties, responsibilities, perspectives and communitarian principles. This study supports personal, professional and institutional decision-making, as well as scholarly and inter-disciplinary discussion.\n\n The course covers contemporary bioethical debates on extending or ending life, healthcare resource allocation and inter-generational justice, making advance care decisions, caregiving responsibilities and just distribution, autonomy and dependence, and robot companions.", + "title": "Ageing and Ethics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5249", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bioethics is an interdisciplinary field concerned with addressing the practical ethical issues that arise in healthcare and the biomedical sciences. This module will enable graduate students to navigate the field of bioethics, equipping them with foundational knowledge and skills to identify bioethics questions, to make practical ethical arguments to answer these questions, and to determine the correct place of law, social science and philosophy in bioethical inquiry. The module will provide the the groundwork to enable students to pursue further specialised research in bioethics, or to explore the ethical aspects of particular research interests in healthcare and the biosciences.", + "title": "Foundations and Methods in Bioethics: Part I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MDG5250", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed as a primer for teaching in higher education, specifically contemporary teaching pedagogies, education principles and best practices as well as conducive learning environments, and Scholarship of Teaching and Learning (SOTL). The major topics that will be covered are 1) Contemporary pedagogies and teaching strategies 2) Technology in education (Teaching online) 3) Conducive learning environments 4) Assessment and Feedback 5) SOTL\n - Large classroom teaching/Small group facilitation\n - Supervision, coaching and mentoring", + "title": "The Nuts and Bolts of Teaching in Higher Education", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MDG5251", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships are an essential platform to gain experiential skills to be Future Ready for careers in an increasingly competitive employment landscape. This module provides\ngraduate research students an opportunity of completing an internship of 3 to 6 months, the Industry Experiential Internship (IEI) programme, before graduation. IEI positions may be embarked upon with the following partners:\n\n1) Clinical entities associated with Research Programmes.\n2) NRF Technology Consortiums.\n3) Corporate Laboratories like WIL@NUS, NUSAgilent Hub, etc.\n4) NUS Enterprise which comprise Block 71, NUS GRIP\n5) The Institute for Digital Medicine (WisDM).\n6) The University of California-San Francisco (UCSF) Rosenman Institute.", + "title": "Industry Experiential Internship", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MDG5600", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Graduate Research Seminar", + "title": "Graduate Research Seminar", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MDG5771", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is part 1 of a 2-module package \u2013 Engineering\nPrinciples and Practice - that introduces Year 1 students\nto what engineers do and the engineer's thought process.\nEPP I focuses on the engineering principles of how\nsystems work and fail, and the engineering practice of\nhow they are designed, built and valued. Given a\npractical engineering system, e.g. a drone, or an\nengineering event, e.g. the Challenger space shuttle\ndisaster, students are guided to deconstruct the system\ninto inter-connected sub-systems. Following which they\nwill develop an understanding of how forces, energy flow\nand/or mass flow between sub-systems impact the whole.", + "title": "Engineering Principles and Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME1102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "T2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T9", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T7", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T8", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T7", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-01-03", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "T8", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-01-03", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "T9", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "T2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-04-21", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-01-03", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "T4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-04-21", + "day": "Tuesday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-01-03", + "day": "Tuesday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "T6", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "T1", + "startTime": "1700", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-04-21", + "day": "Tuesday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the student with the fundamental knowledge to do calculations on design components like bolts, fasteners, joints, welds, springs, gears, brakes, cluthes. Other areas covered will include material selection, fatigue, bearings, shafts, as well as design mechanisms like linkages and cams. This is a compulsory module with no final exam. Assessment will be based purely on continuous assessment.", + "title": "Fundamentals Of Mechanical Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the student with the fundamental knowledge to do calculations on design components like bolts, fasteners, joints, welds, springs, gears, brakes, clutches. Other areas covered will include material selection, fatigue, bearings, shafts, as well as design mechanisms like linkages and cams. This is a compulsory module with no final exam. Assessment will be based purely on continuous assessment.", + "title": "Fundamentals of Mechanical Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2101E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the students to the various\nstandards and techniques of sketching, prepare\nengineering drawings and specifications, and interpreting\ndrawings. Students also get to use advanced commercial\nCAD software to do 3D solid modeling. Above all, this\nmodule expands the students\u2019 creative talent and enhances\ntheir ability to communicate their ideas in a meaningful\nmanner. Major topics include: Principles of projections;\nIsometric; Orthographic and Isometric sketching; 3D solid\nmodeling; Sectioning and Dimensioning; Drawing\nstandards; Limits, Fits and Geometrical Tolerances.\nThis module also provides the student with the fundamental\nknowledge to do calculations on design components like\nbolts, screws, fasteners, weld joints, springs, gears,\nmaterial selection, fatigue, bearings and shafts.\nThis is a 100% CA core module for all Mechanical\nEngineering students.\nThis module is also open to cross-faculty students.", + "title": "Engineering Innovation and Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "T2N", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E3-06-04", + "day": "Tuesday", + "lessonType": "Packaged Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "T2H", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E3-06-04", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E2-0309PC6", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E2-0307PC4", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "T2M", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E3-06-04", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "T2F", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E3-06-03", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "T2C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E3-06-03", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "T2J", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E3-06-04", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "T2G", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E3-06-03", + "day": "Tuesday", + "lessonType": "Packaged Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "T2A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E3-06-03", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E2-0307PC4", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E2-0308PC5", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E2-0308PC5", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "T2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "T2I", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E3-06-04", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E2-0309PC6", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E2-0309PC6", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E2-0308PC5", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "5", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5 + ], + "venue": "E2-0308PC5", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "T3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 11 + ], + "venue": "E3-06-01", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Packaged Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "T6", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 8, + 9, + 10, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "T4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 11 + ], + "venue": "E3-06-03", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "T2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 11 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 7, + 8, + 9, + 11 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5 + ], + "venue": "E2-0307PC4", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5 + ], + "venue": "E2-0307PC4", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5 + ], + "venue": "E2-0307PC4", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "T5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 8, + 9, + 10, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "T2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 13 + ], + "venue": "E3-06-03", + "day": "Tuesday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "T3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5 + ], + "venue": "E2-0307PC4", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "T4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 13 + ], + "venue": "E3-06-03", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to learn the various standards and techniques of geometrical sketching, prepare engineering drawings and specifications, and interpreting drawings. Students also get to use advanced commercial CAD software to do 3D solid modeling. Above all, this module expands the students' creative talent and enhances their ability to communicate their ideas in a meaningful manner. Major topics include: Principles of projections; Isometric and Auxiliary views; Interpenetration of solids and Development of surfaces; 3D solid modeling; Sectioning and Dimensioning; Machine and Assembly drawings; Drawing standards and Limits and Tolerances. This is a core module for all Mechanical Engineering students and is also open to all cross-faculty students.", + "title": "Engineering Visualization & Modeling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "ME2103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Part II of Engineering Principles and Practice will focus on\nthe engineering principle of how systems are energized\nand controlled and the engineering practice of how they\nare designed, built and valued. Most modern engineering\nsystems are powered electrically. They convert some raw\nform of energy such as fuel (petrol, diesel) or battery\n(electrochemically stored energy), into electrical energy.\nHence energy sources and energy conversion, electrical\nenergy utilization through conversion into various\nfunctions, measurement of functions through their\nperformance parameters will form the backbone of this\nmodule", + "title": "Engineering Principles and Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "T4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-01-03", + "day": "Tuesday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "T7", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T7", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-01-03", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "T8", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T1", + "startTime": "1700", + "endTime": "2000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-04-21", + "day": "Tuesday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T6", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-01-03", + "day": "Wednesday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "T2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-04-21", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "T3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-01-03", + "day": "Monday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "Unknown" + }, + { + "classNo": "T8", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Packaged Lecture", + "size": 36, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides basic mechanical engineering\nknowledge and theory of mechanics of materials, and how\nthey are used to solve practical engineering problems. The\ncourse includes introduction to statics, concept of stress\nand strain, analysis of stresses and deflections in a loaded\nbeam, torsion of a circular bar as well as analysis of\nframes and machines.", + "title": "Strength of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2112", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 9 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6, + 11 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 9 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 9 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6, + 10 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 9 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-05", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 9 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2K", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 7 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 8 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2J", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2H", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 8 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 9 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 7 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 8 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 8 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 8 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6, + 10 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2L", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2I", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 8 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 7 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2L", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2D", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2K", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7, + 9 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2I", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 10 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 7 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2H", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 10 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2J", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8, + 10 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7, + 9 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8, + 10 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 7 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 10 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 6 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 9 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 6 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8, + 10 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7, + 9 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 9 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 6 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5, + 7 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4, + 9 + ], + "venue": "EA-02-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a foundation for an understanding of the basic principles of solid mechanics and its applications to simple engineering structures. It provides a foundation for the understanding of basic principles of solid mechanics and its applications to simple engineering structures. The topics covered are: Introduction to Mechanics of deformable bodies; Concepts of Stress and Strain; One-dimensional systems; Shear force and Bending moment; Deflection of laterally loaded symmetrical beams; Stresses in laterally loaded symmetrical beams; Torsion. It is a core module.", + "title": "Mechanics Of Materials I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "ME2113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "ME2114 is an intermediate mechanics module on the failure and deformation of elastic structures. Common criteria for determining failure of brittle and ductile materials will be introduced and applied for the failure analyses of thin-walled pressure vessels and slender structures. Failure of slender structures due to buckling is included. The module will also present several energy based methods for determing the deformation of slender structures and show how energy methods lead to the Finite Element Method \u2013 a common tool for computational stress analysis.", + "title": "Mechanics of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2114", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides for a further understanding of concepts and principles of solid mechanics and its applications to engineering problems. The topics covered are: Two-dimensional systems; Combined stresses; Energy methods; Columns; Experimental stress analysis; Inelastic behaviour.", + "title": "Mechanics of Materials II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "ME2114E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 3, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 3, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Lecture", + "size": 3, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6, + 7 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 3, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the fundamental engineering principles on kinematics and kinetics. The topics of rigid body dynamics and vibration will be covered, including the theoretical development and practical application to mechanisms and machinery. The salient features of dynamics to be applied for each instance will be clearly explained and the interpretation of the results obtained will be highlighted.", + "title": "Mechanics Of Machines", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2115", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-02-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2G", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-02-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2N", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-02-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-02-11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2H", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-02-11", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2L", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2I", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-02-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2M", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2I", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2H", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2M", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "2G", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2L", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2N", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E1-02-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E1-02-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the fundamental engineering principles on kinematics and kinetics. The topics of rigid body dynamics and vibration will be covered, including the theoretical development and practical application to mechanisms and machinery. The salient features of dynamics to be applied for each instance will be clearly explained and the interpretation of the results obtained will be highlighted.", + "title": "Mechanics of Machines", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2115E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module develops a good understanding of the basic concepts and application of thermodynamics and heat transfer, required for the analysis, modeling and design of processes and thermal-fluid systems in engineering practice. Major topics include the introduction and the application of the First and Second Laws of Thermodynamics, reversible and irreversible processes, entropy, non-flow and flow processes, cycles involving entropy changes, power and refrigeration cycles, as well as convection & radiation heat transfer.", + "title": "Engineering Thermodynamics and Heat Transfer", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2121", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2H", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2K", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2L", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2M", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2G", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2N", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2M", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2K", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2N", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2H", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2L", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2G", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "EA-06-20", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course develops a good understanding of the basic concepts and application of thermodynamics required for the analysis, modeling and design of thermal-fluid systems in engineering practice. Major topics include: Review of First and Second Laws of Thermodynamics and their applications; Reversible and Irreversible processes; Entropy; Non-flow and flow processes; Cycles involving entropy changes; Power/refrigeration and air cycles; Ideal gas mixtures; Psychrometry and applications; Fuels; Combustion and First Law applied to combustion.", + "title": "Engineering Thermodynamics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2121E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course to fluid mechanics as applied to engineering. After introducing the basic terminology and a classification of fluid and flow, students are taught fluid statics, which cover hydrostatic forces on submerged bodies, surface tension forces, buoyancy, metacentric height and stability of floating bodies. Numerous examples of engineering applications pertaining to each aspect\nof fluid statics are presented. In the section on fluid dynamics, basic principles of fluid motion are introduced. This covers the continuity equation, Bernoulli and energy equations. The momentum equation and its engineering application using the control volume approach are included. In the analysis of fluid-mechanics problems, dimensional analysis and similitude are taught with engineering examples. On viscous flow in pipes, laminar and turbulent pipe flows, Hagen-Poiseuille law, friction factor, losses in pipe fittings and use of Moody\u2019s Chart will be covered. This module ends with an introduction to pumps, their elementary theory and matching pump and system. characteristics.", + "title": "Fluid Mechanics I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2134", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2I", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2L", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2M", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2J", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2K", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2G1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-21" + }, + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2J", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2M", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2I", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2L", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2K", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-21", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "EA-04-22", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course to fluid mechanics as applied to engineering. After introducing the basic terminology and a classification of fluid and flow, students are taught fluid statics, which cover hydrostatic forces on submerged bodies, surface tension forces, buoyancy, metacentric height and stability of floating bodies. Numerous examples of engineering applications pertaining to each aspect of fluid statics are presented. In the section on fluid dynamics, basic principles of fluid motion are introduced. This covers the continuity equation, Bernoulli and energy equations. The momentum equation and its engineering application using the control volume approach are included. In the analysis of fluid-mechanics problems, dimensional analysis and similitude are taught with engineering examples. Finally, laminar and turbulent pipe flows, Hagen-Poiseuille law, friction factor, losses in pipe fittings and use of Moody\u2019s Chart will also be covered.", + "title": "Fluid Mechanics I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2134E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce fundamentals of fluid dynamics covering notions of the continuum hypothesis, flow kinematics, mathematical tools for flow visualization, material derivative, fluid acceleration, conservation laws, Euler and Navier-Stokes Equations, inviscid flows, potential flows, viscous flows, creeping flows and boundary layer flows. Review of relevant mathematical tools to support the theory will accompany the topics when and where it is required.", + "title": "Intermediate Fluid Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2135", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the students to the operating principles of\nhydraulic pumps and turbines, their applications and methods of selecting pumps to match system requirements and how to avoid cavitation damage. We also focus on the mathematical theory of potential (non-viscous) fluid flow as well as the structure of basic vortices.\n\nThis is followed by treatment of the fundamentals of viscous fluid flow and boundary layers. The major topics covered therein are the Navier-Stokes equations and some of their exact solutions, boundary layer flow theory, estimation of drag force on a flat plate, boundary layer separation and control, equations of motion for turbulent flow and turbulent boundary layers, turbulent models and velocity profiles in turbulent boundary layers. Boundary layer with transition. Flow around bluff and streamlined bodies: their flow patterns, drag and lift.", + "title": "Fluid Mechanics II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2135E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to fundamental concepts in control system analysis and design. Topics include mathematical modeling of dynamical systems, time responses of first and second-order systems, steady-state error analysis, frequency response analysis of systems and design methodologies in both the time and the frequency domains.", + "title": "Feedback Control Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2142", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2H", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2N", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2G", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2I", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2C2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2M", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-05", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2J", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2B1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2B3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "E2-01-02", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2E2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2C1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "E2-01-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2F2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2A2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2D2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a compulsory module and it introduces students to various fundamental concepts in control system analysis and design. Topics include mathematical modeling of dynamical systems, time responses of first and second-order systems, steady-state error analysis, frequency response analysis of systems and design methodologies based on both time and frequency domains. This module also introduces computer simulation as a means of system evaluation.", + "title": "Feedback Control Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2142E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "E2-01-01", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "E2-01-01", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E2-01-02", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E2-01-02", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "E2-01-01", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "E2-01-01", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces various components that are useful in the analysis, design and synthesis of mechatronic systems. The topics mainly include electronic circuits (analog and digital), sensors, actuators, etc. For the analog circuits, the operational amplifiers and its applications will be introduced. The working principles of semiconductor devices such as diodes and transistors will be explained. The digital circuits will then be introduced for digital electronics applications. For the sensors part, the basic principles and characteristics of various sensors for the measurement of physical quantities such as position, strain, temperature, etc will be introduced. The actuators section mainly covers the electric motors which include DC motors, stepper motors and AC motors.", + "title": "Sensors & Actuators", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2143", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Primarily a core subject for mechanical engineering students, this course introduces the basic principles and characteristics of various sensors for the measurement of mechanical quantities such as position, velocity, acceleration, force, and temperature. Topics that are also introduced are actuators for achieving motion, primarily various types of electric motors. This course also covers the generalised measurement and instrumentation system, the associated electronics, drivers and power supplies for the processing of the signals from the sensors and transducers and for driving the various actuators. Emphasis is placed on the knowledge required for the application of these sensors and actuators rather than on their design.", + "title": "Sensors and Actuators", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2143E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the foundation for understanding the structure-property-processing relationship in materials common in mechanical engineering. Topics explore the mechanical properties of metals and their alloys, the means of modifying such properties, as well as the failure and environmental degradation of materials. Practical applications are demonstrated through laboratory experiments to illustrate the concepts taught during lectures.", + "title": "Principles of Mechanical Eng. Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2151", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the foundation for understanding the structure-property-processing relationship in materials common in mechanical engineering. Topics explore the mechanical properties of metals and their alloys, the means of modifying such properties, as well as the failure and environmental degradation of materials. Practical applications are demonstrated through laboratory experiments to illustrate the concepts taught during lectures.", + "title": "Principles of Mechanical Eng. Materials", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2151E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Thursday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 3 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 5 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 4 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students how to convert engineering materials into useful products, which is essential knowledge for any mechanical engineer. At the end of the course, students are expected to have a good idea of the mechanics and economics of the various methods of production. They should be able to assess which is the best manufacturing method and optimize the parameters to manufacture an engineering component. Major Topics: Cutting tool materials; Single and multi-point tools; Types of wear; Metrology, Manufacturing processes: cold and hot working; Rolling; Extrusion; Forgoing; Sheet and metal blanking and forming; Cold forming; Welding; Brazing; Soldering; Casting; Powder metallurgy; Plastics technology; Non-conventional machining: electro-discharge machining. This is a core module.", + "title": "Manufacturing Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2162", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2L", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2G", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2J", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2K", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2M", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-06", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "E3-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2N", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 60 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2G", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2D", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2E", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-05", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2C", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2J", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2M", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2N", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2L", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-05", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2K", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "EA-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2F", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the principles of computer-aided tools: CAD and CAM, which are widely used in modern design and manufacturing industry. By introducing the mathematical background and fundamental part programming of CAD/CAM, this course provides the basics for students to understand the techniques and their industrial applications. The topics are: CAD: geometric modelling methods for curves, surfaces, and solids; CAM: part fabrication by CNC machining based on given geometric model; Basics of CNC machining; Tool path generation in CAD/CAM (Option to introduce a CAM software to generate a CNC program for the machining of a part); Verification of fabricated part by CNC measurement based on given geometric model. The module is targeted at students specializing in manufacturing engineering.", + "title": "Manufacturing Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME2162E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME3000", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME3001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a group-based project that focuses on the design of a complete mechanical design product, emphasizing the design process, analysis and drawings. The major project may be preceded by smaller projects to instill familiarity and experience. Elements of commercialisation (e.g. market survey) and form-giving (aesthetics) may be incorporated. Students are required to submit a report, drawings, do a presentation, and take oral examinations. This is a core module.", + "title": "Mechanical Systems Design I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a follow-up module from ME3101 in which students fabricate and commission the prototype design worked on in Semester 5. Emphasis is placed on the integration of the components of the complete system and the optimization of the final design. Effective group dynamics and the experience of the process and problems involved in translating paper design to prototype are key objectives of this module. This is a core module.", + "title": "Mechanical Systems Design II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of a project which is either (i) an industrysponsored project, (ii) an in-house project linked to external competitions, or, (iii) a project according to a prescribed theme proposed by a group of students. The students will work in\ngroups to complete the design of a mechanical product/system in the first half of the semester to be followed by the fabrication/testing of prototype(s) in the second half. In the course of project work, students will be exposed to the working of team\ndynamics, the engineering design process, report writing, oral presentation and project management.", + "title": "Mechanical Systems Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "ME3103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the fundamental engineering principles on kinematics and kinetics. The topics of rigid body dynamics and vibration will be covered, including the theoretical development and practical application to mechanisms and machinery. The salient features of dynamics to be applied for each instance will be clearly explained and the interpretation of the results obtained will be highlighted.", + "title": "Mechanics of Machines", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3112E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the key concepts related to the different modes of heat transfer (conduction, convection and radiation) and principles of heat exchangers. It develops the students\u2019 proficiency in applying these heat transfer concepts and principles, to analyse and solve practical engineering problems involving heat transfer processes. Topics include introduction to heat transfer; steady state heat conduction; transient heat conduction; lumped capacitance; introduction to convective heat transfer; external forced convection; internal forced convection; natural/free convection; blackbody radiation and radiative properties; radiative exchange between surfaces; introduction to heat exchangers and basic calculation of overall heat transfer coefficient.", + "title": "Heat Transfer", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3122", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0605-06", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0605-06", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the key concepts related to the different modes of heat transfer (conduction, convection and radiation) and principles of heat exchangers. It develops the students\u2019 proficiency in applying these heat transfer concepts and principles, to analyse and solve practical engineering problems involving heat transfer processes. Topics include introduction to heat transfer; steady state heat conduction; transient heat conduction; lumped capacitance; introduction to convective heat transfer; external forced convection; internal forced convection; natural/free convection; blackbody radiation and radiative properties; radiative exchange between surfaces; introduction to heat exchangers and basic calculation of overall heat transfer coefficient.", + "title": "Heat Transfer", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3122E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces recent technological developments enabling cyber-physical systems, which in turn define Industry 4.0. Topics are organized under Internet of Things, Data Analytics, Robotics and Automation, and Additive Manufacturing. The module provides a common technology foundation for students in the Industry 4.0 Specialisation programme. This module is a core module in the Industry 4.0 Specialisation.", + "title": "Introduction to Cyber Physical Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3163", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers topics on: Linear elasticity in which the general equations of equilibrium and compatibility are derived and its applications are illustrated for complex problems; Unsymmetrical bending of beams; Stresses in pressurized thick-walled cylinders in elastic and elasto-plastic regions; Stresses in rotating members; Introduction to mechanics of composite materials; and Experimental stress analysis with particular emphasis on optical methods. This is an elective module and is intended for students in Stage 3 and 4 who have an interest in the stress analysis of isotropic and composite materials. The materials in this module are applicable to chemical, civil, mechanical and aeronautical engineering.", + "title": "Mechanics Of Solids", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers topics on: Linear elasticity in which the general equations of equilibrium and compatibility are derived and its applications are illustrated for complex problems; Unsymmetrical bending of beams; Stresses in pressurized thick-walled cylinders in elastic and elasto-plastic regions; Stresses in rotating members; Introduction to mechanics of composite materials; and Experimental stress analysis with particular emphasis on optical methods. This is an elective module and is intended for students in Stage 3 and 4 who have an interest in the stress analysis of isotropic and composite materials. The materials in this module are applicable to chemical, civil, mechanical and aeronautical engineering.", + "title": "Mechanics of Solids", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3211E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This elective module provides an introduction to advanced topics in engineering thermodynamics and their applications to engineering thermal processes. The following topics are covered: Efficiency improvement of steam power cycles through the use of regeneration and binary fluids processes; Real gases: equation of state, enthalpy and entropy; Available energy and available energy changes in thermal processes, Second Law efficiency; Combustion processes; Analysis of energy and work interactions of basic mechanical engineering thermal processes such those of reciprocating and centrifugal compressors and axial flow turbines. This module is for students who wish to extend their understanding of engineering thermodynamics beyond the first course, and understanding and appreciation of the operation, efficiency and energy conversion of mechanical engineering thermal processes.", + "title": "Sustainable EnergyConversion", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces to students the principles of gas dynamics in subsonic and supersonic flow, and the fundamental concepts in unsteady confined flow. Upon completion, students should be able to analyse a broad range of flow situations. Major topics in compressible flow covered: subsonic and supersonic flow, converging?diverging nozzle, normal and oblique shock waves, Prandtl-Meyer flows, flow with friction and heat exchange, Fanno line, Rayleigh line, two-dimensional compressible flows, thin airfoils in supersonic flow, method of characteristics, optical methods in compressible flow measurements. Major topics in unsteady flow covered: Elastic pipe theory; Analysis of pressure surges; Various types of boundary devices; Numerical solutions; and Various methods of controlling pressure surges in industrial fluid system.", + "title": "Compressible And Unsteady Flow", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Compressible Flow", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Unsteady Flow in Fluid Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "systems typically encountered in Mechanical Engineering applications. Unsteady flow fluid theories, real-life unsteady flow problems and practical design solutions will be described, explained and analysed in this course. These include Analysis and Designs of Water pumping stations and their distribution systems, petroleum products (i.e. crude oil and natural gas) transportation pipelines systems, Oil and Gas flow systems, Thermal Power Stations flow systems etc", + "title": "Unsteady Flow in Fluid Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3233E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, students are taught how the logic circuits and microcontrollers are applied as the brain of a mechatronic system. Major topics include: Digital Electronics; Basic operations of the microprocessor; Introductory assembly language programming; Basic interfacing with external devices. Upon successful completion, students will be able to design, analyze, and explain logic circuits, describe the inner workings of a microprocessor and microcontroller, and program in ARM assembly language. Examples of applications, tailored specifically to mechanical engineers, are used to illustrate these principles.", + "title": "Microprocessor Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students are taught how the microprocessor/microcomputer is applied as the brain in an intelligent mechatronic system. Major topics include: Basic operations of the microprocessor; Introductory assembly language programming; High-level language programming; Basic interfacing with external devices and working with real-time devices. Upon successful completion, students will be able to have the confidence to design and implement smart products and systems, including intelligent robotic devices and machines, and intelligent measurement systems. This is a technical elective with the main target audience being mechanical engineering students in their third year of study. Examples of application, tailored specifically for mechanical engineers, are used to illustrate the principles.", + "title": "Microprocessor Applications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3241E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the approaches used in the design of sequencing circuits applied to machine-level industrial automation. Special emphasis is given to electromechanical and pneumatic systems. After a quick review of input sensing, pneumatic actuators, basic switching logic and elements, the design of sequential control systems using electromechanical ladder diagrams, purely pneumatic circuits and programmable logic controllers are introduced. Upon successful completion, students should be able to read and understand pneumatic circuits and electromechanical ladder diagrams and be able to quickly design and implement such circuits for any sequencing problem. This is a technical elective course targeted at third year mechanical engineering students.", + "title": "Automation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the approaches used in the design of sequencing circuits applied to machine-level industrial automation. Special emphasis is given to electromechanical and pneumatic systems. After a quick review of input sensing, pneumatic actuators, basic switching logic and elements, the design of sequential control systems using electromechanical ladder diagrams, purely pneumatic circuits and programmable logic controllers are introduced. Upon successful completion, students should be able to read and understand pneumatic circuits and electromechanical ladder diagrams and be able to quickly design and implement such circuits for any sequencing problem. This is a technical elective course targeted at third year mechanical engineering students.", + "title": "Automation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3242E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce the mobile robot systems\u2019 architecture and key components such as various sensor and actuator technologies. Various locomotion mechanisms adopted by robotic systems will be discussed. The module will also introduce basic principles of robot motion control. Robot Operating System (ROS) will be utilized for simulation in virtual environments.", + "title": "Robotic System Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3243", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with basic knowledge in materials selection for mechanical design. The major topics are: Classification of engineering materials; Materials properties in design using case studies; Ferrous alloys (carbon and low-alloy steels, tool steels, stainless steels, cast irons); Non-ferrous alloys (Cu-, Al-, Mg-, Ti-, Zn-, Ni-alloys, etc.); Engineering plastics and composites; Engineering ceramics; Surface engineering and coating techniques; Joining processes; Material selection in design; Product costing and case studies. The module is aimed at students who want to specialise in mechanical product design.", + "title": "Materials For Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with basic knowledge in materials selection for mechanical design. The major topics are: Classification of engineering materials; Materials properties in design using case studies; Ferrous alloys (carbon and low-alloy steels, tool steels, stainless steels, cast irons); Non-ferrous alloys (Cu-, Al-, Mg-, Ti-, Zn-, Ni-alloys, etc.); Engineering plastics and composites; Engineering ceramics; Surface engineering and coating techniques; Joining processes; Material selection in design; Product costing and case studies. The module is aimed at students who want to specialise in mechanical product design.", + "title": "Materials For Engineers", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3251E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with knowledge on the unique properties of materials useful in engineering design selection. Commonly used materials in different engineering designs and emerging materials and processes, and life cycle assessment will be taught. Concepts on surface engineering, strengthening and hardening techniques, hardenability, heat treatment, friction and wear properties will be provided. Key material properties and testing such as tensile testing, compression testing, torsion test, 3-point bending test will be introduced along with their specific relevance. Finally, students will be introduced to the different ways of degradation of materials when it reacts with environment.", + "title": "Materials for Mechanical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the principles of computer-aided tools: CAD and CAM, which are widely used in modern design and manufacturing industry. By introducing the mathematical background and fundamental part programming of CAD/CAM, this course provides the basics for students to understand the techniques and their industrial applications. The topics are: CAD: geometric modelling methods for curves, surfaces, and solids; CAM: part fabrication by CNC machining based on given geometric model; Basics of CNC machining; Tool path generation in CAD/CAM (Option to introduce a CAM software to generate a CNC program for the machining of a part); Verification of fabricated part by CNC measurement based on given geometric model. The module is targeted at students specializing in manufacturing engineering.", + "title": "Computer-Aided Design And Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3261", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the principles of computer-aided tools: CAD and CAM, which are widely used in modern design and manufacturing industry. By introducing the mathematical background and fundamental part programming of CAD/CAM, this course provides the basics for students to understand the techniques and their industrial applications. The topics are: CAD: geometric modelling methods for curves, surfaces, and solids; CAM: part fabrication by CNC machining based on given geometric model; Basics of CNC machining; Tool path generation in CAD/CAM (Option to introduce a CAM software to generate a CNC program for the machining of a part); Verification of fabricated part by CNC measurement based on given geometric model. The module is targeted at students specializing in manufacturing engineering.", + "title": "Computer-Aided Design and Manufacturing", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3261E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches product design for manufacture and assembly. It covers the details of design for manufacture and assembly (DFMA) methods for practicing engineers and also allows for learning of concurrent or simultaneous engineering. The topics covered: Introduction, Selection of materials and processes; Product design for manual assembly; Design for automatic assembly and robotic assembly; Design for machining; Design for rapid prototyping and tooling (rapid mould making); Design for injection moulding. The module is targeted at students majoring in manufacturing.", + "title": "Design For Manufacturing And Assembly", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3263", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches product design for manufacture and assembly. It covers the details of design for manufacture and assembly (DFMA) methods for practicing engineers and also allows for learning of concurrent or simultaneous engineering. The topics covered: Introduction, Selection of materials and processes; Product design for manual assembly; Design for automatic assembly and robotic assembly; Design for machining; Design for rapid prototyping and tooling (rapid mould making); Design for injection moulding. The module is targeted at students majoring in manufacturing.", + "title": "Design for Manufacturing and Assembly", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3263E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Fundamental concepts of statistics and the analysis of experimental data for engineers. Topics include hypothesis testing, linear/curvilinear/multiple regression, correlation, testing of fitted lines/curves, comparing different batches of experimental data, analysis of variance (ANOVA).", + "title": "Understanding Experimental Data", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3273E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module generates an appreciation of the interdisciplinary nature of Microsystems and their impact on technology. Secondly, it enables students to apply engineering principles that have been learnt earlier in other modules. The major topics include: An overview of the principles, fabrication and system-level design and applications of Microsystems; Properties of semiconductor; Fundamentals of dynamics and vibration; Piezoelectricity; Piezoresistivity and applications in sensors; Electrostatics and Capacitance; Electromagnetism; Thermal sensors; Biosensors; Fabrication in MEMS; The target students are those with a good grasp and have a keen interest in both mechanical and electrical engineering subjects.", + "title": "Microsystems Design And Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3281", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module introduces students to fundamental concepts of numerical analysis as a powerful tool for solving a wide variety of engineering problems. The topics covered include numerical solution of linear systems of algebraic equations, numerical solution of nonlinear algebraic equations and systems of equations, elementary unconstrained optimization techniques, regression and interpolation techniques, numerical differentiation and integration, as well as the numerical solution of Ordinary Differential Equations (ODE). Applications are drawn from a broad spectrum of diverse disciplines in Mechanical Engineering. The module will also introduce the use of scientific computing software packages for the numerical solution of practical engineering problems.", + "title": "Numerical Methods In Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3291", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Technical Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3661", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Technical Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3662", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Technical Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3663", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "OOGT Exchange Elective 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3991", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "OOGT Exchange Elective 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3992", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "OOGT Exchange Elective 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3993", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Technical Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME3995", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists mainly of an industrial or research-based project carried out under the supervision of one or more faculty members. It introduces students to the basic methodology of research in the context of a problem of current research interest. The module is normally taken over two consecutive semesters, and is a core requirement of the B.Eng. (Mech) program.", + "title": "Bachelor Of Engineering Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ME4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists mainly of a research-based project carried out under the supervision of one or more faculty members. It introduces students to the basic methodology of research in the context of a problem of current research interest. The module is normally taken over two consecutive semesters, and is a core requirement of the B.Eng. (Mech) programme.", + "title": "Bachelor Of Engineering Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ME4101A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at educating students to work as a team to empathise, define, ideate, design and fabricate to respond to either one of the following: industrial projects, in-house projects linked to external competitions, and research projects. The team will comprise of not more than 5 students per team. Each student will work on the project amounting to 260 hours over two semesters.", + "title": "Mechanical Systems Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ME4101B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Standards provide requirements, specifications, guidelines or characteristics that can be used consistently to ensure that products, processes and services are fit for their purposes.\n\nIn this module, we aim to create awareness of, demonstrate and teach various standards currently used in mechanical engineering practices. Two key categories in mechanical engineering are selected, namely sustainable energy and medical technology. After giving a broad overview of the standards landscape in mechanical engineering, it will focus on the standards associated with the two identified categories, and relate them to real world examples. They will be discussed in lectures, student group discussions/projects, etc.", + "title": "Standards in Mechanical Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 47, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "XA1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 47, + "covidZone": "B" + }, + { + "classNo": "XA2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "XB1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 46, + "covidZone": "B" + }, + { + "classNo": "XB2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 46, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "XA1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "XA2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "XB1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "XB2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Part 1 \u2013 Introduction to Project Management\nIn addition to leadership, motivation and communications\nskills, Project Management involves task planning, cost\nestimation, measuring and controlling the execution of\ntasks. Through a combination of lectures, seminars, case\nstudies/tutorials, students will be introduced to the relevant\nquantitative processes and tools of project managements.\n\nPart 2 \u2013 Humanitarian Engineering\nTo understand the roles of engineers in advancing the\nsociety, student will first be introduced to Professional\nEngineering Societies to understand how they help them\nadvance their careers. Students will then work on a group\nproject to address one of the grand challenges in\nHumanitarian Engineering.", + "title": "Mechanical Engineering and Society", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "ENG-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 10, + 11, + 12 + ], + "venue": "ENG-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0309PC6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0308PC5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0309PC6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0308PC5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0307PC4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0309PC6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0308PC5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "B3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0309PC6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0307PC4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0307PC4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0307PC4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "B2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0308PC5", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "LT2", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 10, + 11, + 12 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0309PC6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "B1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0309PC6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0307PC4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "B3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "B2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0309PC6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "LT2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0307PC4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "B2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0309PC6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "B3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8 + ], + "venue": "E2-0307PC4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "B3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 5, + 7, + 9 + ], + "venue": "E2-0307PC4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to link staff research to teaching in the selected areas of specialisation offered by the Department. The module comprises a structured programme of seminars, term papers, and mini-projects to be given by a group of faculty members based on their current research interests in the specialisation area. The programme content differs for different specialisation areas. The module is intended for students pursuing a specialisation.", + "title": "Specialization Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers torsion of open and closed non-circular thin-walled sections; bending of unsymmetric thin-walled beams; idealized beams; multi-cell torque boxes and beams; tapered beams; introduction to mechanics of fiber-reinforced composites; classical lamination theory; failure theories for composites. This is an elective module and is intended for students who are interested in the design and analysis of thin-walled structures, especially aircraft structures.", + "title": "Aircraft Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops students\u2019 understanding of various methods used to determine the shock and vibration characteristics of mechanical systems and instills an appreciation of the importance of these characteristics in the design of systems and their applications in vibration isolation, transmission, and absorption problems; Natural frequencies and normal modes; Dynamic response and stability. Single and multiple-degree-of-freedom systems will be treated using continuous and discrete system concepts, including Lagrange\u2019s equations. Approximation methods for solution as well as instrumentation for vibration measurement will be discussed. Examples will be drawn mainly from mechanical disciplines.", + "title": "Vibration Theory & Applications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4213E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the topics for analysis of vehicle dynamics. These include forces acting on a vehicle and the resulting dynamics and motions. Forces from tires, brakes, steering and power train will be discussed. Students will learn how to analyze the longitudinal and turning motions as well as the vibration of a vehicle.", + "title": "Vehicle Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to integrate knowledge in thermodynamics, heat transfer and fluid mechanics to design and simulate air-conditioning systems, as well as to estimate and analyse the energy performance of buildings. Major topics include: Applications and basics; Psychrometrics; Comfort and health; Heat gains through building envelopes; Cooling load calculations; Air conditioning design calculations; Air conditioning systems; Air conditioning plants and equipment., Energy estimation and energy performance analysis. The module is designed for third and final-year students who are interested in the Cooling and Energy Efficiency of Buildings.", + "title": "Thermal Environmental Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to integrate knowledge in thermodynamics, heat transfer and fluid mechanics to design and simulate air-conditioning systems, as well as to estimate and analyse the energy performance of buildings. Major topics include: Applications and basics; Psychrometrics; Comfort and health; Heat gains through building envelopes; Cooling load calculations; Air conditioning design calculations; Air conditioning systems; Air conditioning plants and equipment., Energy estimation and energy performance analysis. The module is designed for third and final-year students who are interested in the Cooling and Energy Efficiency of Buildings.", + "title": "Thermal Environmental Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4223E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main topics include: 2D steady state heat conduction; transient heat conduction; turbulent heat transfer, boiling; condensation; heat exchangers with phase change; mass transfer", + "title": "Applied Heat Transfer", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This elective module extends the basic heat transfer principles covered in earlier modules to engineering applications. Although some important new physical processes are introduced, the main emphasis is on the use of these to the design-analysis of industrial systems. The use of empirical data for situations where detailed analysis is difficult will be demonstrated through the solution of design examples. The main topics include: Heat exchangers with phase change; Boiling; Condensation; Combined heat and mass transfer; Heat transfer enhancement; Cooling of electronic equipment; and Design examples.", + "title": "Applied Heat Transfer", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4225E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers a number of topics beginning with a treatment the properties, heat and work transfers of real gases vapours. The module focuses on the sub-systems related to energy efficient systems such as cogeneration. The major topics are the design procedure of heat exchangers, performance of absorption refrigeration systems. Two main topics under cogeneration are introduced. These are microturbine cogeneration and biomass cogeneration. The students are provided with the status of these technologies, and provided with the technical, financial and environmental performance. Case studies of cogeneration plants found locally and regionally provide students with actual operating experience.", + "title": "Energy and Thermal Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a detailed introduction to the working principle of all kinds of internal combustion (IC) engines, the major components and their functions of spark-ignition and compression-ignition engines, the parameters and\ncharacteristics used to describe IC engine operation, the necessary hermodynamics and combustion theory required for a quantitative analysis of engine behavior, the measurement of IC engine performance, the design of\ncombustion chamber and its effect on the performance of IC engines, the formation of emissions and their control, supercharging, heat transfer and heat losses, friction and lubrication etc.", + "title": "Internal Combustion Engines", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces to students the basic concepts/ theories/applications in aerodynamics. Major topics are: Characteristics and parameters for airfoil and wing aerodynamics; Incompressible flow past thin airfoils and finite-span wings; Aerodynamic design considerations; Compressible subsonic, transonic and supersonic flows past airfoils and supersonic flow past thin wings. The module is targeted at students who are interested in aerodynamics, especially those who intend to work in the aviation industry or those who intend to conduct R & D work in the aerodynamics area.", + "title": "Aerodynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4231", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concepts of small aircraft, unmanned aerial vehicles, related systems (UAS) and their applications. Students will learn to apply basic concepts from aerodynamics, aircraft design, structures, propulsion, guidance, control, navigation, sensors, communications, vision technology, mission planning, multi-agent operations, UAS application, anti-drone technology, the latest R&D in UAS with integration of artificial intelligence and related systems to UAS. There will be a problem-based design project for this module. There will be involvement and collaboration with the industry. There will be a combination of lectures, tutorials, case studies, seminars and project activities.", + "title": "Small Aircraft and Unmanned Aerial Vehicles", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4232", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the application of numerical methods for solving incompressible viscous fluid flow and convective heat transfer problems. Students will acquire an understanding of the basic principles of fluid flow simulation, a basic working knowledge of numerical implementation and an appreciation of the power of computational methods in solving complex problems.\n\nMajor topics covered are: \n\u2022\tBasic theory of numerical discretization; \n\u2022\tFinite difference discretization; \n\u2022\tStability and accuracy analysis; \n\u2022\tSolution methods for Poisson and elliptic type equations arising from incompressible flows. \n\u2022\tConservation laws and finite volume discretization.\n\u2022\tFormulation and solution methods for viscous incompressible fluid flows by (1) Stream function-Vorticity method for 2D flows, (2) Projection method for Navier-Stokes equations, (3) Finite-volume discretization and SIMPLE/R-based procedures and (4) Others methods as time allows.\n\nAssignments on (1) an elliptic equation problem and (2) a 2D fluid flow problem (by a method of their choice) allow students to acquire generic skills and experience in implementing their own codes.", + "title": "Computational Methods In Fluid Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Aircraft range, endurance, level and gliding flight, climb, takeoff and landing, static longitudinal and lateral stability, dynamic stability and control, flying qualities.", + "title": "Aircraft Performance, Stability and Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4241", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Soft Robotics introduces the usage of soft materials to construct and design integral parts of a robot like soft actuators and soft sensors. This module will introduce different types and genre of soft robots, mechanics of soft robots and the design, kinematics of control and applications of soft robots. The objective of this module is to introduce students to a new field of robotics that are made up of, in-part or as a whole, with soft materials and systems.", + "title": "Soft Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module facilitates the learning of the fundamentals of robotic manipulators for students to appreciate and understand their design and applications. Successful completion allows student to formulate the kinematics and dynamics of robotic manipulators consisting of a serial chain of rigid bodies and implement control algorithms with sensory feedback. The module is targeted at upper level undergraduates who have completed fundamental mathematics, mechanics, and control modules. Students will also gain a basic appreciation of the complexity in the control architecture and manipulator structure typical to new-generation robots.", + "title": "Robot Mechanics and Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4245", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module facilitates the learning of the fundamentals of robotic manipulators for students to appreciate and understand their design and applications. Successful completion allows student to formulate the kinematics and dynamics of robotic manipulators consisting of a serial chain of rigid bodies and implement control algorithms with sensory feedback. The module is targeted at upper level undergraduates who have completed fundamental mathematics, mechanics, and control modules. Students will also gain a basic appreciation of the complexity in the control architecture and manipulator structure typical to new-generation robots.", + "title": "Robot Mechanics and Control", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4245E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-0322-23", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-0322-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a second module on control of linear dynamical systems. It focuses on analysis and synthesis of controllers in the time domain. The module introduces students to the techniques and analysis of dynamical systems using state-space models. The major topics covered are: Introduction to State-Space Model; Solution of State-Space Model; Canonical Forms of State-Space Model; Controllability and Observability; State Feedback and State Estimation; Linear Quadratic Optimal Control, Stability; Discrete Time Systems; Controller Design of Discrete-Time Systems. Students are required to have knowledge of basic classical control theory and linear algebra.", + "title": "Modern Control System", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Introduction to Fuzzy/Neural Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "ME4247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers fundamental concepts and techniques related to the simulation of (discrete) manufacturing systems and data transfer between machines and devices in such systems. Topics covered in the module include concepts of discrete-event modelling and simulation, elements in modelling, design and implementation of manufacturing simulation models, petri-nets, input information collection and analysis, interpretation of outputs, data communication standards, communication topology, medium access control, and real-time data communication protocols.", + "title": "Manufacturing Simulation and Data Communication", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4248", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module in materials science examines the importance of temperature and its effects on the structure and properties of materials common in mechanical engineering. Besides the thermodynamic principles of phase equilibria and the kinetics of phase transformations, students will be introduced to standard industrial practices, as well as the latest techniques in non-conventional processing of materials. Topics include thermodynamics and kinetics in metallic alloy systems, thermal modification processes, surface modification processes and rapid thermal processing.", + "title": "Thermal Engineering Of Materials", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4251E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module starts with a brief introduction on semiconductors, ionic conductors and mixed conductors. Various transport measurements, with an emphasis on impedance studies, will be introduced. After a brief discussion of methods for the synthesis and characterization of nanomaterials, the importance of nanomaterials in the context of thermodynamics, electrical conduction and thermal conduction will be highlighed. Various energy systems (solar cells, fuel cells, thermoelectrics, batteries, and supercapacitors) using nanomaterials focusing on energy conversion and storage will be covered. Course will end with remarks on the engineering aspects such as safety issues and development of miniaturised energy devices using nanomaterials.", + "title": "Nanomaterials for Energy Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0603-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0603-04", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Biomaterials involve the integration of engineering materials with biological entities in the body. The success of any implant or medical device depends very much on the biomaterial used. This course introduces students to life science topics. Students gain an appreciation of multidisciplinary approach to problem solving. Topics include metals, polymers, ceramics and composites use as implants, host-tissue response, materials selection, relationship between structure-composition-manufacturing process, evaluation of implants, sterilization and packaging, regulatory approvals, and suitable case studies. Video presentations and lectures complement the breadth covered in this course. Students enjoy project-based case studies which provoke curiosity, peer evaluation and group dynamics.", + "title": "Biomaterials Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module highlights various engineering properties of the materials that are of paramount importance to a design engineer along with various design philosophies that are commonly practised. It develops the analytical ability of students in choosing the most appropriate material from a design engineer\u2019s perspective. The topics are covered: Introduction of eng-ineering materials; Materials selection for weight-critical applications; Materials for stiffness based designs; Materials for strength-based designs; Materials for damage tolerant designs; Materials and fatigue-based designs; Materials and design against corrosion; Materials for wear critical applications; Materials for biomedical applications; and Materials Selection for special applications.", + "title": "Materials in Engineering Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4254E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the failure of engineering systems governed by the end service conditions. Commonly encountered service conditions are introduced in this module, including their impact on the service life of the individual components as well as the assembly of components. This module enables students to understand the deterioration of materials due to service conditions and how to minimize them. The topics are covered: Introduction to failure of materials; Service failure analysis practice; Failure due to overloading; Failure due to cyclic loading; Failure due to corrosion; Failure due to friction and wear; Failure at elevated temperatures, Failure of weld joints; Inspection and remaining life prediction techniques; and case studies.", + "title": "Materials Failure", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4255", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Functional materials belong to a special category that is different from traditional structural materials. This category of materials provides special functionalities and is able to convert energy from one from to another. They can be found naturally and can also be engineered based on different requirements. This course covers principles of functional materials in inorganic and organic materials, and metals. The course will also provide applications of some functional materials in devices.", + "title": "Functional Materials and Devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Functional materials belong to a special category that is different from traditional structural materials. This category of materials provides special functionalities and is able to convert energy from one from to another. They can be found naturally and can also be engineered based on different requirements. This course covers principles of functional materials in inorganic and organic materials, and metals. The course will also provide applications of some functional materials in devices.", + "title": "Functional Materials and Devices", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4256E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "All mechanical engineering students need the basic knowledge of metal machining and tool design for mass production and the design of cutting tools. This module provides the fundamental understanding of metal machining and tool design.", + "title": "Tool Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4261", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "All mechanical engineering students need the basic knowledge of metal machining and tool design for mass production and the design of cutting tools. This module provides the fundamental understanding of metal machining and tool design.", + "title": "Tool Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4261E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comprehensive introduction to automation technologies applied in discrete part manufacturing. It also introduces essential principles and provides analytical tools for manufacturing control. Major topics covered include: Economic justification of automated systems; Fixed and transfer automation; Automated material handling and automated storage/retrieval systems, Flexible manufacturing systems, Internet-enabled manufacturing, Group technology, Process planning, Automated assembly and Automated operation planning for layered manufacturing processes.", + "title": "Automation In Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4262", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comprehensive introduction to automation technologies applied in discrete part manufacturing. It also introduces essential principles and provides analytical tools for manufacturing control. Major topics covered include: Economic justification of automated systems; Fixed and transfer automation; Automated material handling and automated storage/retrieval systems, Flexible manufacturing systems, Internet-enabled manufacturing, Group technology, Process planning, Automated assembly and automated operation planning for layered manufacturing processes.", + "title": "Automation in Manufacturing", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4262E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Fundamentals of Product Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4263", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1400", + "weeks": { + "start": "2023-05-17", + "end": "2023-05-17" + }, + "venue": "UTSRC-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1700", + "weeks": { + "start": "2023-05-22", + "end": "2023-05-22" + }, + "venue": "UTSRC-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1700", + "weeks": { + "start": "2023-05-26", + "end": "2023-05-26" + }, + "venue": "UTSRC-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1400", + "weeks": { + "start": "2023-05-12", + "end": "2023-05-19" + }, + "venue": "UTSRC-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1400", + "weeks": { + "start": "2023-05-11", + "end": "2023-05-18" + }, + "venue": "UTSRC-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1400", + "weeks": { + "start": "2023-05-15", + "end": "2023-05-15" + }, + "venue": "UTSRC-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1700", + "weeks": { + "start": "2023-05-23", + "end": "2023-05-23" + }, + "venue": "UTSRC-GLR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1700", + "weeks": { + "start": "2023-05-25", + "end": "2023-05-25" + }, + "venue": "UTSRC-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1700", + "weeks": { + "start": "2023-05-24", + "end": "2023-05-24" + }, + "venue": "UTSRC-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1400", + "weeks": { + "start": "2023-05-16", + "end": "2023-05-16" + }, + "venue": "UTSRC-GLR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will help students learn to make engineering decisions regarding power-train, braking, suspension, steering and body systems in order to meet acceleration, braking, ride & handling, safety, durability and NVH performance specifications.", + "title": "Automobile Design & Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will help students understand the specifications for the design of body and chassis systems, design architectures, methods of component engineering, material selection, corrosion treatment & water management, manufacturing methods.", + "title": "Automotive Body & Chassis Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4265", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module enables students to learn the micromachining of both Silicon and non-Silicon materials. The major topics include the basic micro-fabrication as well as the micro-machining processes for microsystems. Some of the processes to be covered: Bulk Processes; Surface Processes; Sacrificial Processes and Bonding Processes; Micro-machining based on conventional machining processes; Micro-machining based on non-conventional machining processes; Special machining; The module is targeted at students seeking to specialise in the Microsystems Technology.", + "title": "Micro-Fabrication Processes", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4283E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the fundamental concepts of the finite element method, practical techniques in creating an FEM model, and demonstrates its applications to solve some important stress and thermal analysis problems in Mechanical Engineering. Some necessary background in mechanics will be briefed before the foundations of the FEM theory, concept and procedures are covered. Various formulations and applications to one- two- and threedimensional problems in solid mechanics and heat transfer will be covered to reinforce the theory and concepts. The precautions in the actual practice of FE analysis such as mesh design, modeling and verification will also be covered. Some instruction in the use of a commercial FEM software package will be given and students are expected to carry out one or more projects with it independently. This module should give students a good foundation for numerical simulation, and basic skills for carrying out stress and thermal analysis for a mechanical system.", + "title": "Finite Element Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4291", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4661", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Technical Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4662", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Technical Elective", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4663", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "OOGT Exchange Elective 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4991", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "OOGT Exchange Elective 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4992", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "OOGT Exchange Elective 3", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4993", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "OOGT Exchange Elective 4", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4994", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Elective 5", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME4995", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves supervised project over two semesters, on a topic approved by the Programme Manager of Department. The project work should relate to one of the areas of Mechanical Engineering: Applied Mechanics, Control & Mechatronics, Energy and Bio-Thermal Systems, Fluid Mechanics, Manufacturing and Materials.", + "title": "Mechanical Engineering Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "ME5001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves supervising project in one semester, on a topic approved by the Programme Manager of Department.\n\nThe project work should relate to one of the areas of Mechanical Engineering: Applied Mechanics, Control & Mechatronics, Energy and Bio-Thermal Systems, Fluid Mechanics, Manufacturing and Materials.", + "title": "Mechanical Engineering Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5001A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers introduction to optical techniques, such as holography and shearography, in stress analysis of structures and one and two dimensional problems, thermal stress analysis, thermoelasticity and impact mechanics. Topics include parallel and series bar assemblies, plane strips, plates and bars, cylindrical and spherical shells, circular plates, cylinders and sphere. Stress waves in solids and the resultant failure and damage are studied. This module is targeted at engineers working in the manufacturing, aerospace and defense industries.", + "title": "Applied Stress Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students learn to analyse the deformation and stresses developed in plates and shell structures under load. They are able to apply the fundamental concepts in solid mechanics to the analysis of these structures, model the structural problem using mathematical techniques and obtain solutions to deformation and stress distributions. Topics: Basic concepts of mechanics. Plate bending theory. Circular and rectangular plates. Elements of shell theory. Membrane and bending stresses in shells. Axis-symmetric shells with general meridian. This is an elective module and the target students are engineers engaged in structural analysis of mechanical components.", + "title": "Plates and Shells", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the advances in technological processes and the demand for high precision, the vibration levels that can be tolerated by new machines are getting lower. It is therefore critically important to have a thorough understanding of the nature of vibration, its spectral characteristics and shock response. The course will cover the important aspects of vibration as well as measurement techniques, interpretation and the means of controlling vibration and shock. The emerging technique of active vibration control will also be introduced.", + "title": "Shock and Vibration Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Acoustic engineering is the branch of engineering dealing with sound and vibration, typically including the design, analysis and control of sound, such as acoustic designs in building and marine structures, and acoustic signal analysis in industrial detections, and noise controls in daily life. This course will cover various aspects of acoustics: the basic fundamentals of acoustics, noise sources, control and mitigation, acoustic design in building and marine structures, modeling and simulation of acoustics, acounstic monitoring in 3D printing processes. The emphasis will be on the physical pictures and real-life applications particularly in cutting-edge techniques rather than mathematical.", + "title": "Engineering Acoustics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the principles of vibration for linear discrete and continuous systems. It will start\nwith the revision of the single degree of freedom spring mass system and then expanded into the study\nof the free and forced vibration of one degree-of-systems and multiple degree-of-freedom-systems\nincluding damping. Major topics includes the natural modes of vibration and the associated eigenvalue\nproblems. Students will aslo be exposed to vibration simulation using SOLIDWORKS. The remaining\ntopics include the vibration of continuous systems such as string, rods and beams and techniques for\nvibration measurement.", + "title": "Vibration Theory and Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5107", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT423", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a basic course which aims at providing a good foundation and understanding of optical techniques for research and industrial applications. Experimental stress analysis is a core area for engineers and scientists. With the invention of the laser, newer optical methods such as holography, shearography and electronic speckle pattern interferometry (ESPI) have been developed for research and industrial use. The traditional methods of moir\u00e9 and photoelasticity have also been re-developed using the laser, as well as using state-of-the-art computer technology. This development has brought optical techniques to a new dimension in measurement and nondestructive testing. The course is targeted at postgraduate students seeking to use optical techniques in research and development.", + "title": "Optical Techniques in Experimental Stress Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5161", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce the design, simulation and optimization methodologies for generic thermal systems. Students will develop the ability to simulate thermal systems and apply optimization techniques. They will be required to carry out 3 to 5 assignments to gain hands-on experience in design-simulation. The topics include: design analysis process, fluid flow equipment, heat exchanger design options, system simulation and modelling, process integration for industry, system optimization using suitable techniques such as calculus method, Langrange multipliers, search methods, linear, dynamic and geometric programming.", + "title": "Thermal Systems Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Industrial Transfer Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is to introduce the various design aspects of generic air conditioning systems. Students will develop the competence to size and select the sub-components of a typical air conditioning plant to meet prescribed conditions. The topics of the course include: psychrometrics, heat load calculation, energy analysis of buildings, air conditioning systems for commercial and industrial applications, performance of refrigeration systems, cooling and dehumidifying coils, air and water distribution, sub-component selection and specification, building automation systems, energy management strategies.", + "title": "Air Conditioning and Building Automation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to approach the study of energy conversion systems from an overall thermo-economic perspective. Students will gain the ability to integrate the various energy related topics covered in the undergraduate programme to evaluate the performance and make economic decisions on energy systems. The module will cover the following topics: energy perspectives, energy sources, thermodynamic aspects of energy conversion systems, performance evaluation of energy systems, improvement of energy efficiency, energy management, environmental aspects of energy use, thermo-economics, future trends in energy conversion, introduction to energy policy issues.", + "title": "Energy Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Solar Energy Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to give an overview and selected deep-dives of different energy conversion systems. It comprises three main parts \u2013 (is) renewable technologies and conventional energy/power systems, (ii) different fuel uses for reduction of carbon emission, (iii) energy/power distribution systems and (iv) life cycle cost analysis. Firstly, the module introduces renewable systems including solar, wind, geothermal, hydropower, biomass, and fossil-fuel driven energy conversion systems. In addition to electric energy systems, different thermal energy generation systems will be introduced. Secondly, electric energy systems with different fuel uses for current and future will be analysed. Thirdly, students will learn about energy distribution systems (both electric and thermal) and the changes that arise from distributed generation of renewable energies. Finally, the long-term economic viability will be discussed.", + "title": "Energy Technologies and Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will be an independent study based on an industry or internal project related to computation and modelling. The 1st semester works will be focusing on thorough literature survey on papers, problems and issues, and proposing some likely methods to resolve the problems. Some analysis, simulation or computation may be needed to verify the solutions proposed.", + "title": "Special Project in Computation and Modelling I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5300A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As a continuation from ME5300A, the 2nd semester works will be focusing on realising the proposed solutions identified from ME5300A, and continuing on detail analysis, computation and modelling.", + "title": "Special Project in Computation and Modelling II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5300B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will learn to analyse and design fluid system under steady and unsteady operations. It covers the steady flow system analysis, transient flow analysis, fluid power and control, flow characteristics of system components, computer applications in flow system analysis and pressure surge control. This module further develops their knowledge on various aspects of fluid mechanics covered in their undergraduate module. This module is intended for graduate students and engineers interested in the analysis and design of complex fluid systems, including accurate gas flow\nmodels.", + "title": "Flow Systems Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This graduate level module introduces students to the application of numerical methods for solving incompressible fluid flow and convective heat transfer problems. Major topics covered include: review of theory of numerical discretisation/approximations numerical techniques for elliptic and parabolic PDEs; conservation form; finite-volume discretisation; boundary layer problems; solving Navier-Stokes equations in streamfunction-vorticity and primitive-variables formulations; SIMPLE/R and related procedures; Artificial Compressibility Method; Marker-Cell procedures; steady-state, transient and pseudo-transient methods/approaches. Knowledge in fluid dynamics and heat transfer is presumed. Theory is reinforced by mini-projects. The module is recommended for students who intend to pursue graduate research that requires the application of CFD.", + "title": "Computational Fluid Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Industrial Aerodynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches techniques and skills in carrying out fluid mechanics experiments and data analyses. Major topics include Similitude and modelling; Wind tunnel design; Velocity measurement; Pressure measurement; Shear stress measurement; Volume flow rate measurement; Wind tunnel blockage correction; End plate configurations; Flow visualization; Signal analysis. This module is primarily targeted at graduate students who are conducting experimental fluid mechanics research and those who have interests in experimental fluid mechanics. This module is also appropriate for undergraduate students enrolled in the department\u2019s Aeronautical Engineering Specialization, especially those who are working on experimental fluid mechanics research for their final year projects.", + "title": "Experimental Fluid Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5304", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course on aeroelasticity as applied to aerospace specialization. Aeroelasticity is defined as the interactions of the deformable elastic structures in free airstream and the resulting aerodynamic force, which\nbroadly falls under fluid-structure interaction. After introducing the basic terminology and a classification, the basics of statics and dynamics of fluid-structure interaction will be given. Topics covered include static aeroelasticity\n(divergence, control surface reversal), dynamic aeroelasticity (flutter, buffeting, and gust response), aeroservoelasticity (fluid-structure-control interaction), unsteady aerodynamics over lifting surfaces, and experimental methods for flutter prediction.", + "title": "Fundamentals of Aeroelasticity", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the physical phenomena in compressible flow. The theories in one- and two-dimensional flow will be described, explained and analysed in this module. Topics include subsonic and supersonic flow, converging\u2013diverging nozzle, normal and oblique shock waves, Prandtl-Meyer flows, flow with friction and heat exchange, Fanno line, Rayleigh line, twodimensional compressible flows, thin airfoils in supersonic flow, method of characteristics, hypersonic and high temperature gas dynamics, and optical methods in compressible flow measurements. Real-life applications, such as sonic boom, gas turbine, ramjet and scramjet combustion, supersonic nozzle design, space shuttle reentry will be discussed.", + "title": "Compressible and High-Speed Flow", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5306", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the graduate students will apply the\nfundamental principles of fluid mechanics and\nthermodynamics to jet and rocket propulsion. The\nemphasis of this course will be on thermodynamic cycles,\nthe mechanics and thermodynamics of combustion,\ncomponent and cycle analysis of jet engines, and the\nperformance characteristics of chemical rockets.\nThe detailed analysis of operating characteristics of\nturbojet, turbofan, turboprop, afterburning, and ramjet\npropulsion systems will be covered. The major focus will\nbe placed towards the analysis and design of inlet,\ndiffuser, combustor, compressor, turbine, and nozzle.", + "title": "Aircraft Engines and Rocket Propulsion", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5309", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers basic linear algebra principles to provide the formalism to reveal coherent patterns and behaviors in data. We will introduce system identification methods, dimensionality reduction techniques, dynamical system theory, inverse problems in their Bayiesian form and machine learning techniques, with a special focus on neural networks. These will provide students with the necessary tools to analyze real-world datasets that are commonly found in practical engineering and scientific applications.", + "title": "Data-Driven Engineering and Machine Learning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5311", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT421", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on computational fluid dynamics (CFD) at the graduate level. The module introduces some newly-developed numerical techniques for simulation of fluid flows as well as convective heat transfer problems. Major topics covered in this module include: high-order numerical approaches for solving boundary-layer and Navier-Stokes equations; boundary integral method for linear systems; upwind and Godunov-type schemes for compressible flow simulation; lattice Boltzmann method for incompressible flow simulation. There is a compulsory Term Paper project for this module. The module is recommended for research students and engineers who intend to do research project in the CFD area.", + "title": "Advanced Computational Fluid Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5361", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Fluid Transients Computation and Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5362", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of an individual project carried out by the student, with lecturer\u2019s supervision, in one semester. The topic of the project is defined by the student and approved by the lecturer. It is related to robotics, either within the scope of the core fundamental modules of the MSc in Robotics, or in a specific topic of the elective modules.\n\nThe module provides the students with an opportunity to challenge themselves in an individual projectual activity, practicing the use of the techniques learned during the MSc.", + "title": "Robotics Project 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5400A", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Linear system theory is the core of modern control approaches, such as optimal, robust, adaptive and multi-variable control. This module develops a solid understanding of the fundamentals of linear systems analysis and design using the state space approach. Topics covered include state space representation of systems; solution of state equations; stability analysis using Lyapunov methods; controllability and observability; linear state feedback design; asymptotic observer and compensator design, decoupling and servo control. This module is a must for higher degree students in control engineering, robotics or servo engineering. It is also very useful for those who are interested in signal processing and computer engineering.", + "title": "Linear Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5401", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Monday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of the course is for students to develop an in-depth understanding of the fundamentals of robotics at an advanced level. It is targeted towards graduate students interested in robotics research and development. The focus is on in-depth treatments and wider coverage of advanced topics on (a) kinematics, (b) trajectory planning, (c) dynamics, and (d) control system design. At the end of this module, the student should have a good understanding of all the related topics of advanced robotics, and be able to derive the kinematics and dynamics of a given robot, plan appropriate path, and design advanced control systems.", + "title": "Advanced Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5402", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module students will learn various neural network models and develop all the essential background needed to apply these models to solve practical pattern recognition and regression problems. The main topics that will be covered are single and multilayer perceptrons, support vector machines, radial basis function networks, Kohonen networks, principal component analysis, and recurrent networks. There is a compulsory computer project for this module. This module is intended for graduate students and engineers interested in learning about neural networks and using them to solve real world problems.", + "title": "Neural Networks", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5404", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces machine vision devices and techniques in image processing and pattern recognition. It also discusses the integration of the above to form a cohesive machine vision system. Students will learn how machine vision systems in robotics and medical applications are designed and implementation. This course is based on a basic knowledge of geometry and linear algebra, and does not require previous knowledge in machine vision. The accent is more on global understanding than on mathematical derivations. The main topics that will be treated are: vision hardware, visual perception, optical properties, image transforms, image enhancement, segmentation, encoding, representations, and applications.", + "title": "Machine Vision", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5405", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn how machine vision systems in robotics, industrial and medical applications are designed and implemented. The focus is more on global understanding than on mathematical derivations. The main topics that will be treated are: visual perception, vision hardware, optical properties, image representation, imaging geometry and basic image processing techniques. With the basic understanding of the various technology and methods used to provide imaging-based inspection and analysis for robot guidance, process control and automatic inspection, this course prepares students for further studies and research in vision and image processing.", + "title": "Machine Vision Fundamentals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5405A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will familiarise students with recent deep learning tools and their application to robotics, in particular deep reinforcement learning (RL). The first part of this module focuses on the fundamental mathematical background to RL, from Markov Decision Processes (MDP) all the way to Q-learning. Students will then dive into deep learning methods and their application to a variety of core robotics problem: control, perception, manipulation, path planning, and multirobot collaboration. This module includes mandatory assignments and a compulsory group project. This module is intended for graduate students and engineers interested in deep (reinforcement) learning and its applications to real-world robotics tasks.", + "title": "Deep Learning for Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5406", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aim to develop basic understanding of fundamental mathematics and terms used to describe the geometry of robot manipulators. In particular, the students will learn to model the kinematics of a manipulator which maps from joint displacement vector to end-effector position and orientation. The students will also learn to model the differential kinematics of a manipulator and derive its Jacobian matrix. The relationship between the joint torques and the endpoint contact force and moment under static condition will be studied. Trajectory planning in joint space will be explored for robot motion generation.", + "title": "Kinematics of Robot Manipulators", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5408", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamentals of dynamics and control for robot manipulator. The basic robot dynamic models are described in this module and main control approaches are explained.", + "title": "Robot Dynamics and Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5409", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the enabling technologies and components for robots. It gives an overview of the materials used in robotics, not limited to metals, and related fabrication techniques, including rapid prototyping. It describes the different technologies used for building robot sensors and actuators, with example of devices used in robotics, explaining their working principles and basic input-output mathematical relations.", + "title": "Materials, Sensors, Actuators & Fabrication in Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5410", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamentals of robot vision and the main techniques from AI used in robotics for learning and perception.", + "title": "Robot vision and AI", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5411", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This modules provides a systematic description of specific application fields in healthcare, like surgery, diagnosis, artificial organs. The technological challenges and requirements for robotics given by this field of application are discussed for providing a method for designing and developing healthcare robots, compatible with the human body. The robotics technologies used in healthcase are analyzed, also through case studies.", + "title": "Robotics for Healthcare", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5412", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This modules introduces the techniques used in robotics for autonomous navigation of mobile robots. It gives a basic knowledge of kinematic configurations of mobile, wheeled, robots and focuses on the algorithms for trajectory planning and for trajectory following. They include mapping and localization techniques, as well as obstacle avoidance techniques, in path planning and reactive obstacle avoidance, which involve the use of sensors onboard the robot. Case studies will be analysed with special attention to self-driving cars.", + "title": "Autonomous Mobile Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5413", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover standard optimization, variational approaches, and other optimization schemes (e.g., dynamic programming).", + "title": "Optimization Techniques for Dynamic Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5414", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the field of soft robotics and provides knowledge of the main approaches and techniques used in this field. The module includes the technologies for building soft robots and the techniques for modelling and for controlling soft robots. The module also analyses few case-studies and illustrates examples of application of soft robotics technologies.", + "title": "Advanced Soft Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5415", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the mathematical methods frequently used in robotics. The topics include linear systems, Fourier analysis, basic differential geometry, rotation parameters, quaternions, dual numbers, matrix exponential, Lie groups, perturbation methods, statistics and probability, stochastic modelling.", + "title": "Mathematics for Robotics engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5416", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses dynamics, control, and state estimation for satellites, rockets, and planetary landers. The main emphasis is on attitude dynamics, involving advanced kinematics and modern invariant filtering theory for rotational state estimation and control. The role of angular momentum management and Lagrangian formulations of dynamics will be used to understand passive gravity-gradient orientation stabilization, as well as active control use momentum wheels, thrusters, and electromagnetic devices. Orbital mechanics, propulsion, and landing systems will also be discussed.", + "title": "Autonomous Spacecraft Dynamics and Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5417", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides the basics of machine learning, in terms of most commonly used techniques in robotics, including neural networks. The students will apply their learnt knowledge on a robotic task.", + "title": "Machine Learning in Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5418", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\"Probabilistic Robotic\" involves modelling uncertainty and fusing sensory measurements. It is usually used in robot navigation and simultaneous localization and mapping (SLAM). However, the same methods can be employed in robot manipulation. This course therefore uses the same Bayesian formulations of uncertainty modelling as in navigation and localization, but applied to robot arms and grippers manipulating objects, rather than to mobile robotic systems.", + "title": "Probabilistic Robotics for Manipulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5419", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will cover advanced topics in modeliing of robotic mechanisms and control strategies. The topics will include latest state-of-the art methods for modeliing and control.", + "title": "Advanced Robot Mechanics and Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5420", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamentals of robot kinematics. It provides basic knowledge on robot typical mechanical joints and links configurations and introduces the typical kinematic transformations used in robotics.", + "title": "Robot Kinematics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5421", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "EA-06-04", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to introduce the concepts and design of computer/microprocessor based control schemes with a focus on industrial automation. Techniques for discretetime control realization, will also be discussed. After attending the course, the students will acquire the basic skills on designing simple controllers for real time systems, know how to analyze the system responses and evaluate the controller performance. The topics covered are: discrete system analysis; pole-placement design, basic predictive control, digital PID controllers; implementation issues (sampling theorem, aliasing, discretization errors) and real-time realization using system control software such as. Matlab and Labview.", + "title": "Computer Control and Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5422", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Corrosion of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5506", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective is to expose students to the various engineering methods to tackle practical problems related to deformation, fracture and fatigue of materials so that they can apply them to real situations. Major topics include: Complex and principle states of stress and strain, yielding and fracture under combined stresses, linear elastic fracture mechanics, standard tests for fracture toughness; fatigue analysis and testing, factors affecting fatigue properties of materials, fatigue crack propagation, fracture and fatigue mechanisms and control, statistical vairaion of mechanical properties. This module is useful for students interested on materials failure analysis and/or materials design and applications.", + "title": "Deformation, Fracture and Fatigue of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5513", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective is to expose students to various methods to tackle practical problems related to fatigue of materials and structures additive manufacturing processes, so that students can apply them to real situations. Particular emphasis is placed on fatigue properties of materials and structures. Major topics include: high and low cycle fatigue, factors affecting fatigue properties of materials and structures, conventional and fracture mechanic fatigue design, fatigue crack propagation, fatigue life prediction and monitoring, fatigue mechanisms and control, and fatigue surface analysis. This module is useful for students in a career related to service failure analysis and/or materials applications.", + "title": "Fatigue Analysis for Additive Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5513A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an overview of emerging technologies for environment-friendly power generation and large-scale storage, focusing on post-silicon (organic) photovoltaics, fuel cells, and electrochemical batteries. The science behind each technology will be taught and related to the long-term economic viability, including resource limitations when going from small to large scale production, and externalities. The course will consider the link between the technology and economics of intermittent (solar, wind) energy production and those of storage as well as financial factors determining the final cost of energy.", + "title": "Emerging Energy Conversion and Storage Technologies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5516", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Nature is an eternal source of inspiration. This course will provide an introduction to nature-inspired materials and designs. Such inspirations can come from the aspects of living and non-living things to solve engineering problems in surface engineering, optics, biomedical applications, fracture mechanics, robotics, sustainable materials, etc. The students will be examining successful applications upon utilization of nature-inspired materials and designs. This course will also cover state-of-the-art case studies in producing novel innovation with natural inspiration in interdisciplinary settings. The students will learn that the nature-inspired materials and design could offer energy- and resource-optimized products, processes and systems.", + "title": "Nature-inspired Materials and Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5517", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Lecture", + "size": 79, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will be an independent study based on an industry project related to biomedical, healthcare or key local industry sectors. The 1st semester works will be focusing on thorough literature survey on patents, papers, problems and issues, and proposing some likely methods to resolve the problems either on processes or designs. Some analysis, simulation or simple experiments may be needed to verify the solutions proposed.", + "title": "Project in Advanced Manufacturing I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5600A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As a continuation from ME5600A, the 2nd semester works will be focusing on realising the proposed solutions identified from ME5600A by prototyping, implementation or design improvement. 3DP techniques will be adopted for realising such solutions, methods and designs. Evaluation, improvement and final solution will be concluded for likely commercialisation or industry use.", + "title": "Project in Advanced Manufacturing II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5600B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to automation technologies applied in future part manufacturing: the smart factory. It will see machines, raw materials, and products communicating within an IoT to cooperatively drive production. Products will find their way independently through the production process. The goal is highly flexible, individualized mass production that is cost-effective. \n\nIn this module, conventional automation technologies are first introduced, followed by the introduction of RFID and its applications in these areas. The focus will be on its application in smart factory to achieve highly flexible, individualized mass production that is cost-effective.", + "title": "Smart Factories", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5607", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on principles, techniques and applications of abrasive and non conventional maching process and latest techniques on material additive in addition to material removal. Topics include grinding, ultrasonic maching, electrical discharge maching, laser beam maching, layered manufacturing, et cetera. Students are expected to carry out an independent study by project or term paper on the related topics.", + "title": "Additive and Non-Conventional Manufacturing Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5608", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This introductory module emphasizes additive manufacturing processes. Topics include 3D printing processes/materials, metal printing, etc. Students are expected to carry out an independent study by project or term paper on the related topics. A structured programme of lectures, term papers, and a final examination are included in this module.", + "title": "Principles and Processes of Additive Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5608A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This introductory module emphasizes on hybrid manufacturing techniques. This will focus on how to use two or more non-conventional material additive and removal processes in macro, micro and nano-scale to machine features. Topics include: bio-micro printing, chemicalmechanical polishing (CMP), electrical-chemical machining (ECM), ultra-precision diamond turning (UPDG), Electrolytic in-process dressing (ELID) grinding, laser-based machining, Ultrasonic Machining, Abrasive Machining Processes, etc. Students are expected to carry out an independent study by project or term paper on the related topics. A structured programme of lectures, term papers, and a final examination are included in this module.", + "title": "Hybrid Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5608B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the techniques and strategies in rapid response manufacturing. Topics include: an overview of rapid product development techniques and strategies; data capture and shape reconstruction techniques; various types of rapid prototyping techniques such as SLA, SLS, LOM and FDM; concept of rapid tooling; design for X and concurrent engineering; life cycle assessment methods and environmental risks in products. Topics in virtual manufacturing include: virtual factory, distributed manufacturing, virtual prototyping, and the human aspects. The module will be useful to engineers and designers who are concerned with the rapid changes in manufacturing as well as the shortening product lead-times.", + "title": "Rapid Response Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5609", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Product Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5610", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Sustainable Product Design & Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5611", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Product development relates to the processes and techniques employed in the design and manufacture of a product. This course will focus on the early (conceptual) stages of design and development of mainly mechanical products, looking at the technologies available to convert new ideas into a manufactured reality. Emphasis will be on the practical implications, constraints and in-depth analysis, with an integrated assignment that encourages student groups to investigate the technologies for generation of a product.", + "title": "Computer Aided Product Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5612", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on analysis, optimal design techniques and fabrication methods of multi-functional structures and devices. The underlying principles of\ncalculus of variations, constrained minimization, and design parameterization and solution methods of topology optimization will be fully studied. Key applications include compliant structures/mechanisms and multi-material soft robots. These devices lie at the interface of principles and procedures of structures and machines. The module will bring out methodologies for designing multi-functional structures/machines and fabrication techniques of 3D printing.", + "title": "Optimal Design of Multi-Functional Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5613", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces applications and practices for additive manufacturing in terms of special project. The project is intended to integrate pre-processing, additive manufacturing processes, and post-processing for additive manufacturing processes. Topics include additive manufacturing practices and applications in engineering, design, healthcare, etc. Students are expected to carry out hand-on studies of additive manufacturing machines in project on the related topics. A structured programme of lectures and projects is included in this module.", + "title": "Special Project in Additive Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5614A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces design and pre-processing for additive manufacturing. Topics include design analysis and guidelines for parts in additive manufacturing, and procedure for pre-processing before additive manufacturing processes. Students are expected to carry out an independent study by project or term paper on the related topics. A structured programme of lectures, project/term papers, and a final examination is included in this module.", + "title": "Design and Pre-Processing for Additive Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5615A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E1-06-16", + "day": "Monday", + "lessonType": "Lecture", + "size": 29, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Post-processing is an indispensable step to improve the final quality of the additively manufactured metal parts. This module exposes the students to a series of key machining and finishing methods as well as their applications in AM post-processing. This module covers the major topics about post-processing of the additively manufactured metal parts including surface integrity and material characterisation of AM, heat treatment for 3DPed metal parts, post machining technology, magnetic assisted finishing technology, conventional and non-conventional post-processing methods, etc. This module provides the knowledge and practical expertise to the students who are and will be engaged in a career related to additive manufacturing.", + "title": "Post-processing for Additive Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ME5615B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-14", + "day": "Friday", + "lessonType": "Lecture", + "size": 29, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cellular solids refer to materials that contain cavities, channels, or interstices, which are widespread in nature and engineering. Engineering cellular solids, including honeycomb, foam, and lattice structure, can be made from nearly any type of materials ceramics, polymers, metals, and composites. Their cellular structure give rise to a unique combination of structural and functional properties, which are highly dependent on their manufacturing process. This module aims at introducing the process-structure-properties relationship of cellular solids. The manufacturing process of cellular solids for different functional and structural applications will be introduced.", + "title": "Material Processing of Cellular Solids", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5616", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with\nwork attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ME5666", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches graduate students the various mathematical methods frequently used in the engineering research work. The topics include: Boundary value problems: classification of types and boundary conditions, hypergeometric equations, integral methods of solutions, numerical methods, finite difference and finite element methods, complex variables, conformal mapping, perturbation methods, statistics and probability. There is a compulsory Term Paper project for this module. This module is intended for graduate students and engineers interested in learning more of the various mathematical methods for solving advanced level engineering problems.", + "title": "Mathematics for Engineering Research", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME5701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ME5999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Topics in Applied Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Applied Mechanics: Mechanics of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the growing need for non-contacting whole-field measurement and inspection, the development\nand implementation of optical techniques have rapidly become major activities in universities, research\ninstitutions and industries. This module aims to provide a good foundation and understanding of these\ntechniques for research and industrial applications. Topics to be covered include: Depth gauging using\nlaser triangulation. Surface contouring using Moire techniques. Displacement measurement and\nsurface contouring using holography. Surface strains and slope measurements using shearography.\nSurface profiling and deformation measurement using projection grating. Nondestructive testing and\nsurface quality inspection.", + "title": "Optical Measurement and Quality Inspection", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Understanding and prevention of fracture in engineering applications require the integration of several fundamental concepts in solid mechanics and material behaviour. In this course, major topics to be covered include linear elastic and elastic-plastic fracture mechanics, energy approach to fracture, introduction to finite element analysis, interfacial fracture mechanics and its applications to thin film and multilayered structures in electronic packaging.", + "title": "Fracture Mechanics and Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Continuum Mechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This class will cover the fundamental and physical basis of plastic/inelastic deformation and other dissipative processes. Here we will develop continuum-based isotropic plasticity and crystal-plasticity-type constitutive equations through a rigorous thermodynamic approach. The first part of the course will be devoted to the teaching of continuum mechanics/balance laws/thermodynamics, the second part will focus on the development of constitutive equations for plasticity and the third part will concentrate on the application of plasticity theory through numerical techniques.", + "title": "Plasticity and Inelastic Deformation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn advanced topics related to vibroacoustics systems. A special topic for vibroacoustics will be chosed for each semester, such as sonic crystals, inerter systems, acoustic metamaterials, energy harvesting, shock and vibration mitigation. Practical examples and case studies will be discussed. Students will work on a mini project for half of the semester, demonstrating the ability to do literature review, design and analysis of the system, prototyping, modelling and experimentation. The module is100% continuous assessment based on a mini project. This module is for graduate students interested in learning about research techniques and state-of-the-art topics in vibration and acoustics.", + "title": "Advances in Vibroacoustics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an avenue to offer courses on special topics of current research interest in the area of thermodynamics and heat transfer. The objective of the module is to expose in the area of thermodynamics and heat transfer. The objective of the module is to expose students to specialised knowledge in a research area of a faculty member. The topics offered will vary depending on the research trends in the field. Students who have similar research interests would benefit from these courses. The target audience for these modules will be mainly the graduate research students.", + "title": "Research Topics in Thermodynamics and Heat Transfer", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an avenue to expose students to advanced topics in the area of thermodynamics and heat transfer that are not covered the regular graduate modules. The objective of the module is to introduce deeper knowledge in a subject that would benefit graduate students in general. The topics offered will vary depending on the current importance of the topic and its relevance to the research trends in the field. The target audience for these courses will be mainly graduate students.", + "title": "Topics in Thermodynamics and Heat Transfer", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is to introduce the principles of diffusive and convective mass transfer. Students will acquire the ability to critically assess technical literature, develop physical models for engineering systems and obtain numerical solutions. The course outline is: principles of transport phenomena; differential formulations of conservation equations of mass, momentum and energy; scale analysis; diffusion in gases, liquids and solids; estimation methods for diffusivities; free and forced and forced convection mass transfer; inter-phase mass transfer overall mass transfer coefficients; simultaneous heat and mass transfer; engineering applications involving absorption, drying etc.", + "title": "Mass Transport", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to introduce advanced topics in convective, conductive and radiative heat transfer. Students will gain a deeper understanding of fundamental heat transfer mechanisms and will develop the ability to formulate and solve advanced heat transfer problems. The topics include: conservation principles, fluid stresses and flux laws, differential equations of the laminar boundary layer, integral equations of the boundary layer, momentum and heat transfer for laminar flow, kinetic theory and atomistic basis to understand heat transfer at the micro-/nano-scale, phonon transport by the Boltzmann transport equations, influence of lower dimensionality as well as industrial application topics on heat dissipation.", + "title": "Advanced Heat Transfer", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Topics in Heat and Mass Transfer", + "title": "Advanced Topics in Heat and Mass Transfer", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will learn research-based materials through topics reflecting the special interests and research of faculty members in Fluid Dynamics. Lectures will be given by both department faculty members and visiting specialists. Practical examples and case studies will be presented and discussed. Module marks are based on 100% Continued Assessments. This module is intended for graduate students and engineers interested in learning more on the current state-of-the-art in specialised research topics in Fluid Dynamics.", + "title": "Research Topics in Fluid Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Fluid Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will learn advanced-level materials through topics reflecting the special interests and research of faculty members in Fluid Dynamics.\nLectures will be given by both department faculty members and visiting specialists. Practical examples and case studies will be presented and discussed. Module marks are based on 100% Continued Assessments. This module is intended for graduate students and engineers interested in learning more on the current state-of-the-art in advanced material topics in Fluid Dynamics.", + "title": "Topics in Fluid Dynamics: Theory of Hydrodynamic Stability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6302A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces graduate students to the fundamental theory underlying the motion of both inviscid and viscous fluids. The general differential equations of motion, i.e. Navier-Stokes equations, are derived and exact solutions presented in simple geometries, with the appropriate boundary conditions. Major topics in Potential Theory include using the velocity potential and stream-function, Kelvin\u2019s circulation theorem are introduced. The basics of Stokes or creeping flows are also discussed along with some simple exact solutions. \n\nStudents are introduced to the origin of incompressible turbulent flows and its physical and experimental characteristics. The mean or Reynolds equation of turbulent flows will be derived and problem of closure discussed. The two important classes of turbulent flows, namely wall-bounded flows and free shear flows, will be studied. Similarity and Kolmogorov\u2019s theory on scales of turbulence will be discussed. The last section will introduce students to turbulence simulation and", + "title": "Advanced Fluid Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course dealing with various physical and dynamical aspects of turbulence. It covers mean flow equations, isotropic turbulence and their properties, length scales and their determination, transport processes, coherent structures, and structures of wall-bounded and free-shear flows. Statistical tools used in the description of turbulence as well as the measurement techniques and experimental details to measure various flow parameters will be adequately covered. Mathematical turbulence models will be briefly discussed.", + "title": "Turbulence in Fluid Flows", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, several selected advanced topics in mechatronics that are of current research interest will be offered. Each student has to choose two of those topics. Topics covered are typically in the areas of robotics, control, machine vision, and artificial intelligence. Each topic chosen will require the student to read several research papers, write a term paper and do a term project. The module is mainly meant for research students to help them specialise in selected topics in mechatronics. ME6401 will be offered in Term I while ME6402 will be offered in Term II. The two modules typically cover a different set of topics.", + "title": "Topics in Mechatronics 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6401", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, several selected advanced topics in mechatronics that are of current research interest will be offered. Each student has to choose two of those topics. Topics covered are typically in the areas of robotics, control, machine vision, and artificial intelligence. Each topic chosen will require the student to read several research papers, write a term paper and do a term project. The module is mainly meant for research students to help them specialise in selected topics in mechatronics. ME6401 will be offered in Term I while ME6402 will be offered in Term II. The two modules typically cover a different set of topics.", + "title": "Topics in Mechatronics 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Today many robots such as the self-driving cars and drones are no longer rigidly fixed behind safety barricades in factories. These robots are mobile and operate autonomously in environments that are shared with human beings. In this course, we will look at some of the basic mathematical concepts and algorithms that make up the brain of autonomous mobile robots. Topics that are covered include collision avoidance, motion planning, probabilistic methods and 3D robotics vision.", + "title": "Autonomous Mobile Robotics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Optimization technique has become a fundamental tool for many applications in science and engineering. Optimization for dynamic system is of particular interest in today\u2019s system design and integration. This course will cover both optimization in the static case, as well as modelling dynamic system as Markov system and optimize its performance via\ndynamic programming.", + "title": "Optimization Techniques for Dynamical Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6406", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Topics in Materials Science", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6501", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Material Sciences", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6502", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed for graduate students who study in the area of metallic materials. It deals with fundamentals of thermodynamics and kinetics related to metals. The course starts with introduction on thermodynamics followed by ideal and regular solutions. Different atomic mechanisms of diffusion will be discussed. The course will underline transformations from thermodynamics point of view. The following topics will be taught in this module: fundamentals of phase diagrams, chemical equilibrium, diffusion, interfaces, diffusional transformations, diffusionless transformations structure of liquid metals, nucleation and growth in liquid metals, solidification related structures and defects.", + "title": "Theory of Transformations in Metals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6503", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to various mechanical failure modes (eg. wear, creep etc.) in real life applications, to identify failure mechanism (eg. defects, dislocations etc.) along with an account of available tools for making recommendations on materials selection, manufacturing routes and failure prevention. This module is suitable for engineering graduate students who are keen in mechanical failure.", + "title": "Mechanical Failure Analysis: Learning from Examples", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6504", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide an in-depth graduate level foundation in biomaterial science and engineering principles. Students will be introduced to the practical aspects of biomaterials in medical devices, in particularly the fabrication of devices, including materials selection, processing, performance, biocompatibility issues and regulatory requirements. Topics of interest include hip\nprostheses, articular joints, surgical sutures, tissue engineering scaffolds for hard and soft tissues, and case studies of failed medical prostheses. A short research\nproposal on implanted material for medical devices will be prepared by students, in place of continuous assessment. A problem base approach teaching ethodology will be used to encourage the learning process. On completion of this lecture course, students should be able to suggest suitable biomaterials and plan appropriate processing techniques for given biomedical applications.", + "title": "Engineering Materials in Medicine", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6505", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches methods and tools for simulations of material properties without experimental input (e.g. ab initio based). The topics include: (1) Elements of solid state theory; (2) Introduction to the electronic structure theory, Density Functional Theory and software; (3) Molecular dynamics simulations, their types and uses to compute dynamics as well as static properties.", + "title": "Atomistic Simulations of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6508", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at the graduate students, and introduce them to the key concepts of sustainability and United Nations (UN) Sustainable Development Goals (SDGs). Students will learn sustainability policies and articulations such as net-zero 2050, towards zero-waste, circular economy, life cycle thinking, circularity performance, and Environmental, Social & Governance (ESG) reporting. Special emphasis will be on the sustainability aspects of materials i.e. synthetic materials and nature sourced renewable materials. Students will be introduced basics as well as case studies illustrating net-zero emissions and materials circular economy.", + "title": "Materials and Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6509", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn research-based materials through special research topics reflecting the interests and research expertise of faculty members in the Manufacturing Divisional Group. Lectures will be given mainly by department faculty members and/or visiting specialists. Practical examples and case studies will be presented and discussed. The module is based on 100% continued assessments consisting of research essays or term papers. This module is intended for graduate students (especially those pursuing Ph.D.) interested in learning more on advanced research techniques and current state-of-the-art specialised research topics.", + "title": "Research Topics in Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6601", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will learn advanced-level materials through topics reflecting the special interests of faculty members in the Manufacturing Divisional Group or visiting experts. Lectures, given by either/both department faculty members and visiting experts, will consist of practical examples and case studies. Grades are based on 100% continued assessments. This module is intended for graduate students and engineers interested in learning more about advanced manufacturing.", + "title": "Topics in Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6602", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this module is to introduce the students to modelling of manufacturing processes. The major topics include an overview of major manufacturing and machining processes, modelling of chip formation in machining, heat generation and temperature distribution in metal cutting, tool characteristics in metal cutting, chip control, machining characteristics and surface generation of grinding, ultraprecision microcutting processes, workpiece material properties in machining, physical-field-assisted machining processes, and modelling and simulation methods for manufacturing processes. The target students include postgraduate students in the areas of materials and manufacturing.", + "title": "Modelling of Manufacturing Processes", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6604", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on analysis, optimal design techniques and fabrication methods of multi-functional structures and devices. The underlying principles of\ncalculus of variations, constrained minimization, and design parameterization and solution methods of topology optimization will be fully studied. Key applications include compliant structures/mechanisms and multi-material soft robots. These devices lie at the interface of principles and procedures of structures and machines. The module will bring out methodologies for designing multi-functional structures/machines and fabrication techniques of 3D printing.", + "title": "Optimal Design of Multi-Functional Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6607", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Mechanical Engineering Research 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ME6701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Doctoral Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "ME6999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is module focuses on the microbes which cause infections in man and the defences deployed by the body against them. The module is presented as two distinct components with the relationship between the components established throughout the module.", + "title": "Infection and Immunology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "MIC2000", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT35-01-01", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is module focuses on the microbes which cause infections in man and the defences deployed by the body against them. The module is presented as two distinct components with the relationship between the components established throughout the module.", + "title": "Infection and Immunology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MIC2000A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Marketing Advanced Placement", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT1601", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide knowledge, techniques and understanding of marketing principles. It provides students with a conceptual framework to analyse and interpret marketing phenomena and to suggest courses of action in response to marketing problems. It covers topics such as the marketing concept, the marketing environment and the marketing mix which includes product, pricing, distribution and promotion. Other related topics include consumer behaviour, market segmentation and targeting, marketing research and information system, marketing planning, implementation and control, and public issues in marketing. This is a foundation module for business students and provides the basis for later concentration in the marketing area.", + "title": "Principles of Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT1705", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide knowledge, techniques and understanding of marketing principles. It provides students with a conceptual framework to analyse and interpret marketing phenomena and to suggest courses of action in response to marketing problems. It covers topics such as the marketing concept, the marketing environment and the marketing mix which includes product, pricing, distribution and promotion. Other related topics include consumer behaviour, market segmentation and targeting, marketing research and information system, marketing planning, implementation and control, and public issues in marketing. This is a foundation module for business students and provides the basis for later concentration in the marketing area.", + "title": "Principles of Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT1705A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide knowledge, techniques and understanding of marketing principles. It provides students with a conceptual framework to analyse and interpret marketing phenomena and to suggest courses of action in response to marketing problems. It covers topics such as the marketing concept, the marketing environment and the marketing mix which includes product, pricing, distribution and promotion. Other related topics include consumer behaviour, market segmentation and targeting, marketing research and information system, marketing planning, implementation and control, and public issues in marketing. This is a foundation module for business students and provides the basis for later concentration in the marketing area.", + "title": "Principles of Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT1705B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "B3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide knowledge, techniques and understanding of marketing principles. It provides students with a conceptual framework to analyse and interpret marketing phenomena and to suggest courses of action in response to marketing problems. It covers topics such as the marketing concept, the marketing environment and the marketing mix which includes product, pricing, distribution and promotion. Other related topics include consumer behaviour, market segmentation and targeting, marketing research and information system, marketing planning, implementation and control, and public issues in marketing. This is a foundation module for business students and provides the basis for later concentration in the marketing area.", + "title": "Principles of Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT1705C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "C1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "C2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "C1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide knowledge, techniques and understanding of marketing principles. It provides students with a conceptual framework to analyse and interpret marketing phenomena and to suggest courses of action in response to marketing problems. It covers topics such as the marketing concept, the marketing environment and the marketing mix which includes product, pricing, distribution and promotion. Other related topics include consumer behaviour, market segmentation and targeting, marketing research and information system, marketing planning, implementation and control, and public issues in marketing. This is a foundation module for business students and provides the basis for later concentration in the marketing area.", + "title": "Principles of Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT1705D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide knowledge, techniques and understanding of marketing principles. It provides students with a conceptual framework to analyse and interpret marketing phenomena and to suggest courses of action in response to marketing problems. It covers topics such as the marketing concept, the marketing environment and the marketing mix which includes product, pricing, distribution and promotion. Other related topics include consumer behaviour, market segmentation and targeting, marketing research and information system, marketing planning, implementation and control, and public issues in marketing. This is a foundation module for business students and provides the basis for later concentration in the marketing area.", + "title": "Principles of Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT1705E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide knowledge, techniques and understanding of marketing principles. It provides students with a conceptual framework to analyse and interpret marketing phenomena and to suggest courses of action in response to marketing problems. It covers topics such as the marketing concept, the marketing environment and the marketing mix which includes product, pricing, distribution and promotion. Other related topics include consumer behaviour, market segmentation and targeting, marketing research and information system, marketing planning, implementation and control, and public issues in marketing. This is a foundation module for business students and provides the basis for later concentration in the marketing area.", + "title": "Principles of Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT1705F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide knowledge, techniques and understanding of marketing principles. It provides students with a conceptual framework to analyse and interpret marketing phenomena and to suggest courses of action in response to marketing problems. It covers topics such as the marketing concept, the marketing environment and the marketing mix which includes product, pricing, distribution and promotion. Other related topics include consumer behaviour, market segmentation and targeting, marketing research and information system, marketing planning, implementation and control, and public issues in marketing. This is a foundation module for business students and provides the basis for later concentration in the marketing area.", + "title": "Principles of Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT1705X", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W08", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W06", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Thursday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W06", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0226", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W07", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W01", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W02", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0413A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W03", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W05", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Thursday", + "lessonType": "Lecture", + "size": 206, + "covidZone": "B" + }, + { + "classNo": "W08", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0226", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W04", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0413A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Every day new products are created that help fuel new ideas and innovation.\n\nToday, marketing helps these ideas become a successful business due to the abundance of digital tools that are available to small enterprises and online marketing solutions that help businesses find the right customers anywhere in the world.\n\nThis class offers a unique opportunity for enterprising students to develop a marketing strategy to turn their ideas into real, viable businesses. From a marketing perspective, the class will cover digital tools, social media, and mobile marketing solutions to help students formulate their business plans and go-to-market strategies.", + "title": "Marketing Venture Challenge", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MKT2711", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Every day new products are created that help fuel new ideas and innovation.\n\nToday, marketing helps these ideas become a successful business due to the abundance of digital tools that are available to small enterprises and online marketing solutions that help businesses find the right customers anywhere in the world.\n\nThis class offers a unique opportunity for enterprising students to develop a marketing strategy to turn their ideas into real, viable businesses. From a marketing perspective, the class will cover digital tools, social media, and mobile marketing solutions to help students formulate their business plans and go-to-market strategies.", + "title": "Marketing Venture Challenge", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MKT2711A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Every day new products are created that help fuel new ideas and innovation.\n\nToday, marketing helps these ideas become a successful business due to the abundance of digital tools that are available to small enterprises and online marketing solutions that help businesses find the right customers anywhere in the world.\n\nThis class offers a unique opportunity for enterprising students to develop a marketing strategy to turn their ideas into real, viable businesses. From a marketing perspective, the class will cover digital tools, social media, and mobile marketing solutions to help students formulate their business plans and go-to-market strategies.", + "title": "Marketing Venture Challenge", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MKT2711B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to acquaint students with the marketing planning and marketing management process; with a focus on Asian markets. Students are encouraged to apply marketing concepts, tools and techniques in the analysis of marketing situations and problems that are commonly faced in Asian markets and in the development of marketing strategies and programmes that are appropriate for Asian markets. Topics include the roles of planning in marketing, the reasons for planning, the pitfalls in planning, environmental analysis, market analysis, customer analysis, competitive analysis, company analysis, SWOT analysis, issue analysis, objective setting, strategy development, assembling of marketing mix, marketing implementation and control, and marketing evaluation and audit. The module is taught with a practical and applied orientation. Asian cases are used to a large extent for class discussion, supplemented by computer simulated marketing games, projects, exercises and lectures.", + "title": "Marketing Strategy: Analysis and Practice", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to acquaint students with the marketing planning and marketing management process; with a focus on Asian markets. Students are encouraged to apply marketing concepts, tools and techniques in the analysis of marketing situations and problems that are commonly faced in Asian markets and in the development of marketing strategies and programmes that are appropriate for Asian markets. Topics include the roles of planning in marketing, the reasons for planning, the pitfalls in planning, environmental analysis, market analysis, customer analysis, competitive analysis, company analysis, SWOT analysis, issue analysis, objective setting, strategy development, assembling of marketing mix, marketing implementation and control, and marketing evaluation and audit. The module is taught with a practical and applied orientation. Asian cases are used to a large extent for class discussion, supplemented by computer simulated marketing games, projects, exercises and lectures.", + "title": "Marketing Strategy: Analysis and Practice", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3401A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to acquaint students with the marketing planning and marketing management process; with a focus on Asian markets. Students are encouraged to apply marketing concepts, tools and techniques in the analysis of marketing situations and problems that are commonly faced in Asian markets and in the development of marketing strategies and programmes that are appropriate for Asian markets. Topics include the roles of planning in marketing, the reasons for planning, the pitfalls in planning, environmental analysis, market analysis, customer analysis, competitive analysis, company analysis, SWOT analysis, issue analysis, objective setting, strategy development, assembling of marketing mix, marketing implementation and control, and marketing evaluation and audit. The module is taught with a practical and applied orientation. Asian cases are used to a large extent for class discussion, supplemented by computer simulated marketing games, projects, exercises and lectures.", + "title": "Marketing Strategy: Analysis and Practice", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3401B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of consumer behaviour theories, research, and applications. It is designed to develop knowledge and skills that will facilitate an understanding of buyer behaviour which can be integrated into the formulation of marketing strategies. This will be accomplished by surveying the social science underpinnings of consumer behaviour as well as various types of consumer research which may be valuable for specific marketing decisions. The module thus emphasises the content and logical application of theories and research in analysing consumer behaviour for solving marketing management problems.", + "title": "Consumer Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Consumers make decisions regarding the acquisition, use and disposal of a variety of\n\nproducts, services and experiences. In this course, we seek to understand and appreciate\n\nconsumers as unique individuals and as members of their social and cultural groups. We\n\nwill examine the many facets of consumer behavior (e.g., from the experiential\n\nperspective, incorporating insights from sociology and anthropology), with an emphasis\n\non symbolic forms of consumption, and the use of qualitative research methods.", + "title": "Consumer Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3402A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of consumer behavior concepts, theories, research, and applications. It is designed to develop knowledge and skills that will facilitate an understanding of buyer behavior which can be integrated into the formulation of marketing strategies. This will be accomplished by surveying the social science foundations of consumer behavior, in particular, the contributions from psychology and sociology.\n\n\n\nDuring the course, various types of consumer research will be introduced. While students should learn to recognize what types of consumer research are valuable for specific marketing decisions, the course does not focus on the technical aspects of research design. Rather, its emphasis is on the content and logical application of concepts and theories in the analysis of consumer behavior for solving marketing management problems.", + "title": "Consumer Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3402B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of consumer behaviour theories, research, and applications. It is designed to develop knowledge and skills that will facilitate an understanding of buyer behaviour which can be integrated into the formulation of marketing strategies. This will be accomplished by surveying the social science underpinnings of consumer behaviour as well as various types of consumer research which may be valuable for specific marketing decisions. The module thus emphasises the content and logical application of theories and research in analysing consumer behaviour for solving marketing management problems.", + "title": "Consumer Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3402C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of consumer behaviour theories, research, and applications. It is designed to develop knowledge and skills that will facilitate an understanding of buyer behaviour which can be integrated into the formulation of marketing strategies. This will be accomplished by surveying the social science underpinnings of consumer behaviour as well as various types of consumer research which may be valuable for specific marketing decisions. The module thus emphasises the content and logical application of theories and research in analysing consumer behaviour for solving marketing management problems.", + "title": "Consumer Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3402D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to wire the students to the digital economy and provides students with Web tools and e-marketing knowledge to compete effectively in the e-business world. Emphasis will be placed on tapping the enormous potential of the Internet as a new marketing medium and exploring the unique characteristics of computer-mediated marketing environments that distinguish them in significant ways from traditional, terrestrial markets of opportunity. Course content includes detailed assessment of issues related to: information economy, e-marketing research, shopping bots and consumer behavior, permission marketing and viral marketing, Internet shopping and e-tailing models, auctions and affiliate marketing, Net community and CRM (customer relationship management), clickstream analysis and online personalisation, and public policy and e-business ethics.", + "title": "Digital Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3415", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to acquaint participants with the basic concepts, tools and frameworks in business-to-business marketing. Participants are exposed to the unique challenges in operating in the business market and provided with opportunities to carry out marketing analyses and to make marketing decisions in the business marketing context. The topics to be covered are: (a) importance and unique aspects of business marketing, (b) business buying behaviour, (c) business market analysis and competitor analysis, (d) business market strategy formulation, (e) business product management, (f) business pricing strategies and decisions, (g) management of distribution channels in the business market, (h) management of salesforce in the business market, (i) development and maintenance of customer relationships in the business market, (j) customer negotiations in the business market, and (k) marketing communications in the business market. This course will be taught in an application-oriented fashion. The various business marketing management concepts and principles will be taught through brief lectures, class discussions, class exercises and videos. The participants will learn how to make business marketing decisions, solve business marketing problems and develop business marketing plans through individual analysis and class discussion of marketing cases as well as group involvement in a business marketing project or simulation.", + "title": "Business-to-Business Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3416", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to acquaint participants with the basic concepts, tools and frameworks in business-to-business marketing. Participants are exposed to the unique challenges in operating in the business market and provided with opportunities to carry out marketing analyses and to make marketing decisions in the business marketing context. The topics to be covered are: (a) importance and unique aspects of business marketing, (b) business buying behaviour, (c) business market analysis and competitor analysis, (d) business market strategy formulation, (e) business product management, (f) business pricing strategies and decisions, (g) management of distribution channels in the business market, (h) management of salesforce in the business market, (i) development and maintenance of customer relationships in the business market, (j) customer negotiations in the business market, and (k) marketing communications in the business market. This course will be taught in an application-oriented fashion. The various business marketing management concepts and principles will be taught through brief lectures, class discussions, class exercises and videos. The participants will learn how to make business marketing decisions, solve business marketing problems and develop business marketing plans through individual analysis and class discussion of marketing cases as well as group involvement in a business marketing project or simulation.", + "title": "Business-to-Business Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3416A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to acquaint participants with the basic concepts, tools and frameworks in business-to-business marketing. Participants are exposed to the unique challenges in operating in the business market and provided with opportunities to carry out marketing analyses and to make marketing decisions in the business marketing context. The topics to be covered are: (a) importance and unique aspects of business marketing, (b) business buying behaviour, (c) business market analysis and competitor analysis, (d) business market strategy formulation, (e) business product management, (f) business pricing strategies and decisions, (g) management of distribution channels in the business market, (h) management of salesforce in the business market, (i) development and maintenance of customer relationships in the business market, (j) customer negotiations in the business market, and (k) marketing communications in the business market. This course will be taught in an application-oriented fashion. The various business marketing management concepts and principles will be taught through brief lectures, class discussions, class exercises and videos. The participants will learn how to make business marketing decisions, solve business marketing problems and develop business marketing plans through individual analysis and class discussion of marketing cases as well as group involvement in a business marketing project or simulation.", + "title": "Business-to-Business Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3416B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Customer Asset Management focuses on acquiring, retaining, and winning back customers. It highlights the need to move from merely satisfying customers to building strong bonds with them. Apart from the theoretical perspectives, this course also utilises software to analyse customer purchase data so as to differentiate customers and develop different relationship strategies for different customer groups.", + "title": "Customer Relationship Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3417", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aimed at developing skills towards the management of new and existing products, where products cover both tangible goods as well as intangible services. Possible topics to be covered include: the changing role of the product manager; product portfolio management; product planning and concept testing; test marketing and new product introduction; and packaging. Several teaching methods will be used. Apart from lectures, students may be given assigned readings and cases to develop their skills. In addition, students may have the opportunity to apply their skills in group projects.", + "title": "Product And Brand Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3418", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aimed at developing skills towards the management of new and existing products, where products cover both tangible goods as well as intangible services. Possible topics to be covered include: the changing role of the product manager; product portfolio management; product planning and concept testing; test marketing and new product introduction; and packaging. Several teaching methods will be used. Apart from lectures, students may be given assigned readings and cases to develop their skills. In addition, students may have the opportunity to apply their skills in group projects.", + "title": "Product and Brand Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3418A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aimed at developing skills towards the management of new and existing products, where products cover both tangible goods as well as intangible services. Possible topics to be covered include: the changing role of the product manager; product portfolio management; product planning and concept testing; test marketing and new product introduction; and packaging. Several teaching methods will be used. Apart from lectures, students may be given assigned readings and cases to develop their skills. In addition, students may have the opportunity to apply their skills in group projects.", + "title": "Product and Brand Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3418B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the use of communication to influence consumer decision making. The module will address the principles and practice of advertising, sales promotion, personal selling and public relations. Possible materials to be covered include setting promotional objectives; copy development and execution; media decisions; consumer and trade promotion; and sales force management. In addition to lectures, students will also be exposed to published research in promotion. Case studies as well as group projects involving the development and execution of a promotional campaign may also be used to allow students apply their knowledge and skill.", + "title": "Advertising & Promotion Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3420", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the use of communication to influence consumer decision making. The module will address the principles and practice of advertising, sales promotion, personal selling and public relations. Possible materials to be covered include setting promotional objectives; copy development and execution; media decisions; consumer and trade promotion; and sales force management. In addition to lectures, students will also be exposed to published research in promotion. Case studies as well as group projects involving the development and execution of a promotional campaign may also be used to allow students apply their knowledge and skill.", + "title": "Promotional Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3420B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to show you the benefits of using a systematic and analytical approach to marketing decision-making, and to build your skills and confidence in undertaking such analyses and decision making. An\nanalytical approach will enable you to: (1) identify alternative marketing options and actions, (2) calibrate the opportunity costs associated with each option, and (3) choose one or more options that have the highest likelihood of helping you achieve your business goals. By completing this course, you will be well on your way to making the ROI case for marketing expenditures that companies are increasingly asking of their executives. \n\nThis course follows up on the marketing core course by operationalizing several marketing concepts such as segmentation, targeting, positioning, and marketing resource allocation. By the end of this course, you will learn how to segment customers, recognize different ways to segment markets, understand the data required for segmentation, identify attractive customers to target, determine the best positioning of your brand in customers\u2019 minds, and develop new products that add value to consumers and firms.\n\nThe course is designed for students who have extensive background in or understanding marketing research and marketing principles, and who know or are prepared to learn to build \u201csmart\u201d spreadsheets in EXCEL. Using market simulations and related exercises tied to PC-based computer software, students will develop marketing plans in varying decision contexts.", + "title": "Marketing Analysis & Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3421", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Emerging Markets have been driving global growth in the past and are poised to continue over the next 50 years. Marketing to them involves a multiple levers of old school and new age marketing techniques. These economies are dichotomous with old world media and retail, and new age retail like ecommerce and digital media. Crises also change the media and content landscape dramatically.\n\nWhile marketing to mature economies is familiar, students need to understand that the positioning, messaging, and communication will be adapted for developing economies so that the market can appreciate the offering, and management optimize its marketing strategies.", + "title": "TIM: Marketing in Developing & Emerging Economies", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3422B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "No longer a nice-to-have, social values are now increasingly integrated as an anchoring point for whether consumers engage with a company. Businesses without a core impact will eventually be at a competitive disadvantage. But, history has shown that social value creation and economic value are not always aligned. This module aims to examine how social impact marketing is being deployed in the context of for profit companies, non-profit organizations and within social enterprises. The aim is to explore how marketing has been able to build brand value, social value and economic value given different and often competing performance metrics.", + "title": "TIM: Social Impact Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3422C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Sustainability is an evolving process. Business leaders acknowledge that organisational culture and change agents play an integral role in embedding sustainability in the day-to-day business decisions and processes. Students learn about the challenges affecting sustainability, environmental and international policies, what makes an effective sustainability leader and what constitutes circular economy.\n\nThe module, Sustainable Marketing, places the role of marketing and communications as key to framing the right message and narrative in the sustainability agenda. In understanding the attitudes of consumers towards sustainable consumption and production, students learn to use marketing and communications for behavioural change towards a more sustainable lifestyle.", + "title": "TIM: Sustainability Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3422D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Customers are usually connected with each other in various implicit or explicit social networks, and influence each other\u2019s opinions and decisions. \n\nThis module first introduces the basic terminology of social network research. It then discusses different intrinsic and extrinsic motivational factors that drive customers\u2019 preferences and behaviors, and whether and how these motivational factors work differently without and in the presence of other customers. The module then teaches modern and advanced techniques to conduct social network analysis, in particular in the context of marketing, including advanced visualization methods, representation learning, among others.", + "title": "TIM: Marketing in Social Networks", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3422E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Marketing:selected Topics 1", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3422X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3422Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to help students learn how to assess the strengths and weaknesses of a brand, and understand how to successfully develop technical branding strategy at different levels: corporate level, product level, and communication level. That is, this course concerns how to monitor and manage a brand over time to keep it healthy and strong by assessing important technical branding factors. Students will learn how to make branding decisions such as brand portfolio, co-branding ideas, brand revitalization, and branding beyond geographical boundaries. Beyond learning frameworks and theories, students will also conduct hands-on brand audit and brand portfolio projects.", + "title": "Branding Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3424", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will introduce retail marketing concepts covering both the mechanics and management of retailing from an entrepreneurial perspective. A range of topics, including the role and tasks of an entrepreneur, store and non-store retailing, location and site selection, retail environment and the application of new technologies, retail marketing mix components (such as merchandising, pricing and margin planning, store management, layout and visual merchandising), as well as internal and external promotions will be covered. In addition, short case studies and projects will be used to supplement lectures and readings. Students will acquaint themselves with current and future retailing environments and developments in Singapore and other countries as well as the processes that go on behind the scenes in retailing. While the module will cover theories in retail marketing discipline, it is generally approached with a practical and applied orientation. Lectures will be supplemented with store visits, video clips and talks. Students will also get a chance to learn about assessing retail outlets and developing retail strategies for real-life businesses through hands-on projects. By the end of the course students should be equipped with the knowledge and skills necessary to start up a retail business. Aside from business students who are interested in retailing, this course is targeted at students who are enterprising and may aspire to start their own retail business in the future.", + "title": "Retail Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3425", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Effective marketing research is necessary for successful management of all phases of the marketing process, ranging from product development and introduction to selling through growth and maturity stages. In today's information-oriented environment, a marketing manager cannot succeed without a thorough understanding of the research process. By understanding the research process, he can better judge the suitability, reliability and the validity of a research study in his decision-makings. Students will learn by doing in this course. While we will use class time to discuss appropriate research topics, students are required to do lots of activities by themselves in order to facilitate their learning by doing. In doing so, this course incorporates an experimental element in marketing research and consulting. As a marketing information provider, students will be assisting a firm by collecting and interpreting market data as a means toward the development of a superior marketing plan. At the same time, students will conduct tutorial activities that will provide opportunities for students to practice the key topics covered in the class. This course is intended to acquaint students with the fundamental marketing research process. More specifically, this course aims: (i) To familiarise the student with the fundamental marketing research skills of problem formulation, research design, questionnaire design, data collection, data analysis, and report presentation and writing. (ii) To have the student gain perspective and practice in applying these skills through a research project. (iii) To develop an understanding of decision making in marketing, its inherent difficulties and pitfalls and the importance of information in marketing research.", + "title": "Research for Marketing Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3427", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to the world of wealth management marketing, and to give them an indepth understanding of the challenges and complexities of marketing in a highly regulated and rapidly evolving industry. Students will get practical insights into the use of marketing applications in product, segment and service marketing in the retail, affluent and private banking sectors. It aims to hone their skills to improve the effectiveness of the marketing strategies, techniques and programs to meet the demanding priorities of the client, the business and the regulators in this fast-changing and regulated landscape.", + "title": "Wealth Management Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3428", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based \nresearch and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3429", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MKT3439", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to game theory and its applications in the realm of business. It aims to provide an overview of non-cooperative and cooperative games through the analysis of strategic interactions in conflict situations such as bargaining, market competition, monetary policy, auction, international trade, to name a few. Recurring themes include threatening and bluffing, punishing and rewarding, building reputations, and sustaining cooperation in non-cooperative environments through repeated interactions. More advanced topics on games with incomplete information such as moral hazard and incentives theory, mechanism design and the Revelation Principle will also be covered.", + "title": "Game Theory And Strategic Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3513", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to acquaint students with the marketing planning and marketing management process; with a focus on Asian markets. Students are encouraged to apply marketing concepts, tools and techniques in the analysis of marketing situations and problems that are commonly faced in Asian markets and in the development of marketing strategies and programmes that are appropriate for Asian markets. Topics include the roles of planning in marketing, the reasons for planning, the pitfalls in planning, environmental analysis, market analysis, customer analysis, competitive analysis, company analysis, SWOT analysis, issue analysis, objective setting, strategy development, assembling of marketing mix, marketing implementation and control, and marketing evaluation and audit. The module is taught with a practical and applied orientation. Asian cases are used to a large extent for class discussion, supplemented by computer simulated marketing games, projects, exercises and lectures.", + "title": "Marketing Strategy: Analysis and Practice", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to acquaint students with the marketing planning and marketing management process; with a focus on Asian markets. Students are encouraged to apply marketing concepts, tools and techniques in the analysis of marketing situations and problems that are commonly faced in Asian markets and in the development of marketing strategies and programmes that are appropriate for Asian markets. Topics include the roles of planning in marketing, the reasons for planning, the pitfalls in planning, environmental analysis, market analysis, customer analysis, competitive analysis, company analysis, SWOT analysis, issue analysis, objective setting, strategy development, assembling of marketing mix, marketing implementation and control, and marketing evaluation and audit. The module is taught with a practical and applied orientation. Asian cases are used to a large extent for class discussion, supplemented by computer simulated marketing games, projects, exercises and lectures.", + "title": "Marketing Strategy: Analysis and Practice", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3701A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to acquaint students with the marketing planning and marketing management process; with a focus on Asian markets. Students are encouraged to apply marketing concepts, tools and techniques in the analysis of marketing situations and problems that are commonly faced in Asian markets and in the development of marketing strategies and programmes that are appropriate for Asian markets. Topics include the roles of planning in marketing, the reasons for planning, the pitfalls in planning, environmental analysis, market analysis, customer analysis, competitive analysis, company analysis, SWOT analysis, issue analysis, objective setting, strategy development, assembling of marketing mix, marketing implementation and control, and marketing evaluation and audit. The module is taught with a practical and applied orientation. Asian cases are used to a large extent for class discussion, supplemented by computer simulated marketing games, projects, exercises and lectures.", + "title": "Marketing Strategy: Analysis and Practice", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3701B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of consumer behaviour theories, research, and applications. It is designed to develop knowledge and skills that will facilitate an understanding of buyer behaviour which can be integrated into the formulation of marketing strategies. This will be accomplished by surveying the social science underpinnings of consumer behaviour as well as various types of consumer research which may be valuable for specific marketing decisions. The module thus emphasises the content and logical application of theories and research in analysing consumer behaviour for solving marketing management problems.", + "title": "Consumer Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of consumer behaviour theories, research, and applications. It is designed to develop knowledge and skills that will facilitate an understanding of buyer behaviour which can be integrated into the formulation of marketing strategies. This will be accomplished by surveying the social science underpinnings of consumer behaviour as well as various types of consumer research which may be valuable for specific marketing decisions. The module thus emphasises the content and logical application of theories and research in analysing consumer behaviour for solving marketing management problems.", + "title": "Consumer Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3702A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 54, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of consumer behaviour theories, research, and applications. It is designed to develop knowledge and skills that will facilitate an understanding of buyer behaviour which can be integrated into the formulation of marketing strategies. This will be accomplished by surveying the social science underpinnings of consumer behaviour as well as various types of consumer research which may be valuable for specific marketing decisions. The module thus emphasises the content and logical application of theories and research in analysing consumer behaviour for solving marketing management problems.", + "title": "Consumer Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3702B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 54, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 54, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module applies marketing principles to service organisations both in the private and public sectors. Students will be taught the unique characteristics that separate services from goods, the managerial problems stemming from these characteristics, and the strategies suggested as appropriate to overcome the problems. Case studies will be used in addition to lectures in conducting this module and students may also be required to complete a project concerning the marketing of services.", + "title": "Services Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3711", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 56, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 56, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to wire the students to the digital economy and provides students with Web tools and e-marketing knowledge to compete effectively in the e-business world. Emphasis will be placed on tapping the enormous potential of the Internet as a new marketing medium and exploring the unique characteristics of computer-mediated marketing environments that distinguish them in significant ways from traditional, terrestrial markets of opportunity. Course content includes detailed assessment of issues related to: information economy, e-marketing research, shopping bots and consumer behavior, permission marketing and viral marketing, Internet shopping and e-tailing models, auctions and affiliate marketing, Net community and CRM (customer relationship management), clickstream analysis and online personalisation, and public policy and e-business ethics.", + "title": "Digital Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3714", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to wire the students to the digital economy and provides students with Web tools and e-marketing knowledge to compete effectively in the e-business world. Emphasis will be placed on tapping the enormous potential of the Internet as a new marketing medium and exploring the unique characteristics of computer-mediated marketing environments that distinguish them in significant ways from traditional, terrestrial markets of opportunity. Course content includes detailed assessment of issues related to: information economy, e-marketing research, shopping bots and consumer behavior, permission marketing and viral marketing, Internet shopping and e-tailing models, auctions and affiliate marketing, Net community and CRM (customer relationship management), clickstream analysis and online personalisation, and public policy and e-business ethics.", + "title": "Digital Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3714A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to wire the students to the digital economy and provides students with Web tools and e-marketing knowledge to compete effectively in the e-business world. Emphasis will be placed on tapping the enormous potential of the Internet as a new marketing medium and exploring the unique characteristics of computer-mediated marketing environments that distinguish them in significant ways from traditional, terrestrial markets of opportunity. Course content includes detailed assessment of issues related to: information economy, e-marketing research, shopping bots and consumer behavior, permission marketing and viral marketing, Internet shopping and e-tailing models, auctions and affiliate marketing, Net community and CRM (customer relationship management), clickstream analysis and online personalisation, and public policy and e-business ethics.", + "title": "Digital Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3714B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to acquaint participants with the basic concepts, tools and frameworks in business-to-business marketing. Participants are exposed to the unique challenges in operating in the business market and provided with opportunities to carry out marketing analyses and to make marketing decisions in the business marketing context. The topics to be covered are: (a) importance and unique aspects of business marketing, (b) business buying behaviour, (c) business market analysis and competitor analysis, (d) business market strategy formulation, (e) business product management, (f) business pricing strategies and decisions, (g) management of distribution channels in the business market, (h) management of salesforce in the business market, (i) development and maintenance of customer relationships in the business market, (j) customer negotiations in the business market, and (k) marketing communications in the business market. This course will be taught in an application-oriented fashion. The various business marketing management concepts and principles will be taught through brief lectures, class discussions, class exercises and videos. The participants will learn how to make business marketing decisions, solve business marketing problems and develop business marketing plans through individual analysis and class discussion of marketing cases as well as group involvement in a business marketing project or simulation.", + "title": "Business-to-Business Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3715", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to acquaint participants with the basic concepts, tools and frameworks in business-to-business marketing. Participants are exposed to the unique challenges in operating in the business market and provided with opportunities to carry out marketing analyses and to make marketing decisions in the business marketing context. The topics to be covered are: (a) importance and unique aspects of business marketing, (b) business buying behaviour, (c) business market analysis and competitor analysis, (d) business market strategy formulation, (e) business product management, (f) business pricing strategies and decisions, (g) management of distribution channels in the business market, (h) management of salesforce in the business market, (i) development and maintenance of customer relationships in the business market, (j) customer negotiations in the business market, and (k) marketing communications in the business market. This course will be taught in an application-oriented fashion. The various business marketing management concepts and principles will be taught through brief lectures, class discussions, class exercises and videos. The participants will learn how to make business marketing decisions, solve business marketing problems and develop business marketing plans through individual analysis and class discussion of marketing cases as well as group involvement in a business marketing project or simulation.", + "title": "Business-to-Business Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3715A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to acquaint participants with the basic concepts, tools and frameworks in business-to-business marketing. Participants are exposed to the unique challenges in operating in the business market and provided with opportunities to carry out marketing analyses and to make marketing decisions in the business marketing context. The topics to be covered are: (a) importance and unique aspects of business marketing, (b) business buying behaviour, (c) business market analysis and competitor analysis, (d) business market strategy formulation, (e) business product management, (f) business pricing strategies and decisions, (g) management of distribution channels in the business market, (h) management of salesforce in the business market, (i) development and maintenance of customer relationships in the business market, (j) customer negotiations in the business market, and (k) marketing communications in the business market. This course will be taught in an application-oriented fashion. The various business marketing management concepts and principles will be taught through brief lectures, class discussions, class exercises and videos. The participants will learn how to make business marketing decisions, solve business marketing problems and develop business marketing plans through individual analysis and class discussion of marketing cases as well as group involvement in a business marketing project or simulation.", + "title": "Business-to-Business Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3715B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "B1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Customer Asset Management focuses on acquiring, retaining, and winning back customers. It highlights the need to move from merely satisfying customers to building strong bonds with them. Apart from the theoretical perspectives, this course also utilises software to analyse customer purchase data so as to differentiate customers and develop different relationship strategies for different customer groups.", + "title": "Customer Relationship Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3716", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aimed at developing skills towards the management of new and existing products, where products cover both tangible goods as well as intangible services. Possible topics to be covered include: the changing role of the product manager; product portfolio management; product planning and concept testing; test marketing and new product introduction; and packaging. Several teaching methods will be used. Apart from lectures, students may be given assigned readings and cases to develop their skills. In addition, students may have the opportunity to apply their skills in group projects.", + "title": "Product & Brand Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3717", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aimed at developing skills towards the management of new and existing products, where products cover both tangible goods as well as intangible services. Possible topics to be covered include: the changing role of the product manager; product portfolio management; product planning and concept testing; test marketing and new product introduction; and packaging. Several teaching methods will be used. Apart from lectures, students may be given assigned readings and cases to develop their skills. In addition, students may have the opportunity to apply their skills in group projects.", + "title": "Product & Brand Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3717A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aimed at developing skills towards the management of new and existing products, where products cover both tangible goods as well as intangible services. Possible topics to be covered include: the changing role of the product manager; product portfolio management; product planning and concept testing; test marketing and new product introduction; and packaging. Several teaching methods will be used. Apart from lectures, students may be given assigned readings and cases to develop their skills. In addition, students may have the opportunity to apply their skills in group projects.", + "title": "Product & Brand Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3717B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the use of communication to influence consumer decision making. The module will address the principles and practice of advertising, sales promotion, personal selling and public relations. Possible materials to be covered include setting promotional objectives; copy development and execution; media decisions; consumer and trade promotion; and sales force management. In addition to lectures, students will also be exposed to published research in promotion. Case studies as well as group projects involving the development and execution of a promotional campaign may also be used to allow students apply their knowledge and skill.", + "title": "Advertising & Promotion Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3718", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to help students learn how to assess the strengths and weaknesses of a brand, and understand how to successfully develop technical branding strategy at different levels: corporate level, product level, and communication level. That is, this course concerns how to monitor and manage a brand over time to keep it healthy and strong by assessing important technical branding factors. Students will learn how to make branding decisions such as brand portfolio, co-branding ideas, brand revitalization, and branding beyond geographical boundaries. Beyond learning frameworks and theories, students will also conduct hands-on brand audit and brand portfolio projects.", + "title": "Branding Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3719", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will introduce retail marketing concepts covering both the mechanics and management of retailing from an entrepreneurial perspective. A range of topics, including the role and tasks of an entrepreneur, store and non-store retailing, location and site selection, retail environment and the application of new technologies, retail marketing mix components (such as merchandising, pricing and margin planning, store management, layout and visual merchandising), as well as internal and external promotions will be covered. In addition, short case studies and projects will be used to supplement lectures and readings. Students will acquaint themselves with current and future retailing environments and developments in Singapore and other countries as well as the processes that go on behind the scenes in retailing. While the module will cover theories in retail marketing discipline, it is generally approached with a practical and applied orientation. Lectures will be supplemented with store visits, video clips and talks. Students will also get a chance to learn about assessing retail outlets and developing retail strategies for real-life businesses through hands-on projects. By the end of the course students should be equipped with the knowledge and skills necessary to start up a retail business. Aside from business students who are interested in retailing, this course is targeted at students who are enterprising and may", + "title": "Retail Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3720", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Effective marketing research is necessary for successful management of all phases of the marketing process, ranging from product development and introduction to selling through growth and maturity stages. In today's information-oriented environment, a marketing manager cannot succeed without a thorough understanding of the research process. By understanding the research process, he can better judge the suitability, reliability and the validity of a research study in his decision-makings. Students will learn by doing in this course. While we will use class time to discuss appropriate research topics, students are required to do lots of activities by themselves in order to facilitate their learning by doing. In doing so, this course incorporates an experimental element in marketing research and consulting. As a marketing information provider, students will be assisting a firm by collecting and interpreting market data as a means toward the development of a superior marketing plan. At the same time, students will conduct tutorial activities that will provide opportunities for students to practice the key topics covered in the class. This course is intended to acquaint students with the fundamental marketing research process. More specifically, this course aims: (i) To familiarise the student with the fundamental marketing research skills of problem formulation, research design, questionnaire design, data collection, data analysis, and report presentation and writing. (ii) To have the student gain perspective and practice in applying these skills through a research project. (iii) To develop an understanding of decision making in marketing, its inherent difficulties and pitfalls and the importance of information in marketing research.", + "title": "Research for Marketing Insights", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3722", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0302", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to the world of wealth management marketing, and to give them an indepth understanding of the challenges and complexities of marketing in a highly regulated and rapidly evolving industry. Students will get practical insights into the use of marketing applications in product, segment and service marketing in the retail, affluent and private banking sectors. It aims to hone their skills to improve the effectiveness of the marketing strategies, techniques and programs to meet the demanding priorities of the client, the business and the regulators in this fast-changing and regulated landscape.", + "title": "Wealth Management Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3723", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sustainability is an evolving process. Business leaders acknowledge that organisational culture and change agents play an integral role in embedding sustainability in the day-to-day business decisions and processes. Students learn about the challenges affecting sustainability, environmental and international policies, what makes an effective sustainability leader and what constitutes circular economy. The module, Sustainable Marketing, places the role of marketing and communications as key to framing the right message and narrative in the sustainability agenda. In understanding the attitudes of consumers towards sustainable consumption and production, students learn to use marketing and communications for behavioural change towards a more sustainable lifestyle.", + "title": "Sustainability Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3724", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Indep Study in Mkting (2 MC)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MKT3752", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in one or more specialised areas in marketing, which is not explicitly covered in other marketing electives in the programme. Topics include, but are not restricted to, services and non-profit marketing, sales force management, industrial marketing strategy, and brand management.", + "title": "Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Emerging Markets have been driving global growth in the past and are poised to continue over the next 50 years. Marketing to them involves a multiple levers of old school and new age marketing techniques. These economies are dichotomous with old world media and retail, and new age retail like ecommerce and digital media. Crises also change the media and content landscape dramatically.\n\nWhile marketing to mature economies is familiar, students need to understand that the positioning, messaging, and communication will be adapted for developing economies so that the market can appreciate the offering, and management optimize its marketing strategies.", + "title": "TIM: Marketing in Developing & Emerging Economies", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3761B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "No longer a nice-to-have, social values are now increasingly integrated as an anchoring point for whether consumers engage with a company. Businesses without a core impact will eventually be at a competitive disadvantage. But, history has shown that social value creation and economic value are not always aligned. This module aims to examine how social impact marketing is being deployed in the context of for profit companies, non-profit organizations and within social enterprises. The aim is to explore how marketing has been able to build brand value, social value and economic value given different and often competing performance metrics.", + "title": "TIM: Social Impact Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3761C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in one or more specialised areas in marketing, which is not explicitly covered in other marketing electives in the programme. Topics include, but are not restricted to, services and non-profit marketing, sales force management, industrial marketing strategy, and brand management.", + "title": "TIM: Sustainability Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3761D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Customers are usually connected with each other in various implicit or explicit social networks, and influence each other\u2019s opinions and decisions. \n\nThis module first introduces the basic terminology of social network research. It then discusses different intrinsic and extrinsic motivational factors that drive customers\u2019 preferences and behaviors, and whether and how these motivational factors work differently without and in the presence of other customers. The module then teaches modern and advanced techniques to conduct social network analysis, in particular in the context of marketing, including advanced visualization methods, representation learning, among others.", + "title": "TIM: Marketing in Social Networks", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3761E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in one or more specialised areas in marketing, which is not explicitly covered in other marketing electives in the programme. Topics include, but are not restricted to, services and non-profit marketing, sales force management, industrial marketing strategy, and brand management.", + "title": "Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3761X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in one or more specialised areas in marketing, which is not explicitly covered in other marketing electives in the programme. Topics include, but are not restricted to, services and non-profit marketing, sales force management, industrial marketing strategy, and brand management.", + "title": "Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3761Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for advanced study in one or more specialised areas in marketing, which is not explicitly covered in other marketing electives in the programme. Topics include, but are not restricted to, services and non-profit marketing, sales force management, industrial marketing strategy, and brand management.", + "title": "Topics in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3761Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to show you the benefits of using a systematic and analytical approach to marketing decision-making, and to build your skills and confidence in undertaking such analyses and decision making. An analytical approach will enable you to: (1) identify alternative marketing options and actions, (2) calibrate the opportunity costs associated with each option, and (3) choose one or more options that have the highest likelihood of helping you achieve your business goals. By completing this course, you will be well on your way to making the ROI case for marketing expenditures that companies are increasingly asking of their executives. This course follows up on the marketing core course by operationalizing several marketing concepts such as segmentation, targeting, positioning, and marketing resource allocation. By the end of this course, you will learn how to segment customers, recognize different ways to segment markets, understand the data required for segmentation, identify attractive customers to target, determine the best positioning of your brand in customers? minds, and develop new products that add value to consumers and firms. The course is designed for students who have extensive background in or understanding marketing research and marketing principles, and who know or are prepared to learn to build ?smart? spreadsheets in EXCEL. Using market simulations and related exercises tied to PC-based computer software, students will develop marketing plans in varying decision contexts.", + "title": "Marketing Analysis & Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3811", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to game theory and its applications in the realm of business. It aims to provide an overview of non-cooperative and cooperative games through the analysis of strategic interactions in conflict situations such as bargaining, market competition, monetary policy, auction, international trade, to name a few. Recurring themes include threatening and bluffing, punishing and rewarding, building reputations, and sustaining cooperation in non-cooperative environments through repeated interactions. More advanced topics on games with incomplete information such as moral hazard and incentives theory, mechanism design and the Revelation Principle will also be covered.", + "title": "Game Theory and Strategic Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT3812", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Pricing is one of the important decisions that a marketing manager must make. In fact a firm's profitability critically depends on how its products or services are priced. Pricing decisions however are difficult to make and can be quite complex. Effective pricing decisions draw upon a variety of disciplines such as economics, marketing, psychology and law. The purpose of the course will be to introduce students to some of the key concepts and practical issues involved in making effective pricing decisions.", + "title": "Pricing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4413", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The nature of unicorn-sharing businesses is different and marketing is changing to keep pace with business needs. Understanding these trends and how to leverage the immense volume of data, interface with other marketing functions, and scale quickly are critical to remain relevant. This class will equip students with the fundamentals to tackle these demands.", + "title": "SIM: Growing and Marketing the Next On-Demand Unicorn", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4415F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Many firms have extensive information about consumers' behaviour, but few firms have the expertise to act on such information. This course will enable students to understand a scientific approach for creating data driven marketing strategies leveraging customer information. Customer analytics addresses how data from customer behavior is used to help drive business outcomes. The course will use practical approach of using large amount of customer data and buying pattern to describe past buying behavior, predict future ones and prescribe best ways to influence future buying decisions. This course provides an overview of analytical techniques to make informed business decisions.", + "title": "SIM: Customer Analytics and Visualization", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4415G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the explosion in media channels and formats, importance of Media in the Marketing Mix has been on a rapid ascent for the past two decades. Infusion of latest communication technologies has made media the most dynamic part of the marketing world. Estimated 2019 Worldwide media spends, were upwards of US$650Billion, 50% on digital platforms. With CoVID accelerating move to a digital economy, understanding media and related technology has become an imperative. Apart from students targeting careers in Sales, Marketing or Media, the course will be relevant for those targeting careers in start-ups, finance and consultancies.", + "title": "SIM: Media Strategy for a Digital Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4415H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an overview of the theory and practice of personal selling and sales management. The objective of this course is to develop skills and competencies that allow students to manage sales territories, and provide them with a set of unique techniques that students will develop to enable them to build successful sales careers.\n\nThis course will focus on how technology is changing the customer\u2019s buying process and sales strategy. Course content includes topics on automation, lead generation/nurturing, account-based marketing, sales enablement, data analytics, Internet of Things (IoT), etc.", + "title": "SIM: Personal Selling & Sales Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4415J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Channels and platforms are the distribution structures that match demand and supply. These structures (both physical and virtual) enable the transactions between buyers and sellers through the exchange of information, product (service) and payment. This course teaches the learner about these structures, paying particularly attention to the efficiency and effectiveness of their distribution. \n\nThis course has theoretical, empirical, and practical components. It equips the students with the theoretical background to evaluate empirical phenomena. Students use the knowledge to appreciate the challenges and opportunities of the existing distribution structures in various product categories, and possibly to design an efficient alternative.", + "title": "SIM: Distribution Management: Channels and Platforms", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4415K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We live in an era of disruption: Long-held business beliefs, processes or technology are replaced by innovative new approaches that threaten incumbent industry leaders. \n\nKodak, Nokia and Blockbuster are few examples of disrupted firms in the past who were unable to adapt to trends and changes in consumer choice, digital technology and dynamic business models.\n\nIn this course, students will learn how disruption is impacting the field of Marketing, and what future marketers should do to prepare themselves for a world of infinite consumer choice, fragmenting media consumption and an analytics-first marketing mind set.", + "title": "SIM: Disruption and Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4415L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Product Experience Management has become the centrepiece of marketing strategies today. The journey to product success begins with onboarding user-centric product design and ends with personalized product recommendations. It is both stable and dynamic, involving a sustainable customer centric strategy as well as a faster time-to-market. \n\nThis course complements Product & Brand Management by examining product management from the customer experience perspective. It focuses on the customer journey that takes place within the product itself. It provides students with a \u2018hands on\u2019 exploration of the principles, tools, and frameworks such as design thinking, customer journey analytics and data-driven decisions.", + "title": "SIM: Product Experience Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4415M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Multitudes of research, spanning economics, psychology, sociology among the various behavioral and decision sciences, have been done to understand why we shop the way we shop, why we choose the way we choose, and why\nwe buy the way we buy.\n\nBeginning with the foundation of a rational consumer, we systematically examine the choice, purchase and shopping behaviors which deviate from standard rational predictions, the circumstances/contexts of such deviations, and understand their causes and consequences.\n\nKey elements underlying choice, purchase and shopping are examined under a generic context before moving to specific contexts such as personal finance, health and consumption.", + "title": "Consumer Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4417", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Consumer Culture Theory (CCT) is a synthesizing framework that examines the sociocultural, experiential, symbolic and ideological aspects of consumption. The tenets of CCT research are aligned with consumer identity\nprojects, marketplace cultures, the sociohistorical patterning of consumption, and mass-mediated marketplace ideologies and consumers\u2019 interpretive\nstrategies. In this course, we will explore the dynamic relationships among consumer actions, the marketplaces and cultural meanings using theories and methods from multiple disciplines.", + "title": "Consumer Culture Theory", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4418", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for\nadmission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4419", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The digital age has fundamentally altered the manner we collect, process, analyse and disseminate market intelligence. Driven by advances in hardware, software and communications, the very nature of market research is rapidly changing. New techniques are emerging. The increased velocity of information flow enables marketers to respond with much greater speed to changes in the marketplace. Market research is timelier, less expensive, more actionable and more precise ... all of which makes it of far greater importance to marketers.\n\nApplied Market Research is primarily designed for marketing professionals to train them to use market knowledge for day-to-day marketing decisions. It will provide good understanding of many prevalent research techniques and their application.\n\nThe course will be taught in an application-oriented fashion through lectures, class discussions and case studies. Students will acquire critical analysis and decision making abilities to prepare them to tackle the marketing and business issues they are likely to confront in a career in marketing.", + "title": "Marketing Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4420", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for\nadmission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MKT4429", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Multitudes of research, spanning economics, psychology, sociology among the various behavioral and decision sciences, have been done to understand why we shop the way we shop, why we choose the way we choose, and why we buy the way we buy. Beginning with the foundation of a rational consumer, we systematically examine the choice, purchase and shopping behaviors which deviate from standard rational predictions, the circumstances/contexts of such deviations, and understand their causes and consequences. Key elements underlying choice, purchase and shopping are examined under a generic context before moving to specific contexts such as personal finance, health and consumption.", + "title": "Consumer Decision Making", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4714", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This strategic marketing programme combines theory with practice, linking the classroom with the fast moving consumer goods (FMCG) workplace. It employs Destiny\u00a9, a business simulator that mirrors the buying behaviour of\nFMCG decision makers, to give participants the unique experience of running a virtual organization. Participants strive to successfully manage and grow their organization; they engage in a broad array of business processes ranging\nfrom product development, marketing, retailing, category management, trade marketing and negotiations, financial planning and business strategy.", + "title": "Business Strategy Simulation for Marketers", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4715", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Consumer Culture Theory (CCT) is a synthesizing framework that examines the sociocultural, experiential, symbolic and ideological aspects of consumption. The tenets of CCT research are aligned with consumer identity\nprojects, marketplace cultures, the sociohistorical patterning of consumption, and mass-mediated marketplace ideologies and consumers\u2019 interpretive\nstrategies. In this course, we will explore the dynamic relationships among consumer actions, the marketplaces and cultural meanings using theories and methods from multiple disciplines.", + "title": "Consumer Culture Theory", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4716", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Channels and platforms are the distribution structures that match demand and supply. These structures (both physical and virtual) enable the transactions between buyers and sellers through the exchange of information, product (service) and payment. This course teaches the learner about these structures, paying particularly attention to the efficiency and effectiveness of their distribution.\n\nThis course has theoretical, empirical, and practical components. It equips the students with the theoretical background to evaluate empirical phenomena. Students use the knowledge to appreciate the challenges and opportunities of the existing distribution structures in various product categories, and possibly to design an efficient alternative.", + "title": "Distribution Management: Channels and Platforms", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4719", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 5, + 6, + 6, + 7, + 7, + 8, + 8, + 9, + 9, + 10, + 10, + 11, + 11, + 12, + 12, + 13, + 13 + ], + "venue": "BIZ1-0205", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Product Experience Management has become the centrepiece of marketing strategies today. The journey to product success begins with onboarding user-centric product design and ends with personalized product recommendations. It is both stable and dynamic, involving a sustainable customer centric strategy as well as a faster time-to-market.\n\nThis course complements Product & Brand Management by examining product management from the customer experience perspective. It focuses on the customer journey that takes place within the product itself. It provides students with a \u2018hands on\u2019 exploration of the principles, tools, and frameworks such as design thinking, customer journey analytics and data-driven decisions.", + "title": "Product Experience Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4720", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Many firms have extensive information about consumers' behaviour, but few firms have the expertise to act on such information. This course will enable students to understand a scientific approach for creating data driven marketing strategies leveraging customer information. Customer analytics addresses how data from customer behavior is used to help drive business outcomes. The course will use practical approach of using large amount of customer data and buying pattern to describe past buying behavior, predict future ones and prescribe best ways to influence future buying decisions. This course provides an overview of analytical techniques to make informed business decisions.", + "title": "Customer Analytics & Visualization", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4721", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with an overview of the theory and practice of personal selling and sales management. The objective of this course is to develop skills and competencies that allow students to manage sales territories, and provide them with a set of unique techniques that students will develop to enable them to build successful sales careers.\n\nThis course will focus on how technology is changing the customer\u2019s buying process and sales strategy. Course content includes topics on automation, lead generation/nurturing, account-based marketing, sales enablement, data analytics, Internet of Things (IoT), etc.", + "title": "Personal Selling & Sales Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4722", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s volatile business environment, management that is customer-focus, and can manage and deliver a branded customer experience can attain significant competitive advantage. Customers of today look for both great products and customer experience. This module aims to equip students with an understanding of Customer Experience (CX) Design, that enables them to construct value-creation strategy for organizations through adopting customer-centric culture, mind-set and related processes, for transformation of customer experience across different types of interactions. Adopting an omni channel approach, students will learn to design customer interactions that optimize customer satisfaction and nurture strong customer-brand relationship, loyalty and advocacy.", + "title": "Customer Experience Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4723", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Advanced Independent Study in Marketing (2 MC)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MKT4752", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will furnish an in-depth treatment of one or more areas in marketing. Intensive class participation and discussion of research articles will be the mode of instruction. Topics will range from, but are not restricted to, advanced marketing research, marketing theory, philosophy of marketing science, and marketing decision models.", + "title": "Seminars in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The nature of unicorn-sharing businesses is different and marketing is changing to keep pace with business needs. Understanding these trends and how to leverage the immense volume of data, interface with other marketing functions, and scale quickly are critical to remain relevant. This class will equip students with the fundamentals to tackle these demands.", + "title": "SIM: Growing and Marketing the Next On-Demand Unicorn", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4761A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the explosion in media channels and formats, importance of Media in the Marketing Mix has been on a rapid ascent for the past two decades. Infusion of latest communication technologies has made media the most dynamic part of the marketing world. Estimated 2019 Worldwide media spends, were upwards of US$650Billion, 50% on digital platforms. With CoVID accelerating move to a digital economy, understanding media and related technology has become an imperative. Apart from students targeting careers in Sales, Marketing or Media, the course will be relevant for those targeting careers in start-ups, finance and consultancies.", + "title": "SIM: Media Strategy for a Digital Economy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4761C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We live in an era of disruption: Long-held business beliefs, processes or technology are replaced by innovative new approaches that threaten incumbent industry leaders. \n\nKodak, Nokia and Blockbuster are few examples of disrupted firms in the past who were unable to adapt to trends and changes in consumer choice, digital technology and dynamic business models.\n\nIn this course, students will learn how disruption is impacting the field of Marketing, and what future marketers should do to prepare themselves for a world of infinite consumer choice, fragmenting media consumption and an analytics-first marketing mind set.", + "title": "SIM: Disruption and Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4761F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module extends the core module of Marketing Strategy by bringing diverse marketing theories and models into a universal framework practice in business. While the earlier Marketing module emphasizes strategy development, ties how Marketing and other business functions work together for an effective implementation of these strategies. Lessons on monitoring and management to prepare for disruption are also included. This module will also delve into how Marketing works with outside partners for seamless implementation and growth opportunities. Insights from industry will be gleaned to provide students the key to succeed as a Marketer in industry. Marketing Strategy & Execution", + "title": "SIM Marketing Strategy & Execution", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4761H", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In recent years, as the quantity of business data has exploded and computing power has continued to improve, opportunities to automate many parts of the marketing function have emerged. In this course, we approach this ever-evolving topic holistically, including identifying the business opportunities and pitfalls AI presents, and a close look at the algorithms that make such automation possible. The course will present business applications, some of the theory behind machine learning, and implement examples.", + "title": "SIM AI in Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4761J", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Pricing is one of the important decisions that a marketing manager must make. In fact a firm's profitability critically depends on how its products or services are priced. Pricing decisions however are difficult to make and can be quite complex. Effective pricing decisions draw upon a variety of disciplines such as economics, marketing, psychology and law. The purpose of the course will be to introduce students to some of the key concepts and practical issues involved in making effective pricing decisions.", + "title": "Pricing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4811", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Pricing is one of the important decisions that a marketing manager must make. In fact a firm's profitability critically depends on how its products or services are priced. Pricing decisions however are difficult to make and can be quite complex. Effective pricing decisions draw upon a variety of disciplines such as economics, marketing, psychology and law. The purpose of the course will be to introduce students to some of the key concepts and practical issues involved in making effective pricing decisions.", + "title": "Pricing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4811A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Pricing is one of the important decisions that a marketing manager must make. In fact a firm's profitability critically depends on how its products or services are priced. Pricing decisions however are difficult to make and can be quite complex. Effective pricing decisions draw upon a variety of disciplines such as economics, marketing, psychology and law. The purpose of the course will be to introduce students to some of the key concepts and practical issues involved in making effective pricing decisions.", + "title": "Pricing Strategy", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4811B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "B1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The digital age has fundamentally altered the manner we collect, process, analyse and disseminate market intelligence. Driven by advances in hardware, software and communications, the very nature of market research is rapidly changing. New techniques are emerging. The increased velocity of information flow enables marketers to respond with much greater speed to changes in the marketplace. Market research is timelier, less expensive, more actionable and more precise ... all of which makes it of far greater importance to marketers. Applied Market Research is primarily designed for marketing professionals to train them to use market knowledge for day-to-day marketing decisions. It will provide good understanding of many prevalent research techniques and their application. The course will be taught in an application-oriented fashion through lectures, class discussions and case studies. Students will acquire critical analysis and decision making abilities to prepare them to tackle the marketing and business issues they are likely to confront in a career in marketing.", + "title": "Marketing Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MKT4812", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The main purpose of this module is to help graduate students to improve their presentation skills and to participate in scientific seminars/exchanges in a professional manner.\n\nThe module will be spread over one semester and will be graded ?Satisfactory/Unsatisfactory? on the basis of student presentation and participation.\n\nStudents will learn the following skills:\n1. Presentation skills.\n2. Communication skills.\nThis module involves attending weekly seminars presented by internal or external staff members or guest lecturers from industries in different fields. Students are also required to write summaries of some seminars and to give presentations.", + "title": "Graduate Seminar Module in Materials Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ML5198", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Thin-film growth techniques, plating, vaporization, sputtering, chemical vapour deposition, molecular beam epitaxy, hot-wall epitaxy and laser ablation, gas transport and pumping, vacuum and related theories and technology for thin film growth, pumps and systems, condensation, nucleation, phase stability and basic modes of thin film growth, zone models for evaporated and sputtered coatings, factors on properties of thin films, columnar structure and epitaxial growth, thin film reactions, optical and electrical properties. Learning objectives: Various technologies and principles for thin solid film growth, electrical and optical properties of thin films. Target students: Graduate students of Materials Science and related disciplines.", + "title": "Principles, Technology and Properties of Thin Films", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ML5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Fundamentals of ceramic processing, sintering theories, microstructural control of structural and electronic ceramics; defect chemistry for structural and electronic ceramics; important structural ceramics - alumina, zirconia, silicon nitride, silicon carbide, sialons; functional properties of ceramic materials; important electronic ceramics - ferroelectric, piezoelectric, relaxors, PTC, NTC, and varistors. Learning objectives: Examine and understand the fundamental of ceramic processing, sintering theories, control of microstructures for structural and electronic ceramics; defect chemistry, important structural and electronic ceramics. Target students: Graduate Students of Materials Science and related disciplines.", + "title": "Structural and Electronic Ceramics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ML5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental control: electrochemical sensing techniques, gas and vapour phase sensors, electrochemical treatments in waste disposal. Solar power: semiconductor electrochemistry, photoelectrochemistry, wet and solid state solar cells, light emitting diodes and detectors, conducting polymers, battery systems, fuel cells, biomedical control: electrochemical bio-sensors, batteries for implants and hearing aids. Learning objectives: Solid/solution interface in terms of Fermi levels and redox potentials; requirements in generating photocurrents; way materials selection and design influences battery performance; interactions between gases and solid surfaces and how these can be used to design practical sensors. Target students: Graduate students of Materials Science and related disciplines.", + "title": "Electrochemical Techniques in Environmental Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ML5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Major topics include nano-scale phenomena and the related chemical, physical and transport properties, size effect and quantum mechanics, nanothermodynamics and nano phase diagrams, interface and surface of nanoparticles and their effects, processing of organic, inorganic and bio-based nanoparticles, nanocomposites and thin films, advanced characterization of long range and short range orders, x-ray scattering, anomalous x-ray scattering, extended absorption fine structure. Learning objectives: Introductory knowledge of nanostructured materials. Target students: Graduate students of Materials Science and related disciplines.", + "title": "Nanomaterials: Science and Engineering", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ML5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Methods for analyzing stresses in elastically dissimilar films deposited on structures and their applications in modern industries, stress concentrations on a wavy film surface, the criteria for the formation of threading dislocations in heteroepitaxial thin films and in layered structures, surface shapes and growth modes, the morphological stability of a stressed flat films against roughening and its application in the self-assembly of nano-structures. Learning objectives: Apply basic knowledge of the mechanical properties of materials to thin film-substrate films. Target students: Graduate students of Materials Science and related disciplines.", + "title": "Mechanical Properties of Solid Films", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ML5208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Atomic and bonding orbital, types of bonds, energy band structure, short range & long range orders, imperfections, interfacial phenomena, effects on material properties, structure/bond dependent properties such as electrical, magnetic and mechanical, solubility, solid solution, composite, compositional control of material properties, nanostructured materials: length scale phenomena; size effects; quantum size effects; interface effects on properties, examples of effects of different structural length scales on properties (macroscopic, micron, nanometer and below). Learning objectives: To develop an understanding of material properties based on bonding, band structure, composition and structural control, and nanoscale phenomena. Target students: Graduate students of Materials Science & related disciplines.", + "title": "Fundamentals of Materials Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ML5209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Written & oral communication skills. Basics of computer tools used by materials engineers. Notations for points, directions and planes. Basic crystal structures of metals. (BCC, FCC, and HCP), Basic crystal structures of ceramics and semiconductors. Imperfections in Solids covering point defects, line defects, surface defects and grain boundaries, Noncrystalline and semicrystalline materials Mechanical Properties. XRD and impact testing. Tension test and work hardening. Basic phase diagrams.", + "title": "Materials Science & Engrg Principles & Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MLE1001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Notations for points, directions and planes. Basic crystal\nstructures of metals. (BCC, FCC, and HCP), Basic crystal\nstructures of ceramics and semiconductors. Imperfections\nin Solids covering point defects, line defects, surface\ndefects and grain boundaries, Noncrystalline and\nsemicrystalline materials Mechanical Properties. XRD and\nimpact testing. Tension test and work hardening. Diffusion\nin solids; phase diagrams, inclusive of Gibbs phase rule,\nbinary phase diagram and equilibrium diagrams.", + "title": "Materials Science & Engineering Principles & Practice I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE1001A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is the first of a two module set: Engineering Principle and Practice I and II (EPP I and EPP II) to introduce first year students to how materials engineers think and address societal problems. EPP I will use hands-on lab experiences with state-of-the-art applications of both soft materials (e.g. polymers whose applications span drug delivery to aircraft windows) and hard materials (e.g. silicon, whose applications span transistors to solar cells) integrated with targeted chemistry and physics lecture content to understand how these materials work. Instruction on experimental methods, and both oral and written scientific communication are key learning objectives.", + "title": "Materials Science & Engineering Principles & Practice 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE1001B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3A-05-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E5-03-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E3A-05-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "E5-03-20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Oral communication situations relevant to engineering practice. Diffusion in solids; phase diagrams, inclusive of Gibbs phase rule, binary phase diagram and equilibrium diagrams. Metals, properties and processing. Ceramics, properties and processing. Polymers, properties and processing. Composites, properties and processing. Corrosion & materials degradation. How to choose the best material? Matching materials to design. Selecting a Manufacturing process. Aspects beyond the technical domain in materials selection & design.", + "title": "Materials Science & Engineering Principles & Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MLE1002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to the mechanical and\nelectrical properties of the main classes of materials,\nmetals, polymers, ceramics, composites and\nsemiconductors followed by techniques used to select\nsuitable materials for future design projects. The module\nwill cover the correlation between these fundamental\nmaterials properties and both chemical composition and\nmicrostructure, including the impact of the fabrication\nprocess.", + "title": "Materials Engineering Principles & Practices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE1010", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Friday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introductory aspects of materials science and engineering (i.e. structure, properties and function). Structure on the Atomic scale. Energy levels, atomic orbitals, molecular orbitals; Interatomic bonding, types of bonds (metallic, ionic, covalent, molecular and mixed); Structure of metals, ceramics and polymers; Basic crystallography, imperfection in solids, point and line defects, non-crystalline and semi-crystalline materials, diffusion and diffusion controlled process; Correlation of structure to properties and engineering functions (mechanical, chemical). Discussion of examples for main materials categories (metals, ceramics, polymers and composites); Corrosion and degradation of materials; Basic materials selection for chemical engineering applications.", + "title": "Introductory Materials Science And Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE1101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a pure materials science and materials engineering module, which focuses on foundation and core concepts that practicing materials engineer must know. A number of applications will be used to help emphasise the importance of this core knowledge. Major topics covered in depth include: Atomic structure and bonding; structures, crystal systems, crystalline, noncrystalline and semicrystalline materials; Imperfections in Solids covering point defects, line defects, surface defects and grain boundaries; Fundamental concepts into mechanical properties of materials, involving statics and mechanics of materials, beam structures and beam bending will be covered here.", + "title": "Foundation Materials Science and Engineering I", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of MLE1111 deals with the properties, processing and applications of the main classes of engineering materials, namely metals and alloys, ceramics polymers and composites. It will cover Diffusion in solids; Phase diagrams, inclusive of Gibbs phase rule, Binary phase diagram and equilibrium diagrams, isomorphous and eutectic systems; Phase transformation, development of Microstructure and alteration of mechanical behaviour; Corrosion and Degradation. Finally, Economic Environmental and Societal Issues relevant to Materials Engineering will be covered.", + "title": "Foundation Materials Science and Engineering 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE1112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Metals, properties and processing. Ceramics, properties\nand processing. Polymers, properties and processing.\nComposites, properties and processing. Corrosion &\nmaterials degradation. How to choose the best material?\nMatching materials to design. Selecting a Manufacturing\nprocess. Aspects beyond the technical domain in\nmaterials selection & design.", + "title": "Materials Science & Engineering Principles & Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We will explore what makes materials the way they are and why. We will discover the structure of the materials that make up our modern world and learn how it influences the properties, performance and applications of these materials. We will learn the difference between amorphous and crystalline materials, learn how the materials structure can be measured, and show that materials defects are responsible for the functionality of our computers, steel bridges or airplanes. The significance of these issues in modern industry will be emphasized through case studies.", + "title": "Materials Science & Engineering Principles & Practice II", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE2001A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3A-05-03", + "day": "Monday", + "lessonType": "Laboratory", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3A-05-03", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Overview: symmetry, bonding, coordination number, packing fraction, order and disorder; Noncrystalline state: short-range order (SRO), pair distribution function, random walk, network and fractal models; Crystalline state: basic crystallography and structures, reciprocal lattice, quasicrystals, liquid crystalline state; Crystal vibrations, Brillouin zone; free electron model, energy bands; Structural effects on phase transformation; Fourier series.", + "title": "Introduction to Structure of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The laws of thermodynamics mean we can convert solar energy into electricity, but not with 100% efficiency. While global warming causes the polar icecaps to undergo a phase change (melting), we develop materials that use phase changes to store energy efficiently, and to prevent lithium batteries from overheating. This module introduces the laws of thermodynamics and their application in materials science via case studies. It introduces, for example, the concept of entropy and its relationship to heat, and strategies for deriving thermodynamic relationships. We will also investigate the separation of oxygen from air, which appears to violate the second law.", + "title": "Principles of Renewable Energy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Diffusion in solid-state: Ficks first and second laws of diffusion, diffusion mechanisms; Diffusional & diffusionless transformations: solidification, phase transformation in solid, nucleation and growth, solidification of alloys and eutectics, TTT diagram, equilibrium and non-equilibrium states, spinodal transformation, martensitic phase transformation; Applications of phase transformations: precipitation, grain growth, devitrification, development of microstructures and nanostructures.", + "title": "Phase Transformation and Kinetics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "MLE2103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Thermodynamics controls what can happen, but kinetics determines how fast it occurs. The rate at which a material is grown massively affects its properties; nickel alloys, for example, can be grown slowly to form single-crystal jet engine turbine blades or rapidly to make the nanowires used in optoelectronic devices and biomedical sensors. Controlled drug delivery can be achieved by designing polymeric materials that react inside the patient to release their payload at a pre-specified rate. Students reading this module will examine the mechanisms that underlie meta-stable materials, precipitation, grain growth, devitrification, the development of microstructures and nanostructures, and more.", + "title": "Materials Kinetics & Processing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MLE2103A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Stress and strain of material; Elastic deformation: Young\u2019s modulus,\nPoisson\u2019s ratio, stress-strain relation, stiffness/compliance matrix; Dislocations: Edge/screw/mixed dislocation, burgers vectors, twining, stress field of dislocation, dislocation interaction; Plastic deformation of single and polycrystalline materials: Schmid\u2019s law, plastic flow; Inelastic deformation:\nViscosity, deformation of inorganic glasses, deformation of noncrystalline and crystalline polymers; Mechanical fracture: ductile and brittle facture, creep, fatigue; Testing methods, Introductory mechanics of materials.", + "title": "Mechanical Properties of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE2104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Did you know your smartphone contains at least 75 different elements from the periodic table? These elements are combined in a variety of different ways to produce materials with a full spectrum of electronic properties from electric conductors to insulators; from optically transparent to light admitting materials; and that\u2019s just the start. Tomorrow\u2019s devices will utilise unique material properties as their dimensions approach the nano- or atomic scale. Students will be introduced to the materials that enable electronic devices, via basic quantum mechanics, conduction, energy, potential, doping, and related theories, focussing on examples of current devices and applications.", + "title": "Electronic Properties of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE2105", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Overview of crystal structure and bonds; Structures of metallic elements and alloys; Phase formation and development of microstrcutures; Basic processing technologies; Ferrous and non-ferrous metals; General properties and engineering applications: mechanical and functional.", + "title": "Metallic Materials and Processing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE2106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Overview of ceramics and classification; Structure and stability of ceramics; Phase formation and development of microstructures; Basic synthesis, processing and characterisation methods; Processing of advanced ceramics and applications; General properties and applications of advanced ceramics: electronic; mechanical; optical.", + "title": "Ceramic Materials and Processing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE2107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Laboratory class in which students will conduct hands on experiments to probe the mechanical (e.g. hardness, strength, etc), chemical (e.g. corrosion) and electrical (e.g. semiconducting, superconducting) properties of polymers, ceramics, metals and composites.", + "title": "Materials Properties Laboratory", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "MLE2111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the basic knowledge of materials science and engineering. The topics covered include basic crystallography; the structure of metals, ceramics, and polymers; point and line defects; mechanical properties; binary phase diagram; metals and alloys; ceramics; polymers; composites; correlation of structure, properties, functions, and applications.", + "title": "Introduction to Materials Science & Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE2301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Laboratory class in which students will conduct hands on experiments to understand and appreciate common Materials Characterization techniques through a combination of imaging and spectroscopic techniques, such as optical Microscopy; X-ray diffraction; and electron microscopy (SEM, TEM).", + "title": "Materials Characterization Laboratory", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "MLE3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Being able to characterize the structure of materials over length scales ranging from millimetres to angstroms, is a fundamental skill for all Materials Scientists & Engineers. It is vital that Materials Scientists & Engineers are trained in selecting the most appropriate materials characterization technique for a given application. This requires mastering the operational principles behind a wide range of techniques to interpret their data. This includes: SEM, TEM, XRD, surface characterization, optical spectroscopy and thermal analysis. This will be illustrated in case studies from identifying the secrets of new materials to failure analysis. This module complements the lab based MLE3101.", + "title": "Materials Characterization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "MLE3101A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corrosion of metals and alloys: Economics of corrosion, Thermodynamics and electrochemistry of corrosion, Types of corrosion, Environmental effects on corrosion, Corrosion of selected metals and alloys, Corrosion protection, Corrosion monitoring; Degradation of nonmetallic materials: Biological, chemical and photodegradation of polymers, Environmental degradation, Photocorrosion of semiconductors; Failure mechanisms of materials. Failure analysis and Non-destructive testing: techniques and\n\nmethodology, case histories.", + "title": "Degradation and Failure of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE3102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Wright brothers built their aeroplane out of wood, Spitfires were all-metal constructions, and the Boeing 787 Dreamliner is 80% composite by volume. Materials Scientist and Engineers have enjoyed remarkable success in developing superior materials, but with the huge range of materials available to us today, how does one pick the right material for a given application? This module focusses on the engineering aspects of materials design and selection, considering, for example, the intended function, constraints and limits, performance criteria, environmental conditions, economics and business issues. Case studies across a wide range of application areas will be introduced.", + "title": "Materials Design: Aerospace to Biomedical Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE3103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Classification of polymers, polymer structure, molecular weight distribution; Basic synthetic and characterisation methods; Amorphous state and glass transition, crystalline state; General properties of polymers: physical, chemical, mechanical and electrical; Engineering and specialty polymers: processing and applications; Polymer-based composite materials: fabrication, structure and properties.", + "title": "Polymeric and Composite Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE3104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-0102", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E1-06-01", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Polarisation mechanisms; ferroelectricity and piezoelectricity; domain structure and hystereisis;\n\npermittivity and dielectric loss; optical properties of dielectric materials; fundamental of magnetism: magnetic moment, magnetic coupling and magnetic anisotropy; technical magnetisation: domain structure, magnetic hysteresis; introduction to magnetic materials.", + "title": "Dielectric and Magnetic Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE3105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1130", + "endTime": "1154", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Laboratory class in which students will conduct hands on experiments", + "title": "Materials Properties & Processing Laboratory", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE3111", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1130", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3A-05-07", + "day": "Friday", + "lessonType": "Laboratory", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1230", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3A-05-07", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1330", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3A-05-03", + "day": "Monday", + "lessonType": "Laboratory", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3A-05-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Laboratory class in which students will conduct hands on experiments on ceramic and polymer processing, 3D printing technologies, and fabrications of devices such as battery, solar cells, and magnetic information storage.", + "title": "Materials Properties & Processing Laboratory", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MLE3111A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module equips students interested in the application of machine learning to problems of materials science and engineering with an understanding of the current state-ofthe-art in the application of machine learning in material research. Students will develop an interdisciplinary skillset in programming as well as applying engineering and mathematical concepts in designing and building AIsupported machines for material science. They will also implement machine learning algorithms to solve realistic problems within the domain of the material science.", + "title": "Machine Learning Approaches in Materials Laboratory", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MLE3112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to the interdisciplinary nature of biomedical materials; biology, chemistry, and materials science and engineering. Classes and properties of materials used in medicine and dentistry. Biological and biochemical properties of proteins, cells and tissues. Biocompatibility and host reactions to biomedical implant materials. Testing of biomedical materials. Degradation of biomedical materials. Past, present and future applications of materials in medicine and dentistry. Learning objectives: Introductory knowledge on biomedical materials.", + "title": "Materials for Biointerfaces", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE3202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on engineering materials \u2013 metals and ceramics. Crystalline structure of important industrial metals and ceramics. Mineral processing and materials fabrication. Phase formation and development and\nmicrostructure optimization for engineering applications.", + "title": "Engineering Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE3203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Every student majoring Materials Science and Engineering is assigned a research project, which is normally over 2 semesters. This project is carried out under the supervision of an academic staff of the Department and is closely related with the research activities in the Department with the two focus areas of Biomateirals and Nanomaterials/Nanotechnology.", + "title": "B.Eng. Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "MLE4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A research project conducted over one semester carried out under the supervision of an academic staff of the Department. The project will be closely related with the research activities in the Department.", + "title": "BEng Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MLE4101A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Every student majoring Materials Science and Engineering is assigned a research project, which is normally over 2 semesters. This project is carried out under the supervision of an academic staff of the Department and is closely related with the research activities in the Department with the two focus areas of Biomateirals and Nanomaterials/Nanotechnology.", + "title": "B.Eng. Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MLE4101B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A research project conducted over two semesters carried out under the supervision of an academic staff of the Department. The project will be closely related with the research activities in the Department.", + "title": "B.Eng Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "MLE4101N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Integrated B.ENG./B.SC. (Hons) Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "MLE4101R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students are assigned with a Design Project. Students have the opportunity to work in a team to use their knowledge of Materials Science and Engineering in problem solving. This project has the emphasis in Independent Study. Students are required to submit a report at the end of the project.", + "title": "Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1 + ], + "venue": "LT3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, which extends over two semesters, the students are divided into small groups and asked to work on a complex engineering problem that involves designing a product within the constraints posed by economic, environmental, social and safety consideration. The importance of teamwork in a multicultural group is also emphasized.", + "title": "Design Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MLE4102A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D5", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1 + ], + "venue": "LT3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B6", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A5", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A6", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C6", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-13", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "A4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "C1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the basic knowledge of advanced characterization techniques of materials and the abilities in basic interpretation of measured spectrum. The topics covered include: X-ray photoelectron spectroscopy; Auger electron spectroscopy. Secondary ion Mass spectroscopy, Vibrational spectroscopies: infrared spectroscopy and Raman spectroscopy; Scanning Electron Microscopy; Transmission Electron Microscopy; X-ray Energy Dispersive Spectroscopy; Electron Energy Loss Spectroscopy.", + "title": "Advanced Materials Characterisation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT1", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to polymer physics: chain statistics, static light scattering, hydrodynamics of polymer solutions, thermodynamics of polymer solutions, polymer blends, solubility parameters and group contribution methods; Overview of selected topics in advanced and emerging specialty polymer science and technology; Current interests in nanopatterning and nanoimprinting, layer-by-layer polyelectrolyte assembly, advanced photoresists, liquid-crystalline polymer science and device technology, conducting polymer science and technology, semiconducting polymer device science and technology, polysiloxanes and microcontact printing, low-k (and high-k) dielectric materials.", + "title": "Selected Advanced Topics on Polymers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Properties and processing of polymeric biomaterials; Biological responses to biomaterials and their evaluation. Biocompatibility issues; Biodegradable polymeric materials; Application of polymeric biomaterials in medicine will be discussed with emphasis on drug delivery systems and tissue engineering application.", + "title": "Polymeric Biomedical Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the synthesis and growth of various nanostructures. Major topics are: techniques that are used in synthesis and growth of nanostructures, including clusters, nanodots, nanowells, nanotubes, nanowires, nanocomposite particles, nanostructured thin films and multi-layers; patterning and self-assembly techniques; thermodynamics and kinetics of nanostructures; characterization techniques for nanostructures.", + "title": "Synthesis And Growth Of Nanostructures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to quantum chemistry and quantum electronics, band theory of solid materials, transport phenomena in solids from the microscopic viewpoint, random processes in solids, Monte-Carlo calculations of diffusion, introduction to the theory of phase transitions, crystal growth and precipitation, self-organization in open non-equilibrium solid state systems, molecular dynamics modeling of properties and processes in condensed materials. Learning objectives: Introductory knowledge on theory and modeling of solid state systems with the emphasis of nanomateirals. Target students: Students of Materials Science and Engineering and related disciplines.", + "title": "Theory and Modelling of Materials Properties", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an understanding of the size effect of properties; students will learn unique properties of nanomateirals: mechanical, electronic, magnetic and optical. This module is designed for students who has materials science and engineering background and interested in properties of nanomaterials.", + "title": "Current topics on Nanomaterials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module presents an overview of CMOS fabrication process with the focus on the materials engineering and the physics behind the technologies used in the fabrication process. The technologies include cleaning process, photolithography and resist, the formation of thermal oxides and Si/SiO2 interface, dopant diffusion and ion implantation, etching, thin film deposition technology, and interconnects/contacts.", + "title": "Microfabrication Process and Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches materials aspects for a wide variety of photovoltaic devices covering conventional p-n junction cells based on Si wafers, amorphous or nanocrystalline Si, bulk heterojunction solar cells, nanostructured solar cells including dye-sensitised solar cells, organic solar cells and quantum structured solar cells, etc. emphasising the materials science and engineering aspects of advanced photovoltaic devices. Therefore students will gain an understanding of the role of materials development and characterisation for current and emerging photovoltaic technologies. Specific objectives include understanding of the physics of photovoltaics, general working principles of individual photovoltaic devices, the roles of photovoltaic materials and how they are incorporated in various photovoltaic devices; attain an informed view on the current aspects of photovoltaic technologies and photovoltaic materials, ability to select materials for device application based on their optical, electrical properties.", + "title": "Photovoltaics Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on a deeper understanding of the fundamentals of magnetism and magnetic materials, and integrating the physics and engineering applications. It is intended for advanced MSE undergraduates and also for MSE postgraduates who do not have previous training in this area. Topics covered in this module are agnetostatics, magnetism of electrons, magnetism of localized electrons on the atom, ferromagnetism and exchange, antiferromagnetism, micromagnetism, domains and\nhysteresis, nanoscale magnetism, selected topics of current advanced magnetic materials.", + "title": "Magnetism and Magnetic Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Starting from a summary of solid state defect chemistry, electrochemistry and nanotechnology the module will introduce the basics of designing and processing materials for energy storage and conversion, their integration into batteries, supercapacitors, and fuel cells as well as methods for the performance characterisation and optimisation of these devices.", + "title": "Materials for energy storage and conversion", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Mesoscopic electron transport, spin dependent electron transport- giant Magnetoresistance (GMR), Tunnel magnetoresistance (TMR), spin transfer Torque (TMR), Logic gate and digital circuit, optical and particle beam lithography; Logic device-metal-oxide-semiconductor fieldeffect transistor, spin based logics; memory device and storage systems-flash memory, capacitor based Radom access memories, magnetic random access memories, information storage based on phase change materials and redox-based resistive memory. Students will be expected to have previously taken an electric, magnetic and dielectric materials course.", + "title": "Nanoelectronics and information technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will illustrate the critical role that advanced structural materials play in twenty-first century industries, such as aerospace, biomedical & dental, automotive, sporting goods, energy generation, transportation and utilities.", + "title": "Advanced Structural Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction on the innovation & product development processes that materials scientists and engineers are likely to face in their future workplaces. This course will be conducted with a mixture of MSE relevant case-studies and experiential group learning. Students will start from the pre-development process: building up their problem statements, ideation and developing their minimum viable product (product concept) by considering the technical feasibility, business viability as well as customer desirability; and then followed by development and manufacturing processes: i.e. samples development, test & certification, production etc. Continuous improvement upon product development will also be introduced.", + "title": "Innovation & Product Development for Material Engineers", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn how Machine Learning utilizes the major materials databases to push the boundaries of materials science & engineering. This will include: Introduction to materials databases; foundation of databases together with python; foundation of data curation; applications of machine learning techniques to the analysis of data-entries; and data visualization.", + "title": "Application of Big Data in Materials Science", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to how new functional materials can be discovered via the application of machine learning, with a particular emphasises on drug discovery. Students will learn how to choose chemicals, as well as describe and select descriptors. From this, students will comprehend which molecular features are responsible for particular molecular activities. Additional application areas covered will include the discovery of new functional materials with physical and chemical characteristics that are relevant for catalysis, sensors, membranes and energy related materials.", + "title": "AI for Biomaterials Discovery", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module we will explore material science from the point of view of optical techniques. Students will learn how to select appropriate optical tools to get insight into electronic band structure of metals, semiconductors and insulators based on analysis of raw experimental data obtained in realistic experiments. We will discuss the fabrication of luminescent devices in nanoscale and engineering of the crystal lattice at atomic level to create quantum emitters. We will introduce simple modelling techniques for optical processes in solids illustrated by schematic diagrams prepared by students.", + "title": "Materials for Optics: from Quantum Light to Nanodevices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module outlines many key aspects of 2D material science from fundamental properties through to cutting-edge applications. Students will learn about the key two-dimensional systems that are presently being used and studied across the world, including graphene and its broader class of material: van der Waals crystals. This course is designed for students who are interested in pursuing an academic or industrial career involved in 2D materials and wish to understand the principles behind next generation applications based on 2D materials. The topics covered include fabrication, fundamental properties, interlayer interactions, and experimental techniques.", + "title": "Two-Dimensional Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores emerging materials and technologies toward addressing the grand sustainability challenge, focusing on (photo)electrochemical systems for renewable fuels and clean water. This class will introduce the design principles of (photo)electrochemical materials, their integration into realistic devices at different scales, techno-economic analysis of related renewable technologies, and other frontier areas at the energy-water nexus.", + "title": "Emerging materials for renewable fuels and clean water", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will explore the electronic properties of novel quantum materials. We will start from the classification of materials based on their dimensionality, electronic band structure and topology. Then we will explore mechanisms of electron conduction in novel material systems. Students will deal with real experimental data to analyze the electrical response of low-dimensional electron systems, topological insulators, superconductors and more as well as extract their properties as a function of external parameters. Next, we will discuss how to fabricate devices out of the novel material systems as well as how to perform measurements to characterize their electronic properties.", + "title": "Electron transport in novel quantum materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE4222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the basic knowledge of structures and properties of engineering materials. The topics covered include atomic bonding and condensed phases; crystal structures, crystallography and crystal imperfections; the thermodynamics of alloys, phase equilibrium and phase diagrams; thermally activated processes, diffusion, kinetics of phase transformation, non-equilibrium phases; mechanical properties and strengthening mechanisms, fracture of materials, corrosion and oxidation resistance, other properties. Working engineers and graduate students who have no former training in materials but wish to pursue further studies and R&D in engineering materials should attend this course.", + "title": "Basics of Structures & Properties of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "MLE5002 is a core module that teaches modern techniques and methods for the structural and spectroscopic characterisation of materials. Besides X-ray-, electron-, and vibrational spectroscopy, the module focuses on different types of microscopy, electron microscopy in particular. The concepts are treated from a mechanistic point of view; letting the students gain deeper insight into the ideas behind the techniques, without the need to perform advanced calculations. This module is designed to help students select the most relevant microscopy or spectroscopy methods, and let them interact knowledgeably with equipment experts to optimize their own future materials characterisation experiments.", + "title": "Materials Characterization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 210, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves independent study over two Semesters, on a topic in Materials Science and Engineering approved by the Programme Management Committee. The work may relate to a comprehensive literature survey, and critical evaluation and analysis, design feasibility study, case study, minor research project or a combination.", + "title": "Materials Science &Engineering Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MLE5003", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, which extends over two semesters, the students are divided into small groups and asked to work on a complex engineering problem in MSE that involves designing a product within the constraints posed by economic, environmental, social and safety consideration. The importance of teamwork in a multicultural group is also emphasized.", + "title": "Innovation & Translation Research Project in MSE", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MLE5004", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the students advanced thermodynamic concepts of sustainable development especially those related to various energy technologies.", + "title": "Thermodynamics for Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The mechanical behaviours of materials, with the emphasis on the dependence of the behaviours on the structures of the materials, The elastic properties of single and polycrystalline materials, Rubber elasticity, polymer elasticity, and viscoelasticity, Tensile test and hardness test, Nano-indentation, Dislocations and twining, Yielding in crystalline solids, Applications of the dislocation theory to material strengthening mechanisms. Overview of the mechanical behaviours of thin films, nano-materials, and cells.", + "title": "Mechanical Behaviours of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Physical properties of metals, ceramics, polymers and their hybrids are covered. These include overview of electrical conductivity, thermal conductivity, magnetic properties, ferroelectricity, piezoelectricity, and optical properties of different classes of materials. The correlations of length-scale, structure, microstructures, and interfaces of materials with their properties are emphasized.", + "title": "Physical Properties of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "8", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 6, + 9, + 11, + 13 + ], + "venue": "EA-06-06", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 6, + 9, + 11, + 13 + ], + "venue": "E1-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 6, + 9, + 11, + 13 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 6, + 9, + 11, + 13 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 4, + 6, + 9, + 11, + 13 + ], + "venue": "E1-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 9, + 11, + 13 + ], + "venue": "E1-06-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 4, + 6, + 9, + 11, + 13 + ], + "venue": "E1-06-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 6, + 9, + 11, + 13 + ], + "venue": "EA-06-04", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Major topics include nano-scale phenomena and the related chemical, physical and transport properties, size effect and quantum mechanics, nanothermodynamics and nano phase diagrams, interface and surface of nanoparticles and their effects, processing of organic, inorganic and bio-based nanoparticles, nanocomposites and thin films, advanced characterisation of long range and short range orders, x-ray scattering, anomalous x-ray scattering, extended absorption fine structure. Learning objectives: Introductory knowledge of nanostructured materials. Target students: Graduate students of Materials Science and related disciplines.", + "title": "Nanomaterials: Science and Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a foundation for students interested\nin doing research in computational materials. It teaches\nstudents modelling methods ranging from continuum,\nmicroscopic, atomistic scales. Molecular dynamics\nmodelling of properties and processes in condensed\nmaterials. Continuum modelling of properties and\nprocesses in materials. Transport phenomena in solids\nfrom both continuum, microscopic viewpoint, random\nprocesses in solids. Fundamentals of ab initio modelling\napproaches.", + "title": "Modelling and Simulation of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a foundation for students interested in\ndoing research into nanomaterials. It starts by explaining to\nstudents how as a material\u2019s dimensions enters the\nnanoscale its mechanical, electronic, magnetic and optical\nproperties are altered in manner that results in unique\nbehaviours that are vastly different from their bulk\ncounterparts. The module will finish with aspects of current\nresearch on nanomaterials.", + "title": "Nanomaterials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a foundation for students interested\nin doing research into materials related to energy storage\nand conversion. It will start by introducing the basics of\ndesigning and processing materials for energy storage\nand conversion, their integration into batteries,\nsupercapacitors, and fuel cells as well as methods for the\nperformance characterisation and optimisation of these\ndevices. The module will finish with aspects of current\nresearch on materials for energy storage and conversion.", + "title": "Energy Conversion & Storage", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0603-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a foundation for students interested in\ndoing research into magnetic materials The module focuses\non a deeper understanding of the fundamentals of\nmagnetism and magnetic materials, integrating the physics\nand engineering applications. It is intended for advanced\nMSE undergraduates and MSE postgraduates who do not\nhave previous training in this area. Topics covered in this\nmodule are magnetostatics, magnetism of electrons,\nmagnetism of localized electrons on the atom,\nferromagnetism and exchange, antiferromagnetism,\nmicromagnetism, domains and hysteresis, nanoscale\nmagnetism, selected topics of current advanced magnetic\nmaterials. The module will finish with aspects of current\nresearch on magnetic materials.", + "title": "Magnetic Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a foundation for students interested\nin doing research into polymeric materials. It starts with\nthe thermoplastics, elastomers and thermosets.\nApplication of polymers as membranes will be presented,\nparticularly their application for water purification and gas\nseparation. Photoresists that are essential materials in\nelectronic industry will be included. Two display\ntechnologies, liquid crystal displays and organic lightemitting\ndiodes will be introduced. Advanced polymers,\nincluding liquid crystalline polymers, semiconductive\npolymers and conductive polymers, will be discussed. The\nmodule will finish with aspects of current research on\npolymeric materials.", + "title": "Advances in Polymeric Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5214", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module equips students interested in computational chemistry and materials science materials with: 1. Foundation of force-field and interatomic potentials 2. Foundation of first principles methodologies 3. Foundation of the methodologies aforementioned when applied in molecular dynamics and Monte Carlo studied. 4. Hands-on application of computational techniques to chemical and materials science problems.", + "title": "Atomistic Modelling of Molecules and Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5215", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce fundamentals of SEM imaging, kinematical\nand dynamical theory of electron diffraction and imaging, and other\nforms of microscopy, including atomic force microscopy, scanning\ntunneling microscopy and X-ray imaging.", + "title": "Introduction to Microscopy for Material Research", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-0320-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module equips students interested in the application of machine learning to problems of materials science and engineering with: Foundation of linear algebra; Foundation of statistics; Foundation of python programming; and Foundation of machine learning.", + "title": "Foundations of Machine Learning for Materials Science", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module focuses on application of machine learning as a useful tool for discovery of new functional materials. It emphasises using machine learning for drug discovery as one of the most developed application area to date. we will learn how to choose chemicals, as well as describe and select descriptions. The module demonstrates which molecular features are responsible for particular molecular activities. Application areas includes not only drug discovery but also discovery of new functional materials with physical and chemical characteristics that are relevant for catalysis, sensors, membranes, and energy related materials.", + "title": "Materials Discovery with AI", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module Introduces the students to the major data repositories (Databases) of materials and their utilization in Machine Learning applications. This will include: Introduction to materials databases; Foundation of databases together with python; Foundation of data curation; Applications of machine learning techniques to the analysis of data-entries; and Data visualization", + "title": "Materials Informatics: The Role of Big Data", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Strong and weak forms and the finite element formulation of one-dimensional mass diffusion problem in the steady and the transient states. Strong and weak forms and the finite element formulation of one-dimensional elastic deformation in materials. Formulating and solving twodimensional mass diffusion problems by finite elements software. Formulating and solving two-dimensional elastic deformation by finite elements software. Formulating and solving two-dimensional problems of coupled mass diffusion and elastic deformation by finite element software.", + "title": "Computation of Macroscopic Materials Behaviours", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores emerging materials and technologies toward addressing the grand sustainability challenge, focusing on (photo)electrochemical systems for renewable fuels and clean water. This class will introduce the design principles of (photo)electrochemical materials, their integration into realistic devices at different scales, techno-economic analysis of related renewable technologies, and other frontier areas at the energy-water nexus.", + "title": "Designing materials for renewable fuels and clean water", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover selected key nanomaterials for green energy harvesting, energy storage, conversion and catalysis, including their design, nanomaterials fabrication, energy performance, and applications. They include: introduction to energy nanomaterials; design principles; selected key energy nanomaterials in different dimensions (0D, 1D, 2D and 3D); processing and synthesis, and relationships among key variables at both nanomaterials and energy device levels.", + "title": "Nano and 2D materials for Energy applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the students to advanced rational materials design concepts and their application in the Sustainable materials design. Application examples will demonstrate how the application of these concepts leads to a resource-efficient low-carbon design of materials, processes and devices for energy storage and conversion, water management and urban housing.", + "title": "Rational Materials Design for Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Saving energy is far more environmentally friendly than creating it. Thus, making materials last longer has to be at the heart of any practical sustainable policy. For example, in the UK alone 1 tonne of steel converted to rust every 90 seconds, the energy required to make this 1 tonne of steel is sufficient to provide average family with power for 3 months, plus 2.5 tonnes of CO2 are generated for every tonne of steel produced; more if one includes transporting the iron ore and the steel itself. The module includes corrosion of metals, degradation of polymers and photocorrosion of semiconductors.", + "title": "Degradation of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the students to the foundational aspects of electrochemistry and the use of materials for electrocatalysis. This intensive course will cover abroad range fundamentals and applications to electrocatalysis. This course will also present the development of electrocatalytic technologies for sustainability.", + "title": "Electrocatalytic Materials for Sustainability", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module challenges students to apply knowledge towards problem solving in a series of challenging weekly scenarios. These scenarios will be set in the future, and these scenarios will share the common theme of applying knowledge towards developing practical and workable solutions to sustainability challenges in group settings. This course will consist of both lecture introduction to relevant topics in sustainability and the context in the discipline of MSE. Students will be pushed to think creatively to develop submit workable solutions towards resolving the weekly scenario under time constraints.", + "title": "Problem Solving for Future Sustainability Challenges", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce a phenomenological description of superconducting materials and their applications to modern technologies. For this, the module will cover bulk and thin-film superconducting materials and introduce the Josephson junction, which is the basis of many superconducting devices. From this, we will introduce the main parameters that are relevant to the design of modern superconducting devices, namely resonators, qubits, SQUIDs and photodetectors. Finally, we will cover how the choice of materials and geometry influences the functioning of these devices.", + "title": "Superconductivity and Superconducting Devices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE5228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective is to expose students to different metallic and ceramic materials used in additive manufacturing (AM) and their applications. Major topics include: a brief overview of metallic materials, their applications & market and conventional fabrication techniques; AM techniques suitable for metals and technical challenges; Metals used in additive manufacturing including steels, aluminium alloys, titanium alloys and superalloys; current status of additive manufacturing of ceramic materials.", + "title": "Metallic & Ceramic Materials in Additive Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MLE5301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective is to expose students to different polymer materials used in additive manufacturing (AM) and their applications. Major topics include: a brief overview of thermoplastics, thermoset and composites materials, their applications & market and conventional fabrication techniques; AM techniques used for thermoplastic, thermoset and composites materials such as extrusion deposit 3D printing and vat photopolymerisation 3-D printing. The advantage and challenges of AM.", + "title": "Polymer Materials in Additive Manufacturing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MLE5302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective is to expose students to different characterization tools for evaluation of the devices, failure modes and mechanism for various devices. Major topics include: a brief overview of techniques for decapsulating the device and for sample preparation; various characterization techniques such as electrical techniques, optical microscopy, electron microscopy, x-ray technique, spectral techniques, acoustic technique, laser technique, emission microscopy, Electromagnetic Field Measurements etc.; failure modes and mechasim of . Various Process Steps, Passive Electronic Parts, Silicon Bipolar Technology; MOS Technology; Optoelectronic and Photonic Technologies; Various case studies of failure analysis.", + "title": "Failure Analysis in Electronic Device", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MLE5303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective is to expose students to different techniques of scanning and transmission electron microscopy including imaging, analysis and diffraction techniques. Major topics will include conventional diffraction contrast imaging of crystals and defects, scanning transmission electron microscopy (high angle annular dark field and annular bright field imaging, electron energy loss spectroscopy, energy dispersive x-ray spectroscopy, nanodiffraction), including the benefits of aberration correction. Specialized and new imaging modes will also be included: imaging of electric, magnetic and strain fields, and in-situ TEM techniques for dynamic experiments, Experimental limitations due to the sample, the microscope design, or physics itself will be discussed.", + "title": "Introduction to Electron Microscopy of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MLE5304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with work attachment experience in a company.", + "title": "Industrial Attachment Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MLE5666", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MLE5999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches thermodynamics and kinetics of different engineering materials including metals, ceramics and polymers. The major topics cover: Equilibrium and non-equilibrium. Introduction to statistical thermodynamics, Transition state theory and field effects, Solution theory, Phase diagrams. Diffusion mechanisms, Nucleation in condensed phases, Surface energy, Crystal growth, Defects in crystals, Phase transformation theories, Formation of nanostructures: nano-dots, nano-wells, nano-wires and nano-tubes.", + "title": "Thermodynamics and Kinetics of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE6101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Periodic trends in atomic properties, bonding generalization based on periodic trends, generalization about crystal structures based on periodicity. Structural concepts: crystal lattice, reciprocal lattice, diffraction, crystal structures, lattice dynamics, and energy band structure. Examples of effects of structure on physical and chemical properties are discussed.", + "title": "Structures of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE6103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT6", + "day": "Monday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Magnetism fundamentals: atomic magnetism; types of magnetism; anisotropies; exchange interactions; domains and magnetization process; thin films and nanostructures. Current topics in magnetic technologies and research (examples): dynamics in high frequency application, magnetic recording media, and types of magnetoresistances, current and voltage induced magnetic switching;\nspin torque transfer.", + "title": "Magnetic Materials and Applications", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE6205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Nanomaterials: Science and Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE6206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover aberration-corrected electron microscopy,\nand spectroscopy techniques in electron microscopy, including but\nnot limited to as X-ray Energy Dispersive Spectroscopy, Electron\nEnergy-Loss Spectroscopy and cathodoluminescence", + "title": "Advanced Electron Microscopy and Spectroscopy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE6207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the students are divided into small groups and will do practical labs and gain hands-on experience on transmission electron microscopes. The students will be able to operate Transmission Electron Microscopy (TEM) independently and carry out material research. The importance of teamwork in a multicultural group is also emphasized.", + "title": "Practical Transmission Electron Microscopy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MLE6208", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "15", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Friday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1 + ], + "venue": "UT-AUD3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Doctoral Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "MLE6999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts. The study of organizational behavior involves examining processes at the individual, group and organizational levels. Both theoretical and applied approaches will be developed. Instructional methods include lectures, experiential exercises, group activities, videos and case studies. Extensive class participation is expected.", + "title": "Organisational Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO1706", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts. The study of organizational behavior involves examining processes at the individual, group and organizational levels. Both theoretical and applied approaches will be developed. Instructional methods include lectures, experiential exercises, group activities, videos and case studies. Extensive class participation is expected.", + "title": "Organisational Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO1706A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts. The study of organizational behavior involves examining processes at the individual, group and organizational levels. Both theoretical and applied approaches will be developed. Instructional methods include lectures, experiential exercises, group activities, videos and case studies. Extensive class participation is expected.", + "title": "Organisational Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO1706B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "B3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts. The study of organizational behavior involves examining processes at the individual, group and organizational levels. Both theoretical and applied approaches will be developed. Instructional methods include lectures, experiential exercises, group activities, videos and case studies. Extensive class participation is expected.", + "title": "Organisational Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO1706C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "C1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "C3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "C2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts. The study of organizational behavior involves examining processes at the individual, group and organizational levels. Both theoretical and applied approaches will be developed. Instructional methods include lectures, experiential exercises, group activities, videos and case studies. Extensive class participation is expected.", + "title": "Organisational Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO1706D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts. The study of organizational behavior involves examining processes at the individual, group and organizational levels. Both theoretical and applied approaches will be developed. Instructional methods include lectures, experiential exercises, group activities, videos and case studies. Extensive class participation is expected.", + "title": "Organisational Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO1706E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts. The study of organizational behavior involves examining processes at the individual, group and organizational levels. Both theoretical and applied approaches will be developed. Instructional methods include lectures, experiential exercises, group activities, videos and case studies. Extensive class participation is expected.", + "title": "Organisational Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO1706F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts. The study of organizational behavior involves examining processes at the individual, group and organizational levels. Both theoretical and applied approaches will be developed. Instructional methods include lectures, experiential exercises, group activities, videos and case studies. Extensive class participation is expected.", + "title": "Organisational Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO1706G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-HSSAU", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts. The study of organizational behavior involves examining processes at the individual, group and organizational levels. Both\ntheoretical and applied approaches will be developed. Instructional methods include lectures, experiential exercises, group activities, videos and case studies. Extensive class participation is expected.", + "title": "Organisational Behavior", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO1706H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "H1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to human behavior in organizational contexts. The study of organizational behavior involves examining processes at the individual, group and organizational levels. Both theoretical and applied approaches will be developed. Instructional methods include lectures, experiential exercises, group activities, videos and case studies. Extensive class participation is expected.", + "title": "Organisational Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO1706X", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "Z1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "Z03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "Z04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "Z01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "Z02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "Z03", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "Z04", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "Z02", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "Z01", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "Z1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The decisions you make every day will shape your life. In an organization, the decisions you make will impact outcomes for you, your team, and cumulatively affect the trajectory of your career. This module aims to help you navigate the\npathways of decision making in organizations. We will undertake an evidence-based approach, tapping on several streams of research \u2013 including behavioral psychology and economics, error management, and intuitive judgment \u2013 to give a rigorous account of what separates good decisions\nfrom the rest. These conceptual tools will empower you to make good decisions in an uncertain world, to influence, and to lead.", + "title": "Leadership and Decision Making under Uncertainty", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO2705", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The decisions you make every day will shape your life. In an organization, the decisions you make will impact outcomes for you, your team, and cumulatively affect the trajectory of your career. This module aims to help you navigate the\npathways of decision making in organizations. We will undertake an evidence-based approach, tapping on several streams of research \u2013 including behavioral psychology and economics, error management, and intuitive judgment \u2013 to give a rigorous account of what separates good decisions\nfrom the rest. These conceptual tools will empower you to make good decisions in an uncertain world, to influence, and to lead.", + "title": "Leadership and Decision Making under Uncertainty", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO2705A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The decisions you make every day will shape your life. In an organization, the decisions you make will impact outcomes for you, your team, and cumulatively affect the trajectory of your career. This module aims to help you navigate the\npathways of decision making in organizations. We will undertake an evidence-based approach, tapping on several streams of research \u2013 including behavioral psychology and economics, error management, and intuitive judgment \u2013 to give a rigorous account of what separates good decisions\nfrom the rest. These conceptual tools will empower you to make good decisions in an uncertain world, to influence, and to lead.", + "title": "Leadership and Decision Making under Uncertainty", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO2705B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "B2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "B1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0204", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The decisions you make every day will shape your life. In an organization, the decisions you make will impact outcomes for you, your team, and cumulatively affect the trajectory of your career. This module aims to help you navigate the\npathways of decision making in organizations. We will undertake an evidence-based approach, tapping on several streams of research \u2013 including behavioral psychology and economics, error management, and intuitive judgment \u2013 to give a rigorous account of what separates good decisions\nfrom the rest. These conceptual tools will empower you to make good decisions in an uncertain world, to influence, and to lead.", + "title": "Leadership and Decision Making under Uncertainty", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO2705C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "C2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "C1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "C2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "C1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The decisions you make every day will shape your life. In an organization, the decisions you make will impact outcomes for you, your team, and cumulatively affect the trajectory of your career. This module aims to help you navigate the\npathways of decision making in organizations. We will undertake an evidence-based approach, tapping on several streams of research \u2013 including behavioral psychology and economics, error management, and intuitive judgment \u2013 to give a rigorous account of what separates good decisions\nfrom the rest. These conceptual tools will empower you to make good decisions in an uncertain world, to influence, and to lead.", + "title": "Leadership and Decision Making under Uncertainty", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO2705D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-B104", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The decisions you make every day will shape your life. In an organization, the decisions you make will impact outcomes for you, your team, and cumulatively affect the trajectory of your career. This module aims to help you navigate the\npathways of decision making in organizations. We will undertake an evidence-based approach, tapping on several streams of research \u2013 including behavioral psychology and economics, error management, and intuitive judgment \u2013 to give a rigorous account of what separates good decisions\nfrom the rest. These conceptual tools will empower you to make good decisions in an uncertain world, to influence, and to lead.", + "title": "Leadership and Decision Making under Uncertainty", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO2705E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The decisions you make every day will shape your life. In an organization, the decisions you make will impact outcomes for you, your team, and cumulatively affect the trajectory of your career. This module aims to help you navigate the\npathways of decision making in organizations. We will undertake an evidence-based approach, tapping on several streams of research \u2013 including behavioral psychology and economics, error management, and intuitive judgment \u2013 to give a rigorous account of what separates good decisions\nfrom the rest. These conceptual tools will empower you to make good decisions in an uncertain world, to influence, and to lead.", + "title": "Leadership and Decision Making under Uncertainty", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO2705F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "F2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The primary purpose of this course is to cultivate a mindset shift \u2013 to be an effective leader, one has to be an effective communicator. This course weighs heavily on oral communication skills, and is centred on real-life business examples to facilitate students\u2019 understanding of the factors that are critical for business communication.\n\nThe ability to communicate effectively affects one\u2019s employability and career success. Achieving success in one\u2019s career depends on one\u2019s ability to develop relationships, collaborate across teams, present ideas clearly, ask thoughtful questions and listen skillfully.\n\nThis course is for students pursuing the Bachelor of Business Administration (Accountancy) programme.", + "title": "Business Communication for Leaders (ACC)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO2706", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAFFRON", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A4", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course deals with the study of human behavior in organisations: how people influence organisational events and how events within the organisation influence people's behaviour. Organisational behavior is a field that draws ideas from psychology, social psychology, sociology, anthropology, political science, and management and applies them to the organisation. The field of organisational behaviour covers a wide range of topics: organisational culture, motivation, decision making, communication, work stress and so on. In the end, the field of organisational behavior asks two questions: (1) why do people behave as they do within organisations? (2) how can we use this information to improve the effectiveness of the organisation?", + "title": "Organisational Behaviour", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to introduce students to the field of organisational theory - which applies concepts from various disciplines such as management studies, sociology, psychology, political sciences and economics to study organisations. The course is designed to encourage students to actively and critically use these concepts to make sense, diagnose, manage and respond to the emerging organisational needs and problems. The course covers topics such as organisational goals, strategy and effectiveness; dimensions of organisational structure; organisational design and environments; technology and organisational change; and organisational decision-making. The emphasis of this course is on the practical value of organisation theory for students as future members and managers of organisations. Developing an understanding of how organisations (should) operate is effectively critical so that students will able to fulfill their roles as future managers.", + "title": "Organisational Effectiveness", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The topic(s) addressed in this module will involve specialised issues that are worthy of more in-depth treatment than what is provided in the other modules. The specific topics may range from current theoretical debates to the strategies and tactics that are utilised by leading organisations to resolve practical problems. The primary mode of instruction will feature discussion of research articles, case studies and/or projects involving practical applications.", + "title": "Topics in Leadership and Human Capital Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Organisations have increasingly relied on teams to accomplish a wide variety of objectives, from day-to-day shop floor operation to new product development to long term strategic planning. It is critical for anyone who wants to achieve career success to understand the characteristics of effective teams and how to lead high performance teams in an organisational context. This course will examine the dynamics of teams from the individual, group, and organisational perspectives. After taking this course, students will (1) gain a better understanding about external and internal factors determining team success, (2) develop insights on strengths, weaknesses, opportunities and challenges facing teams, (3) learn methods and develop skills to lead and facilitate high performance teams, and (4) gain teamwork experience by participating in group exercises and team project.", + "title": "TIMHC:Managing High Performance Teams", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3313F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will highlight the components of an effective negotiation and teach students to analyse their own behavior in negotiations. The course will be largely experiential, providing students with the opportunity to develop their skills by participating in negotiations and integrating their experiences with the principles presented in the assigned readings and course discussions. This course is designed to foster learning through doing, and to explore your own talents, skills, and shortcomings as a negotiator. The negotiation exercises will provide you with an opportunity to attempt strategies and tactics in a low-risk environment, to learn about yourself and how you respond in specific negotiation situations. If you discover a tendency that you think needs correction, this is the place to try something new. The course is sequenced so that cumulative knowledge can be applied and practiced.", + "title": "TIHMC: Negotiations and Bargaining", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3313H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines deviant behaviors at the workplace, corporate misconduct and organizational ethics. Both the employee and organization will be the focus of our analysis. Topics examined include the role of personality and situation in explaining employee and organizational deviance, employee theft, deceit, lying and whistle-blowing among others.", + "title": "TILHCM: Employee and Organizational Misbehaviours", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3313J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to expose students to the emerging role China plays in the global political/ economic scene and the market opportunities China offers to business investors worldwide. Latest plans on China\u2019s economic restructuring and regional integration to boost domestic consumption will be reviewed. The module also discusses critical challenges executives face in managing a China venture. These include decisions and actions on modes of entry; access to target market segments; sourcing of suppliers and choice of venture partners; creation of distribution network; control of product/service quality; management of government relations; containment of costs; and talent acquisition and retention.", + "title": "TILHCM: Managing China Venture", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3313K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Crisis management and crisis management planning can protect organizations against complete failure if/when a catastrophic disruption happens. This module is intended to prepare and guide aspiring leaders to manage through a crisis, whether it is a pandemic like COVID-19 or an accident in an organization\u2019s production facilities.", + "title": "TILHCM: Crisis Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3313L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Legal Issues in Employee Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3315", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will be exposed to leadership decisions at the advanced level. Senior and top executives typically have to create and deal with a leadership environment and culture at the organizational level that is consistent and supportive\nof organizational mission and strategy. The challenges facing these executives at the institutional level are quite different from those actually practising leadership skills at the operational level. Students will learn the skills needed\nto do the following: \n1. Creating Leadership Vision and Strategic Directions\n2. Shaping leadership Culture and Values\n3. Designing and Leading a Leadership Learning\nOrganization\n4. Leading Leaders in Change Situations", + "title": "Advanced Leadership", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3317", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the facilitation of innovation from\nvarious perspectives:\n\u2022 Strategy\n\u2022 Organizational culture\n\u2022 Organizational structure\n\u2022 Processes\n\u2022 Psychology and characteristics of people", + "title": "Creativity and Innovation Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3318", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is organized around three major themes: 1. What are power and influence? How are they acquired? 2. How are power and influence exercised in and by organizations? 3. How can power be abused or used? How can leaders\nexercise power responsibly? How do organizational policy, structure, systems and behaviour affect the use of power? Students will learn and explore using simulations, role-play and cases. Power and influence have their theoretical roots in various disciplines. Hence, this module will apply perspectives from\nPhilosophy, Political Science, Psychology and Sociology, in addition to Organization & Management Science.", + "title": "Power and influence in Organizations", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3319", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "All of us have experienced change in our lives. Change is often regarded with mixed feelings of excitement, fear and uncertainty. As a business graduate there will be instances in which you will be a participant and observer in organisational change. At other times, you will have the opportunity and responsibility of managing planned changes in organisations. This course aims to prepare you for such opportunities. This course is organised around these major questions: Why is organisational change so difficult? How can I lead and manage change in organisations? What tools and processes can I use to manage change? When and how should these tools be used and what are the strengths and drawbacks of each? Why do some change efforts fail? Why do some others succeed?", + "title": "Managing Change", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3320", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare students for the challenging task of training and developing effective employees to help organisations realise their missions and visions. Students will be given the role of an internal or external training consultant and tasked to conduct simulated consulting projects to put theories and concepts into action. Learning by doing will be the theme of this module. The course will uncover the practical value of T&D (training and development) methods and learning theories/concepts to promote continuous learning in organisations. Students are expected to be knowledgeable about the field of human resource development (HRD) and the systematic approach to employee T&D efforts by the end of the module. The module is highly application oriented and student assessment will be based solely on the experiential exercises designed for the module. Both students presentation skills and knowledge about training and development will be assessed. This module is designed to equip students for the roles of HR (human resource)/training specialists and/or non-HR managers/executives/supervisors with training and development responsibilities. Hence, this module does not require students to have taken an HRM (human resource management) module before, i.e., HRM is desired but not a compulsory prerequisite to this module. Note however that Lesson 10 requires students to apply basic HRM concepts when dealing with the lesson on Selecting and Managing Trainers. Regardless of whether students have taken an HRM module previously, they must read or reread the recommended HRM textbook in advance in order to fully benefit from the lesson.", + "title": "Training and Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course focuses on negotiations and conflict management in the context of leading and managing interpersonal relationship at work and life in general. Participants first focus on principles and skills required to gain mastery as fair and ethical negotiators. Following which participants progress to acquire the theory and skills of facilitating conflict resolution. This involves 1) influencing\ncounter-parties to behave in an efficient and amicable manner and engage in joint problem solving; 2) playing the role of a mediator in helping others resolve issues at work. Both these roles will be set in a leadership context.", + "title": "Negotiations and Bargaining", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to train students to effectively handle employee relations in Singapore. It will address various environmental and structural constraints managers face when dealing with employees in Singapore. It delves into such topics as the history, key institutions, and the tripartism philosophy adopted in Singapore, as well as several key legislations and their applications. Because of its strong orientation towards real-world practices, students will find this course useful when looking for employment or actually managing employees in the future. Students are expected to keep themselves updated with regard to the current trends in employee relations, as well as to demonstrate their ability to apply concepts and skills learned from the course.", + "title": "Management of Employee Relations", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an independent study module about leadership at the highest level of an organization. As the ultimate \u201csynergizing force\u201d to create value for the organization by uniting, coordinating, and synchronising all elements of an organization to strive to attain organizational objectives, the CEOs are the most critical component in the leadership \u201cfood chain\u201d. What must a leader add to the system to\nensure that the organization will function like a well-oiled machine to generate value for shareholders?", + "title": "CEOs as Leaders", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MNO3325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This independent study module delves into the leadership experiences a leader may go through as an individual. Leaders are also individual persons like you and me. How to deal with the leadership role and personally make sense of what a person does as a leader thus constitutes an essential part of leadership training. This module will address these topics: 1. The Leader as an Individual\n2. Personality Traits and Leader Behavior\n3. Leadership World View and Attitude\n4. Ledership Mind and Heart\n5. What Does It Mean to be a Follower\n6. Developing Personal Potential", + "title": "Personal Leadership Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MNO3326", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for students who want to learn about the complex responsibilities and contextual factors facing business leaders today. It will enhance students\u2019 awareness of the role that context plays in the making of\nbusiness leaders. Through interactive in-class case analyses and actual field work, students are expected to come to realize how context influences business\nleadership over time. The module will introduce how the interactions among the elements in the environmental context (government intervention, technology,\nglobalization, labor market, etc.) impact the effectiveness of business leadership.", + "title": "Business Leadership Case Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3328", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based\nresearch and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Leadership & Human Capital Mgmt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3329", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Social entrepreneurship presents an alternative approach to community development. It advocates the adoption of innovative solutions (often incorporating market mechanisms) to address social problems. This module discusses the concepts associated with social entrepreneurship, and examines the practices and\nchallenges of social entrepreneurship in the Asian context. Topics to be covered include identification of social problems; marginalization and the poverty cycle; varied\nconceptualizations of social entrepreneurship and innovation; different types of social enterprises; sustainable social enterprises as an effective means of community development; developing a social enterprise business plan; establishing a social enterprise; scaling up a social enterprise; social impact measurement.", + "title": "Social Entrepreneurship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3330", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Whether, how, and to what degree businesses use social considerations to inform their goals, strategies, behaviours, and profits is contestable in Asia and globally. This course\ncritically examines a host of issues related to these questions including corporate charitable giving, product development, market placement, pricing strategies, labour\nrelations, strategic and venture philanthropy, public policy, advocacy, environmental sustainability, investing, and sponsorships. Students will better understand and\nevaluate the ways in which national and multinational corporations affect large-scale changes in Asian societies via their practices and the tradeoffs associated with\nvarious means these companies employ as they seek to positively impact society.", + "title": "Business with a Social Conscience", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Groups and Teams are among the most important work formats in our modern organization. This module\u2019s objective is to focus on evidence-based management to try and understand what drives the behaviour of groups and their members. Our job is to try and understand when, if, and how phenomena change as we place people in\nsituations where they need to rely on others to get the job done. The module will loosely follow Tuckman\u2019s (1965) forming, storming, norming, and performing model of group development. However, much of our attention will be focused on the forming stage, as everything that follows depends on successfully building the team.", + "title": "Leading Groups and Teams", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the frameworks and concepts underpinning the contribution of human capital management (HCM) in a constantly changing environment. Students will take a strategic and leadership-oriented approach to examine human capital-related practices using both\nthe employer's and the employee's perspectives. The key areas to be discussed include environmental challenges and strategic HCM, talent acquisition, talent development, talent retention, and global workforce deployment. As environmental challenges are constant (globalisation, technology, and sustainability), this course will address the alignment of key HCM issues with corporate missions, visions, and values in the context of changing environment.", + "title": "Human Capital Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3333", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to cultivate, challenge, and enrich a \u2018global managerial mind\u2019. Numerous conceptual and theoretical frameworks will be introduced to help the students explore and internalize the various complex organizational structures and processes facing all managers operating in today\u2019s turbulent global environment. Both theoretical and applied approaches will be adopted. Given that Asia is and will be the driver of global economic growth for the next few decades, we will adopt an Asian perspective as we explore ongoing global management and organizational issues.", + "title": "Principles of Global Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3334", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based\nresearch and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Leadership & Human Capital Mgmt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MNO3339", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the frameworks and concepts underpinning the contribution of human capital management (HCM) in a constantly changing environment. Students will take a strategic and leadership-oriented approach to examine human capital-related practices using both\nthe employer's and the employee's perspectives. The key areas to be discussed include environmental challenges and strategic HCM, talent acquisition, talent development, talent retention, and global workforce deployment. As environmental challenges are constant (globalisation, technology, and sustainability), this course will address the alignment of key HCM issues with corporate missions, visions, and values in the context of changing environment.", + "title": "Human Capital Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 54, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SFAH-SAGE", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 54, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course focuses on negotiations and conflict management in the context of leading and managing interpersonal relationship at work and life in general. Participants first focus on principles and skills required to gain mastery as fair and ethical negotiators. Following which participants progress to acquire the theory and skills of facilitating conflict resolution. This involves 1) influencing counter-parties to behave in an efficient and amicable manner and engage in joint problem solving; 2) playing the role of a mediator in helping others resolve issues at work. Both these roles will be set in a leadership context.", + "title": "Negotiation and Conflict Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 53, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 53, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Taking an interdisciplinary approach to leadership, this module prepares students to re-examine the nature of work, organization and leadership. Looking from outside in, this module begins by examining the impact of the external environment on organizations, and transformations in the nature of doing business on employee-employer relationships The module will also highlight the implications that the changing nature of work has on how leaders\u2019 manage work performance and organizational control. Key issues and\nimpact of this new norm on organization performance and diverse workforce will be highlighted.", + "title": "Leading in the 21st Century", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 53, + "covidZone": "B" + }, + { + "classNo": "A2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 53, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "All of us have experienced change in our lives. Change is often regarded with mixed feelings of excitement, fear and uncertainty. As a business graduate there will be instances in which you will be a participant and observer in organisational change. At other times, you will have the opportunity and responsibility of managing planned changes in organisations. This course aims to prepare you for such opportunities. This course is organised around these major questions: Why is organisational change so difficult? How can I lead and manage change in organisations? What tools and processes can I use to manage change? When and how should these tools be used and what are the strengths and drawbacks of each? Why do some change efforts fail? Why do some others succeed?", + "title": "Managing Change", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3711", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare students for the challenging task of training and developing effective employees to help organisations realise their missions and visions. Students will be given the role of an internal or external training consultant and tasked to conduct simulated consulting projects to put theories and concepts into action. Learning by doing will be the theme of this module. The course will uncover the practical value of T&D (training and development) methods and learning theories/concepts to promote continuous learning in organisations. Students are expected to be knowledgeable about the field of human resource development (HRD) and the systematic approach to employee T&D efforts by the end of the module. The module is highly application oriented and student assessment will be based solely on the experiential exercises designed for the module. Both students presentation skills and knowledge about training and development will be assessed. This module is designed to equip students for the roles of HR (human resource)/training specialists and/or non-HR managers/executives/supervisors with training and development responsibilities. Hence, this module does not require students to have taken an HRM (human resource management) module before, i.e., HRM is desired but not a compulsory prerequisite to this module. Note however that Lesson 10 requires students to apply basic HRM concepts when dealing with the lesson on Selecting and Managing Trainers. Regardless of whether students have taken an HRM module previously, they must read or reread the recommended HRM textbook in advance in order to fully benefit from the lesson.", + "title": "Training and Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to train students to effectively handle employee relations in Singapore. It will address various environmental and structural constraints managers face when dealing with employees in Singapore. It delves into such topics as the history, key institutions, and the tripartism philosophy adopted in Singapore, as well as several key legislations and their applications. Because of its strong orientation towards real-world practices, students will find this course useful when looking for employment or actually managing employees in the future. Students are expected to keep themselves updated with regard to the current trends in employee relations, as well as to demonstrate their ability to apply concepts and skills learned from the course.", + "title": "Management of Employee Relations", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3713", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Whether, how, and to what degree businesses use social considerations to inform their goals, strategies, behaviours, and profits is contestable in Asia and globally. This course critically examines a host of issues related to these questions including corporate charitable giving, product development, market placement, pricing strategies, labour relations, strategic and venture philanthropy, public policy, advocacy, environmental sustainability, investing, and sponsorships. Students will better understand and evaluate the ways in which national and multinational corporations affect large-scale changes in Asian societies via their practices and the tradeoffs associated with various means these companies employ as they seek to positively impact society.", + "title": "Business with a Social Conscience", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3714", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0301", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Groups and Teams are among the most important work formats in our modern organization. This module?s objective is to focus on evidence-based management to try and understand what drives the behaviour of groups and their members. Our job is to try and understand when, if, and how phenomena change as we place people in situations where they need to rely on others to get the job done. The module will loosely follow Tuckman?s (1965) forming, storming, norming, and performing model of group development. However, much of our attention will be focused on the forming stage, as everything that follows depends on successfully building the team.", + "title": "Leading Groups and Teams", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3715", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to cultivate, challenge, and enrich a \u2018global managerial mind\u2019. Numerous conceptual and theoretical frameworks will be introduced to help the students explore and internalize the various complex organizational structures and processes facing all managers operating in today\u2019s turbulent global environment. Both theoretical and applied approaches will be adopted. Given that Asia is and will be the driver of global economic growth for the next few decades, we will adopt an Asian perspective as we explore ongoing global management and organizational issues.", + "title": "Principles of Global Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3716", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0203", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Leadership & Human Capital Mgmt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) are for students with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. Students will be exposed to individual-based research and report-writing while tackling a business issue under the guidance of the instructor.", + "title": "Independent Study in Leadership & Human Capital Mgmt (2 MC)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MNO3752", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The topic(s) addressed in this module will involve specialised issues that are worthy of more in-depth treatment than what is provided in the other modules. The specific topics may range from current theoretical debates to the strategies and tactics that are utilised by leading organisations to resolve practical problems. The primary mode of instruction will feature discussion of research articles, case studies and/or projects involving practical applications.", + "title": "Topics in Leadership and Human Capital Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines deviant behaviors at the workplace, corporate misconduct and organizational ethics. Both the employee and organization will be the focus of our analysis. Topics examined include the role of personality and situation in explaining employee and organizational deviance, employee theft, deceit, lying and whistle-blowing among others.", + "title": "TILHCM: Employee and Organizational Misbehaviours", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3761A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to expose students to the emerging role China plays in the global political/ economic scene and the market opportunities China offers to business investors worldwide. Latest plans on China?s economic restructuring and regional integration to boost domestic consumption will be reviewed. The module also discusses critical challenges executives face in managing a China venture. These include decisions and actions on modes of entry; access to target market segments; sourcing of suppliers and choice of venture partners; creation of distribution network; control of product/service quality; management of government relations; containment of costs; and talent acquisition and retention.", + "title": "TILHCM: Managing China Venture", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3761B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Crisis management and crisis management planning can protect organizations against complete failure if/when a catastrophic disruption happens. This module is intended to prepare and guide aspiring leaders to manage through a crisis, whether it is a pandemic like COVID-19 or an accident in an organization\u2019s production facilities.", + "title": "TILHCM: Crisis Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3761C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The topic(s) addressed in this module will involve specialised issues that are worthy of more in-depth treatment than what is provided in the other modules. The specific topics may range from current theoretical debates to the strategies and tactics that are utilised by leading organisations to resolve practical problems. The primary mode of instruction will feature discussion of research articles, case studies and/or projects involving practical applications.", + "title": "Topics in Leadership and Human Capital Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3761X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The topic(s) addressed in this module will involve specialised issues that are worthy of more in-depth treatment than what is provided in the other modules. The specific topics may range from current theoretical debates to the strategies and tactics that are utilised by leading organisations to resolve practical problems. The primary mode of instruction will feature discussion of research articles, case studies and/or projects involving practical applications.", + "title": "Topics in Leadership and Human Capital Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3761Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The topic(s) addressed in this module will involve specialised issues that are worthy of more in-depth treatment than what is provided in the other modules. The specific topics may range from current theoretical debates to the strategies and tactics that are utilised by leading organisations to resolve practical problems. The primary mode of instruction will feature discussion of research articles, case studies and/or projects involving practical applications.", + "title": "Topics in Leadership and Human Capital Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3761Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Social entrepreneurship presents an alternative approach to community development. It advocates the adoption of innovative solutions (often incorporating market mechanisms) to address social problems. This module discusses the concepts associated with social entrepreneurship, and examines the practices and challenges of social entrepreneurship in the Asian context. Topics to be covered include identification of social problems; marginalization and the poverty cycle; varied conceptualizations of social entrepreneurship and innovation; different types of social enterprises; sustainable social enterprises as an effective means of community development; developing a social enterprise business plan; establishing a social enterprise; scaling up a social enterprise; social impact measurement.", + "title": "Social Entrepreneurship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO3811", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0304", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Current issues and/or essential topic areas within the field of management and organisation that merit extensive literature reviews and scholarly discussion will be studied under this heading. Students enrolled in these seminars are required to make presentations on topics that are of interest to them and relevant to the module. Lecturers will act as facilitators, evaluators and resource persons. Assessments will be based on a major project or term paper, in addition to more traditional indicators of performance. Examples of seminars in the Management and Organisation concentration are International and Comparative Industrial Relations; Leadership in Organisation; Comparative and Cross-National Study of Organisations and Power and Politics in Organisations.", + "title": "Seminars in Leadership and Human Capital Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module are to: (1) Develop an understanding of culture and its variables, (2) Discuss the impact of culture on management in different countries, especially those in Asia, (3) Develop cultural knowledge, sensitivity and skills necessary for working in a culturally diverse business environment. Students are expected to read about current events that are related to cultural sensitivity. They must be prepared to discuss the implications of such events in a multi-cultural environment.", + "title": "SIMHC: Culture and Management in Asia", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4313B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Compensation and appraisal systems are key contributors to organisational effectiveness. This course addresses how organisations use compensation and performance management practices to drive strategic business success. This course will cover a mix of theoretical concepts and organisational practices useful in developing and maintaining a motivated, committed and competent workforce. In this course students will learn how organisational systems operate to attract, retain and motivate a competent workforce. Further students will gain an understanding of how to assess reward and appraisal systems in terms of the criteria of equity and cost effectiveness and how to assess and diagnose compensation management issues and problems and develop appropriate solutions.", + "title": "SILHCM: Compensation and Performance Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4313C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This class emphasizes the cultivation of each student\u2019s ability to evaluate business models and their appropriateness for development in a corporate setting. As an advanced course the content is designed to improve students analytical, creative and communication skills. In a competitive environment, entrepreneurship is an essential and indispensable element in the success of every business organisation - whether small or large, new or long-established. This course focuses on corporate entrepreneurship with a special emphasis on the role of venture capital and spin-offs. Although corporate entrepreneurship encompasses a wide range of organisational activities, this course focuses primarily on managerial efforts aimed at the identification, development and exploitation of technical and organisational innovations and on effective new venture management in the context of large corporations.", + "title": "SILHCM: Corp Entrepreneurship & Busi Model Evaluation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4313D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover cognition and decision making in organisations. The course will begin with a brief exploration of the bases of cognition, including the topics of neurophysiology, sensation and perception, and cognitive science/psychology. Using this as a basis, the course will go on to explore biases in decision making, the role of emotion in cognition and cognitive styles, persuasion and influence, conformity and obedience, sensemaking and cognition in high-stress/high-reliability environments, cognition in groups and teams, ethical decision-making, and the importance of understanding what makes us happy... the latter of which is often difficult for us to predict and has implications for our (inevitable) lives as employees in organizations. Throughout the course an attempt will be made to understand the way students think, the biases they hold when making decisions and interpreting environmental stimuli in the context of organisations, and the ways in which their emotions influence their decisions and judgments. Also highlighted will be the usefulness of introspection and an awareness of their own thought processes and assumptions... an aim that almost all religions and many academic pursuits attempt forward, yet one which is often excluded from the study of business to the detriment of business people.", + "title": "SIMHC: Managerial and Organisational Cognition", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4313E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SIMHC: SME Consulting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4313G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve studying the range of attitudes that individuals have toward their jobs and organization including job satisfaction, engagement, commitment, and other related topics. It will be an advanced module in that reading the scientific evidence will be part of the requirements.", + "title": "SILHCM: Job Attitudes", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4313H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the knowledge and skills that will help prepare them for the transition to the global workforce. Specifically, the module will examine the critical success factors for sustaining high performance in a rapidly changing business environment. Some of the questions that will be discussed and addressed include: \n\n- What criteria do companies use to identify and assess talent? \n- How do companies develop talent, leadership and succession planning? \n- How do individuals sustain high performance in the ever-evolving global workplace?", + "title": "SILHCM: Talent Development and Performing with Impact", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4313J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Technology and innovation platforms are now major drivers of value creation. In the late 19th century, innovations such as the telephone, automobile (internal-combustion engine), and electricity have ushered in the 2nd industrial revolution with explosive growth due to rapidly lowering costs, while unleashing demand across multiple sectors. The 3rd industrial revolution with the ubiquitous access of information technology and smartphones and the internet created new technology giants and brought innovations as a value creation driver to the forefront. Today, especially with post-COVID, digitization and newly emergent technologies will usher in a new growth curve. Klaus Schwab, executive chairman of the World Economic Forum, termed the upcoming change as Industry 4.0* . For you as final year business students, you need to understand the new emergent technologies, familiarize yourself with the use cases, and develop a set of skills and knowledge around the management implications in the next generation of growth drivers.\n\n*Primary Drivers of Industry 4.0 (Source: Wikipedia https://www.wikiwand.com/en/Fourth_Industrial_Revolution)", + "title": "SILHCM: Industry 4.0, Technology, & Mgt Implications", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4313K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Deep knowledge in management practices, employee motivation, and personnel selection are important when individuals are entering the workforce, especially in the OBHR space. Another career trajectory for individuals specialized in management topics is in consulting.\nGrounded in theory and research, consultants provide valuable service to clients/companies in advising the next steps in important decisions, such as recruitment, training and development, and other organizational practices. Important in this job is also the ability to interlace theory with practice, applying established knowledge to a practical setting, often with consideration of the organization's unique characteristics in mind.\nThis module is designed for students interested in understanding the state-of-the-art management consulting practice used by management consultants to help organizations improve performance and become more effective. Through a combination of theory and simulation projects, students will learn both the hard and soft skills required to be a good management consultant", + "title": "Consulting to Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4314", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This class aims to generate interest and develop skills of participants to \u201cconsult\u201d to management and assist clients to take important managerial decisions in organisations. The class is targeted at participants with preliminary knowledge (about Consulting) and strong aspirations to become consultants. The module covers a broad range of topics from \u201ctypes of consulting\u201d to \u201chow consulting firms make money\u201d and includes a 2-day workshop helping participants develop their skills to consult. Strong analytical and reasoning skills form the prerequisite for the course.", + "title": "Seminar in M&O: Consulting to Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4314A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This class aims to generate interest and develop skills of participants to \u201cconsult\u201d to management and assist clients to take important managerial decisions in organisations. The class is targeted at participants with preliminary knowledge (about Consulting) and strong aspirations to become consultants. The module covers a broad range of topics from \u201ctypes of consulting\u201d to \u201chow consulting firms make money\u201d and includes a 2-day workshop helping participants develop their skills to consult. Strong analytical and reasoning skills form the prerequisite for the course.", + "title": "Seminar in M&O: Consulting to Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4314B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to expose students to the challenging paths of selected Asian Multinationals in their journey of globalization. The course will discuss major driving forces behind an overseas expansion of some pioneer Asian multinationals, including established corporations from Japan and South Korea; and the critical factors that shape their business success or failure.\nNext, the module will study the rapid rise of some emerging markets MNCs, especially those from China, India and selected S.E. Asian countries. Students will learn how visionary leadership and rapid changes in the domestic and global business contexts have shaped the internationalization strategies of Asian MNCs.", + "title": "Global Management of Asian Multinationals", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4315", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an overview of the ways in which work demands and experiences influence employee behaviour and well-being, and also explores the mechanisms that organizations and employees can use to minimize the negative effects of work demands on well-being as well as maximize the positive effects of certain work experiences on\nwell-being.", + "title": "Experiencing Work: Effects on Behavior and Well-Being", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4316", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for\nadmission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Adv Independent Study in Leadership & Human Capital Mgt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4319", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for\nadmission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Adv Independent Study in Leadership & Human Capital Mgt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MNO4329", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Deep knowledge in management practices, employee motivation, and personnel selection are important when individuals are entering the workforce, especially in the OBHR space. Another career trajectory for individuals specialized in management topics is in consulting. Grounded in theory and research, consultants provide valuable service to clients/companies in advising the next steps in important decisions, such as recruitment, training and development, and other organizational practices. Important in this job is also the ability to interlace theory with practice, applying established knowledge to a practical setting, often with consideration of the organization's unique characteristics in mind.", + "title": "Consulting to Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4711", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an overview of the ways in which work demands and experiences influence employee behaviour and well-being, and also explores the mechanisms that organizations and employees can use to minimize the negative effects of work demands on well-being as well as maximize the positive effects of certain work experiences on well-being.", + "title": "Experiencing Work: Effects on Behaviour & Well-Being", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4712", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Globalization and changes in work patterns have created opportunities for people to work beyond borders as team members or leaders. Facing rising global challenges with people from different culture backgrounds - managers,\nleaders or people at work could opt to be (i) who they are, expecting others to adapt to them, or (ii) they can proactively work to develop greater multicultural competencies and lead. Competent leaders view leading across borders as a\ndevelopment process, requiring intelligences and competences to succeed. This module focuses on these intelligences and competences by enhancing students\u2019 knowledge and skills in the area.\n\nThe module is divided into three parts, starting with an understanding of new global realities and their impact on business, management and people. The module continues with an examination of roles and competencies necessary\nto lead across borders, for example, communicating across cultures, motivating and inspiring people across cultures, building teams and trust, etc. Finally, the discussion on global management challenges aims to encourage students to critically think about what lies ahead when leading across borders. This will prepare students well to lead more successfully across borders.", + "title": "Leading Across Borders", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4713", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students examine how management principles and concepts can be applied to address social problems. In particular, students experientially learn how management principles and concepts can be utilized to\ngenerate innovative ideas that offer solutions to social problems. The module also helps students appreciate the importance of effectively implementing and managing these solutions for maximum social outcomes and impact. Key\ntopics covered include social issues and challenges in Singapore, the social sector in Singapore, identification and scoping of social problems, ideation of solutions to social problems, and implementation, management and impact\nmeasurement of solutions.", + "title": "Developing Impactful Social Sector Solutions", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4714", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the capabilities of corporate foresight using techniques such as horizon scanning and scenario planning. The students will learn how to identify and harness the opportunities presented by future scenarios, as well as manage the risks associated with their ambiguity and complexity. Students will learn how to apply foresight methods and scenario planning in strategic processes in organizations. They will learn how to identify the specific role foresight activities play in the organization and support the activities involved in long-range planning for the organization.", + "title": "Foresight and Scenario Planning", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4715", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0305", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the key concepts in human resource (HR) analytics and machine learning. The module also introduces R programming for data analytics in HR and performing basic machine learning analysis.", + "title": "Using R for HR analytics and machine learning", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4716", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0509", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is about sharpening the talent assessment skills and strategic mindset of recruitment and selection decision makers that are critical for building successful organizations. The topics that will be covered include \u00b7 What Does a Talent Assessment & Selection System Try to Achieve? \u00b7 Attributes of Effective Talent Assessment & Selection \u00b7 Job Analysis, Job Description, & Job Specification \u00b7 Identifying, Recruiting, & Retaining Qualified Applicants \u00b7 The Job Application Form as a Selection Test \u00b7 The Interview as a Selection Test \u00b7 Personality & Values Test \u00b7 Integrity & Honesty Test \u00b7 Simulation & Ability Test \u00b7 Selection Decision Making Managerial, Political, Legal, & Ethical Considerations", + "title": "Talent Acquisition", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4717", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Adv Independent Study in Leadership & Human Capital Mgt", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4751", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Independent Study Modules (ISMs) are for senior students who are in the BBA and BBA(Acc) honors programs with the requisite background to work closely with an instructor on a well-defined project in the respective specialization areas. (The modules may also be made available to students who are eligible for admission into the honors programs but choose to pursue the non-honors course of study.) Students will hone their research and report-writing skills while tackling a business issue under the guidance of the instructor.", + "title": "Adv Independent Study in Leadership & Human Capital Mgt (2 MC)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MNO4752", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Current issues and/or essential topic areas within the field of management and organisation that merit extensive literature reviews and scholarly discussion will be studied under this heading. Students enrolled in these seminars are required to make presentations on topics that are of interest to them and relevant to the module. Lecturers will act as facilitators, evaluators and resource persons. Assessments will be based on a major project or term paper, in addition to more traditional indicators of performance. Examples of seminars in the Management and Organisation concentration are International and Comparative Industrial Relations; Leadership in Organisation; Comparative and Cross-National Study of Organisations and Power and Politics in Organisations.", + "title": "Seminars in Leadership and Human Capital Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4761", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Compensation and appraisal systems are key contributors to organisational effectiveness. This course addresses how organisations use compensation and performance management practices to drive strategic business success. This course will cover a mix of theoretical concepts and organisational practices useful in developing and maintaining a motivated, committed and competent workforce. In this course students will learn how organisational systems operate to attract, retain and motivate a competent workforce. Further students will gain an understanding of how to assess reward and appraisal systems in terms of the criteria of equity and cost effectiveness and how to assess and diagnose compensation management issues and problems and develop appropriate solutions.", + "title": "SILHCM: Compensation and Performance Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4761A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will involve studying the range of attitudes that individuals have toward their jobs and organization including job satisfaction, engagement, commitment, and other related topics. It will be an advanced module in that reading the scientific evidence will be part of the requirements.", + "title": "SILHCM: Job Attitudes", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4761B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the knowledge and skills that will help prepare them for the transition to the global workforce. Specifically, the module will examine the critical success factors for sustaining high performance in a rapidly changing business environment. Some of the questions that will be discussed and addressed include: \n\n- What criteria do companies use to identify and assess talent? \n- How do companies develop talent, leadership and succession planning? \n- How do individuals sustain high performance in the ever-evolving global workplace?", + "title": "SILHCM: Talent Development and Performing with Impact", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4761C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Technology and innovation platforms are now major drivers of value creation. In the late 19th century, innovations such as the telephone, automobile (internal-combustion engine), and electricity have ushered in the 2nd industrial revolution with explosive growth due to rapidly lowering costs, while unleashing demand across multiple sectors. The 3rd industrial revolution with the ubiquitous access of information technology and smartphones and the internet created new technology giants and brought innovations as a value creation driver to the forefront. Today, especially with post-COVID, digitization and newly emergent technologies will usher in a new growth curve. Klaus Schwab, executive chairman of the World Economic Forum, termed the upcoming change as Industry 4.0*. For you as final year business students, you need to understand the new emergent technologies, familiarize yourself with the use cases, and develop a set of skills and knowledge around the management implications in the next generation of growth drivers.\n\n*Primary Drivers of Industry 4.0 (Source: Wikipedia https://www.wikiwand.com/en/Fourth_Industrial_Revolution)", + "title": "SILHCM: Industry 4.0, Technology, & Mgt Implications", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4761D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "0830", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0205", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This class emphasizes the cultivation of each student's ability to evaluate business models and their appropriateness for development in a corporate setting. As an advanced course the content is designed to improve students analytical, creative and communication skills. In a competitive environment, entrepreneurship is an essential and indispensable element in the success of every business organisation - whether small or large, new or long-established. This course focuses on corporate entrepreneurship with a special emphasis on the role of venture capital and spin-offs. Although corporate entrepreneurship encompasses a wide range of organisational activities, this course focuses primarily on managerial efforts aimed at the identification, development and exploitation of technical and organisational innovations and on effective new venture management in the context of large corporations.", + "title": "SILHCM: Corp Entrepreneurship & Busi Model Evaluation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MNO4861C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0202", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introduction to studies on Malays and Malayness within countries in the Malay-Indonesian archipelago. The main question will be of conflict, change and continuity. Approaches in studying these responses will include topics on colonialism and the decolonisation of ideas, the interrogation of Malayness, development and political economy, Islam and its institutions, arts and literary aesthetics, gender, family and community, and state and Malay society in contemporary Singapore and the region.", + "title": "Understanding the Contemporary Malay World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS1102E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main theme of this module is processes of change in Malay cultures and societies and how attempts at creating certainties are made. Part 1 introduces students to approaches in studying Malay culture and society. Malay culture and society does not exist in vacuum. In Part 2, we look at how in encountering \"others\" Malay culture and society has historically gone through and is going through massive changes. Part 3 highlights aspects of changes in contemporary Malay society including ethnicity and Malay identity, new Malay rich, Malay woman and femininity as well as national development and the indigenous people.", + "title": "Malay Culture & Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module adopts the approach of literary criticism. It looks at modern Malay literature both in terms of literary creativity as well as ideas and content. This evaluation is set against the social-historical background which had inspired and shaped that literature, bringing out the contextual meanings of major works in modern Malay literature. A general assessment of modern Malay literature would be attempted, examining its role, achievement and direction for the future. This module is designed for students interested in literature and the sociology and history of ideas.", + "title": "Criticism in Modern Malay Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines dominant perceptions of law in Malay society by focussing on ideas on adat law and Islamization of laws. It analyses socio\u2010historical factors conditioning perspectives and the function of ideas in relation to social groups that espouse them. The extent to which the mode of thinking on adat law is reflected in discourse on Islamising laws and its impact on legal development will be addressed. Concepts of ideology and Orientalism, Islam and adat law, Ideas on Islamization of laws and Shariah and the state are some major themes tackled.", + "title": "Law and Malay Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an understanding of contemporary forms and practices of Malay families and households. It discusses the underlying concepts in family studies and prevalent notions of the Malay family and household derived from earlier studies. A major focus is to show the changing nature of Malay family and household structures as well as their diverse forms. Furthermore, the dynamic social relationships in households will be analyzed from different perspectives. In addition the module explores how Malay families \"design\" family styles in a context of changing societies. The module is targeted for students interested in family studies.", + "title": "Families and Households - Lived Experiences", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module exposes students to indigenous political systems of the , commerce, material culture and Islam in the Malay world in the Early Modern period. This module examines a variety of approaches in the study of Malay pasts and the writing of Malay history by both indigenous and foreign scholars critically assessing these writings against wider developments in scholarship. This module decenters colonialism to reveal how the development of political culture, piety and commerce in the Malay world were results of pre-colonial inter-cultural borrowings during the period of early globalization through interactions with India, China and the Middle East. kerajaan", + "title": "Princes, Ports, Pomp, Piety and Pen in the Malay World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2215", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module students will have a first\u2010hand experience of doing intensive field studies research in in either Singapore or overseas in Malaysia, Indonesia, Southern Philippines or Southern Thailand. A range of research themes and foci pertaining to Malay Studies will be offered based on the expertise of the faculty member teaching the module including socio\u2010history, development, religious life and gender relations.", + "title": "Fieldwork in Studies of Malay Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Singapore\u2019s importance in the cosmopolitan circuits of the Malay World in the nineteenth and early twentieth centuries, its position in the Straits of Malacca region, and the older legacies of fourteenth-century Singapura have produced significant built legacies. This module brings students through the range of places, sites, and building forms that constitute the diverse stories of the Singapore Malays from the urban to the rural. It discusses the roles of heritage landscapes and built works in identity debates and the discourses surrounding their transformations and developments. It also examines what has disappeared and how are they are being remembered.", + "title": "Singapore\u2019s Malay Built Heritage: Legacies of Diversity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2217", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the cultural art forms and aesthetics of the Malay World and their discursive frameworks. Part 1 surveys different categories of the visual arts \u2013 from woodcarving, metalwork, textiles, and weaponry to gravestones and religious ornament. It introduces the literary and other sources on their meanings and histories of formation and production, and discusses the cultural encounters they embody in their forms and meanings. Parts 2-3 discuss the concepts of art historical analysis that are relevant to a critical rethinking of the older ethnographic and orientalist perspectives and emerging contemporary and Islamic art discourses on the Malay World.", + "title": "Malay-Islamic Cultural Encounters: Arts and Aesthetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines various historical networks that flow across the Malay world from the 11th to the 21st centuries. It introduces students to the evolution, characteristics, and impact of commercial, diasporic, political, religious, educational, and media networks on the lives of Malays and other communities in the region. The three themes that recur throughout the module are: how networks are formed and sustained; how they interact with one another; how insights from different disciplines can aid in a more holistic study of these networks.", + "title": "Networks and the Malay World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is about arts and artists in the Nusantara that refers to the archipelagic Malay \u2013 Indonesian world. Attention is drawn to the art making and distribution processes which are not only determined by artists but also involves other stakeholders. This includes critics, museum personnel, gallery owners, collectors, art consumers, interest groups as well as the state. The political, social, cultural and economic contexts in the Nusantara at different time periods will be considered to explain the kinds of artworks that emerge. Topics that will be covered include gender and race in the arts, art and activism, censorship and patronage.", + "title": "Arts and Artists in the Nusantara", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Sufism is considered a mystical orientation in Islam. It constitutes an early formative phase in the history of Islamic transmission in Southeast Asia, incorporating Arabic, Persian, Turkish and South Asian influences, among others. In this module the origins, features, concepts and manifestations of Sufism in the Malay-Indonesian world are studied through various sources, among which are Malay classical texts and manuscripts produced between the seventeenth to the nineteenth centuries. Sufi knowledges, personalities and practices in past and present contexts will also be drawn from contemporary historical, literary and social studies around the subject.", + "title": "Sufism in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS2221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Who are the Malays of Singapore? How are they perceived and how do they perceive themselves? These and other related questions will be raised in this module. To answer these questions we will discuss the Malays in the socio-economic and political context they live in. The module is divided into five topics: Topic 1 looks at the socio-history of the Malays. Topic 2 introduces approaches in studying Malays of Singapore. Topics 3, 4 and 5 look at different dimensions of their life in Singapore i.e. as Singapore citizens, as part of the Malay \"community\" and as members of \"Malay families\".", + "title": "Being Malays in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3209", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0305", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module studies the development of modern Indonesian literature, highlighting major themes and thought. The achievement of modern Indonesian literature in expressing the aspirations of the Indonesians would be evaluated. The dynamics between art, literature and society would be inquired into in the light of literary and cultural theories. The module aims not only at an understanding and appreciation of modern Indonesian literature but also the historical, cultural and intellectual experience of Indonesia as an evolving nation as reflected in literature. The module is beneficial for both students of Southeast Asian literature as well as its society and culture.", + "title": "Modern Indonesian Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the nature and origins of the current day Malay political behaviour as observed. It will focus on the Malay concepts regarding government (kerajaan); consensus building (musyawarah) authority/power; dissent; patronage; territoriality, loyalty; and leadership. Close attention will be given to the role of the traditional and modern political elites in the shaping of Malay political culture. Relevant theoretical perspectives will also be provided. This module is targeted for FASS students.", + "title": "Political Culture of the Malays", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module explores the various forms which can be identified in classical Malay literature, such as folklore, historical romances, the legal digests as well the traditional verses of pantuns and the syair. The relationship between these art forms and society would be examined, with the aim of constructing the culture and worldview of traditional Malay society. The module also attempts at evaluation of the relevance and significance of classical Malay literature for contemporary Malay society and culture. The module applies the multidisciplinary approach to compliment relevant theories on literature and art.", + "title": "Text and Ideology in the Malay World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to expose students to the thinking of Malay elite on Malay development. In discussing the ideas of the elite, various ideologies and styles of thought would be identified and examined as to their influence on development philosophy. A critique of the thinking of the Malay elite would be attempted. The conditioning of feudalism, colonialism, Islam, nationalism and capitalism on development thinking would be critically analysed. The module is designed for students interested in issues of Malay development and intellectual history.", + "title": "Ideology & Ideas on Malay Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Tradition and modernisation are two concepts in need of deeper examination given their resonance in popular and scholarly discourse. This module will critically approach tradition as encompassing the plural \u201cAsian traditions\u201d and the notion of modernisation or modernity, as they relate to transformational experiences of nation-making, identity-formation and self and communal actualization. Debates and critiques on Asian traditions and modernity are examined in relation to nation, gender, intellectualism, spirituality, heritage, visual arts, architecture and aesthetics in the Malay world in comparison to other Asian and global experiences.", + "title": "Asian Traditions and Modernisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses the issue and significance of modernization, modernity and post modernity within the Malay world. It adopts a comparative and multi-disciplinary approach,\n\nusing the tools of sociology, cultural studies and politics to critically understand and revisit the notions of modernisation in the Malay experience and in the global context. The aim is to understand the concept, nature, dynamics and the impact of modernization and its antecedents on phenomena such as economic development, social movements, intellectual discourse, political mobilization, religious institutions, art, architecture and popular culture in Malay society.", + "title": "Malays and Modernization", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies gender relations and the social construction of femininities and masculinities within the Malay-Muslim world. Theories and concepts analysing gender roles and representations in the spheres of family, work, arts, media, social movements and religious texts and laws will be examined. An understanding and appreciation of debates and contestations around questions of gender agency, empowerment or disempowerment as they relate to Islam forms one of the main thrusts of the module.", + "title": "Gender and Islam", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The development of capitalism may affect cultural communities differently, hence the necessity for studying the political economy of Malay society from pre-colonial to contemporary periods. How and why do ethno-religious identities such as being Malay and Muslim shape distinct policies and practices of economics, business and entrepreneurship? Case studies examined will include forms of ethnic-oriented economic affirmative action policy, halal and Islamic financial services industry and the corporatisation of certain Syariah activities.", + "title": "Political Economy, Ethnicity, Religion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with critical understanding and awareness of the religious orientations and institutions of the Malays, the major factors that influence these, their significance, potentials and challenges in the context of the demands\nof technological change and modernisation. It also seeks to develop perspectives on the study of Malay religious life. Major topics examined include theoretical insights\ninto the sociology of religion, socio\u2010historical factors and their impact on Malay religious orientations.", + "title": "The Religious Life of the Malays", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies. All internships are vetted and approved by the Department of Malay Studies, have relevance to the major in Malay Studies, involve the application of subject knowledge and theory in reflection upon the work, and are assessed.\n\nAvailable credited internships will be advertised at the beginning of each semester. In exceptional cases, internships proposed by students may be approved by the department.", + "title": "Malay Studies Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3550", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student\u2019s Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Malay Studies department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Malay Studies department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3551", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS3551R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The theoretical underpinnings of each phase of the\n\ndevelopment of Malay studies would be examined\n\nbased on representative works. The contribution and\n\npitfalls of each phase of its development would be\n\ncritically appraised. A general and critical evaluation\n\nof the present state of Malay Studies as an area\n\nstudy would be undertaken. The significance and\n\nrelevance of Malay studies in relation to the social\n\nsciences and the other humanities would be\n\ndiscussed.", + "title": "Theory and Practice in Malay Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module looks in depth at the nature and\n\nsignificance of various social changes in Malay\n\nsociety 1900-1950. Some topics to be covered\n\nwould be changes in education, economic life,\n\nurbanization, ethnic relations, westernization,\n\nreligious life and administration of Islam, the\n\nchanging roles of Malay rulers and traditional Malay\n\nelite, the development of Malay nationalism, the\n\ndevelopment of modern literature, the issue of\n\ntradition and change, the challenges of social\n\nreform. Module is meant for students interested in\n\nthe study of social change among the Malays, as\n\nwell as Southeast Asia in general.", + "title": "Social Change in the Malay World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the conditions of traditional\n\nMalay society and covers the following topics: The\n\nnature and function of the Malay ruling class, the\n\nsocial and political position of the subject class, the\n\nposition and function of Islam, the structure and\n\nnature of traditional administration, impact of the\n\nintroduction of Western rule on Malay\n\nadministration, the nature of traditional economy,\n\naspects of Malay education, traditional Malay\n\nrecreations. This module is meant for students\n\ninterested in Malay cultural history in particular and\n\nSoutheast Asian history in general.", + "title": "Traditional and Colonial Society in the Malay World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the emergence of a new social group in Malay history, namely the Malay middle class. In the past, the dominant Malay elite had always been associated with the hierarchy of traditional Malay society. With the introduction of Malay capitalism in the 70s under the New Economic Plan (NEP), there has been the emergence of the Malay middle class. This module looks at the background of its emergence, identifies its socio-historical characteristics, and evaluates its influence on society and nation in general. Insights on the Malay middle class can contribute to an understanding of Southeast Asian affairs.", + "title": "The Malay Middle Class", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module invites students to reflect on Malay and Indonesian films in their various genres and historical periods. The main themes, ideas and values reflected in films of the Malay world are analysed and understood against the social, political, and economic contexts of their times. Through a reflection on films which centrally revolve around tropes and motifs of the Malay world and Muslim societies, the module provides insights into the evolution and development of global trends such as modernization, Islamization, and pluralization.", + "title": "Reading the Malay-Indonesian Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses perspectives on Shariah and their implications on rights and well-being of Malays in modern nation states in Southeast Asia. Concepts such as neo-Orientalism, traditionalism, revivalism and reformism will be utilised to analyse discourse on Shariah based on sources that include articles, reports, fatwa, judgements and legislation. The overriding aim is to understand how modes of thought embody and condition the selection, conceptualisation and application of Syariah law in specific areas the region. Challenges posed to its compatibility with constitutional norms and human rights conventions as well as prospects for its adaptation to change will also be analysed.", + "title": "Syariah Law in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For the Honours Thesis, students are required to carry out a research under the supervision of a staff member from the Department. Topics will be chosen by students in consultation with and approved by the staff member. Students will learn how to do research based on primary and secondary data and write a thesis of 10,000 to 12,000 words. Honours Thesis is equivalent to three modules.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "MS4401", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows for student to define a topic and a list of readings under the guidance of an academic staff of the Department leading to a project work. Students are required to write a paper of 5,000 to 6,000 words. The Independent Study is equivalent to one module.", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4660", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to allow faculty members or visiting staff to teach specific topics in their areas of interest and expertise.", + "title": "Topics in Malay Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates the role of Islam in the contemporary Malay world in an historical and comparative manner. The focus is on contemporary Muslim movements while the historical background is discussed to provide the necessary context for the understanding of the origins of the current Muslim revival. The module also looks at the nature and function of Muslim reform in Malay society in the socio, political, economic and legal arenas. Comparative references to similar phenomena in other parts of the Muslim world are made. Empirical cases are discussed in the context of theoretical problems raised in the social scientific study of religion.", + "title": "Orientations in Muslim Resurgence Movements", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4880A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the encounters between Malay culture and globalization. Dimensions of these encounters include the dissolving of frontiers and divisions of Malay culture associated with global consumer citizenship, the active interpenetration and combination of cultural elements as a consequence of human flows and availability of information and, developments revolving around rejection or turning away from changes that have come out of global integration. Empirical cases drawn from the Malay world in the areas of media, internet, tourism, popular culture and music etc will be discussed towards understanding the factor of diversity and difference in the Malay cultural experience of", + "title": "Malays Encountering Globalization: Culture and Identity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4880B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to allow instructors to teach specific topics in their areas of interest and expertise. It enables students to pursue in-depth studies on particular topics in Malay art forms, which can include literature, film, theatre, dance, martial arts, fine arts, design and architecture. This module will compare art forms from various parts of the region, with a focus on Indonesia, Malaysia and Singapore. The module will study past and contemporary art forms while possible concepts such as identity, subjectivity, gender, and religion, will be used to navigate the meanings through these forms.", + "title": "Topics in Malay Art Forms", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MS4880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the relevance and applicability of selected major theories in the social sciences for Malay Studies. As far\nas possible the module aims at combining theoretical reflection with research materials on major aspects of Malay society and culture. The module encourages the exploration of creative methodology and theorising in Malay Studies research beyond mere exposition of social scientific theories. The module is highly\nrelevant for students interested in understanding the promises as well as the pitfalls of the social sciences in Southeast Asian research.", + "title": "Social Science and Malay Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0646", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the state of Malay Studies through critiques of existing works, aiming towards theoretical refinement, as well as the building up of research materials. The module aims towards placing Malay Studies on stronger foundation, both theoretically and substantively. It is also the objective to identify new areas of research that could be developed. The module is relevant to students interested in understanding the socio-cultural history of the Malays, as well\nas appreciating the state of the social sciences in Southeast Asia.", + "title": "Critiques in Malay Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A global classroom graduate module that examines contemporary issues and challenges confronting the Malays in the region and their social institutions under the impact of social change. Themes include approaches to the study of Islam, Muslim personal law, religious education, the impact of the network society on religion, commodification of religion, social mobility, public health, social problems and the role of the modernising elite. Themes will be reviewed periodically to capture changing discourse and trends. The physical/online module with a fieldtrip component is also open to FASS alumni (CET), honours MS/USP/University College students and those from partner universities.", + "title": "Critical Issues on Islam in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Malay Studies in\n\ndepth. The student should approach a lecturer to work out an agreed upon topic, readings and assignments for the module. A formal written agreement is to be drawn up, giving a\n\nclear account of the topic, number of contact hours, assignments, evaluation, and other relevant details. The Head\u2019s and/or Graduate Coordinator\u2019s approval is required. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "SOCIAL SCIENCE THEORIES AND MALAY STUDIES", + "title": "Social Science Theories and Malay Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS6101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "CRITIQUES IN MALAY STUDIES", + "title": "Critiques in Malay Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS6102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines Malay literature and art through the perspective of the sociology and history of ideas. Emphasis would be placed both on form and essence of Malay literature and art with the aim of understanding the world view which had given expression to them. The module investigates the relationship between literature and art as an expression of the cultural identity of the Malays, both from the point of view of aesthetics as well as cultural meanings. The module is relevant for students interested in cultural history and sociology of art in general.", + "title": "Literature and Art in Malay Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS6201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines the nature of Malay elite and intellectuals in Malay history and evaluates their influence or impact on Malay society. This would be done through recourse to major theoretical studies on elite and intellectuals and their roles in society. As elite and intellectuals represent the more influential elements in their society, the module would also inquire into the contemporary problems of leadership and the development of democracy in Malay society and culture.", + "title": "Elite and Intellectuals in Malay Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS6202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module proposes to study the role of Islam in influencing the response of the Malays to modernization and social change in general. In examining the dynamics between Islam and modernization, the module looks at both the doctrines of Islam, as well as the particular orientation of Islam that Malay society had evolved in history. The module aims not only at an understanding of how the challenge of modernization is being faced by the Malays but also seeks to understand and evaluate general theories on religion, modernization and social change through the social-historical experience of Malay society and culture.", + "title": "Religion and Modernisation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS6203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In approaching the study of Islam and its various dimensions in society, pertinent themes, theories and methods relevant for graduate research on religion will be explored. Subject themes will cover established and contested Islamic traditions throughout the history of Islamic transmission in the Malay-Indonesian world. Methods of study can include the use of various data sources and epistemologies in analysing Islam\u2019s cultural, political and social manifestations. Case studies drawn globally will provide the comparative contexts in the uses of theme, theory and method.", + "title": "Approaches to Studying Islam in Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS6205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Malay Studies in depth The student should approach a lecturer to work out an agreed upon topic, readings and assignments for the module. A formal written agreement is to be drawn up, giving a clear account of the topic, number of contact hours, assignments, evaluation, and other relevant details. The Head\u2019s and/or Graduate Coordinator\u2019s approval is required. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MS6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MS6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 6, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the basic knowledge of structures and properties of engineering materials. The topics covered include atomic bonding and condensed phases; crystal structures, crystallography and crystal imperfections; the thermodynamics of alloys, phase equilibrium and phase diagrams; thermally activated processes, diffusion, kinetics of phase transformation, non-equilibrium phases; mechanical properties and strengthening mechanisms, fracture of materials, corrosion and oxidation resistance, other properties. Working engineers and graduate students who have no former training in materials but wish to pursue further studies and R&D in engineering materials should attend this course.", + "title": "Structures And Properties Of Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MST5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Materials Characterisation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MST5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with\nwork attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MST5666", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Leadership is a learnable skill developed through experiencing, reflecting and\ninternalizing. Crafted specifically for students from engineering disciplines, in\nthis module, students will be provided with a foundational knowledge of\nleadership theories and principles as guiding tools as they find their own path\ntowards becoming leaders in engineering. Varied opportunities will then be\nprovided for students to use this knowledge to learn what it means to be an\nengineer\u2010leader including reflection on experience sharing from engineer-leaders who have made a difference, experiential workshops to sharpen communication and soft\u2010skills, as well as project work to start putting these skills to use.", + "title": "Experiencing Engineering Leadership", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students a foundation for analysing diverse elements of a complex problem as a coherent, interacting system. The major topics covered include comparison of reductionist to systems thinking, characteristics of systems thinking, frameworks and tools of Systems Thinking and Systems Engineering, applied in the context of Engineering and Technology Management.", + "title": "Systems Thinking and Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This experiential and case-based learning module will provide an innovation and entrepreneurial strategy framework for students who are interested to engage in innovation-based entrepreneurship. The module aims to provide an in-depth understanding of technological innovations, strategic choices confronting innovators interested in start-ups and commercialization, and a\nframework for the development and implementation of entrepreneurial ventures and business plans in dynamic environments. Major topics such as leveraging open innovation, selecting an appropriate market, innovation and IP strategy, as well as strategic learning and experimentation in entrepreneurial strategy will be covered.", + "title": "Innovation and Entrepreneurial Strategy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT4001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to help engineering students commercialize new products and services, which is key part of an engineer's career. Effective commercialization requires engineers to think about a product\u2019s value proposition, customers, method of value capture, scope of activities, and method of strategic control, all of which can be defined as a \u201cproduct\u2019s strategy.\u201d By providing good theory, examples, and cases, this module helps students understand these necessary aspects of commercialization and to the changes that are occurring in industry that facilitate commercialization. These changes include standards, vertical disintegration, open innovation, and open science.", + "title": "Technology Management Strategy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT4002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Companies live or die by their ability to successfully launch new products into the market place. The basic tenets are: know your market, know your customers and develop products that will delight your customers. The objective of this module is to acquaint students with the theory and practice of New Product Development and New Product Introduction (NPI) methods. The module\nexplores various NPI systems, frugal innovation, disruptive innovation and portfolio management skills. Students will gain insight into how to influence multi-disciplinary teams with engineering best practices and design thinking for NPI.", + "title": "Engineering Product Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT4003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to understand the management of intellectual property (IP) assets which have become increasingly more valuable than conventional physical assets in the knowledge economy. We will focus on how to use IP to defend the position of a firm, manage costs, create and capture value, synthesize opportunities and shape the future. The emphasis is on technology-based firms and the needs and strategies of owners of IP and complementary assets in the innovation ecosystem. We will study innovation and commercialization strategies to maximize IP values and improve the decision-making process for innovation, R&D and corporate activities.", + "title": "Intellectual Property Management & Innovation Strategy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The first part of this module will introduce the 3rd-generation R&D practice which is used currently by successful industrial organizations. The strategic role of R&D in innovation, organization issues in R&D and the evaluation of returns and risks will be presented. The second part of this module will introduce the emerging 4th-generation R&D practice which will augment the current practice in addressing news issues due to discontinuous innovation, increasing importance of tacit knowledge and the need to embrace knowledge management in R&D.", + "title": "Management of Industrial R&D", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first part covers the fundamentals of creativity and includes topics on different ways of thinking, understanding and communications, methods for inventive thinking and problem solving (e.g., TRIZ). The second part studies innovation and how creativity can lead to innovation. Examples, case studies (e.g., \u201cbreakthroughs\u201d) and exercises are used throughout to demonstrate concepts in practice. The course aims to equip the students with knowledge and provide an avenue for students to practice concepts learned so as to enhance the students\u2019 creative thinking ability and thereby facilitate the student\u2019s ability to realize innovations.", + "title": "Creativity and Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first part covers fundamentals of User-Centred Engineering, various techniques and tools for obtaining Voice of Customers, Data analyses, Utilization of multi-source data, and application of these to create decision support tools for product Design and implementation of Product Development roadmaps. The second Part covers case studies in different product domains with relevant small projects to familiarize students with the various usability-engineering processes and reinforce classroom learning. The course aims to provide the students with knowledge of user-centred engineering principles and tools and equip them to manage and better leverage User-centred Engineering resources in product development.", + "title": "User-Centred Engineering & Product Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The fields of science and engineering have a direct correlation to the creation and protection of intellectual property (IP). This course intends to offer the engineering and science students at graduate-level, but senior undergraduates can be considered, an introduction of Intellectual Property Law, emphasizing more on patent related subjects. It aims to equip the students with a practical IP knowledge which leads to a handy resource for them to use in the professional career. The main topics are: (i) the Overview of IP Law, (ii) Technological Aspects of Patent Law and Practice, and (iii) Business Aspect of IP Management.", + "title": "IP Law For Engineers and Scientists", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The development of new products and services is value creation. Success relies on obtaining critical information, whether you are with a start-up or from a large company. This module focuses on important aspects of market and customer engagement, value creation, design thinking and innovative business models. The goal is to create a holistic view of a new business opportunity and then credibly pitch that information to gain support and financing for your idea. It's about managing risk and making informed decisions to create a sustainable, profitable business while creating value for yourself and your customers.", + "title": "Value Creation Through Product Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the key processes in new product development from opportunity identification to product launch. Relevant tools and techniques such as user observation, survey and prototyping, will be discussed.", + "title": "New Product Development Process", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5006A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the links between new product development and the corporate strategy of a company. The relationships between the different types of organizational structure and new product development strategy will also be discussed. Other topics that will be covered include platform and derivative product development and also product technology roadmap.", + "title": "New Product Development and Corporate Strategy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5006B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to help students develop a strong conceptual foundation for managing technological innovation. It introduces concepts and frameworks for how firms can create, commercialize and capture value from technology-based products and services. The course is designed for business managers and engineers who are involved in the research and development, marketing, acquisitions, and strategic assessments of new technologies. Topics covered include (i) the evolution of industries; (ii) technological discontinuities and vertical disintegration; (iii) network effects and standards; (iv) profiting from innovation and intellectual property (IP); (v) R&D management; and (vi) managing knowledge and learning.", + "title": "Management of Technological Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to help students develop conceptual foundation for managing technological innovation. It introduces concepts and frameworks for analysing how firms can create, commercialize and capture value from technology-based products and services. The focus is on management rather than the specific details of any particular technology.", + "title": "Types and Patterns of Technological Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5007A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to help students develop a strong foundation pertaining to technology and innovation strategies. The module will cover various strategies that technology managers can adopt in introducing innovations to the marketplace and maximizing economic rents from them. The focus is on management rather than the specific details of any particular technology.", + "title": "Technological Innovation Strategies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5007B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Entrepreneurship is to the company what speed is to the athlete. In the quest for sustainable competitive advantage, companies are finding that lower costs, higher quality and better customer service are not enough - they must be faster, more flexible, more aggressive and more innovative. Most managers acknowledge this, but few seem to understand how to make it happen. Building on management and entrepreneurship theories and real-life cases, this course will provide a deep understanding the entrepreneurial orientation of a firm and how firms can build entrepreneurial capabilities, both through internal corporate venturing and collaborative corporate venturing.", + "title": "Internal and Collaborative Corporate Entrepreneurship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5008", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Entrepreneurship is to the company what speed is to the athlete. In the quest for sustainable competitive advantage, companies are finding that lower costs, higher quality and better customer service are not enough - they must be faster, more flexible, more aggressive and more innovative. Most managers acknowledge this, but few seem to understand how to make it happen.\n\nThe focus of this course is on will be on understanding the firm and its environment and how firms can build entrepreneurial capabilities.", + "title": "Corporate Venture Creation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5008A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Companies need to be agile and to continually innovate. In the quest for sustainable competitive advantage, companies are finding that lower costs, higher quality and better customer service are not enough - they must be faster, more flexible, more aggressive and more innovative. But companies do not need to do it alone. They can collaborate with other firms and organizations to develop its corporate entrepreneurship capabilities.\n\nThe focus of this course is on will be on understanding the firm and how it can build entrepreneurial capabilities through collaboration.", + "title": "Collaborative Corporate Entrepreneurship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5008B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to help students understand how technological change creates opportunities for new products and services. Students learn about how improvements in performance and cost, including the drivers of them, cause new technologies to become economically feasible over time. This is done in general and for many specific technologies. This enables students to better understand the timing of economic feasibility and thus the opportunities that are currently emerging for specific technologies.", + "title": "Analyzing Hi-Technology Opportunities", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Successful R&D engineers and managers should have the foresight to anticipate and drive technological changes and convert them into strategic assets to organizations. This module will equip students with technology forecasting, intelligence and foresighting skills, make use of the foresight to generate strategic intellectual assets and realize value from them to succeed in competitive environment. Effective collection and transformation of information into intelligence requires awareness of enterprise niches and alternatives, as well as the search and analytical skills of data and information. The module will emphasize these skills and impart a thorough understanding business & technology related strategic frameworks.", + "title": "Technology Forecasting, Intelligence & Foresighting", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5010", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A very important quality of successful R&D engineers and managers is to anticipate and drive technological changes and convert them into strategic assets to organizations. This module aims to equip students with technology forecasting and intelligence skills, and make use of the intelligence to create commercially successful innovations.", + "title": "Technology Intelligence Process and Methods", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5010A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with strategic insights and analytical skills of technology, intellectual property (IP) and business competition. Effective collection and transformation of information into competitive intelligence requires a comprehensive awareness of enterprise niches and alternatives. It needs a thorough understanding of the strategic frameworks and decisions with regard to business, technology and IP. This module covers main topics such as : (1) In-house IP management and strategy (2) Hands-on training of information search and intelligence analysis and (3) IP roadmapping to support technological roadmap.", + "title": "Technology Intelligence with IP Strategies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5010B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to prepare students to be future leaders in technology companies and technopreneurs in today\u2019s digital economy. It is an interdisciplinary introduction to business finance with students learning how to read financial statements and use basic finance tools and concepts, which are fundamental to understand various business issues such as business models and strategies, ecosystem, fund raising strategy, borrowings, IPO, valuations, stock options, etc. Complementary skills such as teamwork, problems identification and solving, information gathering and data analysis will also be cultivated through group projects and current case studies on international and Singaporean technology companies.", + "title": "Business Finance in the Technology Industry", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5011", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the digital era, in addition to concepts of marketing, students should also get exposed to latest tools and techniques that successful firms use to market technology products. It should be supported by numbers. Therefore, the course will additionally emphasize on 1. Which tools and techniques work better with the target segment? What are the upcoming trends? 2. How are these decisions made anchoring back to numbers?", + "title": "Marketing of Technology Products in the Digital Era", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5012", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to help students to analyze issues concerning global innovation management of multinational firms and to learn how to apply what they learn to real cases in high technology industries. After introducing key concepts and frameworks in the fields regarding global innovation management (such as international management, national innovation systems, international product\ndevelopment), the professor will use these to explain the management of multinational firms, which straddle multiple countries and regions and arbitrage different national and regional environments for innovation in order to compete internationally. Students, both individually and in teams, will use this information to\nchoose and analyze specific firms and countries (regions) to understand better the issues related to the subjects taught in this course, concerning issues.", + "title": "Global Innovation Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The systems approach to technology and innovation management modules provides the student with a foundation for understanding and managing technology and innovation. The emphasis is on \"system thinking\" and problem solving as applied to technology and innovation management.", + "title": "Systems Approach to Tech and Innov Mgt", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this subject is to train professionals for the technology sector who may be involved in technology and intellectual property management areas (R&D project management, licensing management, etc) to understand the business and financial considerations that go into IP deals and IP strategies, to articulate\nthese at higher management or Board-levels, and to apply their knowledge in development of long-term strategies for the management of IP portfolios.", + "title": "The Financial and Business Aspects of Intellectual Property (IP)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5015", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to help students create business models for high-technology products and services. A successful business model includes consistency among choice of customers, value proposition, scope of activities, method of value capture, and method of strategic control.\nThis course uses examples from a broad set of industries and detailed cases to help students understand the elements of a business model and the importance of consistency among them. It uses group projects, individual papers, and class participation (particularly in cases) to assess student performance.", + "title": "Business Models for Hi-Tech Products", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5016", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the core philosophy of Design Thinking, a methodology which integrates design, technology and business research to facilitate service and product innovation as well as strategic planning and\ndecision making for future scenarios.\n\nStudents are expected to develop three necessary skills: Ideation/observational abilities \u2013 \u201clistening with their eyes\u201d; prototyping - \u201cthinking with their hands\u201d; and innovate collaboratively in an interdisciplinary work environment.", + "title": "Integrative Design Thinking Workshop", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The theme of this course is how open innovation and open\nbusiness models can generate competitive strategies for\nboth small and large companies. We look at both the\nstrategy making as well as at the strategy implementation.\nThe course draws on recent research and thinking in\n(open) innovation management and books/materials by\nleading experts. The course will help students to integrate\ntheir knowledge about strategic management,\nentrepreneurship, and innovation management and it\nprovides new ways of thinking that will lead to the creation\nof highly differentiated strategies and business models.\nMore specifically, the course focuses on open innovation\nto particular cases in large companies, the strength and\nweaknesses of open innovation strategies, and the\norganization and implementation of open innovation\npractices.\nThe course also extends beyond open innovation and\nexplores more complex systems such as innovation\necosystems where different types of partners are\ncollaborating to jointly establish a new product or solve a\nsocietal problem (e.g. in healthcare or pollution control).\nStudents are requested to apply the knowledge examined\nin the course to new technologies or scientific disciplines.\nIn particular, group assignments are developed in areas\nsuch as healthcare, sustainability and cleantech\ntechnologies, and big data.", + "title": "Managing and Organizing Open Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The successful management of the human aspects of technological innovation has been increasingly recognised as an essential element for project success. Building on engineering, psychology and management literatures, the aim of this module is to provide students with a theoretical understanding and a foundation for developing skills related to motivations, team work, role transition, conflict management and productivity management. As such, this module is a valuable complement to traditional engineering modules that focus much on the technical developments.", + "title": "Managing the Human elements of Technology Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5020", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Saturday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To succeed in today\u2019s technological world characterised by short-life-cycles and disruptions, there is a need for engineers to understand human issues and behaviour commonly found in modern technology\u2013centric organisations. Integrating engineering, psychology and management, this module will equip students with the fundamental concepts in aspects such as team work, communication, motivations and conflict management. These knowledge will complement knowledge in innovation theories, product development and project management, enabling students to have a better and more complete understanding on initiating and implementing innovation in organisations.", + "title": "Human Aspects of Technological Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5020A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Engineers often have to deal with problems that go beyond their technical domains. How can one solve problems that we are not trained in? What are the guiding principles for good problem-solving? This module introduces students to the craft and science of problem-solving and creativity. We will examine the similarities and differences between established problem-solving methodologies such as design thinking, business process re-engineering (BPR) and TQM\u2019s DMAIC. Participants will learn the importance of comprehensiveness, creativity, and convergence in problem-solving, By learning the language and terminologies common in problem-solving, participants will learn the principles and skills of creative problem-solving.", + "title": "Creativity and Problem-Solving Skills", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5021", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR1-2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to digital technologies such as platforms, big data and predictive analytics, machine learning, block chain, and internet of things. Digital corporations (e.g. Google, Amazon, Facebook, Alibaba, Uber, Netflix, Bitcoin\u2026) are changing the status quo and revolutionizing business as they have few products and many services, and they connect people to one another. This module introduces students to digital strategies and prepares them to think of innovation in a digital context, and export this to their organizations to engage in disruptive transformation.", + "title": "Digital Disruption and Technology Strategy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5022", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This experiential and case-based learning module will provide an entrepreneurial strategy framework for students interested to engage in technology-based entrepreneurship. The module aims to provide an in-depth understanding of technological innovations, focusing on the strategic choices confronting innovators interested in start-ups and venture formation. Through the course, students will build a strategy framework for the development and implementation of entrepreneurial and business ventures based on technological innovations in dynamic environments. Topics to be covered include choosing an appropriate technology, market, competition and entrepreneurial identity as well as formulating a sound innovation and entrepreneurial strategy through learning and experimentation.", + "title": "Technology-Based Entrepreneurial Strategy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5023", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "80% of the technical information is found only in patent. Patent database provides a valuable source of information to guide business decisions. By performing various types of patent analytics throughout the innovation cycle, companies can be guided to benchmark, design around and identify collaboration and commercialization opportunities. Desirably, also to save costs in building up its IP portfolio. The module aims to equip the students with essential IP knowledge to allow the innovation managers to make informed decision to mitigate IP risks and maximize the value of innovation through patent analytics.", + "title": "Maximising Innovation Value through Patent Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5024", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Intellectual property (IP) management, together with technology innovation and entrepreneurship culture are key pillars to support innovation in chemicals, materials and biotechnology businesses. This module covers the essentials of: (i) IP Management, covering landscape, commercialization, technology, economic, and business aspects, including value maximization strategies; (ii) Patent Analytics, covering patent database searches, analysis, and essential patenting knowledge in chemicals, materials and biotechnology domains; (iii) New Product Development, covering new product introduction methods and systems, including market analysis, design and development, sustainability, and product launch; (iv) Technology Innovation and Technology-based Entrepreneurship, covering principles, technology forecasting, R&D management, and case studies.", + "title": "Intellectual Property & Entrepreneurship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students an excellent opportunity to bring together the theory and practice of technology and innovation management. An important feature of innovation is to meet the challenges that arise in a business as they exist at the time. The students will work on a project from real business.", + "title": "Experiential Learning Applied Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5026", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Saturday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides engineering research students with\nwork attachment experience in a company.", + "title": "Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MT5666", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this four-month module, students will be placed in a Singapore-based organization working on core and emerging topics related to Management of Technology (e.g. new product development, technology intelligence and forecasting, product technology roadmapping, technology strategy, intellectual property management and business models). In addition, students will also be exposed to other industry practices related to technology management. Students will be jointly supervised by a team comprising of NUS academic staff and the company\u2019s appointed manager. Assessments will be done periodically, leading to a project report and presentation at the end of the attachment.", + "title": "Technology Management Internship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MT5766", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this six-month module, students will be placed in a Singapore-based organization working on core and emerging topics related to Management of Technology (e.g. new product development, technology intelligence and forecasting, product technology roadmapping, technology strategy, intellectual property management and business models). In addition, students will also be exposed to other industry practices related to technology management. Students will be jointly supervised by a team comprising of NUS academic staff and the company\u2019s appointed manager.\n\nAssessments will be done periodically, leading to a project report and presentation at the end of the attachment.", + "title": "Industrial Project and Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "MT5866", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The topics for the module may be revised each time it is offered. In general, the topics will be in the area of Management of Technology, with a focus or bias on more recent developments in this area and/or topics that are specialized in nature. Example topics include \u201cTechno- Economics\u201d and different types of innovation.\nFor AY09/10, the topic to be covered is \u201cTechno-Economic Systems\u201d.", + "title": "Topics in Management of Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The topics for the module may be revised each time it is offered. In general, the topics will be in the area of Management of Technology, with a focus or bias on more recent developments in this area and/or topics that are specialized in nature. Example topics include \u201cTechno- Economics\u201d and different types of innovation.\nFor AY09/10, the topic to be covered is \u201cTechno-Economic Systems\u201d.", + "title": "Topics in Management of Technology - Techno-Economics Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The topics for the module may be revised each time it is offered. In general, the topics will be in the area of Management of Technology, with a focus or bias on more recent developments in this area and/or topics that are specialized in nature. Example topics include \u201cTechno- Economics\u201d and different types of innovation.", + "title": "Topics in Management of Technology - Institutional Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the theory of Disruptive Technologies, the most significant advance in high-tech business strategy in the last few decades. Value Innovation builds on this foundation with a set of frameworks to create commercial value from emerging technologies.", + "title": "Topics in MOT - Disruptive Technologies and Value Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves independent research work by students on a relevant topic in MOT. The aim is to promote self-study, critical thinking, independent research and initiative on the student. The student will learn how to plan and implement a research project.", + "title": "Mot Research Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MT5900", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Management Practicum", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5901", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will either write a business plan based on the proposed commercialization of a product invention by one of science / engineering R&D groups in NUS, Research Institute or company, or a practical consulting report based on an actual study of a technology management issue in a company. The students may work in a small group of not more than 3. Students from the NUS MBA, MSc (MOT) and PhD research programmes are encouraged to form such interdisciplinary groups, Supervisors from Faculty of Engineering and Business School will be appointed accordingly.", + "title": "Management Extended Practicum", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5902", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students taking this module will conduct an in-depth analysis of a contemporary technological innovation management problem, preferably those that provided by companies, using theories and concepts in the field of technological innovation management.\n\nSupervised by academic and company experts, the students will perform the relevant literature review, collect and analyze primary data (if applicable), and propose solutions to the problem. In doing so, the students will also acquire problem-solving and management consulting skills, other than the ability to apply and integrate relevant technological innovation management theories into a realworld problem.", + "title": "Technological Innovation Management Practicum", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MT5903", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "LaunchPad is a unique action learning project that assembles cross-disciplinary teams of graduate and Ph.D. students from the Faculty of Engineering & School of Business. Each team will work with a selected technology developed at NUS that has a promise to generate a large market impact. The students will learn how to actually start a high-tech company based on a particular technology. This course is NOT about how to write a business plan or create a presentation for VCs. It\u2019s about taking action - talking to customers, partners, competitors in search for the right market and the right business model that can leverage the uniqueness of a technology. It\u2019s about\nexperiencing the typical creative start-up process that is often full of uncertainty to turn a new technology into a great company.", + "title": "LaunchPad: Experiential Entrepreneurship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MT5910", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an action learning module on venture capital and technology venture funding. It adopts a systems engineering approach in building technology company from inception, to acceleration and wealth creation. It covers the essentials of technology-focused venture capital from investment evaluation, to due diligence and realisation of investment return. The module will equip the students with fund raising know-how through experiential learning activities and networking with venture capitalists. Project teams will be guided through the development of a strategy for fund raising, ways of engaging investors, responding effectively to due-diligence, drafting and negotiating term sheets and closing the financing round.", + "title": "Venture Capital Funding for TechVenture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5911", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Frugal Innovation is one which avoids over-engineering by adopting a \u201cgood-enough\u201d technology approach to meet the needs for an identified market constrained in different ways such as requiring reducing cost or address unique usability or societal considerations. This module provides a unique action-learning experience that assembles cross-disciplinary teams to work on identifying technological solutions for specific pre-selected real problems in the emerging markets and from industry. The intent is to create minimum viable organisations or propose and demonstrate solutions for enterprises. Students learn to lead innovation which involves creating more value with less resources.", + "title": "Frugal Innovation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5912", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-03-32", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "TechLaunch is a unique experiential module in which students develop skills in identifying and capturing value from technological innovation. Students, working in cross-disciplinary teams, are assigned patented technology from NUS R&D, A*STAR, or local enterprises and will learn to validate a market application & business plan through primary research ensuring that it satisfies the criteria of customer desirability, technology feasibility and business viability. They will learn how to differentiate and validate a business idea from a business opportunity. They will experience the typical creative and unstructured start-up process that will challenge and develop their innovation and leadership skills.", + "title": "TechLaunch - Experiential Entrepreneurship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5913", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-03-32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-03-32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Enterprises need to keep innovating to stay competitive - this can be through new applications for existing technologies, or through the discovery and realization of new products/services for new markets. The process of identifying and qualifying opportunities requires an understanding of the business in terms of focus & constraints within, as well as the external market forces to result in value creation. This module will introduce students to the process of value creation - finding a new\nrelevant market for existing technologies or company competency \u2013 in a corporate setting. The method of teaching follows Experiential Learning as student teams will experience the innovation process through close interaction with existing enterprises that are providing real-life problem statements. Techniques/frameworks/concepts for market validation, Business Model Innovation and technology/product commercialization will be introduced and discussed during the course.", + "title": "Enterprise Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5920", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-03-32", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E2-03-32", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the questions that CEOs of companies and serial entrepreneurs always ponder: \u201cWhere is the next big opportunity?\u201d, \u201cWhere should we look?\u201d, \u201cHow do we leverage our existing knowledge?\u201d Market Innovation introduces a rarely taught, analytical framework for systematic innovation - identifying and screening unmet market opportunities. It is an experiential module where students apply this framework to identify and screen opportunities in pre-selected markets. The objective of the course is to teach students how to systematically identify gaps in the selected market and match them with existing technical capabilities to recognize opportunities for economic or social innovation.", + "title": "Market Gaps - A Search for Innovation Opportunities", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT5921", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this one-semester module, students will be placed in a\ncompany abroad working on selected topics which are\nimportant to engineering and technology management. The\nstudents will be jointly supervised by a team comprising\nNUS academic staff, the company\u2019s appointed manager,\nand an academic staff from the overseas partner\nuniversity.\nAssessments will be done periodically (every 2 months),\nleading to a project report and presentation at the end of\nthe attachment.", + "title": "Overseas Industrial Project and Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "MT5966", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "MT5999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course surveys theory and research on innovation and technology management. This includes models of technological change, technological discontinuities, vertical integration versus disintegration, organizational design, competencies/capabilities, and management of R&D. Through readings, papers and discussions, students will know about conceptual and methodological issues, how innovations are developed over time, and the processes leading to successful/unsuccessful development, adoption and implementation of innovations.", + "title": "Research in Tech & Innovation Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MT6001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Doctoral Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "MT6999", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamentals of the maritime industry and their role in global economies. Topics covered include ports and their roles in the economy and shipping, the business of shipping and its role in maritime logistics, the maritime services eco-system and the role of marine engineering. Topics in fundamental statistics will also be included such as descriptive statistics, basic concepts of probability, sampling distribution, regression models, hypothesis testing and statistical estimation.", + "title": "Maritime Industry Fundamentals", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MTM5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Lectures --- Ports are the gateways of goods for export and import. They are looking for ways to enhance efficiency and competitiveness --- containerization, key port processes, operation strategies, and port connectivity.\n\nSeminars --- academics and practitioners will give seminars on emerging technology, port digitalization, ICT innovations with the highest impact on port.\n\nThe course coordinator will decide on the proporation of lectures and seminars.", + "title": "Port Logistics and Supply Chain", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MTM5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of IE5005 where knowledge learnt about data analytics is applied to tackle maritime-related problems. Students are expected to apply problem solving methodologies by analysing real-world data, define the objectives and scope of the problems, and then design, develop and implement systems. CMS will work with maritime related companies for real world data sets.", + "title": "Maritime Data Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MTM5004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 12, + 13 + ], + "venue": "E1A-05-19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT426", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop in students a solid competency in intermodal freight transport and logistics. Students learn to identify roles of various transport modes together with their importance in logistics. Topics covered include practical aspects (sea transport, road, rail, inland waterways etc.), geography of intermodal transport, policy and planning, and challenges. Frameworks and tools imparted in the course allow The course syllabus will also emphasize on how the system works, to provide students with a number of for analysis of main problems.", + "title": "Intermodal Freight Transport and Logistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MTM5005", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This practicum module is a 15-week long internship practicum in a maritime-related company which aims to provide students with the opportunity to integrate knowledge and theory on maritime technology and management acquired during the programme into practical application and skill development in a professional setting. Students will work in collaboration with other maritime professionals to solve existing company and maritime industry problems.", + "title": "Maritime Industrial Attachment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "MTM5101", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module (3 to a team) aims to provide students with the opportunity to integrate knowledge and theory on maritime technology and management acquired during the programme. Students will work on martime related issues/problems. There will be two mentors (a faculty member and another from the industry). Examples of project topics are martime safety and security, green shipping and logistics, and impact of ICT on maritime operations, port efficiency and effectiveness.", + "title": "Maritime Team Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "MTM5101P", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers instruction in music composition for\nstudents enrolled in the BMUS program in music\ncomposition or appropriate related majors. Its main\ncomponent is a weekly one-hour consultation with a major\nstudy teacher. Additionally, students attend weekly\ncomposition seminars and other events related to\ncontemporary music study. Students are required to\ncompose a minimum of 8 minutes of music and submit a\nportfolio of works at the end of the semester for juried\nevaluation. In consultation with their instructor, students\ndefine their composition projects in terms of form and\ninstrumentation.", + "title": "Composition Major Study 1A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers instruction in music composition for\nstudents enrolled in the BMUS program in music\ncomposition or appropriate related majors. Its main\ncomponent is a weekly one-hour consultation with a major\nstudy teacher. Students attend weekly composition\nseminars and other events related to contemporary music\nstudy, and receive training in tonal aural skills. Students\nare required to compose a minimum of 10 minutes of\nmusic and submit a portfolio of works at the end of the\nsemester for juried evaluation. In consultation with their\ninstructor, students define their composition projects in\nterms of form and instrumentation.", + "title": "Composition Major Study 1B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA1102", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Provides comprehensive orchestral training and performance experience exposing students to music of the 17th through 21st centuries for chamber orchestra. Each year the Conservatory Orchestra will perform a cross-section of the standard orchestral repertoire, supplemented by new works and lesser-known compositions. Seating assignments in the orchestra are rotated as much as possible. Placement is by audition.", + "title": "Large Ensembles 1A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "MUA1107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Provides comprehensive orchestral training and performance experience exposing students to music of the 17th through 21st centuries for chamber orchestra. Each year the Conservatory Orchestra will perform a cross-section of the standard orchestral repertoire, supplemented by new works and lesser-known compositions. Seating assignments in the orchestra are rotated as much as possible. Placement is by audition.", + "title": "Large Ensembles 1B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "MUA1108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The study and performance of selected works from the\nclassical string quartet repertory (by Haydn, Mozart,\nBeethoven and/or Schubert). Students will work in\nassigned groups and be assessed on their weekly\nprogress as well as their active participation in the studio\nclass, which will provide an overview of the repertory as\nwell as dimensions of ensemble playing specific to string\nplayers. Students are expected to participate in at least\none public performance and final examination on one of\nthe prepared movements.", + "title": "Foundations for String Chamber Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1109", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides first year piano students with\nan introduction to the study and performance of piano\nensemble repertoire, with specific focus on\ncompositions written for one piano four hands (piano\nduet). Students will receive weekly coaching in the\nclassroom, participate in studio class performances\nand prepare for a final, public class recital.", + "title": "Piano Ensemble 1A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1111", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides first year piano students with\nan introduction to the study and performance of piano\nensemble repertoire, with specific focus on\ncompositions written for two pianos (piano duo).\nStudents will receive weekly coaching in the\nclassroom, participate in studio class performances\nand prepare for the final, public class recital.", + "title": "Piano Ensemble 1B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1112", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER3", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides first-year piano students with an introduction to vocal accompaniment, equipping students with knowledge and skills essential for working professionally with singers. Students will receive coaching on various selected works and attend classes which provide a general overview and delve into the common issues of vocal accompaniment; as well as participate in public performances and masterclasses. In addition, students will also learn various sight-reading techniques in order to achieve basic proficiency in playing at sight.", + "title": "Foundations of Vocal Accompaniment / Sight-Reading", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1115", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER3", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides first-year piano students with an introduction to instrumental accompaniment, equipping students with knowledge and skills essential for working professionally with instrumentalists. Students will receive coaching on various selected works, as well as participate in classes which will provide a general overview and delve into the common issues of instrumental accompaniment.", + "title": "Foundations of Instrumental Accompaniment", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1116", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "These recitals offer student performances covering all historical periods and a variety of genre. Attendance is compulsory for all students throughout the course of the undergraduate programme. Students need to maintain a 80% attendance rate in order to receive a S (Satisfactory) designation.", + "title": "Noon Recital Series 1A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "MUA1153", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "These recitals offer student performances covering all historical periods and a variety of genre. Attendance is compulsory for all students throughout the course of the undergraduate programme. Students need to maintain a 80% attendance rate in order to receive a S (Satisfactory) designation.", + "title": "Noon Recital Series 1B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "MUA1154", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the practical study of solfege as\ntaught in many conservatories around the world.\nThe module caters to those students who have little or no\nbackground in solfege but those with some\nsolfege background may also register for it. The texts\nused are classics: George Dandelot\u2019s \u201cManuel\nPractique\u201d, Dannhauser\u2019s sight-singing books and\nPasquale Bona\u2019s \u201cRhythmical Articulation.\u201d\nStudents will be learning the Fixed Do solfege system.\nFour of the seven clefs used in music reading\nand transposition will also be covered. These are the\nTreble, Bass, Alto and Tenor clefs.", + "title": "Solfege 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1157", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module continues the practical study of solfege covered in MUA 1123. The class will again be exposed to many sight-reading opportunities from single line melodies to orchestral scores. Atonal sight-singing will also be covered. The texts used are George Dandelot\u2019s \u201cManuel Practique\u201d, Dannhauser\u2019s sight-singing books, Pasquale Bona\u2019s \u201cRhythmical Articulation\u201d, as well as excerpts from Lars Edlund\u2019s \u201cModus Novus.\u201d The final three of seven clefs not covered in MUA 1123 will also be studied. These are the Soprano, Mezzo-Soprano and Baritone clefs.", + "title": "Solfege 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1158", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Focused study on an instrument forms the central pillar for\nthe BMus Majors in piano, string, brass, wind and\npercussion. For BMus instrumentalists, this is the first\nmodule in a sequence, serving also as the introductory\nmodule for access to instrumental studies, both for the\nYoung Artist Programme students and those NUS\nstudents deemed through audition to be eligible for access\nto instrumental study in the Conservatory. The module is\nalso a requirement for those students on the Music &\nSociety or Music, Collaboration & Production Majors,\nwhere instrumental performance is a key component of\ntheir identity.", + "title": "Foundational Studies on Principal Instrument", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA1161", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Focused study on an instrument forms the central pillar for\nthe BMus Majors in piano, strings, brass, winds and\npercussion. For BMus instrumentalists, this is the first\nperformance which is assessed formally as a contribution\nto the overall graduation requirement. The module\nfunctions effectively as the audition requirement for\ntransfer for the Young Artists to the BMus programme and\nfor those NUS students seeking to move into a second\nmajor focus in the instrument.", + "title": "Juried Performance Presentation", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA1162", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The first of two compulsory modules for first year students focusing on acquiring relevant knowledge and skills necessary for their self-development as a professional musician. This particular module focuses on the themes of Mind and Body, Performance Pathways, and Strategy and Arts Management.\n\nStudents set up and maintain reflective blogs, so as to apply reflective practice in music learning. Students also get a chance to engage with various current practitioners and professionals in music and related fields corresponding with the abovementioned themes.", + "title": "The Profession of Music 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1163", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Friday", + "lessonType": "Lecture", + "size": 33, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Friday", + "lessonType": "Lecture", + "size": 33, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces practical and creative uses of sound recording - covering microphone types, stereo recording, signal routing, basic signal processing, and MIDI mockup with virtual instruments.\n\nThe module takes a blended learning approach, with online materials preparing students for in-class activities. Assessment is project based.\n\nThe module is mandatory for all BMus students majoring in composition at the Yong Siew Toh Conservatory. For those students, it should be taken during the first semester of study.", + "title": "Recording as Creative Practice", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1164", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines the use of machines to create music in the last 100 years. It focuses on the topics of instrument creation, technological repurposing, electrification, synthesis techniques, sound processing, and computer-assisted composition. Important composers, inventors, and instruments are surveyed; and important repertoire that uses technology from this time period is introduced. Students learn strategies for analyzing electronic music so that they may participate in class discussions.", + "title": "Music and Machines", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1165", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers an introduction to programming of music and image within Max, a popular graphical programming environment for sound, music, and visual computing. Aside from general familiarity with the Max workflow, students learn computing basics such as iteration, list processing, working with data structures, data collection, and probability, and how these are applied to drawing, image manipulation, and sound playback.", + "title": "Introduction to Computing Media in Max", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1166", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The second of two compulsory modules for first year students focusing on acquiring relevant knowledge and skills necessary for their self-development as a professional musician. This particular module focuses on the themes of Personal Branding and Community Engagement.\n\nStudents continue to maintain reflective blogs, so as to apply reflective practice in music learning. These reflective blogs are further developed into professional websites in this module.\n\nStudents also get a chance to engage with various current practitioners and professionals in music and related fields corresponding with the abovementioned themes.", + "title": "The Profession of Music 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1167", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the first module in a sequence, focusing on building a foundation in the technical and performance skills on an instrument, or in the area of compositional or creative fields.", + "title": "Foundational Area Study 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1168", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the second module in a sequence, focusing on building a foundation in the technical and performance skills on an instrument, or in the area of compositional or creative fields.", + "title": "Foundational Area Study 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1169", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with introductory knowledge of microphone design, the working principles of mixing consoles, and the principles of stereo image creation. Additional topics will include principles and application of different stereo microphone techniques like XY, ORTF, NOS and AB. Students will be requested to participate in recording all YSTCM concert events.", + "title": "Fundamentals of Music Production and Recording 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1170", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1530", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECS", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Continuing from Basic Recording 1 this course will introduce students to the basics of loudspeaker design and the principles and operation of outboard signal processing equipment. The development of surround sound recording and reproduction technology and related microphone techniques will be also be introduced. Students will participate in recording all YSTCM events and finish at least 5 studio recording sessions.", + "title": "Fundamentals of Music Production and Recording 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1171", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1530", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECS", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Critical listening involves technical listening skills for people who work in the audio engineering domain. It is an ear training programme for audio engineers. Critical Listening 1 offers students basic experiences and skills of estimation of frequency of sound, estimation of sound level changes, judgement of sound quality, voice coloration and masking effect. The topics of this module will also cover judgement and appreciation of balance and spatial expression of different types of music from piano solo to Symphony Orchestra.", + "title": "Critical Listening 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1172", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1530", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECS", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Along with Critical Listening 1, Students in Critical Listening 2 will be more focused on the skills training on locating the sound, binaural listening, microphone position, effect of audio signal processor, pop music structure and surround sound appreciation. Students will be requested to design, process and conclude their own critical listening project.", + "title": "Critical Listening 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1173", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1530", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECS", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual voice lessons specially designed for first semester, freshman performance majors. Technical skills, competency and suitable repertoire are expected at the appropriate levels.", + "title": "Applied Voice Major Study 1A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1190", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual voice lessons specially designed for second semester, freshmen year performance majors. Technical skills, competency and suitable repertoire are expected at the appropriate levels. An individual performance jury will be required at the end of the semester", + "title": "Applied Voice Major Studies 1B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1191", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Required for voice majors during the first 4 semesters of enrollment, these modules allow students to develop their skills through participation in a vocal performance ensemble. Students will participate in regular rehearsals, and will learn and perform choral music from the Renaissance period to modern day. Through these courses students will gain knowledge of diverse repertoire, composers, genres, styles, and period performance practices. Students will also learn fundamentals of vocal production and choral technique and will experience working together ensemble situations. Open to Non-Voice majors as an elective.", + "title": "Chamber Singers 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1192", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Required for voice majors during the first 4 semesters of enrollment, these modules allow students to develop their skills through participation in a vocal performance ensemble. Students will participate in regular rehearsals, and will learn and perform choral music from the Renaissance period to modern day. Through these courses students will gain knowledge of diverse repertoire, composers, genres, styles, and period performance practices. Students will also learn fundamentals of vocal production and choral technique and will experience working together ensemble situations. Open to Non-Voice majors as an elective.", + "title": "Chamber Singers 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1193", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": { + "start": "2022-08-11", + "end": "2022-11-10", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": { + "start": "2022-08-08", + "end": "2022-11-07", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will address diction for singing in Italian and English. Students will study and acquire the rules for pronouncing these languages through use of the\nInternational Phonetics Alphabet (IPA). The class will be taught in two basic sections; the first section will be the study of the rules of IPA and the second will be the application of this study through in-class performances which will be evaluated by the instructor and class members.", + "title": "Diction for Singers 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1196", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A practical course to introduce students to the rudiments of musicianship (namely singing melody, understanding rhythm and hearing harmony). Strategies for teaching these materials may be learned through the creative assignments and modelling exercises from the instructor. The pedagogical approach is the employment of a spiral curriculum as influenced by the ideas of Jerome Bruner.", + "title": "Rudiments of Musicianship", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the mixing of different styles of music in a Digital Audio Workstation (DAW). Topics include audio routing, effective use of volume, pan, filtering, reverb, dynamic and other creative FXs. Projects start simply with the enhancement of a stereo recording and move up to mixing a 4-6 channel session, mixing a multi-mic\u2019d drum kit, and mixing a large project of 10 or more channels.", + "title": "Desktop Mixing Production", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA1223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Interdisciplinary collaboration involving electronics is common in today's art world. This module offers an introduction to some of the artistic issues in this field as well as some of its practioners. In addition to readings and class discussion, professional artists from different disciplines (music, dance, visual art, multimedia, theatre) visit to share their knowledge, experiences, and aesthetic approaches in their works.", + "title": "Interdisciplinary Electronic Arts Survey", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA1270", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers instruction in music composition for\nstudents enrolled in the BMUS program in music\ncomposition or appropriate related majors. Its main\ncomponent is a weekly one-hour consultation with a major\nstudy teacher. Students attend weekly composition\nseminars and other events related to contemporary music\nstudy, and receive training in atonal aural skills and\nadvanced rhythm. Students are required to compose a\nminimum of 10 minutes of music and submit a portfolio of\nworks at the end of the semester for juried evaluation. In\nconsultation with their instructor, students define their\ncomposition projects in terms of form and instrumentation.", + "title": "Composition Major Study 2A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA2101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers instruction in music composition for\nstudents enrolled in the BMUS program in music\ncomposition or appropriate related majors. Its main\ncomponent is a weekly one-hour consultation with a major\nstudy teacher. Students attend weekly composition\nseminars and other events related to contemporary music\nstudy, and receive training in atonal aural skills and\nadvanced rhythm. Students are required to compose a\nminimum of 10 minutes of music and submit a portfolio of\nworks at the end of the semester for juried evaluation. In\nconsultation with their instructor, students define their\ncomposition projects in terms of form and instrumentation.", + "title": "Composition Major Study 2B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA2102", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Provides comprehensive orchestral training and performance experience exposing students to music of the 17th through 21st centuries for chamber orchestra. Each year the Conservatory Orchestra will perform a cross-section of the standard orchestral repertoire, supplemented by new works and lesser-known compositions. Seating assignments in the orchestra are rotated as much as possible. Placement is by audition.", + "title": "Large Ensembles 2A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "MUA2107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Provides comprehensive orchestral training and performance experience exposing students to music of the 17th through 21st centuries for chamber orchestra. Each year the Conservatory Orchestra will perform a cross-section of the standard orchestral repertoire, supplemented by new works and lesser-known compositions. Seating assignments in the orchestra are rotated as much as possible. Placement is by audition.", + "title": "Large Ensembles 2B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "MUA2108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will form undirected ensembles of three or more players, consisting of instruments within a single instrumental family:\n-\tstrings (including harp)\n-\twoodwinds\n-\tbrass\n-\tpercussion\nin order to study and perform selected works of chamber music. The standard wind quintet configuration is considered to fall under this module.\nStudents should participate in at least one public performance as well as in a final examination of the prepared work(s), and to reflect upon their learning process in the context of this module by updating their e-portfolios.", + "title": "Chamber Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2109", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will form undirected ensembles of three or more players, consisting of instruments from at least two different instrumental families:\n-\tpiano (and other keyboard instruments)\n-\tstrings (including harp)\n-\twoodwinds\n-\tbrass\n-\tpercussion\nin order to study and perform selected works of chamber music. The standard wind quintet configuration is NOT considered a mixed ensemble.\nStudents should participate in at least one public performance as well as in a final examination of the prepared work(s), and to reflect upon their learning process in the context of this module by updating their e-portfolios.", + "title": "Chamber Music in Mixed Ensemble", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2110", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "These recitals offer student performances covering all historical periods and a variety of genre. Attendance is compulsory for all students throughout the course of the undergraduate programme. Students need to maintain a 80% attendance rate in order to receive a S (Satisfactory) designation.", + "title": "Noon Recital Series 2A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "MUA2153", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "These recitals offer student performances covering all historical periods and a variety of genre. Attendance is compulsory for all students throughout the course of the undergraduate programme. Students need to maintain a 80% attendance rate in order to receive a S (Satisfactory) designation.", + "title": "Noon Recital Series 2B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "MUA2154", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Focused study on an instrument forms the central pillar for\nthe BMus Majors in piano, strings, brass, wind and\npercussion. Normally undertaken in the second year of\nstudy, this module usually follows as the third in a\nsequence of eight modules and as the second\nperformance presentation formally assessed for the\ndegree if the student is pursuing an instrumental major.\nThe module may also be taken by those pursuing a\nsecond major in the relevant instrument, by Young Artists,\nand electively by some students on the Music & Society or\nMusic, Collaboration & Production majors.", + "title": "Advanced Juried Performance Presentation", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA2161", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Focused study on an instrument forms the central pillar for\nthe BMus Majors in piano, strings, brass, wind and\npercussion. Normally undertaken in the second year of\nstudy, this module usually follows the completion of\nAdvanced Jury Performance and acts as a preparatory\nperiod for the student\u2019s Junior Recital. Students should be\nfinding a clearer focus in relation to their future artistic and\nprofessional direction, with dimensions of the studies\nundertaken beginning to include evolving capacities in\nself-promotion and production, the exploration of summer\nprogrammes, and critical reflection on their relative\nprogression and trajectory within the specific instrumental\nfield.", + "title": "Continuing Studies on Principal Instrument", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA2162", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The compulsory module for second year students focuses on the practical application of relevant knowledge and skills previously acquired in The Profession of Music 1 & 2 whilst forging collaboration and resourcefulness through groupwork.\n\nThe year-long module requires students to craft their own small-scale projects and execute them outside of YST through different themes: Hatching Ideas, Creating Impact, Workshop Skills, Ideas into Action, Mentorship and Project Execution. Depending on their interest areas, these projects can be performance or education focused.", + "title": "Leading and Guiding Through Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2163", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the third module in a sequence, strengthening and developing core skill-sets in the technical and performance skills on an instrument, or in the area of compositional or creative fields.", + "title": "Continuing Area Study 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2168", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the fourth module in a sequence, strengthening and developing core skill-sets in the technical and performance skills on an instrument, or in the area of compositional or creative fields.", + "title": "Continuing Area Study 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2169", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the theory and practice of studio near-distance microphone techniques for a variety of acoustic and electric/electronic instruments. More in-depth coverage of mixing consoles for multitrack recording and basic mixing will also be covered, as will analysis of recording work and basic concepts of musical acoustics and digital audio. Students will be required to finish at least 2 multi-track projects independently during the course of the semester.", + "title": "Multitrack Recording 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2170", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECS", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with extensive practical hands-on experience to consolidate the theory and skills they learned in modules up to and including Multitrack Recording 1. Students will work with local Pop, Rock or Jazz bands to finish at least 5 professional multi-track recording projects the course of the semester. Lectures and lab sessions will introduce and expand upon relevant course topics in microphone use, signal processing, digital audio, musical acoustics, and mixing console operation.", + "title": "Multitrack Recording 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2171", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Acoustics is an integral component that recording engineers need to take account of regarding sound for live music. This module will introduce students to the physics, perception and control of sound. The topics of this course cover topics such as sound diffusion related phenomena and noise reduction related processing.", + "title": "Room Acoustics", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2172", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECS", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides the basic concept of the sound of the classical music and some basic stereo microphone techniques for the live classical music concert. Students will be requested to finish at least 2 hours live concert recording each week, at least 20 hours of total recording time.\n\nIn this module, students need to finish each project session with the module supervisor together. Each project session should be fully under the direction of the module supervisor.", + "title": "AAS Project 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2175", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Beside continually handling the live concert recording, RAS Project 2 also provides the critical concept and skills of classical music production in the recording studio environment. Students will learn how to set up main stereo microphone and spot microphones in the recording studio for generating both studio and live concert style sound.\n\nIn this module, students will be requested to finish at least 20 hours live concert recording, and at least 4 studio sessions.\n\nIn this module, students need to finish each project session with module supervisor together. Each project session should be fully under the direction of the module supervisor.", + "title": "AAS Project 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2176", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will show students the latest technology of designing and applications of digital audio networks for recording studio, live sound and broadcasting system. The module will focus on teaching of Digital Audio Transmission Protocol (SPDIF, ADAT,MADI, Optical Fibre ) and digital audio networking and routing for AV. Topics will also include Digital Audio Transmission Protocol and some key protools skills for broadcasting and livestreaming.", + "title": "Audio Networks", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2177", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual voice lessons specially designed for first semester, sophomore year performance majors. Technical skills, competency and suitable repertoire are expected at the appropriate levels.", + "title": "Applied Voice Major Study 2A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2190", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual voice lessons specially designed for second semester, sophomore year performance majors. Technical skills, competency and suitable repertoire are expected at the appropriate levels. A jury will be presented at the end of the semester.", + "title": "Applied Voice Major Study 2B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2191", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Required for voice majors during the first 4 semesters of enrollment, these modules allow students to develop their skills through participation in a vocal performance ensemble. Students will participate in regular rehearsals, and will learn and perform choral music from the Renaissance period to modern day. Through these courses students will gain knowledge of diverse repertoire, composers, genres, styles, and period performance practices. Students will also learn fundamentals of vocal production and choral technique and will experience working together ensemble situations.", + "title": "Chambers Singers 3", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2192", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Required for voice majors during the first 4 semesters of enrollment, these modules allow students to develop their skills through participation in a vocal performance ensemble. Students will participate in regular rehearsals, and will learn and perform choral music from the Renaissance period to modern day. Through these courses students will gain knowledge of diverse repertoire, composers, genres, styles, and period performance practices. Students will also learn fundamentals of vocal production and choral technique and will experience working together ensemble situations.", + "title": "Chambers Singers 4", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2193", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will address diction for singing in German and French. Students will study and acquire the rules for pronouncing these languages through use of the\nInternational Phonetics Alphabet (IPA). The class will be taught in two sections; the first section will be the study of the rules of IPA and the second will be the application of this study through in-class performances which will be\nevaluated by the instructor and class members.", + "title": "Diction for Singers 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2196", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Pianists have a wealth of repertoire available to them, including both works within the musical canon and those without. This module explores the various genres of keyboard music throughout history, acknowledging the composers who have gained widespread popularity, while simultaneously delving into the works of those who have received less attention. Topics covered include variation sets, preludes, fugues, suites, studies, and single-movement works. Students will think critically about the significance and evolution of each genre over time, and emerge with a fuller picture of music written for the keyboard and a curiosity to continue discovering and rediscovering this repertoire.", + "title": "Keyboard Literature: Genres throughout History", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The genre of the sonata has a rich history and comprises a significant portion of the repertoire available to pianists. This module explores various meanings and incarnations of the keyboard sonata, approaching works from historical, sociological, and theoretical perspectives, and including both works that traditionally appear in the repertory and those that do not. Students will think critically about the genre and the larger conceptual issues surrounding it, acquire and apply analytic tools to understand and reflect upon the works studied, and emerge with a fuller picture of keyboard sonatas and a curiosity to continue discovering and rediscovering this repertoire.", + "title": "Keyboard Literature: Sonatas in Context", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A practical course for a clear understanding of rhythmic\nsubdivisions and groupings. These concepts\nare the foundation for a thorough understanding of how\nrhythm works in composed music,\nimprovised music and interactive musical performance.\nThe devices learned include a system of\nrhythmic counting based on South Indian Konnakkol.\nScore examples will be studied in order to\nshow students how the learned skills are applied in\npolyrhythm and score memorization.", + "title": "Rhythmic Devices in Performance 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A practical course for developing the ability to hear harmonic progressions in all kinds of music (including classical, popular music and jazz). Students will learn to hear various basic chord voicings as well as chord extensions. 2 voice intervals will also be covered. The chord progressions learned in the course will be a good foundation for students to take into their professional endeavours.", + "title": "Harmonic Hearing for Performers", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The continuing practical study of rhythmic subdivisions and groupings covered in MUA 2205 (Rhythmical Devices in Performances). These concepts are the foundation for a thorough understanding of how rhythm works in composed music, improvised music and interactive musical performance. The devices learned include a system of rhythmic counting based on South Indian Konnakkol and its applications.", + "title": "Rhythmical Devices in Performance 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is tailored for musicians, presenting findings from the Psychology of Music, and Cognitive Science more generally, that can be used to enhance one\u2019s practice and performance of music. Topics include efficient practicing, learning and memory, mental rehearsal strategies, performance anxiety, and more. It is a hands-on, project-based learning module, featuring a mixture of traditional lectures with group discussions, blogging with peers, and application of the ideas through individual projects centered around practice and/or performance techniques. The module is meant to foster critical enquiry and reflection, giving students relevant knowledge and hands-on experience to help them become better musicians.", + "title": "The Psychology of Music Performance", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As a logical progression from modules MUA1111 and MUA1112, students will continue to study and perform works for piano ensemble - either piano duos or duets. Coaching sessions provide in-depth insight into the specific piece(s) chosen for study; whilst active participation is expected in the studio class, which provides an overview of the most significant works relevant to the genre. Students must participate in a public, assessed performance as the final examination of the prepared work(s); and to reflect upon their learning process in the context of this module by updating their e-portfolios.", + "title": "Collaborative Piano - Piano Ensemble", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2240", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Continuing and building on module MUA1115, piano students will work closely with the Voice department. Students will receive individual coaching on the piano part specifically, as well as lessons together with their singer; and also participate actively in studio classes. Students will participate in at least one public performance and/or a final examination of the prepared work(s); and to reflect upon their learning process in the context of this module by updating their e-portfolios.", + "title": "Collaborative Piano - Vocal Accompaniment", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2241", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Continuing and building on module MUA1116, piano students will work closely with selected instrumental students on repertoire for instrumental/piano duos. Students will receive individual coaching on the piano part specifically, as well as lessons together with their instrumentalist; and also participate actively in studio classes. Students should participate in at least one public performance as well as in a final examination of the prepared work(s); and to reflect upon their learning process in the context of this module by updating their e-portfolios.", + "title": "Collaborative Piano - Instrumental Accompaniment", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2242", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Piano students will collaborate with students from other departments, forming undirected groups consisting of three or more players, to study and perform selected works of chamber music. Coaching sessions provide in-depth insight into the specific piece(s) chosen for study; whilst active participation is expected in the studio class, which provides an overview of the most significant works relevant to the genre. Students should participate in at least one public performance as well as in a final examination of the prepared work(s); and to reflect upon their learning process in the context of this module by updating their e-portfolios.", + "title": "Collaborative Piano - Chamber Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2243", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops skills for creating interactive artistic computer systems. In an interactive system, sensors are used by the artist to incorporate touch, gesture, motion, sound, and light to influence the work, common in live interactive music and installation art. The module will introduce simple sensors and systems for beginners, but allow for more advanced students to work with other tools - Arduino, Max, Processing, etc. It is, therefore, appropriate for students of different experiences and backgrounds with programming. Students will create an artistic work that involves live interactivity. Students may work with image/video, audio, or both.", + "title": "Live Interactivity", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2251", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Applied Secondary A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2255", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual lessons on an instrument, voice, or in the area of compositional or specific musical fields such as Jazz, tailored for secondary level students. Available to Conservatory students only, this course is meant to complement the students\u2019 primary major studies.", + "title": "Applied Secondary", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2255A", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual lessons on an instrument, voice, or in the area of compositional or specific musical fields such as Jazz, tailored for secondary level students. Available to Conservatory students only, this course is meant to complement the students\u2019 primary major studies.", + "title": "Applied Secondary", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2255B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Applied Secondary B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2256", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual lessons on an instrument, voice, or in the area of compositional or specific musical fields such as Jazz, tailored for secondary level students. Available to Conservatory students only, this course is meant to complement the students\u2019 primary major studies.", + "title": "Applied Secondary", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2256A", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual lessons on an instrument, voice, or in the area of compositional or specific musical fields such as Jazz, tailored for secondary level students. Available to Conservatory students only, this course is meant to complement the students\u2019 primary major studies.", + "title": "Applied Secondary", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2256B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the context-driven and practice-led approaches in music-making while honing in on time management and organisation skills. Students enrolled in this module will pick from a list of community music projects in which they can choose their roles, focusing on at least one of the following aspects music performance, production and publicity. Implemented by YST students, these projects provide an opportunity for them to design and lead in collaboration with the external partners involved, tailoring their ideas to specific contexts and audiences. A faculty mentor will be assigned to oversee each project.", + "title": "Navigating Community Music Projects", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2266", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the context-driven and practice-led approaches in music-making while honing in on time management and organisation skills. Students enrolled in this module will pick from a list of community music projects in which they can choose their roles, focusing on at least one of the following aspects music performance, production and publicity. Implemented by YST students, these projects provide an opportunity for them to design and lead in collaboration with the external partners involved, tailoring their ideas to specific contexts and audiences. A faculty mentor will be assigned to oversee each project.", + "title": "Navigating Community Music Projects", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA2267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module explores the techniques of digital synthesis and signal processing within the Max programming environment. In-class activities and project-based assignments address simple synthesizer and effects unit creation utilizing both time-domain and frequency-domain techniques.", + "title": "Synthesis and Signal Processing", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2270", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR8", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to instrument sound design using different forms of synthesis and signal processing with computers. Students develop skills in creating sounds they imagine. The module offers aural training in identifying synthesis types, filtering, and other common techniques used in instrument design as well as support in practical implementation of these techniques in software. Projects will include designing a sample-based instrument and developing a sound library with different forms of synthesis. The module uses entry-level graphical synthesis environments. No experience with coding is required.", + "title": "Virtual Instrument Sound Design", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA2271", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers instruction in music composition for\nstudents enrolled in the BMUS program in music\ncomposition or appropriate related majors. Its main\ncomponent is a weekly one-hour consultation with a major\nstudy teacher. Students attend weekly composition\nseminars and other events related to contemporary music\nstudy. Students are required to compose a minimum of 12\nminutes of music and submit a portfolio of works at the\nend of the semester for juried evaluation. In consultation\nwith their instructor, students define their composition\nprojects in terms of form and instrumentation.", + "title": "Composition Major Study 3A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA3101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers instruction in music composition for\nstudents enrolled in the BMUS program in music\ncomposition or appropriate related majors. Its main\ncomponent is a weekly one-hour consultation with a major\nstudy teacher. Students attend weekly composition\nseminars and other events related to contemporary music\nstudy. Students are required to compose a minimum of 12\nminutes of music and submit a portfolio of works at the\nend of the semester for juried evaluation. In consultation\nwith their instructor, students define their composition\nprojects in terms of form and instrumentation.", + "title": "Composition Major Study 3B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA3102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips learners with fundamental conducting techniques through practical experiences in conducting ensembles, score-reading and terminology. It introduces to the student fundamental orchestral conducting skills of baton, rehearsal and score organisation techniques. The module also explores rehearsal dimensions and conductor/orchestra relationships as well as the interpretive and historical dimensions of conducting, in both discussion and rehearsal contexts. In addition to orchestra, students will also experience and learn about conducting other ensemble settings such as band and choir.", + "title": "Conducting", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Provides comprehensive orchestral training and performance experience exposing students to music of the 17th through 21st centuries for chamber orchestra. Each year the Conservatory Orchestra will perform a cross-section of the standard orchestral repertoire, supplemented by new works and lesser-known compositions. Seating assignments in the orchestra are rotated as much as possible. Placement is by audition.", + "title": "Large Ensembles 3A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Provides comprehensive orchestral training and performance experience exposing students to music of the 17th through 21st centuries for chamber orchestra. Each year the Conservatory Orchestra will perform a cross-section of the standard orchestral repertoire, supplemented by new works and lesser-known compositions. Seating assignments in the orchestra are rotated as much as possible. Placement is by audition.", + "title": "Large Ensembles 3B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation of MUA2109, students will further study and perform works of chamber music for undirected ensembles as defined in the description of module MUA2109.\nStudents should participate in at least one public performance as well as in a final examination of the prepared work(s).", + "title": "Chamber Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3109", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation of MUA2110, students will further study and perform works of chamber music for mixed ensembles, as specified in the description of module MUA2110.\nStudents should participate in at least one public performance as well as in a final examination of the prepared work(s).", + "title": "Chamber Music in Mixed Ensemble", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3110", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Continuation of Keyboard Skills for Piano Majors I-II that requires a higher degree of score-reading skills at the keyboard.", + "title": "Keyboard Skills for Piano Majors", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3113", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-MLAB", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An in-depth, compulsory module for all conservatory piano majors covering the skill sets associated with the learning and performing of orchestral repertoire. The class ensemble will be known as the Yong Siew Toh Electone Orchestra (YSTEO). Using the Conservatory\u2019s newly acquired Stagea Electones, students will be assigned additional projects, such as score reading and memorisation of the standard excerpts their instrumentalist counterparts typically prepare for orchestral auditions.", + "title": "Orchestral Studies for Pianists", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3115", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces to students whose specialisation is in orchestral performance some of the fundamental principles of instrumental pedagogy, with a particular focus on early learning. Students will explore fundamental generic pedagogical principles, didactics for their specific instrument and be exposed to some initial experiential learning in real-life settings.", + "title": "Pedagogy for Orchestral Instrumentalists", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3116", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces contemporary music repertoire in solo, chamber, and sinfonietta ensemble settings for all orchestral instruments and piano. Students work with coaches in repertoire appropriate for their instrument, learning new techniques necessary for the performance of contemporary works. Participation in rehearsals and concerts by OpusNovus, the conservatory\u2019s contemporary music ensemble, is required.\n\nThis module is mandatory for all students majoring in performance on an orchestral instrument or piano. For those students, the module is generally taken in Year 3 of study.", + "title": "Contemporary Music Performance", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3117", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module develops skills in discourse on contemporary music composition. It serves as a pedagogy requirement for YSTCM composition majors. Through surveying a broad repertoire of compositional approaches, students develop analytical skills and awareness of differing aesthetic approaches so to critically evaluate aesthetically diverse works in terms of design, concepts, and craft. Additionally, the module introduces strategies for communicating with performers about one\u2019s compositional ideas during rehearsal and writing program notes to communicate with audiences.", + "title": "Compositional Discourse", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3133", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "These recitals offer student performances covering all historical periods and a variety of genre. Attendance is compulsory for all students throughout the course of the undergraduate programme. Students need to maintain a 80% attendance rate in order to receive a S (Satisfactory) designation.", + "title": "Noon Recital Series 3A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "MUA3153", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 65, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "These recitals offer student performances covering all historical periods and a variety of genre. Attendance is compulsory for all students throughout the course of the undergraduate programme. Students need to maintain a 80% attendance rate in order to receive a S (Satisfactory) designation.", + "title": "Noon Recital Series 3B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "MUA3154", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Focused study on an instrument forms the central pillar for\nthe BMus Majors in piano, strings, brass, wind and\npercussion. Normally undertaken in the third year of study,\nthis module forms an initial capstone for instrumental\nMajors on the BMus programme, serving otherwise as the\nfinal capstone for those undertaking instrumental studies\nas a second major. The module continues and\nconsolidates processes initiated in previous semesters,\nmanifesting their outcome in a shorter professional level\nperformance of approximately half an hour\u2019s duration\n(usually either a recital and piano-accompanied concerto\nperformance). The performance should demonstrate the\nemerging professional capacities of each student.", + "title": "Junior Recital", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA3161", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Focused study on an instrument forms the central pillar for\nthe BMus Majors in piano, strings, brass, wind and\npercussion. Normally undertaken in the third year of study,\nthis module usually follows the completion of the Junior\nRecital; the first of two capstone modules in relation to the\nMajor. In following on from a Junior Recital, the module is\nlargely about beginning the process of evolution from\nundergraduate study either towards graduate entry or\nprofessional life.", + "title": "Intermediate Studies on Principal Instrument", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA3162", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The compulsory module for third year students builds upon the practical experiences in MUA2163 Leading and Guiding Through Music, expanding knowledge and transferable skills necessary to become future-ready professionals. These include exploring areas of music entrepreneurship, deepening planning, collaborative, and communication skills.\n\nThe course also encompasses field trips where students get to visit industry professionals at work. These trips allow students to gain further insights about the music ecosystem as they continuously develop their artistic identities and explore future career trajectories.", + "title": "Musical Pathways", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3163", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR8", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the fifth and last module in a sequence, broadening and deepening the skill-sets in the technical and performance skills on an instrument, or in the area of compositional or creative fields. The module also acts as a preparatory period towards the capstone project for second major students.", + "title": "Intermediate Area Study", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3168", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Conceiving, creating, and implementing artistic projects are an integral part of many musicians\u2019 portfolios. This is a required module for Second Majors in Music and Society; and Music, Collaboration and Production, which focuses on the processes and skills required to survey existing arts ecosystems, design, and develop engaging and innovative projects to bring them to fruition as part of their Capstone Project later on. Students will gain an understanding of the factors involved in helming a music-related project and develop their identity as a musician in a direction unique to their trajectory.", + "title": "Music Project and Design", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3169", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the concepts, techniques, and aesthetics of mixing sound for stereo and multi-channel formats. Topics of the module will include signal processing in time, dynamic and frequency domain; creating stereo image. Students will be requested to finish at least 5 mixing projects for different types of music from pop, jazz to rock and rap.", + "title": "Audio Postproduction I", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3170", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECL", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Audio mastering is the final creative step in producing recordings for distribution. This module will introduce the aesthetic and technical concepts, issues, and strategies employed in final mastering for pop, rock, jazz, and classical genres. Topics will include frequency balance, stereo and multi-channel imaging, dynamics and overall program level control, signal path for analog and digital mastering, file formats and storage for distribution and replication.", + "title": "Audio Postproduction 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3172", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECS", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course module covers electroacoustic transducers and systems. Transducers commonly used in audio recording and production include a variety of types of\nmicrophones and speakers including dynamic moving coil, condenser, ribbon, piezo, and electrostatic. Electroacoustic systems will be explored including the basics of analog and digital electronics for recording, amplification, signal processing, and reproduction.", + "title": "Electroacoustics", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3173", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers fundamentals of large format digital console design and applications. The module will also provides concepts, skills and hands on experience with regards to close miking techniques. The module will also cover some basic audio editing skills on Protools software. Students will be requested to finish at least 40 hours of recording studio sessions, and submit one 5 tracks CD with technical description. In this module, students need to finish each project session with module supervisor together. Each project session should be fully under the direction of the module supervisor.", + "title": "AAS Project 3", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3175", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the theory and skills required for audio recording and editing techniques for the video programs. Students will be requested to finish at least 2 projects of audio production for video programs.\n\nIn this module, students need to finish each project session with module supervisor together. Each project session should be overviewed by the module supervisor.", + "title": "AAS Project 4", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3176", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to provide students with leadership skillsets in curating and producing musical events and productions. Through this module, students will understand the process of content creation and its relationship to other forms of cross-genre productions within the arts ecosystem.", + "title": "Music Programming & Production", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3177", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will design, develop and implement a musicrelated\nproject that demonstrates their musical and\norganisational capacities. Students are required to\nincorporate planning and resource strategies to produce a\nsmall-scale production, performance or community project.", + "title": "MS / MCP 3rd Year Project", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA3178", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Second Major students in Music will research, design and\ndevelop a music-related project, performance, and/or\nthesis, which demonstrates their level of expert capacity in\ntheir concentration.", + "title": "Capstone Project for Second Major in Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA3179", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Concepts in Orchestral Repertoire is a seminar\nfor advanced orchestral players intending to prepare for\nprofessional-level auditions. Having acquired the\nnecessary technical skills on their major study instrument\nto be able to perform standard orchestral repertoire, this\nmodule will intensify students\u2019 focus on developing\nappropriate audition techniques for professional-level\norchestral auditions. Practical application of appropriate\nrepertoire and emulation of current audition practices will\nbe core components of this course. In preparation for the\nweekly sessions, students should also be involved in\nreflective practice\u2014specific to their instrument\u2014in relation\nto developing a broader appreciation of orchestral\ntraditions.", + "title": "Advanced Concepts in Orchestral Repertoire", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3181", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1900", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Live Sound Reinforcement provides students with thorough coverage of technology and techniques of microphone techniques, loudspeaker setup and signal connection. The topics will include techniques for both wired and wireless microphone, the principle of both analog and digital live console, the principle and application of loudspeaker for live sound purpose and music balance creation for live performances.", + "title": "Live Sound Reinforcement", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3188", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECL", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This project module builds on the contents of MUA3188 Live Sound Reinforcement, allowing students to practice more independently in a professional environment. Students will be required to assemble a production team. In addition, they are required to plan and submit a project application to the project director. A final paper about the project they will be engaged in during the semester is also required. Students will need to finish the live sound projects for at least 2 classical music recitals and\n2 pop concerts.", + "title": "Live Sound Reinforcement Project", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3189", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual voice lessons specially designed for junior year performance majors. Technical skills, competency and suitable repertoire are expected at the appropriate levels. \n\nAs a bridging semester into the fourth year and either preparation for graduate school or professional life, this semester will be focused on getting the student ready for the next phase of their careers.", + "title": "Applied Voice Major Study 3B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3190", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Presented at the end of the term, students will be required to present 20-30 minutes of music in performance in a wide variety of styles in Italian, English and either German or French. One baroque cantata or group is strongly recommended.", + "title": "Junior Recital in Voice", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA3191", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover literature composed for the voice from the medieval period through approximately 1800. Repertoire covered will include music for solo voice as well as vocal chamber music and oratorio of various languages and styles. In-class performances and other class presentations will be required. There will be a final exam.", + "title": "Voice Literature 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3194", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR5", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover literature composed for the voice from approximately1800 onwards. Repertoire covered will include music for solo voice as well as vocal chamber music and oratorio of various languages and styles. Inclass\nperformances and other class presentations will be required. There will be a final exam.", + "title": "Voice Literature 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3195", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR5", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students in this module rehearse and perform with OpusNovus, the conservatory\u2019s new music ensemble. Students will perform contemporary works for solo, chamber, and large ensemble settings. Students work with coaches in repertoire appropriate for their instrument, learning new techniques necessary for the performance of contemporary work. Performance of learned repertoire is the main form of assessment.\n\nAs this module is an elective ensemble in which students perform contemporary solo and chamber music, they are encouraged to propose works they would like to learn in the module, planning with their respective coach an appropriate set of pieces to work on over the semester.", + "title": "Advanced Contemporary Music Performance", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students in this module rehearse and perform with OpusNovus, the conservatory\u2019s new music ensemble. Students will perform contemporary works for solo, chamber, and large ensemble settings. Students work with coaches in repertoire appropriate for their instrument, learning new techniques necessary for the performance of contemporary work. Performance of learned repertoire is the main form of assessment.\n\nAs this module is an elective ensemble in which students perform contemporary solo and chamber music, they are encouraged to propose works they would like to learn in the module, planning with their respective coach an appropriate set of pieces to work on over the semester.", + "title": "Advanced Contemporary Music Performance", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to score study, conducting techniques and rehearsal preparation that are essential especially in the performance of contemporary music. The module includes both theoretical and practical components, and serves as an elective option for students wishing to explore the conducting pathway in more detail, with a focus on contemporary music.", + "title": "Conducting Contemporary Instrumental Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER3", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the performance of jazz or popular music as practiced in the USA from the 1920s to the early 1950s. This module shows you how to perform and improvise jazz music as an instrumentalist or vocalist through the study and practice of class materials and listening. Theoretical materials will include chord scale theory, basic jazz musical forms, chord extensions, basic reharmonization techniques, and roman numeral analysis in jazz. The improvisational concepts taught are based on jazz theory and practice. There will be a listening list of about 80 well-known jazz pieces.", + "title": "Jazz Study and Performance 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the performance and study of more contemporary jazz approaches including modal interchange, scale derivations, pentatonic scales, additional forms and stylistic considerations pertaining to jazz music as practiced in the USA from the 1950s to the present day. There will be some exploration into latin-music influenced jazz as well as blues, rock, and funk music. Creative projects include leadsheet style compositions and arrangements of jazz standards or popular music. There will be a listening list of about 80 well-known jazz pieces.", + "title": "Jazz Study and Performance 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through weekly seminars, students will gain insights into the role and scope of a creative producer, experiencing all aspects of mounting a production with practice-based approaches; from proposing and planning, to pitching, promoting, and producing. They will also acquire knowledge in administrative matters such as finance, marketing, and venue partnerships. In-class learning will be supplemented by hands-on experience through working with and learning from industry stalwarts. This module intends to foster interdisciplinary thinking and the skills necessary for Conservatory students to effectively engage in creative productions, in line with the increasing complexity and intersectionality in the current musical landscape.", + "title": "Creative Producing for Music Majors", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students entering the music business with knowledge in related areas of law, marketing and relevant research methodology necessary to successfully start or run a music business. It focuses on relevant aspects of company, labour and intellectual property law, the impact of arts marketing strategy and how effective survey methodologies can be applied to running a successful music business.", + "title": "Business for Musicians", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3209", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module teaches skills for professional music notation. Genre-specific skills for vocal music, jazz, pop, and classical music as well as general issues related to layout and parts generation are addressed. Assessment is carried out through engraving projects in various styles. The module presumes students already have basic facility with a music notation program. The module is taught using Sibelius.", + "title": "Music Notation and Engraving", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main focus of the elective module is the completion of\na major project that encompass elements of both\nperformance and interaction, with strong connections to\nthe student\u2019s major study area. Students submit a project\nproposal for approval of enrolment and can identify a\nfaculty mentor to guide them in the project production.", + "title": "Performance and Interaction", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3216", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This project-based module will teach the basic theory of piano acoustics, piano tuning and piano repair.", + "title": "Introduction to Piano Technology", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The World Music Ensemble offers students a chance to\nplay and perform music from different cultures. The focus\nof the course will change from semester to semester\nallowing students a chance to participate in different\ntraditional musics in different terms. Students can see\nwhat music is covered each term by checking the NUS\nand YSTCM websites. Most semesters are available to\nany student regardless of musical background, some may\nrequire proficiency on an instrument.", + "title": "World Music Ensemble", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The World Music Ensemble offers students a chance to\nplay and perform music from different cultures. The focus\nof the course will change from semester to semester\nallowing students a chance to participate in different\ntraditional musics in different terms. Students can see\nwhat music is covered each term by checking the NUS\nand YSTCM websites. Most semesters are available to\nany student regardless of musical background, some may\nrequire proficiency on an instrument.", + "title": "World Music Ensemble", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-WS", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main focus of this module is the completion of a major project of significant career impact. The project should be directly connected to the student\u2019s future goals beyond graduation. Projects are expected to involve internship, international competitions, festivals or other similarly significant events of high rigour and visibility.", + "title": "Intensive Music Engagement Practicum", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3221", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course has a local and overseas component. The overseas component will take place during the recess weeks at NUS typically between weeks six and seven.\nStudents will prepare for the project in the first six weeks, complete the project during the recess week, then return to NUS for follow up activities related to the project that can be done locally as well as reflection of their overseas experiences.", + "title": "SEAsian Regional Creative Project", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will take place over two weeks in Bali, Indonesia. The course will take place at the end of semester 2 (around the second week of May). During this\ntime students will work together to prepare traditional and group-composed music for performances in Bali.", + "title": "Cultural Encounters - Bali Excursion and Study Tour", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents the study of intermediate piano repertoire and application of harmony at the keyboard. Students learn various important keyboard skills and techniques that enhance their understanding of and experience in making music. Such skills include harmonization, transposition, figured bass, improvisation, piano techniques, score reading, musical interpretation, solo and ensemble playing.", + "title": "Intermediate Keyboard Studies", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-MLAB", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-MLAB", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-MLAB", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-MLAB", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of MUA 3224 Intermediate Keyboard Studies. It presents the study of early advanced piano repertoire and application of more advanced harmony at the keyboard. Students continue to develop various important keyboard skills and techniques that enhance their understanding of and experience in making music. Such skills include harmonization, transposition, figured bass, improvisation, piano techniques, score reading, musical interpretation, solo and ensemble playing.", + "title": "Early Advanced Keyboard Studies", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-MLAB", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through self-designed projects, Collaboratory allows students to pursue interests in experimental music realization, collaborative composition, free and structured improvisation, electronic music, or the realization of a student composer work. Students must select a mentor and receive his/her agreement. The project proposal must be approved by both the mentor and the module coordinator by the end of the semester prior to starting the project. Projects should include consistent meetings (weekly or fortnightly), guided by the mentor, and a public presentation of the final musical result.", + "title": "Collaboratory", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3226", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through projects designed in collaboration between\nstudents and mentors, Collaboratory is a place to pursue\ninterests in experimental music realization, collaborative\ncomposition, free and structured improvisation, electronic\nmusic, or the realization of student compositional work.\nProjects must be mentored. The project proposal must be\napproved by both the mentor and the module coordinator\nby the end of the semester prior to starting the project.\nProjects should include consistent meetings (weekly or\nfortnightly), guided by the mentor, and a public\npresentation of the final musical result.", + "title": "Collaboratory B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3227", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective offers an in-depth analysis of a diverse selection of piano repertoire. Students will study elements of music such as form, harmony and texture as part of a process of internalizing and interpreting works for the piano.", + "title": "Re-imagining Pianism through Analysis", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a general introduction to the\ncognitive science of music. It is intended for students in\nPsychology or Music, although students from other\ndepartments may enrol with permission from the instructor.\nThe module will cover key topics in the field, such as\nmemory, emotional responses, and social aspects of\nmusic listening and performance. The module will also\ntouch upon recent computational approaches and\nneuroscientific findings that have clarified how music works\nin the mind and brain. Students will be encouraged to work\nin interdisciplinary teams to draw connections between\ntheir personal music experiences and findings from the\nliterature.", + "title": "Music Cognition", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR8", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR8", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA2240, students will continue to further study and perform works for piano ensemble - either piano duos or duets. Students must participate in a public, assessed performance as the final examination of the prepared work(s).", + "title": "Collaborative Piano - Piano Ensemble", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3240", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA2241, piano students will continue to work closely with the Voice department. Students will participate in at least one public performance and/or a final examination of the prepared work(s).", + "title": "Collaborative Piano - Vocal Accompaniment", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3241", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA2242, piano students will continue to work closely with instrumental students on repertoire for instrumental/piano duos. Students are expected to participate in at least one public performance as well as in a final examination of the prepared work(s).", + "title": "Collaborative Piano - Instrumental Accompaniment", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3242", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA2243, piano students will continue to collaborate with students from other departments, forming undirected groups consisting of three or more players, to study and perform selected works of chamber music. Students are expected to participate in at least one public performance as well as in a final examination of the prepared work(s).", + "title": "Collaborative Piano - Chamber Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3243", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Applied Secondary C", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3255", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual lessons on an instrument, voice, or in the area of compositional or specific musical fields such as Jazz, tailored for secondary level students. Available to Conservatory students only, this course is meant to complement the students\u2019 primary major studies.", + "title": "Applied Secondary", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3255A", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual lessons on an instrument, voice, or in the area of compositional or specific musical fields such as Jazz, tailored for secondary level students. Available to Conservatory students only, this course is meant to complement the students\u2019 primary major studies.", + "title": "Applied Secondary", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3255B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Applied Secondary D", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3256", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual lessons on an instrument, voice, or in the area of compositional or specific musical fields such as Jazz, tailored for secondary level students. Available to Conservatory students only, this course is meant to complement the students\u2019 primary major studies.", + "title": "Applied Secondary", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3256A", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual lessons on an instrument, voice, or in the area of compositional or specific musical fields such as Jazz, tailored for secondary level students. Available to Conservatory students only, this course is meant to complement the students\u2019 primary major studies.", + "title": "Applied Secondary", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA3256B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The internship module provides opportunity for hands-on learning in a professional context. Students will intern in a Singapore based music related company or agency. The knowledge and experiences gained will be documented in a final self reflective submission.", + "title": "Internship in Music Related Pathways", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3260", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main focus of this module is the completion of a major project of community outreach. The project should in some way be connected to the student\u2019s future goals beyond graduation. The student(s) enrolled will develop the project and therefore will be unique by design. Students will identify a faculty mentor to guide them in the project production.", + "title": "Career Development Group Project", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3261", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module provides progression from a previous internship module. Students will intern in a Singapore based music related company or agency. The\nknowledge and experiences gained will be documented in a final essay of substantial length.", + "title": "Internship in Music Related Pathways 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3263", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on previously completed professional development modules, students will design, develop and implement a music-related project in an external\nenvironment. Students will also incorporate strategies and materials for promoting their careers using traditional and new media.", + "title": "Career Development Independent Project", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3264", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main focus of this module is the completion of a second project of community outreach. The project should in some way be connected to the student\u2019s future goals beyond graduation. The student(s) enrolled will develop the project and therefore will be unique by design. Students will identify a faculty mentor to guide them in the project production.", + "title": "Career Development Independent Project 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3265", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the context-driven and practice-led approaches in music-making while honing in on time management and organisation skills. Students enrolled in this module will pick from a list of community music projects in which they can choose their roles, focusing on at least one of the following aspects music performance, production and publicity. Implemented by YST students, these projects provide an opportunity for them to design and lead in collaboration with the external partners involved, tailoring their ideas to specific contexts and audiences. A faculty mentor will be assigned to oversee each project.", + "title": "Navigating Community Music Projects", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3266", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the context-driven and practice-led approaches in music-making while honing in on time management and organisation skills. Students enrolled in this module will pick from a list of community music projects in which they can choose their roles, focusing on at least one of the following aspects music performance, production and publicity. Implemented by YST students, these projects provide an opportunity for them to design and lead in collaboration with the external partners involved, tailoring their ideas to specific contexts and audiences. A faculty mentor will be assigned to oversee each project.", + "title": "Navigating Community Music Projects", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students introductory knowledge about audio and video production that is related to their own instrument. The topics will include stereo recording\ntechniques for solo instrument and ensemble, acoustics design for performing and practicing space, sound reinforcement for live performance, digital video and audio\nediting techniques.", + "title": "Acoustics and Sound Production for Performers", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3271", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECS", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will investigate the changing relationships between humans and their surrounding sonic environments. Students will gain an understanding of the effects of the sonic environment on the human species, as individuals and as larger societies, and the ways in which humans are in turn responsible for drastic changes in the sonic environment, primarily since the advent of electronic and electroacoustic media technology. Another component of the module will be individual and group creative and research projects documenting the local sonic environment, accompanied by analytical essays. The semester will culminate in public presentations of all projects.", + "title": "Sonic Environments", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3274", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a hands-on project-based introduction to electronic audio circuits for artistic purposes. Through hardware hacking, circuit bending, and circuit building,\nstudents will gain an understanding of basic electronics theory as well as develop valuable hands-on experience with battery-powered sound-making and sound-processing projects. From repurposing games, toys, and radios to building oscillators, filters, mixers, and amplifiers, and finally interfacing between the physical world and computers via microcontrollers, students will explore the artistic potential of electronic circuits.\n\nAn introduction to the history and current practice of electronic sound art will be integral to the module. The module will culminate in a group installation/performance.\nNo prior experience in electronics or music is assumed, though either would be helpful.", + "title": "Sonic Circuits", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3275", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR9", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to offer an introduction to concepts and techniques of algorithmic music composition. The following tools and concepts for generating structure of musical parameters will be covered: list processing, random number generators, Markov chains, distribution functions, interpolation, perturbation, sets, series, and sieves. The course will use IRCAM's OpenMusic, a software environment for algorithmic and computerassisted composition. Assessment will be based on composition projects realized during the semester. The module will mostly address algorithmic composition of acoustic music, but composition of electronic music will also be possible, if the student wishes to pursue that in a\nproject.", + "title": "Computer-Aided Composition", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3277", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For the most dedicated instrumental performers,\nparticipation in international competitions is a significant\nmilestone in their professional development. Such\nparticipation requires a dedicated period of preparation in\nadvance of the competition itself, with a primary focus on\nself-reflective practice and study\u2014in conjunction with\nintensive mentoring with the major-study teacher and\narea. This module is designed to offer space for such\npreparation, with the assessment emulating, in process,\nthe normal expectations of international competition.\nStudents taking this module should have a specific\ncompetition in mind. Details of assessment, while\ngenerically similar, can be tailored more specifically to the\ncompetition involved.", + "title": "Preparing for International Competition", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA3301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module offers instruction in music composition for\nstudents enrolled in the BMUS program in music\ncomposition or appropriate related majors. Its main\ncomponent is a weekly one-hour consultation with a major\nstudy teacher. Students attend weekly composition\nseminars and other events related to contemporary music\nstudy. This is the first of a 2-semester departmentapproved capstone project. The capstone project (Final\nYear Project) must include a minimum of 25 minutes of\nmusic and fulfil the requirements set out in the\ndepartment's handbook. At the end of the semester,\nstudents submit a portfolio reflecting the state of the FYP\nfor evaluation.", + "title": "Composition Major Study 4A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module offers instruction in music composition for\nstudents enrolled in the BMUS program in music\ncomposition or appropriate related majors. Its main\ncomponent is a weekly one-hour consultation with a major\nstudy teacher. Students attend weekly composition\nseminars and other events related to contemporary music\nstudy. This is the 2nd of a 2-semester departmentapproved capstone project. The capstone project (Final\nYear Project) must include a minimum of 25 minutes of\nmusic and fulfil the requirements set out in the\ndepartment's handbook. At the end of the semester,\nstudents submit a portfolio and give a presentation on\ntheir project.", + "title": "Composition Major Study 4B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MUA4102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Provides comprehensive orchestral training and performance experience exposing students to music of the 17th through 21st centuries for chamber orchestra. Each year the Conservatory Orchestra will perform a cross-section of the standard orchestral repertoire, supplemented by new works and lesser-known compositions. Seating assignments in the orchestra are rotated as much as possible. Placement is by audition.", + "title": "Large Ensembles 4A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module is designed to develop leadership skills in an orchestral context, and is open only for the most advanced and dedicated orchestral musicians enrolled in the large ensemble program at YSTCM. Students enrolled in LSOC will be expected to contribute significantly to their respective instrumental section by demonstrating leadership in the following areas: 1) artistic leadership during full Conservatory Orchestra rehearsals and when required by leading sectionals of their respective sections 2) administration of their sections through assisting faculty heads and ensembles department, including parts assignments, rotations, bowings and other related section administration 3) a reflective component via their e-portfolio outlining their perceptions and skills learned during their semester\u2019s work.", + "title": "Leadership Skills in an Orchestral Context", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation of MUA3109, students will further study and perform works of chamber music for undirected ensembles as defined in the description of module MUA2109.\nStudents should participate in at least one public performance as well as in a final examination of the prepared work(s).", + "title": "Chamber Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4109", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation of MUA3110, students will further study and perform works of chamber music for mixed ensembles, as specified in the description of module MUA2110.\nStudents should participate in at least one public performance as well as in a final examination of the prepared work(s).", + "title": "Chamber Music in Mixed Ensemble", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4110", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce the art of\nteaching to piano major students. It focuses on the\nprinciples, materials and techniques in the teaching\nof piano/music to children in private studio settings.\nStudents have the opportunity to:\n\uf09f Understand the nature of teaching and\nlearning.\n\uf09f Grasp and explore basic principles and\npractical application of music and pedagogy\nfor teaching young beginners.\n\uf09f Acquire and develop the attitude and skill of\nteaching.\n\uf09f Relate and explore innovative teaching\nmethods suitable for studio teaching.\n\uf09f Experience and develop effective and fun\nlearning concepts, materials and games\nthrough hands-on teaching.", + "title": "Piano Pedagogy", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4113", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR8", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "These recitals offer student performances covering all historical periods and a variety of genre. Attendance is compulsory for all students throughout the course of the undergraduate programme. Students need to maintain a 80% attendance rate in order to receive a S (Satisfactory) designation.", + "title": "Noon Recital Series 4A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "MUA4153", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "These recitals offer student performances covering all historical periods and a variety of genre. Attendance is compulsory for all students throughout the course of the undergraduate programme. Students need to maintain a 80% attendance rate in order to receive a S (Satisfactory) designation.", + "title": "Noon Recital Series 4B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "MUA4154", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1330", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-HALL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Focused study on an instrument forms the central pillar for\nthe BMus Majors in piano, strings, brass, wind and\npercussion. Normally undertaken in the fourth year of\nstudy, this module usually begins the journey for students\ntowards their capstone Senior Recital and assures that\ntheir instrumental readiness is appropriate for the next\nstage in their professional journey, whether to graduate\nschool or into prefoessional work.", + "title": "Advanced Studies on Principal Instrument", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA4161", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Focused study on an instrument forms the central pillar for\nthe BMus Majors in piano, strings, brass, wind and\npercussion. Normally undertaken in the fourth year of\nstudy, this module forms the capstone for instrumental\nMajors on the BMus programme. The module continues\nand consolidates processes initiated in previous\nsemesters, manifesting their outcome in the form of a\nrecital of approximately one hour\u2019s duration,\ndemonstrating the emerging artistic and professional\nidentity of each student.", + "title": "Senior Recital - Instrumental Performance Capstone", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "MUA4162", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The internship module provides opportunity for hands-on learning in a professional context. Students will intern in a local radio or TV station, recording studio, production\nhouse, A/V support company, live sound company, or other approved audio-related business. The knowledge and experiences gained will be documented in a final\nessay of substantial length.", + "title": "Internship in Audio Arts and Sciences 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4172", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the theory and hands-on operation of sound design, foley recording, and post-production for video programme. The topics of sound effect recording, dialog recording and editing, background noise recording and editing, and surround sound mixing will be included. Students will be requested to finish at least 3 sound design projects during the semester.", + "title": "Audio for Media 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4173", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECL", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Continuing with the skills and knowledge acquired in Audio for Media 1, the project based module Audio for Media 2 will offer students more opportunities to practice on the sound design and foley recording production. Students will be requested to finish at least three multichannel projects with both project proposal and conclusion attached during the semester.", + "title": "Audio for Media 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4174", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECL", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "2nd major RAS students need to finish the final project under supervision. Students will be requested to finish one CD production with at least 3 multitrack productions that should focus on pop, jazz and rock music and at least 2 tracks stereo recordings that should focus on the classical music. Students will also need to finish the technical description of their recordings. The description should include the information of equipment operation like microphone set up and parameter adjustment on the outboard equipment, and some consideration about the acoustics.\n\nStudents should finish the final project individually. Module instructor will be present in the session if necessary.", + "title": "AAS Final Project", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4175", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students knowledge about music production with logic pro, acoustics design and microphone techniques for the performing space, and history and theory for pop music.", + "title": "Music Production and Marketing", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4176", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECL", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students knowledge about music production promotion, music production skills on protools, and internet video and audio technology.", + "title": "Music Production and Marketing II", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4177", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-RECL", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will design, develop and implement a significant\nmusic-related project related to their major study area.\nStudents are required to incorporate planning and\nresource strategies to lead a professional-equivalent\nevent/production or community project.", + "title": "MS / MCP Capstone Project", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "MUA4178", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The final project consists of a final paper and a recording project that is related to the topic of the paper. The title of the paper needs to be approved by the department. Students will need to pass the Thesis Defence of Bachelor degree before graduation.", + "title": "Final Project", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MUA4179", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "After taking a series of fundamental and advanced modules, students are ready to practice in a more professional environment rather than in a production lab in a school environment. Students will be encouraged to work as an intern at local broadcasting units, production house or in an approved sound related business. Students will need to work at least 10 hours per week. The feedback of the intern company will largely determine the student\u2019s grade in the module. The student will also be graded based on an essay detailing the valuable experiences which the student has gained from the practice.", + "title": "Internship in Audio Arts and Science 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4180", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Professional Concepts in Orchestral Repertoire is the capstone seminar for advanced orchestral players intending to audition for professional ensembles. Building on the repertoire and audition-skills acquired in MUA3181, this module will emulate the experience of professional level orchestral auditions from both the auditionee and panel perspectives by combining instrumental groups for selected sessions. Practical application of appropriate repertoire and of current best practices for professional level orchestral auditions will be core components of this course. In preparation for the weekly sessions, students should also be involved in reflective practice in relation to developing a broader appreciation of orchestral traditions and hiring practices.", + "title": "Professional Concepts in Orchestral Repertoire", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4181", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Saturday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1900", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Individual voice lessons specially designed for first semester, senior year performance majors. Technical skills, competency and suitable repertoire are expected at the appropriate levels.", + "title": "Applied Voice Major Study 4A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4190", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Presented at the end of the senior year, students will be required to present a full-length recital (50-55 minutes of music) in a wide variety of styles in Italian, English, German and French. Students may petition the Head of Vocal Studies to present a thematic, chamber music or other recital and, based upon the students\u2019 individual background and performance experiences, this may be allowed.", + "title": "Senior Recital in Voice", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "MUA4191", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module advances concepts and techniques already covered in the Conducting module and serves as an elective option for students wishing to explore the conducting pathway in more detail.", + "title": "Advanced Conducting I", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module advances concepts and techniques already covered in the Advanced Conducting 1 module and serves as an elective option for students wishing to explore the conducting pathway in more detail.", + "title": "Advanced Conducting II", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Leadership in an Orchestral Context (ALOC) is\ndesigned for students who would like to expand the skills\nset demonstrated in LSOC, with continued focus on the\nfollowing learning outcomes: 1) artistic leadership in large\nensemble and sectional rehearsals 2) administration of\ntheir respective sections via leadership activities such as\nparts assignments, section rotation, string bowings (and\nother ensemble-related adminsistrative oversight), through\nconsultation with ensemble faculty (and other titled players\nwithin their respective sections) 3) a self-reflection\ncomponent via a) an e-journal and b) interview(s) with\nensemble faculty members evidencing contemplation of\nbest-practices for orchestral leadership.", + "title": "Advanced Leadership in an Orchestral Context", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-OH", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation of MUA4109, students will further study\nand perform works of chamber music for undirected\nensembles as defined in the description of module\nMUA2109.\nStudents should participate in at least one public\nperformance as well as in a final examination of the\nprepared work(s).", + "title": "Chamber Music 4", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4209", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation of MUA4110, students will further study\nand perform works of chamber music for undirected\nensembles as defined in the description of module\nMUA2110.\nStudents should participate in at least one public\nperformance as well as in a final examination of the\nprepared work(s).", + "title": "Chamber Music in Mixed Ensemble 4", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4210", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will serve as an introduction to Vocal Pedagogy and will consist of a survey of the current literature on the subject as well as supervised teaching of a beginning level voice student. Course requirements include extensive reading, written assignments, in-class presentations, and mid-term and final examinations.", + "title": "Vocal Pedagogy", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through projects designed in collaboration between\nstudents and mentors, Collaboratory is a place to pursue\ninterests in experimental music realization, collaborative\ncomposition, free and structured improvisation, electronic\nmusic, or the realization of student compositional work.\nProjects must be mentored. The project proposal must be\napproved by both the mentor and the module coordinator\nby the end of the semester prior to starting the project.\nProjects should include consistent meetings (weekly or\nfortnightly), guided by the mentor, and a public\npresentation of the final musical result.", + "title": "Collaboratory C", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4226", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through projects designed in collaboration between\nstudents and mentors, Collaboratory is a place to pursue\ninterests in experimental music realization, collaborative\ncomposition, free and structured improvisation, electronic\nmusic, or the realization of student compositional work.\nProjects must be mentored. The project proposal must be\napproved by both the mentor and the module coordinator\nby the end of the semester prior to starting the project.\nProjects should include consistent meetings (weekly or\nfortnightly), guided by the mentor, and a public\npresentation of the final musical result.", + "title": "Collaboratory D", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4227", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA3240, students will continue to further study and perform works for piano ensemble \u2013 either piano duos or duets. Students must participate in a public, assessed performance as the final examination of the prepared work(s).", + "title": "Collaborative Piano - Piano Ensemble", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4240", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA3241, piano students will continue to work closely with the Voice department. Students will participate in at least one public performance and/or a final examination of the prepared work(s).", + "title": "Collaborative Piano - Vocal Accompaniment", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4241", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA3242, piano students will continue to work closely with instrumental students on repertoire for instrumental/piano duos. Students are expected to participate in at least one public performance as well as in a final examination of the prepared work(s).", + "title": "Collaborative Piano - Instrumental Accompaniment", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4242", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA3243, piano students will continue to collaborate with students from other departments, forming undirected groups consisting of three or more players, to study and perform selected works of chamber music. Students are expected to participate in at least one public performance as well as in a final examination of the prepared work(s).", + "title": "Collaborative Piano - Chamber Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4243", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Live Sound Reinforcement 1 is an elective module for those students who would like to work in the live sound domain after their graduation. The module offers students advanced live sound knowledge, skills through different case studies and practice opportunities through different practical live sound sessions from classical music recitals to rock concerts. Students will work more professionally with the module director and be better equipped to work as a professional live sound engineer. Students will be requested to finish at 5 live sound projects.", + "title": "Advanced Live Sound Reinforcement 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Similar to MUA4271 Advanced Live Sound Reinforcement 1, MUA4272 Advanced Live Sound Reinforcement 2 is also an elective module for those students who would like to focus their career on live sound after graduation. The students in this class will be requested to plan and organize their own live sound sessions by submitting a project proposal on microphone selection and setup, loudspeaker selection and setup, power supply, and signal connection. Students will be asked to finish at least 3 live sound sessions independently through the whole semester. The session report also needs to be attached with each live sound session.", + "title": "Advanced Live Sound Reinforcement 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For the most dedicated instrumental performers,\nparticipation in international competition is a significant\nmilestone in their professional development. This module\nis designed to offer space and support for actual\nparticipation, with the assessment mirroring the\nrequirements of the competition itself. Students taking this\nmodule would normally have a specific competition in\nmind. Details of assessment, while generically similar to\neach other, can be tailored more specifically to the\ncompetition involved. It is anticipated that students will\ngenerally be needing to prepare a minimum of an hour of\ncompetition material.", + "title": "Advanced Preparation in International Competition", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA4301", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation of MUA4209, students will further study\nand perform works of chamber music for undirected\nensembles as defined in the description of module\nMUA2109.\nStudents should participate in at least one public\nperformance as well as in a final examination of the\nprepared work(s).", + "title": "Chamber Music 5", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4309", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation of MUA4210, students will further study\nand perform works of chamber music for undirected\nensembles as defined in the description of module\nMUA2110.\nStudents should participate in at least one public\nperformance as well as in a final examination of the\nprepared work(s).", + "title": "Chamber Music in Mixed Ensemble 5", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4310", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4240, students will continue to\nfurther study and perform works for piano ensemble \u2013\neither piano duos or duets. Students must participate in a\npublic, assessed performance as the final examination of\nthe prepared work(s).", + "title": "Collaborative Piano - Piano Ensemble 4", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4340", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4241, piano students will\ncontinue to work closely with the Voice department.\nStudents will participate in at least one public performance\nand/or a final examination of the prepared work(s).", + "title": "Collaborative Piano - Vocal Accompaniment 4", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4341", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4242, piano students will\ncontinue to work closely with instrumental students on\nrepertoire for instrumental/piano duos. Students are\nexpected to participate in at least one public performance\nas well as in a final examination of the prepared work(s).", + "title": "Collaborative Piano - Instrumental Accompaniment 4", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4342", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4243, piano students will\ncontinue to collaborate with students from other\ndepartments, forming undirected groups consisting of\nthree or more players, to study and perform selected\nworks of chamber music. Students are expected to\nparticipate in at least one public performance as well as in\na final examination of the prepared work(s).", + "title": "Collaborative Piano - Chamber Music 4", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4343", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation of MUA4309, students will further study\nand perform works of chamber music for undirected\nensembles as defined in the description of module\nMUA2109.\nStudents should participate in at least one public\nperformance as well as in a final examination of the\nprepared work(s).", + "title": "Chamber Music 6", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4409", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation of MUA4310, students will further study\nand perform works of chamber music for undirected\nensembles as defined in the description of module\nMUA2110.\nStudents should participate in at least one public\nperformance as well as in a final examination of the\nprepared work(s).", + "title": "Chamber Music in Mixed Ensemble 6", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4410", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4340, students will continue to\nfurther study and perform works for piano ensemble \u2013\neither piano duos or duets. Students must participate in a\npublic, assessed performance as the final examination of\nthe prepared work(s).", + "title": "Collaborative Piano - Piano Ensemble 5", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4440", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4341, piano students will\ncontinue to work closely with the Voice department.\nStudents will participate in at least one public performance\nand/or a final examination of the prepared work(s).", + "title": "Collaborative Piano - Vocal Accompaniment 5", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4441", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4342, piano students will\ncontinue to work closely with instrumental students on\nrepertoire for instrumental/piano duos. Students are\nexpected to participate in at least one public performance\nas well as in a final examination of the prepared work(s).", + "title": "Collaborative Piano - Instrumental Accompaniment 5", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4442", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4343, piano students will\ncontinue to collaborate with students from other\ndepartments, forming undirected groups consisting of\nthree or more players, to study and perform selected\nworks of chamber music. Students are expected to\nparticipate in at least one public performance as well as in\na final examination of the prepared work(s).", + "title": "Collaborative Piano - Chamber Music 5", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4443", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4440, students will continue to\nfurther study and perform works for piano ensemble \u2013\neither piano duos or duets. Students must participate in a\npublic, assessed performance as the final examination of\nthe prepared work(s).", + "title": "Collaborative Piano - Piano Ensemble 6", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4540", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4441, piano students will\ncontinue to work closely with the Voice department.\nStudents will participate in at least one public performance\nand/or a final examination of the prepared work(s).", + "title": "Collaborative Piano Vocal Accompaniment 6", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4541", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4442, piano students will\ncontinue to work closely with instrumental students on\nrepertoire for instrumental/piano duos. Students are\nexpected to participate in at least one public performance\nas well as in a final examination of the prepared work(s).", + "title": "Collaborative Piano - Instrumental Accompaniment 6", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4542", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A continuation from MUA4443, piano students will\ncontinue to collaborate with students from other\ndepartments, forming undirected groups consisting of\nthree or more players, to study and perform selected\nworks of chamber music. Students are expected to\nparticipate in at least one public performance as well as in\na final examination of the prepared work(s).", + "title": "Collaborative Piano - Chamber Music 6", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA4543", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores at a graduate level how modern leadership thinking and people management strategies can translate to orchestral conducting skillsets and help develop conductor effectiveness particularly in the context of rehearsing/training orchestras.", + "title": "Leadership in Orchestral Conducting", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA5105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module revolves around chamber / orchestral and related ensemble study specially designed for performance / composition majors. It allows the time and opportunity for students to become able ensemble participants in a variety of contexts.", + "title": "Ensemble Study 5A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA5115", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module continues to consoldate and hone experience around chamber / orchestral and related ensemble study specially designed for performance / composition majors. Students gain greater responsibility in their roles within the ensembles, including assuming leadership and organizational roles where applicable.", + "title": "Ensemble Study 5B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA5116", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module revolves around self-directed learning appropriate to each student\u2019s career trajectory through one-to-one mentoring. The module consolidates and hones technical, musical and professional skills appropriate to a variety of career contexts. Through developing independence, self-reflection, and flexibility, preparing students to deal with professional expectations and demands with confidence, and navigate within the constantly evolving cultural landscape.", + "title": "Professional Practices in Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA5121", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Graduate Practicum provides students with the opportunity to work in a professional context within the Conservatory. The scope of the workplan will be discussed with a mentor, taking into consideration the student\u2019s career trajectory/interest. Where appropriate, the student may assist the mentor/faculty in actual teaching assignments for undergraduate studies and related administrative tasks.", + "title": "Graduate Practicum in Pedagogy", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA5122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Collaborative Portfolio module is self-directed and documents students\u2019 practical/real-world applications in leading collaborative activities. Students will work individually with a mentor to discuss planned output over the course of the semester and how it might help in personal development. Students are also required to present their reflections at the end of the semester to detail learning processes and outcomes.", + "title": "Collaborative Portfolio", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA5123", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a self-directed, portfolio-based module that encourages students to document, reflect upon, and evaluate their artistic practices within their chosen fields. Students will produce traceable output from projects that can take a variety of formats, such as ensemble collaborations, pedagogy-facing outreach projects, and multimedia creation. Students are also required to present their reflections at the end of the semester to detail learning processes and outcomes.", + "title": "Musical Explorations", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUA5124", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Established musicians advancing their careers often assume leadership positions where they lead and manage teams of people. These could be made up of musicians with minimal administrative background or administrative teams with little musical understanding. This module aims to provide musicians with a solid understanding of leadership strategies building out of their transferable musical skills, to help them navigate both environments effectively as a leader.", + "title": "Leadership in Musical Contexts", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA5160", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module revolves around individual instrumental / composition lessons specially designed for performance / composition majors. It consolidates and hones technical and musical skills appropriate to a varied range of musical\nstyles and professional performance contexts. It develops confidence, independence, self-reliance and self-reflection in preparation for advanced study and a life of changing professional expectations and demands.", + "title": "Major Study 5A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MUA5161", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module revolves around individual instrumental / composition lessons specially designed for performance / composition majors. It continues to consolidate and hone processes initiated in the previous semester, with a view to the presentation of a preliminary major Public Recital during the semester.", + "title": "Major Study 5B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MUA5162", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Research in music encompasses a diverse range of focus areas and approaches. This module surveys and evaluates a breadth of methodologies and outputs, drawing on the expertise of leading practitioners in fields such as performance practice, music education, music cognition, and ethnomusicology. By engaging with current research, students will gain an understanding of the research landscape and acquire skills to critically assess their own practice. Students will be empowered to conceptualise projects as part of developing their individual artistic identities and situate themselves in an evolving 21st-century ecosystem.", + "title": "Research Practices in Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA5163", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s rapidly evolving musical landscape, the diverse role of an artist in the community provides infinite possibilities to engage, understand and encourage positive social change. This module introduces current thinking and best practices in community music-making through an understanding of theories and examples that feature dynamic interplay between the different contexts where community music intersects with pedagogical processes. Play! Lab sessions will also include practical hands-on application of facilitative and explorative skills in community music-making.", + "title": "Musical Engagement in the Community", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA5264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module further consoldates and hones experience around chamber / orchestral and related ensemble study specially designed for performance / composition majors. In addition to greater responsibility in their roles within the\nensembles, students also develop extended repertoire acquisition and experiences in a variety of ensemble contexts.", + "title": "Ensemble Study 6A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA6115", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The final graduate ensemble module brings to a summation a wide range of training and experience relevant to the professional instrumentalist\u2019s / composer\u2019s abilities and success within a professional music context in the realms of chamber music, orchestral music, and related ensemble combinations.", + "title": "Ensemble Study 6B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUA6116", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module revolves around individual instrumental / composition lessons specially designed for performance / composition majors. It continues to consolidate and hone technical and musical skills appropriate to a varied range of musical styles and professional performance contexts. It develops confidence, independence, self-reliance and selfreflection in preparation for advanced study and a life of changing professional expectations and demands.", + "title": "Major Study 6A", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MUA6161", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module revolves around individual instrumental / composition lessons specially designed for performance / composition majors. It continues to consolidate and hone processes initiated in previous semesters, with a view to\nthe presentation of a final major Public Recital during the semester.", + "title": "Major Study 6B", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "MUA6162", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The capstone project is an individualised, self-directed application of research thinking and skills, building upon the work done in the Research Practices in Music module. Students will conceive and independently develop a project that investigates their chosen topic, demonstrating skills such as experimentation, literature review and quantitative and qualitative data collection and analysis. The final output for each project will vary based on the nature of the research, but must include a public presentation (e.g., lecture-recital) and a defence. Each student will be supported by at least one supervising mentor from the YST faculty.", + "title": "Graduate Capstone Project in Music Leadership", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "MUA6178", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to introduce students to a variety of core\nstrategies for engaging with, understanding, and communicating\nabout music at a tertiary level. Through listening, performing,\ndiscussion, reading, and writing, the module will expose students\nto diverse musical styles, forms, and genres, introduce various\nanalytical and aesthetic approaches to music, and enhance\nstudents\u2019 ability to engage critically in musical dialogue using\nappropriate terminology and media.", + "title": "Understanding and Describing Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH1100", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the study of music, necessary for\nsuccess as a music student and professional\nmusician in the 21st century.\n\nFocusing on research, communication and critical\nthinking, students will acquire a shared vocabulary to\ntalk and write about music, and an understanding of\nmusical concepts and genres.\n\nStudents will also study music as a cultural and\nsocial phenomenon and contrast historical and\npresent performance practice, with emphasis on\nworks currently being performed in the Conservatory.\nStudents will develop confidence in expressing their\nown artistic perspectives and evaluate what it means\nto be part of an evolving musical ecosystem.", + "title": "Foundations for Musical Discovery", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Today\u2019s most widely-known, international concert repertoire is primarily made up of 18th-, 19th-, and early 20th-century European and North American composers and their music. This module presents a look, listen, and study of their music and legacy focusing on two parallel movements in the European tradition: the classical, rococo, galante, emfindsamer stil, and neo-classical; and sturm und drang, romantic, and neo-romantic. The focus of learning in this course is through primary source materials. (Non-conservatory students that can read music are invited to enrol in this course as free elective.)", + "title": "Classical Styles and Romantic Spirits", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What musicians, singers, and composers have, and had, the most, and least, followers, and why? This course is a detailed study of the dynamics among music, music makers, and audiences in history. Central to this course is a critical comparison of historical and present case studies. Historical case studies draw from the western music legacy, and contemporary case studies will draw from the global as well as Singapore and Asia. Students will analyse common patterns, discriminate differences, and make inferences from these case studies.", + "title": "What Was, and Is, Popular Music?", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies music produced in and for religious and political environments from the earliest Greek and Chinese civilizations through to the present day. The course explores the origins of music as a symbol of both the church and the state, looking at both in their wider meanings as bodies of people with common beliefs and purposes. It covers religioso and ceremonial music from the ancient civilizations of Greece and China, looks at the Patronage of the European courts and the Catholic and Protestant Churches, and investigates the purpose and value of music in contemporary religious and political ideologies especially those affecting South East Asia. No previous knowledge of music theory or history is required as the module is primarily focused on religious, political and social elements.", + "title": "Music of the Church and State", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to the concept of musicology, including critical theories of music and various approaches to presenting researches in music. It aims to inculcate in students both an enquiring mind and a means of addressing issues which affect music on a variety of platforms. It aims to strengthen students\u2019 writing and cognitive skills and to understand the implications of various approaches to presenting research findings. It also aims to broaden students\u2019 minds in the way they both perceive music and understand its implications to society, both academic and artistic.", + "title": "Musicology", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module traces the history of opera and musical theatre, and their socio-cultural contexts, from the creation of the Western opera tradition in the late 16th century to popular stage and movie musicals, and the current scene in Singapore today. From a celebration of mythical heroes and ancient greek ideals, to biting commentary on contemporary issues, to exploring the lives and loves of ordinary people, the module examines how opera and musical theatre have been vehicles for powerful ideas and social change. Through selected works, students will consider topics including performance practice, catalytic cultural and political ideas, and depictions of race and gender.", + "title": "The Evolution of Music for the Stage", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH3203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores significant genres, styles, and representative chamber works from the common practice period to the present day. Also considered are: relationships between chamber music and its socio-political and cultural contexts; the changing social function of chamber music and musicians; various performance contexts; trends in musical aesthetics; and the evolution of chamber music\u2019s languages and styles. Students undertake individual research projects on selected chamber works, and lead discussions on their chosen work in weekly seminars. Students acquire skills, knowledge, and confidence necessary to conduct independent research and critically engage with the repertoire they play.", + "title": "Chamber Music: An Interdisciplinary Approach", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH3205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will investigate the skills involved in both writing and commenting critically about music and look at the various platforms for such criticism (i.e. print and broadcast media, social networking, assessment reportwriting).\nIt will also study how performers and audiences react to criticism and assess its effect on music in performance.", + "title": "Music Criticism", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH4203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an intensive survey of Western music that encourages students to critically assess and challenge existing historical narratives and canonic thinking. Students will review and study in detail all historical aspects associated with the creation of music, including genres, styles, historical periods, composers\u2019 lives and works, and patrons. Students will continually consider and question the motivations behind the inclusion and exclusion of artists and artworks in the constructed stories of music. Modes of teaching, learning, and assessment are designed to prepare students for graduate-level music history modules, with an emphasis on independent, inquiry-based learning.", + "title": "Learning and Challenging the Historical Narrative", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH4204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the role and impact of amateur music-making in diverse cultural contexts, critically examining contemporary exemplars of amateur music-making alongside historical case studies from both Western Classical and non-Western musical contexts. Topics discussed include the influence of/on technology, relationship with \"professionals\", as well as the complex political, economic and social conditions and motivations that allow amateur music-making to flourish. Students will be empowered to apply their insights in their own musical activities and interactions, cultivating a vibrant, engaged community of music-makers in our wider society.", + "title": "Histories and Cultures of Amateur MusicMaking", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores music as a locus of interaction: how it is situated in and relates to the wider world outside the concert hall, both in the abstract and in the real world. Music, like any other discipline, has both intrinsic and extrinsic connections to other fields, and adopting a multidisciplinary approach to music can lead to exciting and impactful results. Through both contemporary and historical case studies, each week of this module will critically consider the interconnection between music and another field, including areas within the arts (theatre, visual art etc.) and without (nature, gender studies, politics etc.).", + "title": "Music in Interconnection", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUH5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Monday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as the first semester of Italian language studies for music majors. Basic grammar, morphology, syntax and, especially, conversation will be emphasized. Required for all voice majors. Open to all NUS students.", + "title": "Italian for Musicians 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUL1105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as the second semester of Italian language studies for music majors. Basic grammar, morphology, syntax and, especially, conversation will be emphasized. Required for all voice majors. Open to all NUS students.", + "title": "Italian for Musicians 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUL1106", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will serve as the first semester of French language studies required for Voice Majors in the Yong Siew Toh Conservatory of Music. Basic grammar, morphology, syntax and conversation with emphasis on situations which a musician in France will be emphasized. Open to NUS students.", + "title": "French for Musicians 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUL2107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will serve as the second semester of French language studies required for Voice Majors in the Yong Siew Toh Conservatory of Music. Basic grammar, morphology, syntax and conversation with emphasis on situations which a musician in France will encounter will be emphasized. Open to NUS students.", + "title": "French for Musicians 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUL2108", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Friday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will serve as the first semester of German language studies required for Voice Majors in the Yong Siew Toh Conservatory of Music. Basic grammar, morphology, syntax and conversation with emphasis on situations which a musician in Germany will encounter will be emphasized. Open to NUS students.", + "title": "German for Musicians 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUL2109", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will serve as the second semester of German language studies required for Voice Majors in the Yong Siew Toh Conservatory of Music. Basic grammar, morphology, syntax and conversation with emphasis on situations which a musician in Germany will encounter will be emphasized. Open to NUS students.", + "title": "German for Musicians 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUL2110", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Friday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers essential musical concepts and their application in music from different eras and genres. The aim is to develop the students\u2019 capacity to create meaningful musical realisations and important musicianship skills through four components \u2013 Analysis; Creative Writing; Aural Skills and Workshops.\n\nMusical concepts are utilised through recognition, description and creation in the following main categories \u2013 melody and motivic development; harmonic structures and voice-leading schemata; phrase and formal structures. In the Workshops component, aurally-based performance skills are continued through world music ensemble and improvisation.\n\nThis module is mandatory for all BMus students in their first semester of study.", + "title": "Musical Concepts and Materials 1", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2B", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "T4A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "T4B", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 8, + 9, + 10, + 11 + ], + "venue": "YSTCM-RS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 8, + 9, + 10, + 11 + ], + "venue": "YSTCM-RS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "T3A", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "T3B", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Tuesday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "T3B", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Friday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "T3A", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Tuesday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1B", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "T4A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "T4B", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 8, + 9, + 10, + 11 + ], + "venue": "YSTCM-RS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 8, + 9, + 10, + 11 + ], + "venue": "YSTCM-RS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is the continuation of MCM 1 and will be mandatory for BMus students in their second semester of study. MCM 2 continues the examination from the\nfollowing components - melody and motivic development; harmonic structures and voice-leading schemata; phrase and formal structures. Aural skills will be an additional component to further develop the students\u2019 abilities to listen analytically and reflect upon the musical experience and its relationship to performance, listening and creativity. This module balances analytical, creative and aural-based activities and engages further connection with the curriculum and students\u2019 practice.", + "title": "Musical Concepts and Materials 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT1102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "TC", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TA", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TB", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TA", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Monday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1B", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2A", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2B", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "YSTCM-WS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 8, + 9, + 10, + 11 + ], + "venue": "YSTCM-WS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 8, + 9, + 10, + 11 + ], + "venue": "YSTCM-RS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "YSTCM-RS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "TC", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TB", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-ER2", + "day": "Thursday", + "lessonType": "Tutorial Type 2", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 8, + 9, + 10, + 11 + ], + "venue": "YSTCM-RS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2A", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "YSTCM-WS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4 + ], + "venue": "YSTCM-RS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1B", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 8, + 9, + 10, + 11 + ], + "venue": "YSTCM-WS", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to style writing of the Classical period of European composers like Mozart. Topics on harmonic progression, voice leading, and texture are addressed as are relevant compositional concepts like repetition, variation, and elaboration. Class time is dedicated to lectures and demonstrations as well as hands-on practice in class. Simple compositions in the style of common practice European music form the bulk of the assessment. While prior experience with music composition is not required, a familiarity with music theory rudiments is highly recommended.", + "title": "Introduction to Classical Music Composition", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides Conservatory students with an introduction to Western modal, tonal and post-tonal practices from 15th \u2013 20th centuries. The module surveys modal practices in the Renaissance period, tonal practices in the 18th-20th centuries, including jazz harmony, and post-tonal practices.\n\nThe module includes both theoretical and practical components. Students analysis works to further their understanding of module topics and compose short works to demonstrate their comprehension of module content.", + "title": "Harmonic Practices", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores counterpoint as a major compositional technique in music of different genres through the ages. The various topics range from the birth of polyphony to high renaissance polyphony, and the development of counterpoint during the common practice period through the 20th century.\n\nThe module aims to bridge compositional thinking with performance and interpretative analysis. Because of this, analysis, composition, and performance are equally represented as modes of learning. Major assessment is in the form of analytical work and music compositions that are performed in class and/or public concerts.", + "title": "Counterpoint Through the Ages", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT2202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1A", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 8, + 9, + 10 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1A", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1B", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR8", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1B", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 8, + 9, + 10 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores common textures found in music, such as monophony, homophony, polyphony and heterophony, and examines the influence of textural and timbral elements on a work\u2019s overall shape and character.\n\nThe module also includes an introduction to basic orchestration techniques. Students will examine different combination of instruments in various textural settings, write for combinations of instruments with attention to timbre, range, performance techniques and instrumental idioms. There will be exercises comprising formal analysis of musical works -- the aim of which is to show how composers shape melody, harmony and timbre to create large-scale musical structures.", + "title": "Texture and Timbre", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT2203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1A", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1A", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 8, + 9, + 10 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1B", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1B", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 8, + 9, + 10 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of various formal procedures in music of different eras and genres. It examines how techniques of repetition, contrast, return, development and variation create form. Main topics examined include dance forms, sonata forms, variation forms, contemporary as well as common formal techniques.\n\nThe module aims to bridge compositional thinking with performance and interpretative analysis. Because of this, analysis, composition, and performance are equally represented as modes of learning. Major assessment is in the form of analytical work and music compositions that are performed in class and/or public concerts.", + "title": "Formal Practices", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT2204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1B", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 8, + 9, + 10 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1A", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1B", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1A", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 8, + 9, + 10 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys the relationship between text and music in different eras and genres through vocal, instrumental, and electronic music. Students will examine\nworks set to, inspired by, or including text from literary and non-literary sources in the medieval through contemporary eras.\n\nThe module includes both theoretical and practical components. Students will analyse works to further their understanding of module topics and compose short works to demonstrate their comprehension of module content.", + "title": "Text and Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT2205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1A", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 8, + 9, + 10 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1B", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 8, + 9, + 10 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR8", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1B", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1A", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The terms orchestration and instrumentation go hand-in-hand. While instrumentation refers to the study of individual instruments, orchestration deals with the technique and process of writing for a group of instruments. This module will introduce students to the characteristics and abilities of the instruments in the symphonic orchestra and how they work together through in-class listening and writing assignments, orchestration projects, and performance. The module will also address many of the problems faced by composers, conductors, teachers, and performers. The technique of orchestration is an important part in every musician\u2019s education.", + "title": "Orchestration", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3113", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to new approaches to composition in the past 50 years, focusing on electronic, chamber, and orchestral music from America, Europe, and Asia. The course will be listening-intensive. It is appropriate for both performers and composers. Lectures will attempt to situate each composer/composition discussed on 5 spectra - Cultural Intersection, Politics, Notion of \u201cSound\u201d, Process/Systems, and Technology. Students will be required to perform and/or compose short works that address the compositional approaches presented.", + "title": "Modern Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for students who wish to further\nexplore the depth and diversity of the most complex of all\ntonal forms: sonata.\nSonata form has been the most important vehicle of the\nidea of \u2018absolute\u2019 music and functioned as the archetypal\nformal design from the 18th to the 20th centuries. After\nreviewing its historical predecessors (binary and ternary\nforms), formal principles, and terminology,this course\nlooks into the structure and techniques of the sonata form\nthrough analysis and some creative writing exercises.", + "title": "Sonata Form", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module begins with an overview of Beethoven\u2019s music and his influence on contemporaneous and later 19th century composers.\n\nThe heart of this course explores the divide between absolute and programme music. \u2018Leipzigerisch\u2019 composers (Mendelssohn, Schumann, Brahms) versus the \u2018New German School\u2019 (Berlioz, Liszt). Nationalism is included.\n\nThe final weeks are devoted to the Opera genre by examining the works of Wagner, Verdi and Puccini. It extends to Strauss and Mahler, who represent the final flowering of musical Romanticism. With the model of a Romantic composer/performer, Romantic Styles is designed to bridge compositional work with performance, supported by interpretative analysis.", + "title": "Romantic Styles", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a focused study of the concerto as a genre and how the cadenza evolved from improvisation to being an integral part of a concerto. The chronological setting reinforces the historically-informed approach that\nencourages musicians to be sensitive to the stylistic differences of each era and composer.\n\nThe module aims to bridge compositional thinking with performance and interpretative analysis. Hence, analysis, composition and performance are equally represented as modes of learning. Major assessment is in the form of analytical work and music compositions that are performed in class and/or public concerts.", + "title": "Concerto and Cadenza", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module looks at recent approaches to form, melody, harmony, rhythm, and texture. It is appropriate for students who are interested in exploring music composition in more depth but are not majoring in music composition. It encourages individual creative writing while exploring contemporary techniques of music from\n1920 to present. \n\nClass meetings will include a combination of lectures, private composition lessons and group tutorials. The first half of the semester focuses on solo writing while the\nsecond half focuses on chamber writing. Students will look into some models for composition in preparation for their two projects.", + "title": "Composition for Non-Majors", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on J.S. Bach\u2019s solo instrumental works, with an emphasis on the dance suite. Selected works include the unaccompanied Sonata and Partitas for Violin, Cello Suites, and the Keyboard Suites. The contextual use of dance rhythms and forms in other Bach works, and neo-baroque trends in the 20th century will also be topics of discussion.\n\nThe module aims to bridge compositional thinking with performance and interpretative analysis. Thus, analysis, composition, and performance are represented as modes of learning. Major assessment is in the form of analytical\nwork and music compositions that are performed in class and/or public concerts.", + "title": "Bach Suites", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the fundamental components of arranging and composing for wind ensemble through listening, score study, and scoring projects. The module includes both theoretical and practical components. Students will analyze works to further their understanding of module topics and create arrangements and/or compose original works to demonstrate their comprehension of module content.", + "title": "Wind Ensemble Arranging/Composition", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to writing for Chinese instruments in small and large ensemble settings to convey musical ideas or original compositions. Students will be introduced to works featuring a sound world different from the western traditions as well as performance techniques unique to Chinese instruments. Prior knowledge of (instrumentation/orchestration) is preferred.", + "title": "Writing for Chinese Ensembles", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of various compositional approaches to choral music. Styles surveyed range from English madrigals to popular \u2018a capella\u2019 styles, and diverse modern composers such as Ligeti and Whitacre. Assignments will feature creative choral composition, arrangement, paying attention to details of idiomatic voicing, practical voice leading, text setting, and accompaniment.\n\nThe module aims to bridge compositional thinking with performance and interpretative analysis. Thus, analysis, composition, and performance are represented as modes of learning. Major assessment is in the form of analytical work and music compositions that are performed in class and/or public concerts.", + "title": "Choral Composition", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the compositional ideas developed in the early twentieth century (1900-1945). It provides students the skills and techniques for analysing this repertoire and composing music in this style. Perspectives will include not only the musical materials of these works but also some insights into their cultural context and historical placement.\n\nClass meetings will include a combination of lectures and group tutorials. The first half of the semester focuses on organizations of pitch, rhythm, form, texture and orchestration in the early twentieth century while the second half focuses on pitch-class set theory and twelve-tone theory.", + "title": "Early Twentieth-Century Music", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT3223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will develop and hone their pedagogical practices in teaching music over the Internet both synchronously and asynchronously across different age groups and settings. They will learn the best practices to incorporate online tools into their teaching curriculum and performance practice, including developing their own online platforms.", + "title": "Teaching Music Online", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUT3224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR6", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on the knowledge acquired in Teaching Music Online 1, students will continue to apply and hone their pedagogical approaches to teaching music over the Internet. Students will teach music students around the world in a variety of settings using various forms of elearning.", + "title": "Teaching Music Online 2", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUT3225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module reviews key concepts and skills commonly assessed on graduate music school theory entrance exams. These include 4-part voice leading, 18th century contrapuntal techniques, post-tonal analysis, and common forms. This module assumes students are already familiar with these skills but are in need of reviewing them before entering graduate school. It is, therefore, appropriate for fourth year conservatory students whose future plans include graduate level studies in music.", + "title": "Graduate Theory Preparation", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR7", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents a pragmatic, accessible approach to music analysis. The main objective is to realize that while a work may appear complicated, there is always a simple and practical approach to it. Music analysis is therefore linked to awareness and practicality. Forming a clear link between musical awareness and music analysis will offer a more fruitful opportunity to allow music practitioners to focus on aspects such as musical coherence, structural relationships and interpretative choices. This analytical strategies can be adapted and included within instrumental and group lessons as techniques to teach phrasing, musical understanding and musical knowledge.", + "title": "Practical Approaches to Musical Analysis", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MUT5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "YSTCM-SR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Module", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "MUX2102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the history, theory and practice of science communication at an advanced level. It covers contemporary competing theories of what constitutes 'best practice' in science communication, the historical roots\nof the discipline, fundamental practical skills for communicating science with the public, and a deep understanding of science communication professional practice. It provides a solid foundation for further studies in science communication, touching on multiple communication mediums, considerations of different aims and audiences, and some specifics of communicating particular kinds of scientific information. Students will develop foundational science communication research skills in this course.\n\nThe course is compulsory for students in the Master of Science Communication and Master of Science Communication Outreach programs, but postgraduates in\nother disciplines, particularly in the sciences, can also benefit from its overview of the current science communication landscape.\n\nThe course will be run as a combination of online content, face-to-face or online classes and an intensive component on-campus.", + "title": "Communicating Science with the Public", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5152", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The students will complete a project related to a topic in science communication. The project may be a combination of a written thesis, material for teaching/outreach, and IT components. The project will be assessed (when\napplicable) on scientific accuracy, quality of teaching/outreach material and presentation of findings.", + "title": "MSc Science Communication Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "MW5200", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Science communication is a vital skill for shaping public perception of innovation, adoption of technology, and resilience to misconceptions. This is important for journalists, public relations managers of technology firms/R&D institutes, project managers, advertising and regulatory agencies. This course provides the essential skills and knowledge to help the learner use both mainstream and online media to communicate science. Course topics/activities include: written, oral and interview skills, public sentiment survey skills, and data analysis, visualization and presentation skills. The learner will also receive practical training in writing real articles for the public and may participate in 'live' media interview.", + "title": "Essentials of Science Communication", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MW5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to a wide range of current innovative strategies in science communication with emphasis on the usage of demonstrations and technological resources to communicate and engage the public in Science. Topics covered include: basics of designing scientific experiments or demonstrations in lectures, classrooms or exhibitions; basic concepts of conducting interactive demonstrations; approaches to illustrate scientific principles; basic concepts, design in making online science videos for communication, developing STEM related IT-games to engage the wider public and illustrations in teaching enhancements throught IT resources. The topics will be introduced by lecturers who are known for their innovative science communication techniques and their experience, including lecture demonstrations and use of technology.", + "title": "Innovative Strategies in Science Communication", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MW5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a proposed third module for the ANU-NUS Joint Master Programme in Science communication, Frontier topics in Science. It is a module that will present the latest and upcoming trends in scientific discovery with an emphasis to recognise and understand the scientific ideas behind cutting age discovery. The materials used in this module are those that non-specialised audience can relate\nto or has an impact on society. The scientific ideas in the development of the latest scientific technology and how they impact human society will be illustrated.\n\nEach individual topic will be presented by either an expert scientist or the lecturer from an academic scientist point of view. The subject material will be pitched at the level where students of different scientific background or discipline can\nunderstand. Classes will be conducted in a seminar style, followed by a focus group discussion session on the impact of the science on society.", + "title": "Frontier Topics in Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "MW5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Scientists around the world consistently list achieving tangible impacts on policy and practice as a core career goal - yet few have the knowledge or skillset needed for turning this into a reality. This has arisen because traditional scientific training programs rarely teach the skill set and competencies required to operate effectively at this interface. Thus, this course focuses on providing students with the theory, as well as the practical knowledge, skills and tools that are needed to operate more effectively at the science-policy-practice interface to achieve tangible impacts from their research. This will be achieved by drawing on current research from the fields of knowledge exchange and research impact, as well as the inclusion of guest lecturers from the realms of policy and practice so that students gain a first hand account of the practical ways in which they can bridge the gap between science, policy and practice.", + "title": "Engagement for Policy Impact", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Science communication and outreach programs employ a range of methods to engage audiences, deliver impact and communicate science. From capacity building programs in the developing world to science puppet shows for early learners, science communicators employ different methods, often to better engage with underserviced audiences, create impact and social change, and explore topics in more intriguing ways. As part of this, they need to be skilled at conceiving ideas, logistics and program planning, \u2018selling\u2019 their ideas and securing funding, running events and evaluating their success. In this course, you\u2019ll come up with a novel program idea, trial it, report on your trial and then learn how to win funding for it through grant applications and a presented \u2018pitch\u2019. This course is about creating your own original science communication project. It represents an authentic opportunity to develop real-world skills that allow your ideas to become realities. As you\u2019ll discover in your future science communication careers, if you want to pursue your passions, your goals and your ideas, skills to develop them and just as importantly get them funded are critical. Many past students\u2019 ideas have turned into actual, fully funded, real-world ongoing projects that have had national and global impacts, so don\u2019t underestimate what you might achieve if you make the most of it! If you choose, this can be so much more than just another assignment.", + "title": "Science Communication Project Design and Delivery", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a practical course which aims to develop students' science event organisation, delivery and evaluation skills. The emphasis is on presenting science live, in a range of ways driven by theory and best practice, to a relevant\ngeneral audience. Students learn to consider a relevant audience, and to design, plan, market, deliver and evaluate a science communication event relevant to that audience.", + "title": "Public Events for Science Engagement", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How has Brave New World shaped the human cloning debate? Why did forensic science enrolments boom simultaneously with the popularity of CSI and Silent Witness? How is Doctor Who useful for engaging high school students in science learning? To what extent did Frankenstein establish a negative image of scientists? Why is theatre an effective HIV/AIDS education tool in South Africa and not in Australia? What role did Star Trek's Lt Uhura play in recruiting astronauts to the NASA space program? How might The Day After Tomorrow impact the public understanding of climate change?\n\nThis course provides an introduction to the impact of fictional representations of science and scientists on public perceptions of science. It introduces research, theory and methods from this growing area of science communication as applied to fictional works including films, television programs, plays, novels, short stories and comics. Students are encouraged to share their own experiences of science-based fiction and to pursue their areas of interest through assessment. The major piece of assessment is a research project testing students' hypotheses about the impact that a work of fiction might have on public perceptions of science. The research project will be completed individually, but the research ideas will be developed as a team with a view to obtaining publishable results.", + "title": "Science in Popular Fiction", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will prepare students to communicate science across cultural boundaries. It will increase student\u2019s understanding about issues and effective strategies of communicating science and technology with culturally diverse audiences. Students will explore how values, beliefs and expectations differentiate science from other knowledge systems, and examine the Eurocentric privileging of modern science and its communication, which are integral parts of Western culture. In doing so, students will look closely at communities that are alienated from science, with particular reference to current science communication research.", + "title": "Cross Cultural Perspectives in Science Communication", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary course examines the ways in which societies attempt to enhance and promote health in a range of settings, while critically assessing the associated risks and barriers. This course will provide a sound theoretical\nunderstanding of dominant health promotion and protection theories and models, as they relate to contemporary health issues in Australia and internationally. This course emphasises practical application of theory in problem based learning scenarios. Students will gain a sound conceptual understanding enabling them to develop health interventions and communicate effectively with specialist and non-specialist audiences.", + "title": "Health Promotion and Protection", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the creation of clearer and more effective ways to communicate scientific matters to larger audiences. It provides participants with a thorough and practical understanding of the process used in developing a communication plan including the development of a strategic framework and accompanying action plan that allocates resources, responsibilities and timeframes. It has a strong emphasis on relating theory to current industry best practice in implementing a strategic approach to planning communication activities. The major project component is based around field work and evaluation of real life science communication strategies.", + "title": "Strategies in Science Communication", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The internet and social media sit at the heart of the modern communication of scientific information. But are you using the web in the best possible ways to communicate? This intensive course focuses on providing you with the skills and knowledge so you can triumph when using the internet to communicate your science. Topics include writing for the web, using analytics, best social media engagement, video and podcasting, mapping and infographics, Wikipedia and the frontiers of social media.", + "title": "Science Communication and the Web", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a detailed exploration of the role of science dialogue in relation to contemporary science debates and science and technology governance. As well as providing a theoretical understanding informed by\nScience and Technology Studies, this course will provide you with the skills to plan, design and run science dialogue. It will also give you opportunities to learn and practice skills needed to participate in and facilitate dialogue. Assessment items will require students to plan and conduct a mini-dialogue.\n\nScience dialogue refers to communication about science that brings all parties to greater understanding. The key feature is that science dialogue is bi-directional - information and insights are gained on both 'sides'. In the\ncase of dialogue between scientists or science communicators and members of the public, then, the public participants learn about the science and the\nscientists' aims and aspirations, and the scientists learn something from the public, about their concerns and aspirations and generally about the social context of the science, which informs their thinking, and potentially their\ndecisions, about that science. Dialogue has a special place within science communication as a communication medium with particular aims that is increasingly being promoted as a best practice approach within government\nand community sectors.", + "title": "Science Dialogue Theory and Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Politicians, chief scientists and others are increasingly calling for scientists to communicate their work with the public, but how, where and when did this start? Why have scientific societies like the Royal Society of London transitioned from doing scientific research in the seventeeth century to promoting the interests of science in the twenty-first? Are there parallels between eighteenth century amateur science and citizen science today, or\nbetween nineteenth century science popularisation and today's science journalism? How can we map institutional relationships between science and the bodies that promote it, popularise it, and link it to political processes? Is science communication an added extra in the world of science, or integral to its success and longevity?\n\nThis course applies historical and institutional approaches to science communication to explore the big picture view of how this discipline and its professional practices have developed across the world and through time. Students will map the relationships between science and the science\ncommunication-type activities and organisations that have always surrounded and supported western science as an institutionalised pursuit - scientific societies, advocacy for science funding, science professionalisation measures,\nscience popularisation efforts of different kinds, science museums and centres, and more. Course assessment emphasises reflection on the significance of this big picture for professional practice in science communication, as well as developing science communication research skills.", + "title": "Making Modern Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "MW5273", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "GRADUATE SEMINARS", + "title": "Graduate Seminars", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "NE5999", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Paris is a Global City, a place for diplomacy and its cultural offer is countless, hosting many of the world's most renowned art pieces. The city has also been recognised for its specific approach to social innovation, promoting initiatives to accelerate environmental and social transitions. GEx Paris offers a transformative journey where students will learn about Paris and France with a focus on the themes of Arts, Culture, Diplomacy, and Social Innovation. Students will have access to different types of activities like lectures, immersive workshops, visits and masterclasses that will help them understand how these themes are intertwined with the city.", + "title": "GEx Paris", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NEX3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Humanity faces an array of challenging environmental issues that requires interdisciplinary understanding and actions. GEx Stockholm explores environmental and sustainability concerns through these lenses. Students will be exposed to topics including but not limited to water (in)security, marine conservation, climate change adaptation, and waste management. GEx allows students to engage Swedish cities, institutions and its people to explore how local, regional and global forces shape environmental and sustainability action. Students engage in critical reflections of their learning environments and craft their individual assessment and understanding of their chosen topic of choice.", + "title": "GEx Stockholm", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NEX3002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module has two core questions How does a city become an international hub for particular industries? Specifically, did New York become a global hub for finance, media, and diplomacy through design, organic growth, or a mixture of the two? The module employs the theme of the city to understand the tension in all societies between the built ()and the lived experience (). This tension cuts to the heart of the human experience as it is a springboard to study how what we construct determines us as much as what we determine affects what we construct. ville Cit\u00e9", + "title": "GEx New York", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NEX3003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creating inclusive systems of governance which respect diversity is an important aspiration for many democratic societies in a globalised world. GEx Toronto critically examines the complexities involved in creating such systems for a heterogeneous population. Through an interdisciplinary framework, students will explore how narratives concerning diversity and inclusion are constructed and challenged, how communities are legitimised or pathologised by state institutions, and why struggles for recognition and autonomy succeed or fail as communities work to fashion unity out of difference. Students will engage in self-directed projects within a curated experiential environment, document accomplishments, and contribute to knowledge about Canada.", + "title": "GEx Toronto", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NEX3004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Despite its massive economic achievements, Indonesia still struggles with severe geographic and financial disconnectivity that has led to unequal access to goods and services amongst its population. A vibrant entrepreneurship scene has emerged to deal with such disparities, giving birth to unicorns like Gojek and Tokopedia. In this module, students will get to develop a deeper understanding of Indonesian entrepreneurship vis-\u00e0-vis its modernization trajectory. They will be exposed to the theories and practices of entrepreneurship and modernity contextualized to Indonesian histories and cultures, through a combination of e-learning, classroom activities, and an experiential trip to Bandung and Yogyakarta", + "title": "GEx Java", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NEX3005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Development and migration are driving transformations in Asia. GEx Mekong explores pertinent issues around development and migration in the Mekong region through a transdisciplinary lens. Students will be exposed to major topics including histories, cultural identities and practices, demography, urbanisation and globalisation, as well as the innovation landscape of the region. Each iteration of the GEx allows students to dive into cities and places to explore how local and global forces shape social, cultural and economic lives. Students engage in self-directed projects within a curated experiential environment, document accomplishments, and contribute to knowledge about diverse innovations in the Mekong region.", + "title": "GEx Mekong", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NEX3006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does a city\u2019s character evolve and develop? Does a city\u2019s character shape its cultures and technologies? How does culture and technology shape the way a city is built, managed, and lived? GEx Tokyo examines the roles culture and technology play in everyday lives, and how they complement and conflict with one another in processes of innovation and entrepreneurship to improve lives and drive development and growth. Through site visits, discussions and explorations, students will gain insights into how strategies are derived to develop enterprises, enhance livelihood, create value, and accumulate capital in and beyond the city.", + "title": "GEx Tokyo", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NEX3007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFB2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Humanities & Social Sciences)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFB2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Humanities & Social Sciences)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFB2003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Humanities & Social Sciences)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFB2004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Humanities & Social Sciences)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFB2005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Humanities & Social Sciences)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFB2006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Humanities & Social Sciences)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFB2007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Sciences & Technologies)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFC2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Sciences & Technologies)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFC2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Sciences & Technologies)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFC2003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Sciences & Technologies)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFC2004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Sciences & Technologies)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFC2005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Sciences & Technologies)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFC2006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Overseas Exchange Module (Sciences & Technologies)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NFC2007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Designed for all PhD students of the NUS Graduate School (NUSGS), this module facilitates further development of students\u2019 academic literacies in critical reading, writing and oral presentation. For critical reading, students will be guided to deconstruct and evaluate arguments \u2013 competences which students will then deploy by writing a proposal. In writing the proposal, students will need to demonstrate the ability to use suitable academic conventions. This proposal will subsequently be delivered as an oral presentation to a cross-disciplinary audience. This module utilizes a blended learning approach, where students\u2019 learning experiences will comprise in-class and online synchronous and asynchronous lessons and activities.Academic Communication for Graduate Researchers", + "title": "Academic Communication for Graduate Researchers", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NG5001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "G6A", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G6B", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G2A", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G2B", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G2C", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G3A", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G3B", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G1C", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G3C", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G4A", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G4B", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G4C", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G5A", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELS-01-08", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G5B", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-SR9", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G5C", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G1A", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G1B", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "G6C", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001I", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001J", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001K", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001L", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001M", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001O", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the enduring concerns of the human imagination across many global traditions. It explores how these concerns represent cultural narratives, values, and questions that encapsulate historical moments and communicate beyond their specific contexts. Students will examine different media and genres across a variety of world traditions and periods.", + "title": "Global Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NGN2001R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "War is the greatest common, man-made trauma that human beings undergo. We imagine war before, during and after we fight it. We imagine it socially, as tribes or nations, generating a common understanding through books, movies, songs and other representations. Those shared visions of war enable us to fight it and confront its trauma.\n\nThis module examines the changing imagination of war across history. Focusing mainly on English-speaking cultures, it examines poems, books, films, songs, plays, news reports, letters, speeches and tv programmes. It asks how they represent war, and how representations change over time and under pressure from technology, events and political thought.", + "title": "Representing War", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide students with an introduction to irony, a central term in literary and cultural studies. Irony presupposes disjunctions \u2013 between what is said and what is meant, what is perceived and what is real. It thus involves a critical attitude in exploiting and/or perceiving disjunctions. It is often directed with negative effect towards figures and structures of authority, and is sometimes an integral part of a world-view. Students will engage closely with a variety of texts of\ndifferent types, including poems, tracts, short stories, speeches, plays, sketches, songs and pictures. In doing so, they will reach a better understanding of the roles irony can play not only in literature, but also in society more generally. Since the texts are drawn from different historical times, media and geographical locations, students will get a sense of the widespread use of irony in culture and society.", + "title": "Understanding Irony", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Where does meaning come from? Some people think that it resides in the text; some suggest that it originates from the author; others argue that meaning is created by the reader. This module examines the possibilities and problems of the last answer. To what extent does the reader of a text determine its meaning? Is there a universal, objective reader, or are readers historically specific, biased and always \"subjects\"? If a reader constructs the text, can the text in turn construct the reader? We will think about these questions by operating on several levels: (1) by discussing literature and films that thematise reading; (2) by assessing how thinkers have debated the reader's role; and (3) by examining our own processes of reading.", + "title": "Topics in Lit. 2: The Subject of Reading", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Whereas the goal of many literacy studies is to determine who is literate or what counts as literacy, the goal of this module is to examine the political, economic, and social assumptions, factors, and effects of the distinction\nbetween literacy and illiteracy. Although such a study could take place within any national context, this module will focus on Singapore as a location for taking up this issue. Organized around the literacy narratives and histories of \nUSP students older generations of Singaporeans, and people from other cultures and nations, this module explores the impact of the distinction between those who are literate and those who are not on Singaporean identity,\nhistory, politics, and ethics.", + "title": "The Politics of Language and Literacy in Singapore", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A standard way of thinking about arguments privileges reasoning over other modes of persuasion. In other words, good arguments persuade by only relying on logic. They avoid an overreliance on excessive emotional language or on a speaker\u2019s expertise. This module challenges these understandings of argumentation and demonstrates that logic must be considered in its relation with emotions and \nethics for arguments to be persuasive. Students will begin with the Aristotelian tradition and read contemporary treatments of the issues. Further, students will put rhetorical theory into practice by constructing logical, affective, and ethical arguments.", + "title": "Appealing Arguments: Logos, Pathos, and Ethos", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What are the possibilities and problems of \u201cclose reading\u201d? Close reading has long been a foundational tool in, and beyond, literary studies. By looking at its formalist manifestations and political uses, this module first explores what close reading is. We then discuss recent critiques, which has led to alternatives such as: distant reading; reparative reading; surface reading; thin description; just reading; and too-close reading. In so doing, the module raises bigger questions about the \u201cproper function\u201d of analysis. Should it expose and uncover, or \u201cmerely\u201d describe? To make small claims (about a literary work), or large ones (e.g., about society)?", + "title": "Close Reading and Its Vicissitudes", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the modern history of Southeast Asia through the reading of novels and short stories set or composed in the region. It adopts an interdisciplinary approach, with students exploring particular historical periods and topics such as race and ethnicity, gender, conflict, and work and labour. To do so, they will be introduced to different approaches in literary theory, such as New Historicism and Postcolonialism, in order to understand and interpret the historical context in which fiction is written. Ultimately, students will evaluate the advantages and difficulties of using fiction as a means to understand the past.", + "title": "The Modern History of Southeast Asia through Fiction", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Framed around the production of non-fiction short films, Creating \u201cReality\u201d explores the visual representation of factual material. The intellectual core of the module focuses on the complexities of visual approaches to data collection and narrative, especially when observing and depicting real life practices, stories, and behaviours. In the module, non-fiction film is used as tool to explore critical\nissues of the nature of reality, subjectivity/objectivity, selection bias, and the manipulation of data \u2013 which are broad based concerns in all academic disciplines.\n\nThe module draws upon literature from a wide range of disciplines from visual anthropology and new media, to film studies to contextualize the diversity of theoretical and practical approaches involved in creating non-fiction film. The module utilizes practical learning exercises, including the group production of a short documentary film about some aspect of current events, or everyday life in Singapore.", + "title": "Creating 'Reality'", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Intercultural understanding is crucial for solving global problems but face-to-face exchanges are not always possible due to emerging crises, political barriers and income inequality. This module invites students to imagine new modes of intercultural exchange. In the first half of the semester, we will borrow tools and concepts from a variety of disciplines (cultural anthropology, intercultural theatre, interaction design, and translation theory) to devise different \u201cinteraction playbooks\u201d. In the second half of the semester we will test these by working with students in partner universities around the world, through digital platforms and, when feasible, face-to-face interactions.", + "title": "Reinventing Intercultural Exchanges", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How do we turn science into art? This creative writing module examines how theatre explores issues of science - - the personal, institutional and social dimensions of scientific inquiry \u2013 as students create new original dramatic works. Students read and analyse science plays from a playwright\u2019s perspective, and apply the techniques learned to their own short weekly creative writing exercises based on scientific developments. These will be critiqued by their peers, and will culminate in the research and writing of their own one-act plays.", + "title": "From Lab to Stage: Writing the Science Play", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The environmental crisis, manifested in air and water pollution, environmental degradation, the rate of extinction of animal and plant species, and the depletion of natural resources, has many different aspects, the most important being, arguably, the philosophical aspect. In this module, students will be introduced to the philosophical debate about environmental issues. The objective is to equip students with concepts and theories that will help them think about the environment at the fundamental level. Major topics include anthropocentrism and non-anthropocentrism, bio-centred ethics, deep ecology, eco-feminism and environmental virtues.", + "title": "Ethics And The Environment", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the intersections between ethics (the study of what is right and wrong) and aesthetics (the study of beauty and taste) in light of two questions: (1) whether the appreciation of artworks makes us morally better persons, and (2) whether a moral defect make an artwork less beautiful. Students will study both historical and contemporary philosophical debates on these two issues, and make use of examples of representational art \u2013 i.e., artworks which depict an object, event or mental state \u2013 to explore their own positions. Examples of representational art examined include: novels, paintings, films, photographs, and museum exhibits.", + "title": "Ethics and Aesthetics: The Moral Value of Representational Art", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How have artists, philosophers, and writers of fiction imagined the relation between humans and animals? Have they imagined humans as a species of animal, or as belonging to a realm of being that exceeds the lives of animals? What, if anything,\ndistinguishes us from animals: language, clothing, reason, or something else? In this course we will examine some of the ways these questions have been explored in art, advertising, philosophy, and literature. Students will consider how we look at\nanimals, read the views of influential philosophers, and immerse themselves in literary texts that imagine animals. The course will conclude with an examination of a provocative text by the novelist J. M. Coetzee, who stages a confrontation between philosophy and literature on the question of imagining animals.", + "title": "Imagining Animals", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Before technology created augmented reality, the ancient practice of \u201cmemory palaces\u201d combined mental visualization with material environments. Over 2,000 years, this practice split along different paths: (1) an analytical tool and (2) a technique for memorizing large chunks of information.\n\nThe memory palace is method people used for memorizing, organizing, and recalling large amounts of information before there were computers. In this course, students will learn and draw from rhetorical theories of memory to analyse communication. Simultaneously, they will use the memory palace to train for a mini-memory championship, held in the last two weeks of the module.", + "title": "Arts of Memory: Public Recollection & Memory Training", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From the ancient world to the present day, philosophers, novelists, and social thinkers have attempted to envision ideal states. Utopian texts often present us with provocative thought experiments, addressing fundamental questions about justice, leadership, and human flourishing. In this module, we will critically examine representations of ideal states ranging from Plato's Republic to contemporary visions about smart cities. We will focus in particular on the roles of governance, labor, and technology in the construction of utopian projects and discuss whether the utopian imagination is still relevant in the present day.", + "title": "Utopia: Ideal Places from Plato to the Smart City", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2015", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will study technologies of the self, practices that individuals adopt in order to transform themselves in light of their ideals. We will look at the origins of this concept in the study of ancient Greek and Roman philosophy and discuss texts drawn from Western and Eastern traditions that recommend particular practices of self-transformation. Throughout the module, we will also consider whether ancient technologies of the self are still relevant today and to what extent contemporary selfimprovement approaches and forms of digital selffashioning are modern examples of technologies of the self or a qualitatively different phenomenon.", + "title": "Technologies of the Self: from Socrates to Self-Help", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2016", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The rule of Britain, France and the Netherlands in the 18th-20th centuries have left behind a conflicting legacy in different parts of Asia. On the one hand, they destroyed\u2014even if only partially\u2014the cultural traditions as well as socio-economic infrastructure of their colonies. On the other, they established political, economic, social and cultural institutions that colonialized subjects have to different degrees benefitted from till this day. This module will examine how this conflicting legacy came about, so that students will be more analytically equipped in making sense of it.", + "title": "Making Sense of Colonial Ideology and Its Legacies", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is \u201cthe mind\u201d and where does it fit in the interdependent histories of nature and culture on our planet? Does \u201cmind\u201d reduce to brain activity \u2013 or is it more than just the electro-chemical exchange between neurons? As minded creatures with brains ourselves, the ways in which we delimit the mind/brain relation has enormous consequences for the ongoing construction of our legal, social, medical and ethical lives. In this module, we will study some of the major approaches to this issue, and attempt to discover what it is that we are really talking about when we are talking about \u201cmind.\u201d", + "title": "Multidisciplinary Inquiries Into the Mystery of \u201cMinds\u201d", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the Biblical, Confucian, Socratic, and Modern or Machiavellian conceptions of the virtuous leader. The module is aimed at exposing students to the most representative texts of each tradition in order to gain depth of understanding of the competing conceptions of leadership, and their underlying assumptions about the nature of human beings. Students will also be expected to interrogate each tradition with a view to discovering its relevance to contemporary life.", + "title": "Virtue And Leadership", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course adopts an eclectic, multi-disciplinary approach towards leadership. \n\nThrough a section on Core Ideas and Great Texts, it highlights the key tensions and complexities involved in leaders\u2019 decision-making, exemplified in seminal thinkers\u2019 work on how to determine the \u201cright\u201d and / or \u201cgood\u201d; and explores how these tensions/complexities play out in a selection of Great Texts, both literary and philosophical. \n\nA section on Contemporary Issues applies the ideas of leadership tension/complexity to current leadership challenges. A student-selected USPitch Project provides a first-hand practical experience of the issues explored in earlier sections.", + "title": "Leadership in a Complex World", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2020", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the deep interconnections between language, cognition and culture. It begins with a consideration of the \u2018discursive mind\u2019 - that is, the particularly human way of knowing that uses language as its primary tool and medium. Realizing how much of human cognition is language-dependant,\nwe then explore the relations between language, cognition and culture by looking at such everyday linguistic phenomena as code-switching, metaphor and gesture. Augmenting the reading of sociolinguistic and cognitive science texts in this module, students will also learn how to collect and to analyze empirical\nevidence of language phenomena in order to more critically assess the claims of such texts.", + "title": "Language, Cognition, and Culture", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2021", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course we will investigate and analyse key conceptual and theoretical ways of examining the relationships between immigration and the city through readings on migration processes and theories, the conceptualization of places such as immigrant enclaves, immigrant identity, immigrant entrepreneurship, the \ngendered nature of some immigrant flows and the mutual influence of immigrants and urban landscapes and cultures. Readings in this seminar will draw from research by geographers, anthropologists, sociologists and economists. We will learn how geographers conduct research and also conduct research on immigration and its effects in Singapore, using data available from archival \nsources, the Singapore government and information gathered by students.", + "title": "Immigration and the City", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes an inter-disciplinary look at the multifarious concept of \u201cgovernance\u201d - how resources, issues and groups are organised and managed by a range of actors from the public, private and people sectors. Through a combination of academic work and case studies, the module explores\n(i)\tunder what circumstances, and how, governance in the modern world needs to be more \u201cpolycentric\u201d \u2013 taking place at multiple interlocking levels, including the global, national and local; \n(ii)\tkey determinants of success or failure in different instances of polycentricity; \n(iii)\tboth the benefits and limitations inherent in polycentric governance arrangements, as well as the challenges and obstacles to achieving greater polycentricity.", + "title": "Polycentric Governance: Possibilities and Pitfalls", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2023", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The ability to experience emotions has numerous consequences, both desirable and undesirable, as emotions can colour our perception, drive or deter our daily\npursuits, and, in the long run, shape whether we feel satisfied or disgruntled with life. This module focuses on the roles that emotions play in various areas of life, such as arts, religion, and material consumption. There will be multi-disciplinary, reflective discussions, grounded on updated and rigorous psychological research so as to enhance appreciation of abstract theories and to motivate effective application of these theories in real life.", + "title": "Emotion in Daily Life", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2024", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Anthropocene is the proposed term meant to\ndesignate a new epoch in Earth\u2019s geological history in\nwhich we, the anthropos, have become a geological force.\nFrom rising sea levels, spiking temperature, to mass\nextinctions, humanity has not simply changed the\nbiogeochemical profile of the Earth but done so to the point\nof threatening its very survival. In its altered state, the\nEarth appears increasingly unable to sustain the\nagricultural, energy, and capital networks that humanity\nhas built to drive itself. The Anthropocene, in other words,\nfigures man as a primary agent of a grand planetary drama\nat the same time it stymies his ability to act. This module\nexamines the notion of agency in the conditions of the\nAnthropocene. It asks what a warming, liquefying, dying\nworld might reveal about the realities and limits of our\nagency?", + "title": "Welcome to the Anthropocene: Agency in the Era of Climate Change", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\u201cOur generation,\u201d Singaporean playwright Joel Tan remarks, \u201cis sick with nostalgia.\u201d From the popularity of retro and vintage styles to the proliferation of artwork\n(some state-sanctioned, some not) that lovingly look to and at our past, Singapore seems to be in the firm grip of nostalgia. Are these indeed manifestations of nostalgia? Is any interest in the past nostalgic, or does nostalgia consists of a style or a way of regarding the past? More importantly, how should we understand these nostalgic tendencies? In what senses is nostalgia a \u201csickness,\u201d and can Singaporean practices of nostalgia help us rethink this characterization? (100 words)", + "title": "Singaporean Nostalgia", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2026", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theory and practice of community development (i.e., engagement of communities so that they become empowered agents of social change). The community development models and frameworks that would be discussed in the module include asset-based community development; community capitals framework; networking approach to community development; community empowerment models; sustainable livelihoods models; and radical community development.\n\nStudents would develop competencies in applying qualitative research techniques that can be used to map communities. Additionally, students would be exposed to community participation, consensus building and design thinking techniques that can be adopted to generate solutions to community issues.", + "title": "Engaging and Building Communities", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Research has established that we often fall prey to cognitive biases unknowingly, leading to us making suboptimum decisions. This module seeks to examine some of these biases and how they affect our decision making as we re-look at decision making theories. In this module, we seek answers to the question of, \u201cWhat constitutes a good decision and what makes for a good decision maker?\u201d We will also discuss the implications of these biases from the social welfare perspective and explores how we can overcome these biases.", + "title": "Effective Decision Making", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2028", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Growing up with social media, cinema, the Internet, and more, you have had the globe at your fingertips. But have you probed effects of this accessibility on your ability to act as an independent, adaptable thinker and doer? Have visualist media encouraged you to act as a spectator, only, rather than as a curious (maybe courageous) world citizen when you study abroad, travel, consider foreign-labor or migrancy issues, or seek employment? This module explores integrity, openness and expressivity through one strand of identity, Asian-Pacificness.", + "title": "Globalizing Asian-Pacific Identities", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2029", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course serves as an introduction to history in general and the history of modern Singapore in particular. It adopts a wide-angled approach to an understanding of national heritage, history and identity, with due attention to both international and internal developments which have together shaped present-day Singapore. These developments include the formation of a colonial plural society under British rule, the impact of the Japanese Occupation, the rise of nationalism and political contestation, statehood, merger with and separation from Malaysia, the politics and economics of survival, and the governance of an independent city-state.", + "title": "Singapore: The Making Of A Nation", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the aftermath of colonialism, a host of decolonizing experiences produced different successor regimes - from democratic to semi-authoritarian to communist. This module focuses on the geographical basis, historical background, and contemporary birthing of regionalism, amidst such diversity. It aims to introduce students to the political, strategic and economic aspects of regional cooperation, particularly through ASEAN. It also encourages them to consider the cumulative impact of such cooperation on the formation of a Southeast Asian regional identity, and the prospect of an indigenous collective political imagination bridging the diverse communities.", + "title": "Southeast Asia: The Making Of A Region", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Focusing upon disasters and responses, this module interrogates the core issues underlying humanitarian interventions and development programs. This\nincludes consideration of environmental and social vulnerabilities, resilience, local capacities, the roles of beneficiaries, governments and NGOs, aid governance, and accountability.\n\nThe module draws upon literature from a wide range of disciplines to contextualize the diversity of theoretical and practical approaches involved in complex humanitarian emergencies. The module utilizes extensive problem-based learning in which students engage with real world scenarios. The module is aimed for students interested in the inner workings of government, NGO and beneficiary interaction in humanitarian and development situations.", + "title": "Disasters and Responses", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2032", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the past 30 years HIV/AIDS has gone from being an unknown disease to being one of the key issues of the 20th and 21st centuries, killing millions and threatening entire nations and even continents. This module explores the\nvarious aspects of this disease from the perspective of multiple academic disciplines ranging from microbiology on through psychology, sociology, art, literature, economics, public health, geography and political science. Emphasis\nwill be placed on understanding the various phenomena involved from multiple perspectives so as to grasp the overall significance of HIV/AIDS in a holistic fashion.", + "title": "HIV/AIDS: From Microbes to Nations", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores and examines the dynamics between politics and new media in various realms. Earlier scholarship focused on politicians, parties and their electorate. However, with the increasing ubiquity of Internet technologies and user-generated content, political actors soon took on myriad dimensions and forms.\n\nStudents will acquire knowledge of foundational communication and political participation theories, as well as critically examine the relationship between media and political processes. The module also inculcates insights and knowledge on how media and politics play out in various arenas, such as political parties and campaigning, civil society organizations and grassroots movements.", + "title": "New Media and Politics", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2034", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the ways in which seemingly nonpolitical everyday practices bear, or can come to have, ethical and political significance. We will look at philosophers and political theorists concerned with the ordinary activities of Speaking, Eating, Thinking and Walking, and how such activities reveal or inform, among other things, our concepts of responsibility, the human and the animal, the moral and political necessity of selfreflection, and the interactions between the individual and the natural and built environment. Thinkers to be read include Arendt, Austin, Benjamin, Cavell, Diamond, Singer, Thoreau, Rousseau and others.", + "title": "Ordinary Politics", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the tension between \u2018need\u2019 to \u2018develop\u2019 and imperatives of conserving natural resources in the backdrop of enormous socio-economic and environmental challenges we face today. Sustainable development (SD) emerged as a response to confront these challenges; whether it has served its purpose or not\nremains debatable. Different scientific, technological, economic and political instruments encompassing sustainable development (SD) will be critically evaluated.\nThe criticality of natural resources and their consumption patterns will be presented to the students. The need to engage local communities in new ways in social\nconstruction of SD would be discussed.", + "title": "Questioning Sustainable Development", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2036", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the intersections between archival materials, historical memory, and the writing of biography. It takes as a subject an archive in Singapore which has not been extensively used. Students will not only do practical work in terms of archival cataloguing and notation, but they will also study theoretical work on archives and biography, and critically examine biographical work in different media, before producing biographical work of their own. This module fulfils the Singapore Studies requirement.", + "title": "Archives, Biography, Memory in Singapore", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2037", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What makes diverse people a nation? Though no single answer covers all nations or nationalisms, analysts agree that modern nations are less a natural formation than a construction in need of constant upkeep. Art can and does play a role here. This module introduces several theories of nationalism and of art on the understanding that these discourses do not mesh easily. This module fosters probing interdisciplinary comprehension of potential intersections between nation-building and paintings, music, photography, poems and a great deal more.", + "title": "Nationalism and the Arts", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2038", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How does law affect people and society? How do people and society influence law? Can law bring about social change? In what ways? This course approaches the study\nof law as a social institution, and examines law, legal actors, and legal institutions from various perspectives such as sociology, psychology, political science, and legal\nscholarship. We will discuss theoretical perspectives on the relationship between law and society, the relationship between law and social behaviour, law in action in various social contexts, the role of law in social change, and the roles of lawyers, judges, and juries.", + "title": "Understanding Law and Social Change", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2039", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Emotions, it is often said, has no place in politics. Where the former is thought to be primal and unruly, the latter is regarded as the realm of reason, of pragmatic and thoughtful deliberations. But how accurate is such a view?\nDon\u2019t emotions typically accompany our political judgments and actions? Might they perhaps condition such responses, priming them and orienting us towards certain political attitudes and dispositions? Organized around five\nemotions\u2014fear, disgust, grief, compassion, and hope\u2014 this module explores how emotions circulate within political life, how they emerge and are deployed for the mobilization of identities, sovereign legitimacy, ethical responsibility, and resistance.", + "title": "Politics and Emotion", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2040", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia is widely regarded as a model for economic development due to its advances in alleviating poverty, improving infrastructure, and fostering education \nand healthcare. But economic success often overshadows critical social problems that arise in tandem with such rapid development. This module, offered only in special summer sessions, takes a hands-on approach to examining critical issues in social development, in particular those revolving around local empowerment, democratization, and sustainability. Working within a framework of participatory action research, and collaborating with peers at another ASEAN university, this rigorous course includes substantial fieldwork conducted among development projects outside \nof Singapore.", + "title": "Participatory Social Development in Southeast Asia", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2041", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines social and political satire across a broad range of historical eras and cultural settings. Our approach is historical and ethnographic, and rests on the idea that there exist various traditions of satire, each deeply embedded in social and political contexts. Rather than treating satire as mere commentary upon culture and politics, we examine it as a particular form of social practice that can shape politics and culture. We explore throughout the question of whether satires can in fact be viewed as unique historical and cultural documents that reveal certain dynamics and truths that more \u201cserious\u201d documentation cannot.", + "title": "Satires and (Un)Serious Histories", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2042", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Multiculturalism is a foundational pillar and defining feature in Singapore\u2019s history and society. At once celebrated and contested, Singapore\u2019s multiculturalism is imbued with various themes and meanings, and poses many important issues and challenges central to personal, group and national cultural identities as well as to political, economic and social life. How did it come to be a core principle in nation-building? What are state imperatives and social processes and state imperatives in its historical making and constant remaking? Why are race, language and religion its core constitutive elements and how have their saliency evolved over time? What are its main controversial features and areas of tensions, and how do these affect identities, social relations between individuals, groups and communities, and impact social cohesion, citizenship and belonging? How is it further impacted by massive immigration? Is its present official form still valid in light of immigration, changing demographics and competing claims of rights and responsibilities? What does multiculturalism mean in citizens\u2019 memories of the past, experiences in their present everyday lives, and imaginings of the future? It explores and discusses these central questions and significant dimensions, issues and problems in Singapore\u2019s contested multiculturalism through a combination of lectures, seminars, on-site learning, research projects, class presentations and personal reflections. It also has a strong research component in which students discover and understand multiculturalism through research on selected topics using a variety of research methods, and relate their research and other observations to readings drawn from various disciplines of anthropology, sociology,", + "title": "Multiculturalism in Singapore and Its Contested Meanings", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2043", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The question of managing ethnocultural diversity\u2014i.e. of how to reconcile particular ethnic and cultural claims with the broader demands of national cohesion and citizenship\u2014is a challenging and pressing issue faced by all multiethnic states and met with a variety of responses that draw from different intellectual traditions. For Singapore, this question has been a key feature of its nation-building process since 1965 and its response has been the cultivation of an ostensibly \u2018Asian\u2019 multiculturalism styled in contradistinction to \u2018Western\u2019 liberal models. \n\nThis module examines and evaluates the conceptual framework of the Singaporean model of multiculturalism. It does so by positioning it in relation to other existing theories of ethnocultural identity and rights. In so doing, it asks: \n1. What are the theoretical and normative underpinnings of the Singaporean model? \n2. How does it stand up against the liberal-democratic model? \n3. What might be its differences between both the \u2018Western\u2019 communitarian and \u2018Confucian\u2019 communitarian models of multiculturalism? \n4. Does it adequately account for the complexities of identity? \n5. Can, given a changing ethnic and cultural demography, the Singaporean model survive?", + "title": "Managing Cultural Difference:Theorizing the S\u2019pore Model", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2044", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides theoretical understanding and empirical knowledge about social movements and their relationship with law and society. How does collective mobilization emerge? We begin with this question and then\nturn to the different approaches of analyzing social movements. We will also consider how states and other movement opponents suppress and control social movements, and how movements respond to repression, and deploy, even spread, their ideas, strategies, and tactics within and across movements, as well as across national borders. In examining these issues, we will use\ncase studies, and discuss the role of law, including how it matters to the social control of social movements, movement strategies, tactics, and decision-making, and movement effects.", + "title": "Social Movements, Law, and Society", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2045", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "War crimes trials are commonly used to address mass violence and facilitate political transition. This course examines the potential and limits of war crimes trials as transitional mechanisms, comparing them with non-legal complements and alternatives. What transitional objectives do these trials seek to achieve and how do these trials contribute to a society\u2019s political transition? Given the many pressing and conflicting needs of post-war societies or societies in transition, should the organisation of such trials be prioritised? What are possible alternative transitional measures? What role should the law play, if at all? Using Singapore\u2019s Second World War experience as a central case study, this module will explore the challenges faced by societies undergoing political transition and the different legal and non-legal measures adopted.", + "title": "Transitional Justice and War Crimes Trials: Case Studies from Singapore and Asia", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2046", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Everyone hears advice that the unexamined life is not worth living. Yet how often do we examine lives across print, visuals, sound, and more? How often, moreover, do we consider lives that are not human? Students in this integrative module explore lives human and non-human, including their own, marshalling varied media and analytical modes.\nThe first lives that we examine are in the form of science writing about non-human lives. Next, we move to human lives, real and imagined. This module puts local (and \u2018glocal\u2019) spin on expressive and critical narration to strengthen critical and communication skills.", + "title": "Examining Local Lives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2047", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module charts the roles of Lee Kuan Yew, S Rajaratnam and Goh Keng Swee in shaping the foreign policy of Singapore from 1965. Key Singapore policymakers and diplomats such as Tommy Koh, Kishore Mahbubani & Bilahari Kausikan acknowledge that in particular the longevity of Lee\u2019s tenure and his strategic philosophy structures Singapore\u2019s actions internationally. This module examines the impact of the leadership\u2019s ideological assumptions on how Singapore navigates its relations with 3 major areas, ASEAN, the US and the regional powers, China and India and adapts to the current inflection point in the international diplomacy of Indo-Pacific region.", + "title": "Situating Singapore in the Wider World", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2048", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is commonly known that technology and culture are intricately interconnected to each other, existing in a relationship that is mutually constitutive. Technology\nproduces culture as much as the other way around. But such a relationship is complex and controversial. Both technology and cultural producers are not often selfreflexive about how the relationship impacts on their work, and unaware of the resulting ethical dilemmas and politics. This module introduces students to critical concepts in culture and technology studies focusing on social and political change, transformations in the way we think about civilization, and the formation of identity.", + "title": "Culture and Technology", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2049", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Women around the world struggle with the various fallouts from climate crisis. This vulnerable demographic struggles to combat both real and ideological conditions connecting women and Nature. Cognizing this, the field of Ecological feminism [Ecofeminism] has grown rapidly in the past few decades.\n\nThis introductory module to ecofeminism will combine literary analysis, environmental humanities and feminism. It will extend students\u2019 knowledge of feminism and environmental issues relating to women. Fundamental to the study will be the literary analysis of texts taught in a scaffolded way. The module will examine literary texts by Asian women across South, East and Southeast Asia.", + "title": "Gender and Ecology in Asia", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2050", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Does social inequality matter? This module aims to examine different theories of the link between social equality and democracy, and related concerns pertaining to the value of social equality and the significance of equality of opportunity in a democratic society. These discussions will form the theoretical background for this module. In the second half of the module, students will apply this theoretical framework to contemporary issues related to democracy, in the global and Singaporean context, as well as evaluate policy proposals aimed at mitigating social inequality, specifically Universal Basic Income.", + "title": "Democracy and Inequality", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2051", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module focuses on the relationship between cultural heritage and contemporary political and social situations. It is designed to provide students with opportunities to explore a range of theoretical and intellectual issues from the fields of anthropology, geography and archaeology on cultural heritage and the roles that place and material culture play within the enactment of social practices. It draws upon historical and contemporary case studies provide real world problems for engaging with the theoretical components of the module. There is an emphasis upon debate, discussion, and problem oriented individual and group projects. Several day trips around Singapore, as well as an extended field trip to Cambodia are offered as part of the module.", + "title": "Politics of Heritage : Singapore and the Region", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2052", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Straddling the fields of faith, civilisations and culture,\nmigration, diaspora, political economy, foreign policy and\ninternational politics, this module, being multidisciplinary in\ncomplexion, provides for a multifaceted understanding of\nIndia-Singapore relations in the contemporary world.", + "title": "The Heterogeneous Indians of Contemporary Singapore", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2053", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the relationship between work and life. Does work make life fulfilling, or does a fulfilling life take place beyond or apart from work? Is the tension between work and life, albeit deeply entrenched, even necessary? What roles do young people have in shaping new work-life arrangements? We will first examine major transformations in the organization of work and shifting notions of leisure and life in unit one. In unit two, we will consider some possibilities for sustainable lifestyles and the challenges of flexible and alternative work.", + "title": "Reimagining Work / Life", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2054", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module has a interdisciplinary approach, to allow students to understand how Singapore\u2019s culture and heritage are considered and presented on the local and global stage. It is pitched at students with a broad diversity of backgrounds and disciplines, and intended to be offered at the inquiry level to give students some background on the issues discussed.", + "title": "\"Curating\" Singapore: Museums, Heritage and Spaces", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2055", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How does law shape the urban built environment? How do we experience these legal interventions in our everyday lives? And what happens when we transgress them? This module introduces students to the multiple intersections between law, urban life and the built environment in Singapore and other cities. Topics to be explored include the urban landscape of legalized \u201cvices\u201d, the architectural expression of \u201cjustice\u201d and the enclaves of privilege/disadvantage where certain laws are suspended or magnified. The module encourages interdisciplinary inquiry and experimental expression, and students will explore specific sites in Singapore through mapping, photography and writing.", + "title": "Law and the City: Divisions, Aesthetics, Transgressions", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2056", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In recent years, design practice has moved beyond commercial products to become a resource for tackling complex social problems, including issues of (in)accessibility, food waste, sustainability, migration, civic urbanisms. In so doing, it has increasingly turned to ethnographic methods for a more inclusive and community-focused practice. This module explores the intersections of design and anthropology in community worldmaking in Singapore by critically examining and proposing creative alternatives to designed sites, such as community gardens, playgrounds, wet markets. At the core of the module is an attention to how we design our world and how our world designs us.", + "title": "Social Design and Worldmaking in Singapore", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2057", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This introduction to dance-making module is based on the central outcome of \u201cdancing for wellness\u201d as all art forms have inherent healing properties. Students will go on a journey of self-exploration to answer the research question on \u201cWho am I? Where am I going and how do I get there?\u201d Students will learn basic dance composition techniques, experiment, choreograph, reflect, and perform their own solo work using their individual stories as an impetus for personal healing, transformation, and growth. This performative practice will encourage the development of artistry as well as impact an audience consisting of their peers.", + "title": "Dance Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2058", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores how law is meant to mediate risk. But with every law passed that is meant to protect society, a right is restricted. Thus, this module will explore how law is made and the fine line between what is gained and what is lost when a law is passed. Three domains will be examined the legislature, the courts, and the police. Students will have the opportunity to examine specific legal cases and interact with the institutions that handle these cases. Traditional lectures will be replaced with in-class discussions, field trips, and guest lectures with law and policy makers.", + "title": "Law in the Making From Protecting to Policing Society", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2059", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Nothing features more prominently among fundamental human activities than the production of food. In this module, we examine various modes of primary food production and the array of socioeconomic issues each entails, including subsistence agriculture, lowland rice farming, industrial food production, and emergent forms of organic produce by small- and medium-sized enterprises. Topics focus on how social dimensions of food production intersect with other areas of inquiry, including environmental sustainability and degradation, social mobility and marginalization, food security, public health, and globalization. This module includes an intensive fieldwork component in which students experience first hand different modes of food production.", + "title": "Food Production and Society in Southeast Asia", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2060", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 5, + 6, + 7, + 8, + 9 + ], + "venue": "E-Learn_A", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 5, + 6, + 7, + 8, + 9 + ], + "venue": "E-Learn_A", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents students with the opportunity to design and implement a study on a topic of interest in Cambodia, rapidly development, post-conflict society society. Course readings and discussions focus how Cambodia has changed since the fall of the Khmer Rouge, and the agents that have made these changes possible. The module also includes an introduction to qualitative research methods, which will enable students to conduct their own research. The student project, carried out in Cambodia, may engage issues of environmental degradation, changing urbanism, migrant labor, the promotion of the arts, issues in education, and public safety, among other possibilities.", + "title": "Postconflict Cambodia", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2061", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "USP-TR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "USP-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines Filipino conceptions of agency and service as a basis for enacting economic, social and political change in the Philippines. The primary objective is for students to collaborate with each other in conceptualizing sustainable service learning projects that address community-identified problems and challenges. Students will learn about local cultural, religious, political and philosophical bases for community responsibility, innovation and collective action. The module features a field study trip to the Philippines that will enable students to participate in community projects with a view to forming a foundational core of best-practices for creating and sustaining transformative IEx projects.", + "title": "Agency, Service and Social Change in the Philippines", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2062", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines cultural identity of the Bajau Laut, widely known as indigenous sea nomads in Sabah, with attention to the discourses around indigeneity and representation. We will explore topics include the rights of indigenous peoples, the politics of representation, cultural stereotypes and commodification of culture. A 10-weekday study trip to Semporna in summer is integrated with the module where students will have an opportunity to interact with the indigenous community. Students will undertake a documentary project with the community to co-produce new narratives and other creative forms of representation for subverting stereotypes that associated with the stateless Bajau Laut.", + "title": "Indigeneity and the Politics of Representation in Sabah", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS2063", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is \"gender\"? What kinds of definitions have been advanced or implied for this perplexing word? How have thinkers - in fields as diverse as anthropology, history, literature, philosophy, psychology, science studies, and sociology - helped to define and even invent this category that we call \"gender\"? How have these definitions changed the way we think? What kinds of problems have these definitions created? In this module, we will analyse various moments in intellectual history when there has been a struggle over the meaning of \"gender\" (and seemingly related terms like \"sex\" and \"sexuality\") in order to understand the term's function as a category of analysis.", + "title": "The Problematic Concept Of 'Gender'", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is becoming increasingly popular in Singapore to identify oneself as Asian, to consume products and services that appear Asian in origin, and perhaps even to think of the future of the global economy and culture to be centred in this part of the world. However, considering the fact that such an intense fascination with Asianism is of a more recent origin a number of important questions are raised. How has the state attempted to convey Asia as a natural and unproblematic an entity? How is knowledge about it influenced and conditioned by changing social, political, and economic forces? Why did Singapore at its earliest historical phase seek to dissociate itself with the region, only to openly embrace it a few decades later? This module, therefore, introduces students to critical ways of challenging and contesting what is understood by the term Asia. Is it a geographical region, a political and cultural construction, or transnationalized space? In particular it provides students the theoretical tools needed to grapple with these questions, introduces cultural texts that could be used in assessing the way Asia is represented, and gives students opportunities for fieldwork and other out of classroom activities.", + "title": "Asianism and Singapore", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module develops a nuanced understanding of multifaceted expressions of religiosity in the contemporary global context, appropriately grounded in a historical perspective. It explores various socio-cultural, political, economic and technological forces and processes that impact the manifold expressions and manifestations of religion in different societies, and vice-versa. Beginning with problematizing the category \u201creligion\u201d and tracing its emergence historically and contextually as an analytical domain, the material is organized to introduce the multiple, complex and sometimes opposing strands and arguments in many social science studies of religion. This multidisciplinary module emphasises both the empirical and the theoretical.", + "title": "Religious Issues in the Contemporary World", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept and practices of law are inseparable from the concepts and practices of force and/or violence. In this module we will investigate three questions. First, is there a difference between legitimate and illegitimate violence, and so, what is the difference and how is it explained? Secondly, what is the, and why is there an, internal relationship between law and violence? Finally, why do we punish? We will read texts from various thinkers, including Walter Benjamin, Bentham, Robert Cover, Derrida, Foucault, Kant, Locke, Nietzsche, Rousseau, A. John Simmons, Robert Paul Wolff and others.", + "title": "Law and Violence", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates three inter-connected questions: Can science prove that religion is irrational? When reason becomes so powerful that it dominates nature, what ethical problems will arise? Is reason or religious faith more suitable in providing a foundation for multiculturalism? These three questions, which are still much debated today, actually arose in the Age of Enlightenment, an 18th century\nintellectual movement so important that it shaped the modern West, and even, arguably, the East. We will examine representative Enlightenment treatises on these questions, and reflect on how beliefs and principles involved are still operative in our age.", + "title": "Reason, Secularization & Multiculturalism", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3901", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3902", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3903", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911AX", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911EC", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911EL", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911EN", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911GE", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not applicable", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not applicable", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911PS", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911SC", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3911TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912AX", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS3912TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. The module will be taught by a multidisciplinary faculty of four and will examine a theme from several disciplinary perspectives. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS4001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS4001A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS4001B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS4001C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS4001D", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS4001E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHS4001F", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911AX", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911PEE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911PEP", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911PES", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911PS", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4911TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912AX", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912PEE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912PEP", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912PES", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912PH", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912PS", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NHS4912TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Nothing features more prominently among fundamental human activities than the production of food. In this module, we examine various modes of primary food production and the array of socioeconomic issues each entails, including subsistence agriculture, lowland rice farming, industrial food production, and emergent forms of organic produce by small- and medium-sized enterprises. Topics focus on how social dimensions of food production intersect with other areas of inquiry, including environmental sustainability and degradation, social mobility and marginalization, food security, public health, and globalization. This module includes an intensive fieldwork component in which students experience first hand different modes of food production.", + "title": "Food Production and Society in Southeast Asia", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NHT2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will examine how the people of democratic Athens expressed their power, identity, and civic values through literature, visual art, and public architecture. In class, we will discuss both primary texts and secondary literature that shed light on how 5th and 4th century BCE Athenians represented themselves and their society. In Athens, we will visit key sites closely associated with democracy, study works of arts and monuments that reflect or contest its civic ideology, and meet with students at the University of Athens to discuss the contemporary legacy of ancient Athenian democracy.", + "title": "Power, Identity, and Citizenship in Democratic Athens", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NHT2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Motion pictures of all types\u2014including cinema, television, advertising--pervade our everyday lives, shaping how we construe meaning and experience, yet we tend to know very little about how that meaning is constructed. The medium of motion pictures relies on a limited and identifiable set of concrete technologies-- lighting, angle, aspect ratio, sound, editing, mise en sce\u0300ne, etc.--that serve to manipulate temporality and spatiality and to thereby create meaning. This module leads students to examine the affordances and constraints of the medium of film for the making of meaning in motion pictures, with a focus on cinema.", + "title": "Medium and Meaning in Cinema", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NHT2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This introduction to dance-making module is based on the central outcome of \u201cdancing for wellness\u201d as all art forms have inherent healing properties. Students will go on a journey of self-exploration to answer the research question on \u201cWho am I? Where am I going and how do I get there?\u201d Students will learn basic dance composition techniques, experiment, choreograph, reflect, and perform their own solo work using their individual stories as an impetus for personal healing, transformation, and growth. This performative practice will encourage the development of artistry as well as impact an audience consisting of their peers.", + "title": "Dance Narratives", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NHT2204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-DanceStu", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fundamentals of study in communications and new media, exploring ways in which people create and use the variety of emerging networked, mobile, and social media channels to communicate meaning in globalized world. It explores organizational and societal contexts in such areas as games, health, politics, business, public relations, design and activism, with attention paid to creating applications with social impact. Phenomena such as relationships and social life in cyberspace, activism for social change, performance art, deviant behaviour online, communication and community, new business paradigms and economic models of organizing and issues in humancomputer interaction are explored in\u2010depth.", + "title": "Communications, New Media and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 400, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0601", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0601", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0601", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0306", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0205", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores ways in which people create and use the variety of emerging networked, mobile and social media channels to communicate meaning in a globalized world. It explores organizational and societal contexts in such areas as games, health, politics, business, public relations, design and activism, with attention paid to creating applications with social impact. Phenomena such as relationships and social life in cyberspace, activism for social change, performance art, deviant behaviour online, communication and community, new business paradigms and economic models of organizing and issues in human-computer interaction are explored in-depth.", + "title": "Communications, New Media and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM1101X", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-16" + }, + "venue": "AS6-0338", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a foundational course introducing students to theories and analytical frameworks essential for understanding developments in communications and new media. Students will be introduced to, amongst others, media effects theory, media representations, semiotics, systems theory, agenda-setting theory and computer-mediated communication.", + "title": "Theories of Communications and New Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "W7", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "W3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 40 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W3", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "W2", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is to help students understand what quantitative research is (more specifically, how they can develop testable research questions and hypotheses), how to conduct the research and how to interpret the results. It covers fundamental concepts in research design, instrumentation, data collection, and data analysis. This module also introduces basic concepts of statistics such as descriptive statistics, sampling distribution, hypothesis testing. A set of computer lab assignments will give students extensive opportunities to become familiar with the relevant computer software package and experience at computing the various statistics reviewed in the class.", + "title": "Quantitative Research Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM2103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 138, + "covidZone": "Unknown" + }, + { + "classNo": "W2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "W6", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students understand what qualitative communication research is, the role it plays in the development of communication theories and applications, and the steps in carrying out qualitative research projects. It covers fundamental concepts in qualitative research design, sampling strategies and protocol development, data collection, data analysis, and evaluation. This module also introduces basic concepts of qualitative methods such as interpretation, meaning making, co\u2010construction, and performance. A set of field\u2010based experiences will be designed to give students opportunities to become familiar with specific forms of qualitative data gathering such as in\u2010depth interviews, focus groups, and ethnography.", + "title": "Qualitative Communication Research Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM2104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 155, + "covidZone": "Unknown" + }, + { + "classNo": "W4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Friday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "W3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Communication (and most scientific and corporate endeavours today) is deeply entwined with the world of computing. From social media to public relations campaigns, from game design to website layout, from business decision\u2010making to news, from democratic participation to interactive art \u2013 the ability to understand and make creative use of computational media is of fundamental importance. This module is a hands\u2010on introduction to essential concepts in computational media including internet architecture, mediated communication, interactive systems, animation, visualization, big data, and creative design. JavaScript and other common technologies that power the web are introduced to empower non\u2010programmers to explore these concepts independently.", + "title": "Computational Media Literacy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM2207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Theories of social psychology can be applied to our understanding of how new media is produced, marketed, resisted, adopted and consumed. This module highlights these key stages in the developmental trajectory of new media and introduces relevant theories, while considering issues such as why some technologies succeed where others fail, how marketers should promote new technology, which services are likely to become tomorrow's killer applications and what goes through the minds of new media adopters.", + "title": "Social Psychology of New Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM2209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS6-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS6-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "Unknown" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS6-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce students to the field of communication management and to the organizational, societal and legal contexts in which the profession takes place. Emphasis is placed on ethics, social responsibility, the role of mass communication in the formation of public opinion, the role of organizational communication in democracy, the global practices of communication management and major influences that affect organizational behaviour. This is the foundation module for students pursuing careers in communication management.", + "title": "Principles of Communication Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM2219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "Unknown" + }, + { + "classNo": "D3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0119", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Thursday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W2", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This introductory module provides instruction and practice in writing for the mass media, including the Internet. It explores the similarities and differences in writing styles for all mass media and for the professions of journalism, public affairs, public relations, advertising and telecommunications. It emphasizes accuracy, responsibility, clarity and style in presenting information through the various channels of mass communication. It surveys communication theories of various professions that communicate via the mass media, establishing the basis for advanced studies in writing and communication. It helps students acquire the writing skills they need in communication management careers", + "title": "Introduction to Media Writing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM2220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 124, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with basic knowledge of Singapore\u2019s media law and policy with socio-legal and socioeconomic analysis, which is essential for good media practice. Students will learn about legislation that consolidates the media legal framework in traditional areas such as broadcasting, print, advertising, film and art, etc.; as well as the new areas of concern such as social media, platform media, digital minorities, etc. Students will develop an understanding of the historical, cultural and particular contexts in the implementation and function of media law and policy by studying and contrasting different approaches in other nation-states.", + "title": "Media Law and Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM2223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "Unknown" + }, + { + "classNo": "W5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to concepts and practices of creative thinking focusing on the arts, culture, media technologies and popular entertainment. It examines the theoretical assumptions of \u201ccreativity\u201d, \u201ccreative work\u201d, \u201ccreative industry\u201d and the \u201ccreative class\u201d, and; offers a grounded engagement in both creative processes and the contexts in which creative processes are employed. Students learn the cultural history of creativity in the arts, media and many other creative industries; synthesise ideas, images and concepts in new and original ways; analyse the relation of creativity to critical thinking, and; explore concepts of creativity in local, regional and/or global challenges.", + "title": "Creativity, Culture and Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM2224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Effective communication requires cultural understanding based in shared systems of meaning. This module focuses on how shared meanings are produced, circulated, and consumed via contemporary cultural sites such as photography, advertising, social media, digital storytelling, pop music, and urban spaces. This module introduces students to cultural and critical communication studies by examining theories of popular media and culture, representation and power. Students completing the module will acquire skills in semiotic and narrative analysis; audience reception studies; critical approaches to everyday life, and identity formation; as well as, ritual communication studies.", + "title": "Communication and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM2225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Digital media is dominating and transforming twenty-first century culture and society. This module introduces students to the origins and impact of these changes, and explores the nexus between media, culture and society in the digital age. It examines the developments in digital transformation and its implications on everyday life, with emphasis on media/cultural industries, connective media, new media art and design, civil society and public cultures. It gives students an understanding of how digital media and culture are being transformed by networks, convergence and algorithms, and the training to approach and make use of digital media critically, creatively and productively.", + "title": "Digital Media Cultures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the skills and knowledge about journalistic writing taught in NM2220 Introduction to Media Writing. Students will learn how to pitch, organise, and develop strong news stories, and ways to publish them to increase audience appeal and engagement. They will also be introduced to a broad range of news beats, including politics, lifestyle, sport, business, environment, science, and investigative reporting, and gain an understanding of the work and considerations of news editors.", + "title": "News Writing, Editing and Publishing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the principles of visual communication design. Students will tap into the various domains of visual communication theories and concepts of visual communication, and communication design and production processes. The course is designed to aid students in examining how visuals can come to influence our understanding and perspectives of communication. Students will explore how one can communication through visual media; experiment with techniques of visual communication expression and presentations; plan and manage the communication design process from initial development to the final product; and ideate, curate and critique independent and group projects to promote collaborative classroom learning.", + "title": "Principles of Visual Communication Design", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "W3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "W5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students to write for internal and external organizational communication vehicles using traditional and new media. These include business proposals, memoranda, backgrounders, position statements, crisis communication plans, stakeholder newsletters, news releases, fact sheets, speeches, persuasive and informative pieces to key publics, annual reports and campaigns. Students will design and execute polished, audience-directed, professional communication pieces intended for traditional and new media. The module involves extensive comprehensive research and writing.", + "title": "Writing for Communication Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3219", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The most compelling media content makes use of evocative images, and sometimes an image itself is the story. Knowing how to make, edit, and communicate with images are key skills in the digital age. Students enrolled in this module will be introduced to the skills, theories and methods around communicating with both moving and still imagery. The course will focus on using digital tools to capture, edit and present images as data and for storytelling, communicating with visual imagery in the digital age, and the study and use of visual images for research and communication.", + "title": "Digital Storytelling", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the major\ntheoretical traditions in cultural studies ranging from\nstudies of mass culture, to feminist, ethnographic,\npostcolonial and digital cultural studies. These\ntheoretical traditions will be used by students to\nproduce detailed and specific studies of contemporary\ncultural practices. By understanding diverse national\nand international tendencies in cultural studies,\nstudents will engage with some of the significant\nproblems of the cultures we inhabit. This module is a\ncapstone for the Cultural Studies Minor.", + "title": "Cultural Studies: Theory and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3241", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with the knowledge and professional development for the 21st century organisation. Students will master contemporary organisational communication theories and concepts, the dynamism of working in teams and diversity, as well as leadership communication skills essential in today\u2019s technology-driven and digitally-connected global workplace. Students will apply case studies to solve the problems and challenges faced by the contemporary globally-connected workplaces, learn how to manage intercultural sensitivities and interactions, and demonstrate effective decision-making and conflict-management processes in the workplace through a strong understanding of organisational communicative processes and relationships.", + "title": "Organisational Communication and Leadership", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module to the field of user experience (UX) design which involves the study, planning, and design of the interaction between people (users) and computers, and the resulting user experience. This module will cover the basics of relevant issues, theories, and insights about the human side, the technical side, and the interaction (interface) between the two, and the process involved in designing the user experience. The module involves both theoretical and practical work.", + "title": "User Experience Design", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3243", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "Unknown" + }, + { + "classNo": "W1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Friday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Friday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "NM3550C is a capstone module of the Communications and New Media Department. All CNM majors will undertake a CNM-related Internship in their third year of study. Students acculturate for their careers ahead through their immersive experience in the industry. In addition, they demonstrate their hard and soft skills gleaned from their time in tertiary studies in CNM and NUS in general. The module seeks to prepare students for their careers by turning their attention to the entire process of job search, interviews, negotiation skills, and employment opportunities. The department provides support and scaffolds to assist students undergoing this experiential module.", + "title": "CNM Internship Programme", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NM3550C", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the Communications and New Media Programme, have relevance to the major in NM, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships for each semester will be advertised at the beginning of the semester before. Internships proposed by students will require the approval of the department. Student must apply for and be accepted to work in the company/organization offering the internship for a duration of 20 weeks on full time basis.", + "title": "Communications & New Media Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "NM3550Y", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project. UROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed. UROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3551R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with specialised topics in Communications and New Media. The topics covered reflect the expertise of staff members of emerging issues in Communications and New Media.", + "title": "Topics in CNM", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is to help honours students conduct independent empirical research using the key social science research methods. Students will learn detailed procedures and executable techniques of selected research methods such as survey research, experimental design, in-depth/focus group interviews, and content analysis. The module adopts a Problem Based Learning (PBL) approach, as students will select their own research topics, develop research questions and hypotheses, and design the structure of research activities including measurement, sampling, data collection, and data analysis. Key issues in each step (e.g., instrument development for multi-dimensional constructs) will be discussed through presentations, Q & As, and lectures.", + "title": "Advanced Communications & New Media Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines policies and regulations associated with infocomm and media technologies in different nation states, and the implications at the national, regional, and global levels. This module also explores the relevance of the new media governance processes that involve governments, the private sector and civil society. Students will learn about the legal, political, and cultural foundations of policymaking; the creation of law and regulation frameworks; and the challenges faced when creating standards, policies, rules, enforcement mechanisms, and dispute resolutions procedures.", + "title": "Media Policy and Regulation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As the capstone module of the communication management sequence, this course will give greater opportunity for students to apply theory, their skills and creativity to public relations problems facing companies. It is designed to strengthen students\u2019 understanding of communication management principles and provide opportunities for practical application of those principles to public relations problems. Students will design and implement campaigns and at the same time, manage relationships with stakeholders such as clients, the media, and key community leaders. They will produce the collaterals needed for their campaigns and design realistic evaluation exercises to test their campaigns and assess their efficacy.", + "title": "Managing Communication Campaigns", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4207", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In our world where audiences demand instant and varied channels of information, this capstone module navigates students in messaging and production through print and interactive platforms to achieve strategic communication outcomes. This course expands on skills acquired in NM3217 Principles of Communication Design, but with a core focus on designing for strategic communication, specifically in the production of publications to meet communication objectives. The course helps in communicating effectively through research and strategy; applying and packaging communication messages and design in print/interactive publications; mastering the planning and management of the design workflow; and developing an appreciation for visual literacy.", + "title": "Strategic Communication Design", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to how the concept of race has been represented across a global range of media forms, including photography, documentary, mainstream and arthouse cinema, network television and social media. The module investigates a broad range of critical theories on race, representation, and globalisation, including (but not limited to) colour-blindness, cultural difference and diaspora, raced bodies, and multiculturalism. Upon completing this module, students will be able to critically analyse representations of race within both contemporary and historical global media productions.", + "title": "Race, Media, and Representation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Our economy is increasingly influenced by digital elements \u2014 ranging from platforms to cryptocurrencies, financial derivatives to smart cities. This course approaches the analysis of digital economies from the multidisciplinary perspectives of economics, communication, political economy, cultural studies, and critical theory. We will review the geographically and historically uneven ways that digital economies are developed, and examine the impact they have on populations, urban cities, and natural ecologies. Focused especially on contemporary trends, the module will also reveal opportunities for experimenting and rethinking what digital economies can do to promote fairer societies, and better lives.", + "title": "Digital Economies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to risk and crisis communication by exploring research, theories, and practices in these two related fields. Through exploring risk and crisis communication from the psychological, social, and cultural perspectives, students will learn to manage risk and crisis communication in both traditional and new media landscapes. The module will cover risk and crisis communication theories, types of risk and crisis, risk and crisis communication plans, and communication strategies. Using case studies and experiential learning activities, the module will illustrate the applications of risk and crisis communication theories.", + "title": "Risk and Crisis Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will discuss the foundation of participatory communication by challenging the modernization paradigm and the traditional communication approaches for social change that have been widely used by government agencies and for\u2010profit and non\u2010profit organizations. Examples include social marketing, behaviour change models, and entertainment education. This module aims to provide an overview of critical theories and to critically examine the role of collective learning, information sharing, public participation, and dialogue in designing, implementing, and evaluating communication strategies for social change. Students will have the opportunity to apply the participatory communication approach to conducting community\u2010based projects and assessing its social impact.", + "title": "Communication for Social Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4230", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to deepen the knowledge of students who have foundational digital storytelling experience and expand on advanced principles of digital storytelling methods, platforms, academic discourse, reflection, and analysis. Students will utilise these principles through creative application across text, audio-visual, and social media. The culmination of the module will be a final portfolio project which combines theory with practice.", + "title": "Digital Media Storytelling Strategies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4231", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0215B", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Software has worked its way in to almost every aspect of our lives. Code is not just neutral technology, but is subject to cultural, economic, and political interests. Similarly our cultural lives are profoundly influenced by software \u2013 by its development and dissemination (collaboration and open-source), how we work (the paperless office, outsourcing), communicate (friends networks), conduct transactions (bitcoins), enact subversion, its reflection of race and gender divisions, its expressive capabilities (new media art), and reconceptualization of knowledge in programmatic form. This course approaches software from the perspective of humanities and social sciences to critically examine the relationship and interdependencies between culture and software.", + "title": "Software Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Technologies are not value-neutral artefacts. This module develops this proposition by providing students with critical theoretical perspectives to examine power relations in media technologies. Students will explore contemporary issues of technoscience through a study of media history, and learn how historical concerns are transformed with modern technological features and structures. Moving through the topics of datafication, algorithms, networking, and ubiquitous computing, students are taught the importance of critical reflection, and the urgency required for ethical inquiry into technological development.", + "title": "Critical Perspectives on Technology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores questions of sex, gender, sexuality, and power in contemporary media and popular cultures. It examines issues and themes such as gender identity and representation of sex, women in media production and consumption, and reception and fandom of pop culture, from critical approaches in cultural studies, feminist theory, film theory, queer studies and communication theory. Materials discussed include film, music, television, advertising, comics, animation, video games, and social media. Students completing this module will be able to analyse the representation of gendered and sexual identities and desires in the media.", + "title": "Sex in the Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4244", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The process of political communication has been undergoing transformation across the world through the rise of digital media. The transformation is also the result of the way established institutions, including political parties and news organisation, have changed, and the ways citizens are engaging with politics and news media. The module is designed to introduce students to the most important and up-to-date empirical and theoretical work in field of political communication \u2013 an interdisciplinary field of study. The course will help develop a stronger conceptual understanding of contemporary political communication processes and enable you to conduct independent analysis of current issues.", + "title": "Political Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4245", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Creative writing is not limited to the literary arts. Stories are increasingly the driving force behind successful branding, events and campaigns. They are a way to cut through the white noise in an era of information overload. In the first half of this course, students will learn the importance of narratives and the techniques of crafting them through personal essays. In the second half of the course, students will apply what they have learnt to a narrative video script for a brand or cause. Classes will include a mix of lectures, in-class writing, assignments, readings, project work, workshop and presentation.", + "title": "Creative Writing in the Marketplace", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4247", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As old media (radio, film, TV) passes through the process of digitisation, so its audience is implicated in this transformation. This module investigates the complex disruptions in national identities, media institutions and changing consumption habits by interrogating the categories of audiences, media history and media texts. In understanding the relationships between media texts, audience and society, this module endeavours to empower student participation in a dialogue about contemporary media and society issues. This module investigates the interstices of this media trajectory with emphasis on television texts and audiences.", + "title": "Media & Audiences", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4249", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0101", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will teach students the fundamentals of data journalism, that is, how to obtain, analyse, visualise and report on data-driven stories in the news media. This class will hone students\u2019 writing and journalistic skills while teaching them how to make sense of large datasets and gain insights from them to generate news stories, equipping them with essential skills for the contemporary newsroom in the digital age. Students will learn about why data journalism matters, how it is used in the real world and receive guided practice on the use of data visualisation and analytics tools to create compelling narratives.", + "title": "Data Journalism and Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4250", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore issues of communications infrastructure, media environment, culture and sustainability, and the media as purposive actors in covering, polluting, and shaping the environment. It will engage new, emergent, and established fields in media, communication and cultural studies, and draw on key relevant debates from those domains. It will form part of the suite of modules for students interested in cultural studies, media studies, critical cultural communication, and communication and culture.", + "title": "Communications, Culture, and Environment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates the city as a public culture arena through cultural consumption and the curation of urban neighbourhoods. We will study place narratives and visual-communication environments, focusing particularly on the production and reception of portrayals of cultural identities and race/ethnicity framed by multiculturalism and critical heritage perspectives. Studying Singapore with global comparisons, we examine four arenas of public culture negotiations the cultural framing of places and their exclusions; urban spectacles and rituals as symbolic expressions of communal and civic identities; museums\u2019 roles in shaping or challenging popular opinion on identities; and media portrayals and interpretations of urban cultures.", + "title": "The City and Public Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4254", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An understanding of how people communicate on social media, and how to mine insights from it, is now imperative in most future careers, ranging from marketing to medicine. The module will first provide hands-on knowledge in designing data science projects with social media data. Next, it will provide training for collecting and analysing social media data. Finally, it will help you understand how you can interpret the findings in the wider context of social psychology and communication theory, and frame your arguments in the wider context of social media and communication scholarship.", + "title": "Social Media and Computational Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4255", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will explore the current issues and developments in virtual networked environments, such as online groups and communities, virtual organisations, distributed working teams, and digitally enabled learning. Students will conceptualise and critically analyse the impacts of emerging media technologies on the way people communicate, work, play, and learn by focusing on the critical and effective application of social science theories. At the end of the course, students will demonstrate mastery of the communication dynamics and processes central to collaborative work and communication, team play and dynamics, and collaborative learning in computer-mediated and socially networked environments.", + "title": "Communication and Digital Collaborations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4256", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module places advertising within the integrated marketing communications (IMC) framework in the local and international context. Students will learn about the advertising process, as well as how to plan, implement and control IMC campaigns. Emphasis will be placed on advertising on multiplatform including social and digital media. In addition, students will learn to recognise the social responsibility as well as ethical implications of advertising in the context of a global community, especially with the advent of new media technologies. The highlight of the module will be the advertising campaign that students will work in groups to develop.", + "title": "Multiplatform Advertising Strategies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4257", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theories and practices related to health communication in various domains and perspectives, such as doctor-patient communication, healthcare organisation, cultural understanding of health, health news and campaigns, technologically mediated health delivery, and health risk communication. An essential theme is the role and impact of new media in developing meaningful communicative practices and in building the conditions that are conducive to promote healthy behaviour change. The course will also equip students with practical knowledge on the effective ways in which health communication projects and strategies can be conceptualised and delivered in today\u2019s digitally connected age.", + "title": "Health Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4258", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the growth of mobile computing and the move of computing away from the desktop and into everyday lives, activities, and environments. This change poses a challenge for existing desktop-oriented evaluation methodologies and design practices. Students in this course will explore the theory and practice of such relevant concepts as situatedness, context, and mobile media in the context of designing for mobile platforms. At the end of this course, students will be able to participate in the research agenda of designing for mobile interaction.", + "title": "Mobile Interaction Design", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4259", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the factors that make a game successful. Students learn how to critically evaluate game development and gain an understanding of the basic elements of gameplay balancing game mechanics, creating tension between risk and reward, and encouraging replayability. Students also learn how to document a game design using a game design document. The module includes theories of play as well as an introduction to the game industry and the context of game design in the game development process. It also examines the history of gameplay and the different types of games that have developed in different cultures.", + "title": "Game Design", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4260", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Each student is required to either conduct an independent research project on an approved topic, or work individually or in a group to develop a creative folio, under the supervision of a faculty member. The student may select a topic in any field of Communications and New Media. The topic may entail a technical aspect of Communications and New Media or an aspect which explores the application of Communications and New Media to an area of the Humanities and Social Sciences. The project will be submitted as an Honours Thesis.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "NM4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Each student is required to either conduct an independent research project on an approved topic, or work individually or in a group to develop a creative folio, under the supervision of a faculty member. The student may select a topic in any field of Communications and New Media. The topic may entail a technical aspect of Communications and New Media or an aspect which explores the application of Communications and New Media to an area of the Humanities and Social Sciences. The project will be submitted as an Honours Thesis.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "NM4401HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and Honours Coordinator's approvals of the written agreement are required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4851", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4852", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with specialised topics in Communications and New Media. The topics covered reflect the expertise of staff members of emerging issues in Communications and New Media.", + "title": "Topics in CNM", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will expose students to advanced topics in state-society relationship and governance within the context of rapid changes in information and communication technologies (ICTs). It addresses how the notions of `community', 'citizenship', and 'democracy' have been changed by the creation of a transnational public sphere due to ICTs. The module will also address how the emergence of an informational economy changes the role of the state, especially in terms of preparing society for the challenges ahead. Works of John Urry, Manuel Castells, Bob Jessop, Frank Webster and David Lyon, among others, will be discussed and critiqued.", + "title": "State and Civil Society in the Information Age", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "State and Civil Society in the Information Age", + "title": "State and Civil Society in the Information Age", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM5201R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover major artistic threads, such as networked art, that involve large numbers of geographically distributed participants, large-scale public works as well as virtual and augmented reality works that blur the distinction between real-world and synthetic information. The course will focus on interactive works where media consumers participate in creating their own artistic experience. It will also cover the historical development of ideas, put them into a social context and examine contemporary critical reflections about art. The course will culminate in the study of several works by some of the most important emerging new media artists.", + "title": "Interactive Media Arts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM5209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover major artistic threads, such as networked art, that involve large numbers of geographically distributed participants, large-scale public works as well as virtual and augmented reality works that blur the distinction between real-world and synthetic information. The course will focus on interactive works where media consumers participate in creating their own artistic experience. It will also cover the historical development of ideas, put them into a social context and examine contemporary critical reflections about art. The course will culminate in the study of several works by some of the most important emerging new media artists.", + "title": "Interactive Media Arts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM5209R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Theories of Public Relations", + "title": "Theories of Public Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM5212R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces cultural policy studies as a\ndistinct domain of cultural studies. It examines the\nstakes involved in defining and operating within\ncultural policy studies by analysing the practices of\ncultural industries, art institutions, cultural planning\nand participation, and creative economies. Students\nwill evaluate specific instances of cultural policy\ndevelopment, and produce studies of cultural\npractices in order to re-think perceived notions of\nidentity, representation and power. Students\ncompleting the module will appreciate the\nrelationship between critical analysis and policy\norientation in cultural studies and be familiar with\nspecific instances of cultural policy development at\nnational and international levels.", + "title": "Cultural Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM5218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces cultural policy studies as a distinct domain of cultural studies. It examines the stakes involved in defining and operating within cultural policy studies by analysing the practices of cultural industries, art institutions, cultural planning and participation, and creative economies. Students will evaluate specific instances of cultural policy development, and produce studies of cultural\npractices in order to re-think perceived notions of identity, representation and power. Students completing the module will appreciate the relationship between critical analysis and policy orientation in cultural studies and be familiar with\nspecific instances of cultural policy development at national and international levels.", + "title": "Cultural Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM5218R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module explores, from a critical stance, various techniques of design thinking and user experience design in the context of emergent technologies and near future scenarios. Critical and speculative design practices, such as design fiction, action research and community-based technology and citizen science initiatives are employed to reflect upon new technologies through prototyping, storytelling and speculative design scenarios. These techniques bridge philosophical modes of inquiry and design practices, encouraging debate about the social, cultural and ethical impact of emerging and future technologies by exploring alternative futures and involving various actors and stakeholders in the decision making related to new technologies.", + "title": "Critical Design", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM5219", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module explores, from a critical stance, various techniques of design thinking and user experience design in the context of emergent technologies and near future scenarios. Critical and speculative design practices, such as design fiction, action research and community-based technology and citizen science initiatives are employed to reflect upon new technologies through prototyping, storytelling and speculative design scenarios. These techniques bridge philosophical modes of inquiry and design practices, encouraging debate about the social, cultural and ethical impact of emerging and future technologies by exploring alternative futures and involving various actors and stakeholders in the decision making related to new technologies.", + "title": "Critical Design", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "NM5219R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0338", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Communications and New Media in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will review classical and contemporary readings in communications and new media studies, including key concepts and areas of investigation. It will provide students with a comprehensive and critical overview of theoretical frameworks of communications and new media. Students will also examine the role of theory in the research process.", + "title": "Advanced Theories in Cnm", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM6101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will prepare graduate students for their thesis writing by delving into selected quantitative research methods in depth in the area of communications and new media. Students will have hands-on experience in developing their own research agenda, designing methodologies and conducting independent research work. It will give an introduction to a variety of quantitative and research methods including survey research, experimental design, content analysis, and social network analysis. Students will also learn how to analyse empirical data using appropriate statistics and analytical tools.", + "title": "Quantitative Research Methods in Communications and New Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM6103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help graduate students understand what qualitative communication research is, questions of design in qualitative communication research, and the steps in carrying out qualitative research projects. It covers fundamental concepts in qualitative research design, sampling strategies, data generation, data analysis, evaluation, writing and performance. This module also introduces basic concepts of qualitative methods such as interpretation, meaning making, reflexivity, poetics, and co-construction. A set of field based experiences will be designed to give students opportunities to become familiar with specific forms of qualitative data gathering such as in-depth interviews, focus groups, and ethnography.", + "title": "Qualitative Research Methods in Communications and New Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM6104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How should we understand the relationships among media and the social and cultural contexts in which they operate? How should we think through the relationship of technology, culture and communication? How do certain cultures create and naturalise particular modes of media form and content? How do media technologies interact with/create forms of community and identity? This module addresses these concerns by introducing students to cultural approaches to communication. It examines debates on culture in the field of communication studies, and approaches the study of communication as culture.", + "title": "Communication as Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM6201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced introduction to theory and research in political communication. It explores important theoretical developments and debates in the field of political communication, which include, but are not limited to deliberation, public opinion, political participation, and topics more directly related to new media technologies. The purpose of this module is to aid students in developing theoretical insights and prepare them to effectively and efficiently navigate through the broad research literature on political ommunication.", + "title": "Political Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM6211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Communications and New Media in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "NM6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0333", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics in CNM introduces special, advanced or rotating topics currently not included in the regular curriculum, or builds on the basic modules in the curriculum. Topics in this module offer instruction on various specialisations related to communication and new media, more advanced instruction on the topics/issues covered in the current modules, and/or research, discussion and analysis of issues of current interest related to the communication and new media practices. The content of the module will therefore vary according to the specialised interests of the lecturer teaching the module.", + "title": "Topics in CNM", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics in Media Design introduce special, advanced or rotating topics currently not included in the graduate-level Communications and New Media curriculum. Topics in this module offer instruction in the various specializations of the interactive media design field, more advanced instruction on the basic skills and knowledge covered in the current modules, and/or research, discussion and analysis of issues of current interest in the field of interactive media design.", + "title": "Advanced Topics in Media Design", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM6882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module for graduate students who are doing thesis work that involves prototyping and evaluation of adaptive/intelligent interactive digital media. Students will learn about research challenges and solutions specific prototyping and evaluating such media by developing working prototypes and conducting user studies with them.", + "title": "Intelligent Interactive Media", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NM6882A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers key aspects of strategic communication, to be planned, implemented, and evaluated in global contexts. Students will examine the dynamism of strategic and global communication by corporate, governmental, and civil society organisations at regional, national and transnational levels. Students also explore the integration of multiple forms of public communication, including advertising, branding, public relations, and social media advocacy, for both public- and private-sector initiatives. Upon completing this module, students will have knowledge and skills for developing integrated strategic campaigns involving a range of media and communication activities with global reach and worldwide impact.", + "title": "Strategic and Global Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the fundamental concepts and principles that underlie techniques for extracting useful information and knowledge from digital communication data. It will focus on introducing technical data skills within both social and societal contexts. Data-analytic thinking will be applied in various ways, including customer relationship management, social media marketing and analysis, data-driven decision making and strategic communication. Students will gain an understanding of the nature of data and its significance for society by learning to view problems from a data perspective, and understanding how to critically analyse such problems.", + "title": "Digital Communications and Analytics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5302", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the impact of globalisation on communication and society. It introduces key theories of media globalisation, including cultural imperialism, cultural globalisation, disjunctive modernity and de-Westernisation, to consider how these flows affect communication and society. Further using international and comparative case studies, it examines global communication approaches with a focus on intercultural communication, global and migrant media, multiculturalism, mobile and urban communication. Students will engage with current debates centring on questions of globalisation/localisation, transnationalism and neoliberalism, and their impacts on identity, citizenship, markets and publics.", + "title": "Globalisation: Theories, Communication, and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Mentorship is a key experiential learning platform for students who have more than two years of industry experience. This provides a formal opportunity for students to join organisations for 12 weeks plus 1 week of orientation (over special terms) to take on a mentored position with a senior communications leader focused on relevant area to their field of study, research and/or specialisations. These leaders and organisations are vetted and approved by the Department, and the students\u2019 positions must have relevance to the issues undertaken that involve the application of subject knowledge and theories in communication.", + "title": "Mentorship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "NMC5304", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Internship Module for Master students is a key experiential learning platform for students who have less than two years of experience in the industry. It provides a formal opportunity for students to join organisations for 12 weeks and 1 week of orientation (over Special Terms) to take on an internship position in an area relevant to their field of study, research and/or specialisation. Organisations are vetted and approved by the CNM Department, their positions must have relevance to the issues undertaken; they involve the application of subject knowledge and theory in reflection upon the work will be assessed.", + "title": "Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "NMC5305", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module guides leaders on how to effectively leverage communications as a strategic tool for organisations. Students learn to maximise the effects of communication in an organisation, integrate all communications plans, and educate senior management on the strategic roles that communications play as well as its contributions to the different teams in an organisation. The module will highlight case studies of successful chief communication officers and the importance of having strategic communication position in the C-suite. Senior leaders in communications both from consultancy and in-house positions will be invited as feature speakers in this class.", + "title": "Communications and Leadership", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5306", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11 + ], + "venue": "TP-GLR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5 + ], + "venue": "TP-GLR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This capstone module will provide opportunities for students to apply theory and practice to their individual projects. Students will have the option to produce 1) an empirical study for academic or industry research, 2) an integrative literature review that synthesises a theory or concept useful for their future career or higher research degree application, or 3) an individual portfolio that integrates theoretical perspectives students have gained in the entire programme. Ultimately, students will develop independent research and project management skills in order to complete their proposed project that is beneficial for their future academic endeavours and/or professional careers.", + "title": "Final Year Project in Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5307", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1600", + "weeks": [ + 12 + ], + "venue": "ERC-ALR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1730", + "endTime": "1830", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines current theories, models, and management approaches in the field of interactive media marketing communications. Students will examine the use of interactive media in campaigns real-world case studies to learn how to stand out in the marketplace. Students will also learn to design for interactive experiences with digital tools and platforms for marketing and other promotional purposes. Upon completing this module, students will be able to employ interactive media in marketing communications in an integrative manner informed by a deep understanding of the capabilities of new media platforms.", + "title": "Interactive Media Marketing Practices", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5322", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to crisis and risk communication. As managing crisis situations effectively is an essential skill for communication leaders, students in this module will develop analytical skills in examining crisis situations as well as strategic communications skills to cope with risk, crisis, and issues in both online and traditional media environments. The module will highlight the latest practices and theoretical frameworks in managing crisis communication. Students will learn from case studies and guest speakers who are crisis communication experts. Students will also participate in hands-on crisis communication simulations in order to develop their crisis management skills.", + "title": "Crisis Communications and Leadership", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5323", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to help students learn how to conceptualise research questions and answer such questions by collecting and analysing relevant data. Students will learn essential skills on how to conceptualise problems and how to obtain and interpret relevant data. The module covers fundamental concepts in research design, instrumentation, data collection, and data analysis. The focus of this module is on problem solving through the application of communication research methods.", + "title": "Uses of Communication Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5324", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the relationship between communication and reputation and provides a comprehensive overview of research and best practices of reputation management based on stakeholders\u2019 perspectives. Various communication strategies including CSR, Corporate Citizenship, and internal communication to help organisations develop and maintain reputation via both online and traditional media will be explored. With the awareness of today\u2019s societal expectations of organisations, students will learn to conduct reputation audit for their organisations and develop effective reputation management strategies. Ethical considerations in reputation building will be discussed and case studies of best practices will be provided.", + "title": "Managing Organisational Reputation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5325", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundational unit provides you with some fundamental knowledge and skills in data visualisation, such as design, techniques and methods for the visual communication of complex datasets. To produce the simplest bar graph and scatter plot to highly complex network diagrams requires an understanding of the principles of visual communication and data analytics. Across the communication and media industries there is a growing demand for communication specialists to be able to effectively communicate complex datasets to non-specialist audiences. You will learn how to make sense of data for diverse audiences through appropriate visual representation.", + "title": "Visualising Data", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5341", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundational unit introduces the skills and knowledge necessary for data-driven insights into social media content. It introduces the theoretical perspectives and approaches for data analytics, and the standard social media analytic tools that are used in the industry for understanding and building engagement on social media platforms. The skills would have direct applications for careers in new media, public relations, journalism, and health communication. Students will learn how to analyse messages, channels and audiences and apply their learnings towards a final project report.", + "title": "Introduction to Applied Social Media Analytics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5342", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundational unit introduces basic understanding and reporting of the consumer and audience analytics that are valuable in most contemporary workplaces. This module will first familiarise students with the wide array of online audience/consumer analytics and their relation to specific marketing/communications situations. Next, it will familiarise them with the leading analytical approaches for evaluating audiences. It will also give them an overview of the range of analytics/tools that are important in forming today\u2019s consumer/audience related strategies. Finally, it will provide some hands-on experience with each of these objectives with mock or real datasets.", + "title": "Introduction to Audience Analytics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5343", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundational unit provides a hands-on approach to the field of computational communication. It is intended to help communication professionals to develop and apply programming skills to work with data, for future careers in human resource management, policy strategy, public relations, data-focused journalism, and scientific communication. Students will learn how to apply computational thinking for problem solving, and develop foundation skills in languages like R or Python for the purpose of collecting, processing, and reporting data about people.", + "title": "Coding for Communicators", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5344", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the Asian media industries in terms of their production, regulation, distribution, audiences and media genres as they undergo digital transformations and adapt to new audiences and markets. The media industries in Asia face particular challenges that are local, regional and global in nature in this phase of development. While it is not as mature as in Western countries, it is not a young industry either. These conditions are uniquely historical, political and cultural. Furthermore, it will examine how media, in return frame the conditions for engaging with social change including nation-building, development, globalisation and engagement with new international markets.", + "title": "Media in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5362", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "UTSRC-LT50", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital news and information are being generated, circulated and consumed in new and unexpected ways. Trending items quickly go viral as a result of user actions, social media algorithms, and botnets. Such changes in news production and consumption practices have resulted in new implications for society and raised new legal concerns. This module takes a holistic approach to understanding journalistic transformations and how they impact and are impacted by society and legal frameworks in the era of digital news, examining contemporary processes of news production, distribution, and consumption, and providing crucial insights to media industry professionals and policymakers.", + "title": "Digital Journalism, Law, and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5364", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Who or what is a global audience? How are the meanings of commercial cultural products interpreted as they traverse the world? What are the dynamics at play between local audiences and global media products? How do media technologies alter relations between producers and consumers of popular cultural products? This module reflects on the open nature of media audiences and how they have been conceptualised by global media producers of TV, music and film. It explores how message makers or producers (artists, broadcasters, filmmakers, advertisers) try, and sometimes fail, to shape and adapt their messages for different social and cultural contexts.", + "title": "The Global Audience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5367", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Media policy has been a crucial instrument for governments to shape social and political climates, and more importantly, for organising global media industries within national boundaries. Nowadays, prolific personal social media and institutional media usage creates integral roles for media policy to play and administer. This module addresses the role of media policy from a transnational perspective in the contemporary digital media environment. Approaching policy from a perspective that emphasises the dynamics between the media industry and consumers enables it to investigate key parameters for producing, promoting, distributing, exhibiting, and consuming media outside of technical policy development confinements.", + "title": "Media, Policy, and Markets", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NMC5368", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the intersection and interplay of science and society, how scientific knowledge and technological development influence and shape institutions, societies, and environments. Students will examine how social, cultural, political, economic, and material realities instigate scientific discovery and research. . The complex interactions between society and science will be examined in the context of some of the most pressing problems that humans and non-humans face such as those related to climate change and biodiversity loss. Throughout the module, examples of established science, contested science and pseudo-science will be highlighted/discussed to illustrate their intersections with socio-economic and political reality.", + "title": "Science and Society", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSS2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the intersection and interplay of science and society, how scientific knowledge and technological development influence and shape institutions, societies, and environments. Students will examine how social, cultural, political, economic, and material realities instigate scientific discovery and research. . The complex interactions between society and science will be examined in the context of some of the most pressing problems that humans and non-humans face such as those related to climate change and biodiversity loss. Throughout the module, examples of established science, contested science and pseudo-science will be highlighted/discussed to illustrate their intersections with socio-economic and political reality.", + "title": "Science and Society", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSS2001A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the intersection and interplay of science and society, how scientific knowledge and technological development influence and shape institutions, societies, and environments. Students will examine how social, cultural, political, economic, and material realities instigate scientific discovery and research. . The complex interactions between society and science will be examined in the context of some of the most pressing problems that humans and non-humans face such as those related to climate change and biodiversity loss. Throughout the module, examples of established science, contested science and pseudo-science will be highlighted/discussed to illustrate their intersections with socio-economic and political reality.", + "title": "Science and Society", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSS2001B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the intersection and interplay of science and society, how scientific knowledge and technological development influence and shape institutions, societies, and environments. Students will examine how social, cultural, political, economic, and material realities instigate scientific discovery and research. . The complex interactions between society and science will be examined in the context of some of the most pressing problems that humans and non-humans face such as those related to climate change and biodiversity loss. Throughout the module, examples of established science, contested science and pseudo-science will be highlighted/discussed to illustrate their intersections with socio-economic and political reality.", + "title": "Science and Society", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSS2001C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the intersection and interplay of science and society, how scientific knowledge and technological development influence and shape institutions, societies, and environments. Students will examine how social, cultural, political, economic, and material realities instigate scientific discovery and research. . The complex interactions between society and science will be examined in the context of some of the most pressing problems that humans and non-humans face such as those related to climate change and biodiversity loss. Throughout the module, examples of established science, contested science and pseudo-science will be highlighted/discussed to illustrate their intersections with socio-economic and political reality.", + "title": "Science and Society", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSS2001D", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to give an overview of a living cell, genetic basis of diseases, biological molecules and their applications in undertaking clinical challenges. In brief, the student will learn the basic concepts of molecular biology, genetics, genetic engineering and biotechnology relevant to the biomolecular revolution. New frontiers of the revolution will be discussed with the emphasis of their\nimpacts on the individual and society. Through contemporary readings, students will be provoked to think of issues arising from the biomolecular revolution.", + "title": "The Biomolecular Revolution", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Nothing in biology makes sense except in the light of Evolution This bold statement by the Russian population geneticist T. Dobzhansky emphasizes the importance of evolution as the only unifying concept in biology. Yet, the theory of evolution is more controversial and opposed by more forces in society than any other theory in science. The module will revisit many of these objections and reveal that they are based on reasoning that is incompatible with the principles of science. We will investigate, why it is \"Neo-Darwinism\" and not \"Intelligent Design\" that is currently the best supported paradigm for explaining \"adaptation.\" We will then challenge the power of the neo-Darwinian paradigm by asking how seemingly incompatible phenomena like altruism and excessive male ornamentation can possibly be explained by natural selection. We will also study several key events in evolution such as the origin of sex and its numerous consequences and the origin of the human species. We will conclude with discussing the importance of the theory of evolution for understanding cultural evolution (\"memes\") and human health and senescence (\"Darwinian medicine\").", + "title": "Evolution", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Biodiversity conservation became one of the important environmental themes of global concern after UN Conference on Environment and Development at Rio de Janeiro in 1992. The realisation that human development has to complement and not to compete with biological conservation ultimately developed into the famous Agenda 21. This protocol bound all the nations into accepting various responsibilities towards conservation of nature and natural resources. This module is aimed at imparting knowledge to students to help them understand and appreciate various concepts and issues concerning biodiversity and conservation at local, regional and global levels.", + "title": "Biodiversity And Conservation Biology", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Sign processes permeate the lives of all creatures in the natural world. Sign use makes possible not only such higher-order human abilities as spoken language and written texts, but also underlies such communicative animal behaviour as the calls and songs of birds and cetaceans; the pheromone trails of insect colony organisation and interaction; the mating, territorial, and hierarchical display behaviour in mammals; as well as the deceptive scents, textures, movements and coloration of a wide variety of symbiotically interacting insects, animals and plants. This course will introduce you to the recently developed field of biosemiotics the interdisciplinary study of sign processes as they occur variously across the biological spectrum. Looking at the close relation between living systems and their sign systems (hence the term: bio-semiotics), this still-emerging discipline seeks to traces the evolutionary development of sign-mediated ways of being in the world from its beginnings in the transmission of information across single cells to its most complicated realisation in the abstract forms of human thought.", + "title": "Biosemiotics: Signs In Nature", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When we open our eyes, we feel that we are seeing the world as it is in front of us. But scientific studies reveal that we are seeing only a tiny fraction of that world, and that what we do see (and hear, and smell, and touch) is not the world \u201cas it is\u201d \u2013 but as it is represented to us through the filters of our biology, or technology, and our culture. This module will examine the ways in which these three important forces enable, limit and shape the ways that we perceive \u201cthe world in front of us\u201d.", + "title": "The Doors of Perception: Biology, Technology & Culture", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When asked, \u201cwhat is pain?\u201d many respond: \u201cthe response to something painful.\u201d That answer is tautological. To escape tautology, we need to understand pain independent of any stimulus; we need to understand pain subjectively. A subjective focus, however, causes problems. The need for subjectivity might deny pain to the unborn and to animals, and seemingly leads to the conclusion that we can \u201cthink\u201d ourselves into, and out of, pain. Consequently, many argue that pain should be understood objectively as the expression of biological changes (hormonal increases, brain activity) that are mobilised to defend the organism from injury.", + "title": "The Biology and Phenomenology of Pain", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Situated within a megadiverse biodiversity-hotspot, Singapore has drastically-reduced natural areas yet remains surprisingly species-rich. Combined with her colonial legacy, infrastructural capabilities and cultural biases, Singapore offers a unique situation for studying biodiversity. In this module, we study how Singapore\u2019s biodiversity landscape as well as the motivations and methods for studying biodiversity have evolved across Singapore\u2019s history. Retracing how prominent naturalists explored Singapore\u2019s biodiversity in the past, we imagine how they would do it today using current techniques. This module has a strong fieldwork component, imbuing students with naturalist sensibilities which heightens their awareness of Singapore\u2019s diverse but oft-neglected natural heritage.", + "title": "Biodiversity and Natural History in Singapore", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2007", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Invertebrates are the animals lacking backbones that comprise >90% of the animal kingdom. Despite this, they remain superficially known to most people. This module gives much-needed attention to this megadiverse group, focusing on the varied biological innovations in aspects of their anatomy, physiology, and behaviour, which enable them to survive in particular habitats. We examine how such innovations in invertebrates have inspired man-made designs, materials and technologies across disciplines, which lead to human innovations that benefit society; and how the study of invertebrates more broadly contributes understanding of the natural world that also indirectly benefits society.", + "title": "Invertebrate Innovations", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As an inquiry-tier module, students will be brought through a general framework for thinking about these issues lensed from philosophy mathematics and physics. Specifically,\n- The philosophical strand will expose students to some of the early conceptions of space, time and matter. Principally ideas of Descartes and Leibniz with emphasis on Kant\u2019s concept of space and time. The mathematization of science in the 17th Century - from Descartes use of coordinate geometry to Galileo\u2019s Principle of Inertia and the mathematics of motion will serve to showcase how the early concepts took shape.\n- The mathematical strand will serve to showcase how Euclid\u2019s axiomatic approach to geometry formed the basis of subsequent generalizations that led to the characterization of space and time. Here students will be introduced to structures such as topological spaces, manifolds and Riemannian spaces that form the basis of the space-time fabric.\n- The physical strand will touch on the notion of physical symmetries and its relation to geometry. In particular, Galilean and Special relativity will serve to elucidate how the motion of particles in the space-time fabric reveals its geometrical structure. This will culminate in Einstein\u2019s Equivalence Principle and its implications leading up to the General theory of Relativity.\nThe aim here is to provide a coherent exposition of how the three disciplines come together in providing insights into the nature of space, time and matter. The questions raised will force students to examine and reflect on the extent to which our commonsensical views of the physical space accurately describes the way nature really is; and to what degree this view is tenable on the basis of detailed quantitative reasons and empirical evidence. Hopefully, through this analysis, students will appreciate the subtle interplay between the realm of ideas and mental constructs and that of experiments and scientific facts.", + "title": "Space, Time & Matter: The Shape and Size of the Cosmos", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Although diverse in scale and nature, the dynamics of tsunamis, the formation and breaking of chemical bonds, the development of stripes on a zebra, the transmission of nerve impulses, and the precession of binary pulsars are natural phenomena that can be described and understood in terms of waves. We will discuss the nature of waves by starting with the idea that a wave is simply a disturbance that propagates in a medium via the interaction of its parts. Using the above and other phenomena, we examine what we can learn about matter from the various kinds of waves. We will also trace the important steps in scientific thinking that has taken the idea of a wave from a mere description of empirical observations to the abstract but powerfully predictive concept of a quantum wave.", + "title": "Waves in Nature", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to explore the importance of various key ideas in the history of physics by considering a selection of examples each semester as a means of examining the whys and hows of certain scientific revolutions. The theme underlying the choice of topics to be covered will be to explore the evolutionary aspect of scientific understanding which finds inter-connections (often, only much later, sometimes even centuries later) between seemingly unrelated ideas. The student should take away from this module a sense of the revolutionary nature and scientific importance of the ideas explored that semester, as well as the deep inter-connections which science establishes - 'Nature's Threads' as it were.", + "title": "Nature's Threads", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the evolution of our present theoretical understanding of some basic aspects of the physical world around us. It explores the role of certain\nprimitive concepts of science and how these key ideas have been used to construct a coherent \u2018mental\u2019 picture of the physical world. The particular focus this semester will be on a wellestablished and \u2018deterministic\u2019 law of nature: the Law of Universal Gravity and how this led to Newton\u2019s prediction of the motion of the planets.\nThe module will also question, on a higher level, the nature of \u2018scientific explanations\u2019: how these are extended over time and inevitably get modified by having to take into account new \u2018facts\u2019 provided by observation and experiment.", + "title": "The Nature of Natural Law", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How is it possible that only a small number of genes can code for the shape of a tree? Or more generally, where does the complex behaviour so common in the natural world come from? Indeed, how is it conceivable that trillions of neurons create intelligent behaviour? A key to answer these questions lies in interaction and recursion. In this module, the world of complex systems and their fundamental mechanisms are explored through lectures, seminars and hands-on programming. It will be shown how in many cases complex systems can be modelled with recursive processes leading to emergent phenomena that defy an atomic explanation.", + "title": "Complexity and Recursion", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Can physics allow us to know the reality of nature or does it merely tell us how nature appears? Or for that matter, what are the limits of knowledge in physics, constrained as it is to giving responsible proof for the claims it makes?\nThis module explores some of the developments of quantum physics and how they bear on the philosophical notions of reality and appearances. The enquiry here will consist of an in-depth examination of the theoretical and experimental observations that claim to elucidate the notion of realism. Students will be taken through a journey that showcases the developments that have shaped our\ncurrent views on the topic.", + "title": "Quantum Reality and Appearance", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is the nature of Reality and how can we be sure about what we know? Do mathematical constructs such as symmetry groups and infinity point beyond themselves to a higher reality? How do we account for the fact that mathematics is so effective in describing nature? Is it mere language or is it the reality itself? This module explores the intimate link between reality and mathematics and how the latter has been unreasonably effective in providing a description of nature. Students will be taken through a journey that showcases the developments that have shaped our current views on the topic.", + "title": "Mathematics and Reality", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2015", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to sharpen students\u2019 analytical minds, and to develop skills for decision making such as might be useful in management consulting. Students will appreciate the general decision framework and be familiar with some decision models in this quick and challenging course.\nThe focus will be on data-analytic and microeconomic approaches to decision making, with as little use of formulas as practicable. Rather, grasping of broad concepts, extension of intuition and, where appropriate, use of information technology to arrive at decisions, will be emphasized.", + "title": "Decision Analytics", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2016", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to sharpen students\u2019 analytical minds, and to develop skills for decision making such as might be useful in management consulting. Students will appreciate the general decision framework and be familiar with some decision models in this quick and challenging course.\nThe focus will be on data-analytic and microeconomic approaches to decision making, with as little use of formulas as practicable. Rather, grasping of broad concepts, extension of intuition and, where appropriate, use of information technology to arrive at decisions, will be emphasized.", + "title": "Passing Time: Processes, Temporality, and Econometrics", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Linguistics is the scientific study of language. Linguists study the range of possible human languages, how languages differ, and what they have in common, and formulate explicit and consistent theories of linguistic structures and relations. The data of linguistics are all around us, on every written page and in every conversational interaction. How do linguists who are interested in the grammar of languages collect and analyse linguistic data, and how do linguists use these data to build theories of human language? This module focuses on the theory of grammar, and examines the broader goals of linguistics and the methodology of grammatical theory by means of hands-on exploration of these processes.", + "title": "How Linguists Work", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on matters that are truly linguistic. After separating linguistic problems from ones that should be studied in other fields, the course introduces students to genuinely scientific study of human language. More specifically, by (critically) reading Radford 2009, the course provides a concise and clear introduction to current work in syntactic theory, drawing on the key concepts of\nChomsky\u2019s Minimalist Program. By looking at data mainly from English, it will also introduce students to quite a few linguistic mysteries.", + "title": "Generative Syntax", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Indicators are measured concepts that monitor development and track progress. Indicator reports are an indispensable element in the information system of a democratic society, providing government, researchers, business and the public with data driven evidence to inform policy, research and debate. Developing innovative indicators to monitor the progress of difficult to measure concepts (i.e. sustainability, cultural wellbeing, community cohesion), using novel techniques of data collection and analysis (experience sampling, social media, IoT monitoring), are necessities for a society to thrive in an increasingly complex world.", + "title": "Developing Meaningful Indicators", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2020", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A tools-and-soft-skills module introducing Python machine learning, with hands-on modelling via pre-programmed templates. Students will be gently ushered into the artificial intelligence landscape, so that they might henceforth\u2014as an insider\u2014keep abreast with the ecosystem\u2019s constant reshaping.\nBroad appreciation of introduced models from a decision-maker\u2019s perspective will be emphasized, without deep dive into program coding. Students will learn to communicate responsively and congenially with senior management and technical colleagues alike.\nWe will equip students to thoughtfully follow the accelerating analytics transformations within modern organizations. Students may then deservedly take a seat with enlightened movers and shakers digitizing future workplaces.", + "title": "Thoughtful Learning with Machines", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2021", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main goal of course is to describe chemical technology as one of foundations of our global economy. In this course a variety of chemical technologies (i.e., products, processes and reactors) will be presented. The trans-disciplinary aspects of chemical technology will be stressed, especially since chemical technology is based on fundamental laws and approaches taken from math and physical sciences. The responsibility of the chemical engineer for the global and regional environment will be explained.", + "title": "Chemicals And Us", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Nanotechnology is a relatively new field, and there is still controversy over its future potential. This module aims to acquaint students with the current topics in nanoscience, while engaging them in a dialogue on future possibilities, as well as the social and environmental implications of nanotechnology. Students will first be introduced to fundamentals of the nanoscale and learn to appreciate what the world is like when things are shrunk to this scale. They will then explore the special tools and fabrication methods required and have some hands-on experience with nano-instrumentation in a group project.", + "title": "Nanoscale Science And Technology", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2023", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Can we learn how man-made technologies work by taking a deeper, more quantitative look at how living organisms function? The nature of physical law imposes unique constraints on the evolution and functioning of living organisms \u2013 the same constraints (and opportunities) we encounter when inventing technologies. This module will investigate how living organisms of all shapes and sizes have evolved creative solutions around natural constraints, and indeed turned these into opportunities for amazing feats of \u2018natural\u2019 engineering. To do this, students will learn important engineering fundamentals such as fluid mechanics and chemical and heat transport. The overall goals are to assemble a conceptual toolkit to analyse physical and chemical technologies, and to also highlight how nature can inspire new man-made technologies.", + "title": "The Technology of Life - Machines That Go Squish", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2024", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does an understanding of molecular interactions help us to make sense of everyday chemical phenomena to important chemical technologies? For example why are plastics non-biodegradable? Why and how an LED lights up or gets quenched, or one drug molecule works while another results in side effects? These are important outcomes resulting directly or indirectly from initial intermolecular forces. Environmental issues such as differentiation between biodegradable and \u201cunfriendly\u201d materials can also be discussed. Stereochemical or 3D-controlled intermolecular forces allow an understanding of many chemical processes in biological systems.", + "title": "Molecular Courtship", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Clean air and water are crucial for public health and to ensure a safe supply of drinking water. Pollution to our air and water can pose health risks and increase treatment costs. This module explores topics related to environmental pollution that threatens clean air and water. What are the main air and water pollutants? From what sources do they come? How do these contaminants get transported? How do we monitor and keep tabs on the quality of the environment? Relevant examples from Singapore and other countries will be used to demonstrate concepts taught in class.", + "title": "Pollution Control Engineering in Singapore", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2026", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Energy permeates all aspects of our everyday lives, yet the goal of ensuring secure, affordable, and sustainable energy for all remains a major global challenge. Significant technological progress has been made towards achieving this goal. However, implemementation of new technology can prove difficult for various reasons such as lack of suitable sites and strong public opposition. In this module, we shall explore key energy technology, and discuss the challenges facing their widespread adoption. We will also talk about the energy situation in Singapore, and highlight the challenges and opportunities in the local context.", + "title": "Energy in Singapore: Is Technology the Answer?", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "People was once benefited from the method of science and the idea of determinism to gain knowledge about our material world. However, it is still debatable whether or not science and determinism were sufficient to understand the whole material world. Through reviewing our understanding of the origins of the Universe, Earth, Life, Mankind and Civilisation, the module helps us to reflect our understanding of the material world along the historical timeline and we would analyse the role of determinism in our perception of the material world.", + "title": "Re-examining the Deterministic World of Matter", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2028", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We live in a world where technological advances and technology related decisions constantly impact society in many different ways. Being able to critically assess technological claims helps one make better judgments that could significantly affect our world. This module looks at central ideas and major technological advances in the field of computer science, and how these developments have shaped modern society through the IT revolution. Although the specific subject matter deals with computer science and information technology, the module objectives are more general in nature. We aim to develop in students, a balanced perspective of science, technology and their impact on modern society.", + "title": "Computer Science & The I.T. Revolution", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2029", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the most recent advances in the area of computer science and information theory is the emergence of a new notion, the concept of quantum information. The module aims to provide an introduction to the field of quantum computing. While very much a technology of the future, the module will examine some of the possibilities that the quantum world offers in advancing the capabilities of computers and how our notion of information has evolved. Essentially the module showcases, two major paradigm shifts; one from classical physics to quantum physics and the other from the standard Turing principle in computer science to its modern quantum counterpart.", + "title": "Quantum Computation", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2030", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Formal methods of reasoning have been studied in all major civilizations, but the appearance of automatic computing devices in the 20th century has led to an explosion of interest in and applications of formal logic. Today, the advantages of formal reasoning are recognized and utilized far beyond computer science. Students of this module will discover the power as well as the limitations of formal methods for philosophy and mathematics, and learn to apply them in diverse areas such as political speeches and arguments, analysis of detective novels and the scheduling of sports tournaments.", + "title": "The Importance of Being Formal", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Computational thinking is a way of understanding the world and solving problems. We will explore a wide range of programming languages, systems, and activities designed to help children and the general public acquire computational thinking skills. Students will build and explore computer models of complex systems in the life and social sciences in order to acquire a deeper understanding of the underlying phenomena. No programming experience required. \n\nThis module is also about the pedagogical theories that underlie attempts to create environments designed to support learners in becoming creative problem solvers and capable of doing scientific research via computer simulations.", + "title": "Computational Thinking and Modelling", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2032", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The 4th industrial revolution, combining notions from fields such as cybernetics, the maker world and artificial intelligence, is rapidly starting to take shape. The key underlying human thought process is often represented by the term \u2018computational thinking\u2019 but this thought process is much more than thinking like a programmer or computer-like. It is a broadly interdisciplinary process encompassing both the arts and the sciences, and essential for succeeding in an interconnected and data driven world. Indeed, thinking computationally is often more like art than like math. This module, explores the thought processes behind computational thinking and considers applications in finance.", + "title": "Thinking 4.0", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Learn about AI and machine learning from hands-on project work, case studies of how AI is impacting nearly every field of study, and explorations of its societal, ethical, and philosophical impacts. No prerequisite programming experience or advanced mathematics required. This module is an opportunity to do an AI project of your choice in your field of study (including physical, life, and social science, business, art, language, and humanities).", + "title": "AI Projects and Case Studies", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2034", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What doesn\u2019t kill you makes you stronger\u201d is a common saying that implies a positive response to external stress. Yet, beyond the rhetorics, this notion is grounded in scientific principles. The goal of this module is to first discuss the theoretical basis behind this effect, and then to explore the reach of this phenomenon across different disciplines. These include addressing the risk-benefits of medications and health supplements, the effects of exercise on the physical body, concept of immunity and others. Beyond that, we hope to generate a platform for a deep dialogue on the potential analogies of the concept in far-reaching domains such as sociology, psychology and even economics (antifragility). Through this, we hope to advocate the theories and practice of taking \u201ccalculated risk\u201d in life situations.", + "title": "Hormesis and Life", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2035", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as an introductory module for students interested in regenerative medicine entrepreneurship and its associated intricacies, including ethical issues and socioeconomic impact. This module will broadly cover the fundamental concepts in regenerative medicine such as stem cell biology and tissue engineering. With this knowledge, examples of regenerative medicine technologies will be used as anchors for discussion throughout the course to enable students to truly appreciate the complexities involved in bringing these typically controversial technologies from bench to commercialization.", + "title": "Creating Wolverine in Real Life", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2036", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and indeed moves beyond what might be gained through a qualitative approach. While the most important element of the class will be a hands-on quantitative exploration of the problem in question, students will conclude by considering the limits of quantitative analysis in the chosen case.", + "title": "Quantitative Reasoning Foundation: Epidemics", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2037", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of one important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach.\n\nIn this particular iteration of the module, we will learn to make appropriate measurements to quantify the ecofootprint arising out of our current personal lifestyle choices, conduct systematic thought/real experiments to explore improvement opportunities, and propose a modelbased sustainable alternative for ourselves, our families or communities such as the USP Residential College.", + "title": "Quantitative Reasoning Foundation: Quantifying Our Eco-Footprint", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2038", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of one important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach.\n\nIn this module, we will learn quantitative tools to understand and to quantify risks encountered in daily life; to compare and to weigh the consequences of these risks for a more insightful decision-making. We will examine the underlying limitations of these tools.", + "title": "Quantitative Reasoning Foundation: Calculating Risks", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2039", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach. This module focuses on quantifying aspects of nuclear risks. Students will pose a question related to nuclear risks (e.g. What is the lowest dose of radiation that can lead to cancer?), propose a method to measure the relevant variables, collect the necessary data, and make scientifically justifiable inferences from it. Students will thus perform all aspects of a genuine scientific study, from problem formulation to decision making and final reporting.", + "title": "Quantitative Reasoning Foundation: Quantifying Nuclear Risks", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2040", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach.\n\nThis module looks at environmental quality and human health. Students will learn how environmental quality is measured, air and water quality parameters, and health effects of pollution. They will apply quantitative analyses in understanding our environment and its link to our wellbeing.", + "title": "Quantitative Reasoning Foundation: Quantifying Environmental Quality", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2041", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach. What factors contribute to positive life outcomes? Is successful living predicated simply by demographics or do social attitudes lead to a happy life? Are these two factors linked? We explore 40 years of data to answer questions surrounding the relationship between demographics, attitude, and the quality of life of individuals.", + "title": "Quantitative Reasoning Foundation: Pursuit of Happiness", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2042", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach. \n \nThis module uses the searching of romantic relationship as an example to demonstrate the usefulness of quantitative reasoning. Students will learn to use survey and data analysis to validate some claims about dating, and to investigate dating strategies from mathematical modelling. The cross-discipline potential of quantitative methods will be reviewed.", + "title": "Quantitative Reasoning Foundation: In Search of Soulmate", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2043", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores and scrutinizes the current energy and environmental problems the world is facing, by critically evaluating the main causes and finding ways to alleviate and solve them. Key topics include energy conservation, alternative or renewable energy, climate change, carbon footprint, decarbonization, pollution, forestation/reforestation and science-based policy making. Students will be poised to make a difference not just through their awareness but by translating their knowledge into concrete action.", + "title": "Solving Energy and Environmental Problems", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2044", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The \u201c30 by 30\u201d vision by Singapore has placed emphasis on developing local food production capability, but this objective is challenging especially in Singapore. In this module, we explore farming methods and technologies that underlie this drive toward achieving a more secure and sustainable local food supply. The module addresses: 1) The need for high-tech farming equipment and methods in Singapore; 2) The types of technologies available; and 3) The viability and implementation of these methods. In this module, students will also be invited to develop research questions that can be developed into larger study opportunities during their undergraduate term.", + "title": "Food Production and Security in Urban Singapore", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2045", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Creativity was one of the characteristics humanity was always proud of. With recent technological advancements, machines are starting to get good at creating: not only useful, but sensical and beautiful things. It looks like almost every domain where humans create original work \u2014 from advertising to literature, from coding to graphics, from marketing to law \u2014 is up for reinvention. Would Generative AI become not just faster and cheaper, but a better alternative to human hands and minds? How would it affect the creative process? We will discuss these questions, look at limitations and perspectives and build generative AI models.", + "title": "Deus Ex Machina: Generative AI and Society", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2046", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "By 2050, half of the world\u2019s population will live in cities, placing additional demand on core infrastructure such as food, water, transportation, and healthcare. Throughout the course, we will explore the concept of urban sustainability in general with emphasis on intersectional climate change challenges here in Singapore. But is sustainability enough in our changing world? And what are some ways we can redesign our cities in ways that make efficient use of the resources we have? We\u2019ll look at potential solutions such as the circular economy, industrial symbiosis, and work with Mandai Parks to analyse their own resource flows.", + "title": "Rethinking Sustainability in a Green City", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST2047", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (ST)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST3901", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (ST)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST3902", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (ST)", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NST3903", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001I", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001J", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001K", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001O", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The social world and how it\u2019s experienced is complex and mediated by one\u2019s social identity, interpersonal relationships, and broader social forces. This module \nexplores how social scientists approach the study of social norms, relations, and institutions as experienced by different groups and how they interact and intersect, \ninfluencing each other. In investigating these complexities, students analyse these interactions and their consequences and develop critical perspectives on the social world. Singapore will feature as a key case study to be compared globally with other societies and students will gain a deeper understanding of Singapore and other societies undergoing rapid change.", + "title": "Understanding the Social World: Singapore & Beyond", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NSW2001R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\u201cWhat is the meaning of the term \u201cglobal citizenship\u201d? What is its significance? And what are the obstacles and challenges to it? This module teaches academic writing through a critical exploration of the concept of global citizenship. Topics discussed include the historical doctrine of cosmopolitanism, the relevance of global citizenship as a moral, economic and cultural ideal as well as the institutionalization of global citizenship in the education curriculum. The module encourages students to reflect on the notion of global citizenship in the contemporary world, as well as their responsibilities as cosmopolitan citizens.\u201d", + "title": "Cosmopolitanism and Global Citizenship", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches writing and critical thinking through a critical exploration of theories of civic and public discourse as they were configured by the ancient Greeks. Topics discussed include the political, ethical, and emotional uses and impacts of civic discourse. The module thus provides the chance for students to gain a critical awareness of the natures of their own engagement with public discourses, to contextualise these discourses both locally and internationally, and to explore the possible futures of communities of which they are a part.", + "title": "Civic Discourse in a Fractious World", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores how monuments, memorials and other forms of public commemoration represent the past and influence culture and politics in the present. It takes a comparative approach, using case studies from different societies. The module highlights the complexity and contested nature of commemoration and memorialization. Although monuments and memorials may be intended to tell the \u201ctrue\u201d version of historical events, the end result often hides controversies that may have been part of the process of designing these structures. Similarly, the meanings attached to monuments and memorials can change dramatically over time, as societies change and these structures are reinterpreted.", + "title": "Monuments, Memorials, and Commemoration", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Everyday narratives are those informal stories we tell each other about ourselves and our quotidian experiences. In this module, such narratives will be analyzed in terms of identity politics, how they instantiate social power, and how they frame epistemological knowledge, such as scientific discourse, not normally associated with narrative as a mode of representation. Students will generate a corpus of genuine sociolinguistic narrative data and analyze it in an interdisciplinary framework.", + "title": "Narrative in Everyday Life", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates the relations between literature and the realm of the ethical. As the module does not take the categories of 'literature' and 'ethics' for granted, it challenges students to do more than simply read literary texts for ethical content. Exploring the relationship between literature's representation of ethical concerns and the demands that a work of literature makes upon the reader's moral judgement, students can articulate their own understanding of the values, choices, and responsibilities involved in writing and reading.", + "title": "Literature and Ethics", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches writing and critical thinking through forms of human trafficking in the contemporary world. Topics discussed include sex workers, migrant labour, abolitionist and human rights approaches to human trafficking, as well as media representations. The module thus provides the opportunity for students to reflect on the nature of problem in the contemporary world, as well as their responsibilities as global citizens.", + "title": "Human Trafficking and Labour Migration", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module primarily introduces fundamental skills of writing that are appropriate to the interdisciplinary context of the USP. It does so by advancing various topical questions surrounding our fascination with and anxieties about the portentous and cataclysmic events leading to the end of world. Are these concerns new or culturally specific? Are these apocalyptic visions obsessed with finality or are they genuinely more interested in new beginnings? In exploring these topics, students develop skills necessary in reading primary and secondary texts, to ask focused questions and explain why they matter, and ultimately to respond with well-formed arguments.", + "title": "Apocalyptic Cultures", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the ways power, space, and pleasure are interconnected. The module is divided into three units. First, we will look at how space is related to questions of power, focusing in particular on surveillance. Then, in the second unit, we will consider more closely the relation between space, power and pleasure as exemplified in voyeurism and surveillance : here we will be watching people watching other people. Finally, we'll consider the relations between space, power and pleasure in Singapore, in particular as this applies to the tensions between traditional practices and urban planning in city spaces here.", + "title": "Power, Space and Pleasure", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will develop students' critical reading and writing abilities through an active, seminar-style engagement with a variety of materials related to the nature and impact of modern consumer culture. We will begin by examining a number of key theoretical positions concerning the relationship between human nature and the need or desire for material things. Once we have interrogated some of these arguments, we will examine the phenomenon of modern advertising and consider the extent to which individual ads shape our buying habits and even our values. The module concludes by investigating the relationship between today's corporations and youth culture.", + "title": "Interpreting Consumerism", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2009", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module like others in the Writing and Critical Thinking area helps students become better writers of argumentative essays. To do this, we will specifically examine the modern phenomenon that is tourism, asking questions such as: What is a tourist? Why do we become tourists? Why do we send postcards, take photographs, or collect souvenirs? Do tourists find ourselves when we go abroad? Do we lose ourselves? How are cultures packaged for tourists, and is this packaging always reductive? Such questions will help us to understand the assumptions behind tourism, and to explore issues of modernity, nationality, self and other, identity and culture.", + "title": "Sites of Tourism", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2010", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A multidisciplinary module that examines crises and debates generated by different concepts of evolution and progress in areas of: natural science and technology; sociology and theology, history and politics, economics and literature. Evolution is examined from Darwin's Origin of Species to the present day. We address such issues as: telling the difference between \"true\" science and pseudo-science; use and interpretation of \"scientific\" evidence; social Darwinism; the ethics and principles of \"survival of the fittest\" and eugenics. Lastly, the concept of progress is examined in the context of debates about Singaporean history and identity.", + "title": "Questioning Evolution and Progress", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will investigate a fundamental human question: what is happiness, and what do we need to attain it? Is happiness in our own control or does it depend on external circumstances, such as wealth or freedom? Are pleasure or virtue necessary or even sufficient conditions of happiness? What constitutes a meaningful life, and how is meaning related to happiness? To reflect on such questions, we will investigate the arguments of philosophers, psychologists, economists, and other thinkers over the course of three thematic units.", + "title": "Conditions of Happiness", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2012", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Scholarly Pursuits examines colonialism as an ethnic experience that shaped schooling into an institution designed to socialize people living in colonial societies into accepting identities like \"the coloniser\" and \"the colonised\". It also examines contradictions within these identities as polarising the colonised and colonisers into becoming challengers or defenders of the moral and social legitimacy of colonialism. Students will write papers that contribute to constructing a theoretical framework that explains how colonialism shapes the policies and practices of schooling, interpret their impact on students and teachers, examine paradoxes, contradictions, mysteries to modify or create new interpretations for understanding colonial schooling.", + "title": "Scholarly Pursuits", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject students will think, read, and write about in this module is clothing and identities. Do clothes make the man or woman? Most people accept that the clothes we wear say something about us? Particularly about our race, gender, class, and power status. But what do they say, exactly? How do they say this? Why have we learned to see clothes as speaking thus? Furthermore, if clothes say certain accepted things, what happens when people dress in inappropriate ways?", + "title": "Clothing Identities", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will examine three aspects of the role of journalism in an ongoing debate over whether citizens have the capacity to understand and make decisions about public issues in democratic communities: (1) A news audience's role in establishing \"journalistic truth\", (2) Ideological assumptions driving social commentators to different positions in this debate, and (3) News as propaganda. Through a series of smaller sequenced assignments leading up to three larger essays, students will read, respond, and question ideas generated by published writers as well as their classmates.", + "title": "News and the Public", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2015", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A topic of profound interest to philosophers, social scientists and moralists, civility sets the conditions in which differences of opinion are admitted and aired. All too often, civility is taken for granted : just good manners. But actually, civility is one of the most intricate social frameworks, perhaps especially in a world city such as Singapore. This course surveys recent ruminations about civility in personal, professional and civic life to foster discussion of real-world interactions.", + "title": "Civility in the World City", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2016", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is \"the mind\" and where does it fit in the interdependent histories of nature and culture on our planet? Does \"mind\" reduce to brain activity? Or is it more than just the electro-chemical exchange between neurons? As minded creatures with brains ourselves, the ways in which we delimit the mind/brain relation has enormous consequences for the ongoing construction of our legal, social, medical and ethical lives. In this module, we will study some of the major approaches to this issue, and attempt to discover what it is that we are really talking about when we are talking about \"mind.\"", + "title": "Multidisciplinary Perspectives on 'Mind'", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2017", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to skills necessary for writing an academic essay. It does so by facilitating students' ability to think critically about the relationship between the concepts of \"danger\" and \"national security\". In particular, it asks if the process by which danger is identified by national communities are unquestionable and self-evident, or if they are historically contigent and mutable. In this regard, is \"danger\" constructed to foster national solidarity and identity? This module examines different cultural and political texts attesting to the changing nature of the national security community, and uses them as the basis of teaching the elements of essay writing.", + "title": "Danger and National Security", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Increasingly, discussion regarding the debate over the \u201cglobal war on global warming\u201d presents us with a number of unsettled questions regarding the interplay of science, politics, and personal morality. This module focuses closely on the contemporary debates regarding \u201cgreen\u201d policy and lifestyle as a way of examining the broader phenomenon of public advocacy and resistance discourse per se \u2013 i.e., on disputants\u2019 various ways of speaking about, and attempting to get others to think about, issues of mutual importance. In so doing, students will learn the skills of analytical argument and expository writing necessary for their own successful participation in such debates.", + "title": "The Politics and Rhetoric of Green", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Domestic life is routinely held up for admiration as pure or natural. But how many of us experience family time/space in that way? Challenging the truism that domesticity offers a refuge from the modern world, this module recognises that technology makes it possible for modern people to be, and feel, at home. Some relevant technologies involve engines or electronics. But others organise ideas about gender, room, place and belonging. By enhancing awareness of domesticity\u2019s \u201cconstructed nature,\u201d this module deepens understanding of home sweet home.", + "title": "Technologies of Home", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2020", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Depictions of \u2018natives\u2019, \u2018primitives\u2019 and \u2018savages\u2019 abound in the popular cultures of developed countries worldwide. In this module we will examine common stereotypes of native people and primitive cultures to uncover the underlying ideologies driving them, and analyze what cultural purpose such stereotypes serve in modern day life. We will seek to discern what palpable differences exist between primitive and modern people, and to confront the cultural and ethical conundrums entailed by those differences. Finally, we will explore how primitive people view modern society, and assess what the future may hold for native cultures in our fast globalizing world.", + "title": "Language, Culture and 'Natives' People", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2021", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The various twentieth-century genocides raise profound questions for individuals and societies. Why did they happen? How could they happen? Who did the killing and what motivated them? How should we remember? What do the events mean today? \n\nThe last two questions are particularly pertinent to us. The history and memory of genocide are seldom simple. People select which details to include and exclude in order to fashion narratives and interpretations. Often those interpretations have implications not only about the topic itself, the genocide, but about the people who are remembering, and their relations to the past and to other groups. This leads to the second question. Many have suggested that genocide, as we understand it, is a relatively recent phenomenon, and indeed, belongs to modernity. It is important to consider whether and in what ways this might be true.", + "title": "Genocide and Memory", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches writing and critical thinking through a critical exploration of the nature of the university as an institution. Topics discussed include the many social roles of the university, the history of the university as a contested space in Singapore, and the effects of globalization and transnational education markets on contemporary tertiary education. The module thus provides the chance for students to gain a critical awareness of the nature their own educational experiences, to contextualise them both locally and internationally, and to explore the possible futures of learning communities of which they are a part.", + "title": "The Idea of the University", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2023", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches writing and critical thinking by introducing students to the assumptions that inform, and the arguments for, different concepts and practices of justice. Students will engage topics such as human rights, the place and limits of legal institutions, justifications for civil disobedience, and whether violence is justified in the pursuit of justice. This module enables students to think critically about theories of justice and how these theories shape the pursuit of justice in political life.", + "title": "Issues in and Around Justice", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2024", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines how social attitudes and government policies towards vices such as alcohol use, gambling, and prostitution have evolved in Singapore from the colonial period to the present day. Students will develop their critical thinking and writing skills through analyzing a range of historical primary sources, including newspaper opinion pieces and government reports, and studying relevant case studies from other countries and theoretical works. The main assessment component is an individual research project on issues related to the control of a selected vice in Singapore, utilizing archival sources.", + "title": "Vice, the State & Society", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Religion in Public Life concerns the intersection of religion and society and the role of religion in the officially secular state of Singapore. Students will study how religion is discussed in both academic and popular literatures and examine how religious organizations present themselves in order to participate in discussions of social, political or economic importance. The module will include a fieldwork\ncomponent that will provide students with the data needed to write meaningful research papers based on real sites in Singapore. As a WCT Course, this module will give students the skills to produce rhetorically effective academic writing.", + "title": "Religion in Public Life", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2026", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The University Scholars Program aims to be a \u201ccommunity of people who are curious, critical, courageous, and engaged\u201d. Although we rarely think of it in this way, an older tradition would call such qualities aspects of wisdom. In this module, we will study the concept of wisdom from different disciplinary angles, ranging from philosophy to neurobiology and cultural studies. We will discuss key aspects of wisdom such as judgment and self-transcendence, study how wisdom can be developed, and consider how it might be relevant in professional life or even help to solve world problems.", + "title": "What is Wisdom?", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2027", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores how science, as a fundamentally human endeavor, is shaped by the social contexts in which it is practiced. Students will study the social production, circulation, and uptake of scientific knowledge through a series of case studies drawn from the interdisciplinary field of Science and Technology Studies. Students will gain an appreciation of the social processes scientists rely upon to arrive at truths and how scientific ideas and techniques transform once publically circulated. The module will culminate in individual research projects analysing the social contours and consequences of current scientific debates.", + "title": "The Social Life of Science", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2028", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Although we enjoy watching movies, reading novels, and listening to music, we might think that these are not very productive ways to spend our time. Yet every society throughout history has devoted significant resources to creating and enjoying art. Why is this the case? Some scholars have proposed that there is an evolved, biological \"human nature\" that can help explain why people are psychologically inclined to create and consume art, particularly art that tells stories. This course will teach students to write effective arguments through discussing and evaluating theories that use evolutionary psychology to understand art.", + "title": "Evolutionary Psychology and Art", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2029", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "When it comes to addressing the climate crisis, one usually assumes that viable forms of action include protests, advocacy, and political interventions. But what about art? How does art making intersect with and propel social and environmental activism? Visual artists and makers from across Southeast Asia seek to effect climate justice through the fundamental practice of art, and they imagine and propose caring futures through their works. This module situates \u201ccare\u201d as a method and a mode of attention to ground writing and research about ongoing eco-social crises as explored in collaborative art projects from around the region.", + "title": "Art as Action: Caring about the Climate Crisis in SEA", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2030", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches writing and critical thinking by exploring questions about an activity all students are immersed in education. It is one of the main ways of acquiring knowledge, it shapes the frameworks with which new information is processed, and it leads to improved qualities of life. We discuss the goals of education, the nature of education, and how education intersects with inequality. This course gives students the ability to critically reflect on their own educational goals, apply useful epistemological concepts to their own experiences, and interrogate beliefs about the role education does and should play in our society.", + "title": "Equity and Education", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2031", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How does our conception of personal identity shape our understanding of health and longevity? This course will teach students how to read, think, and write critically through discussions in philosophy, medicine, and technology. We will explore what it is to be a person and what it takes to be the same person over time. Our views about our identity will shape our attitudes towards our health and intuitions about puzzles of personal identity that arise in medical practice. Our attitudes towards personal identity and health go on to determine how far we will go in the pursuit of longevity.", + "title": "The Self in Health and Longevity", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2032", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is human nature like, and can knowledge of it tell us how to live? In this module we hone our ability to read, think, and write critically by exploring these questions from the perspectives of philosophy, biology, psychology, and anthropology. We discuss and compare influential historical and contemporary conceptions of human nature and investigate their potential implications for our well-being, social organization, morality, and self-understanding. We thus critically reflect on (i) how such conceptions underly public policy, moral norms, and scientific inquiry, and (ii) how our own conception of human nature shapes our beliefs and lived experience.", + "title": "Human Nature", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2033", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Do we need to make radical changes to our values in response to the environmental crisis? How about to our lifestyles? And how can we teach people, both adults and young people, to better care for the environment? Responding to the environmental crises we now face will require changes to how we produce energy, construct buildings, and manufacture products. Many suggest that they also require deeper changes, to what we value and how we live. This course focuses on these deeper changes, on whether they are necessary, and on how they may be effected through policy and education.", + "title": "Wild and Simple Living and Thinking Sustainably", + "faculty": "NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NTW2034", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR7", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate theory and practice through acquiring clinical experience in the aged care facilities. Students will focus on planning, implementing and evaluating care using evidence based practice. This module requires a 100% attendance.", + "title": "Clinical Practice: Community Care I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "NUR1107B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to integrate nursing theory and clinical knowledge through experience in clinical placement attachments in medical, surgical and/or community care settings. Students will focus on planning, implementing and evaluating nursing care for allocated client. Students will apply knowledge from nursing and clinical sciences in the clinical management of clients. Attendance for the scheduled clinical practicum is mandatory.", + "title": "Clinical Practice: Medical/Surgical I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "NUR1108B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to integrate nursing theory and clinical knowledge through experience in clinical placement attachments in medical, surgical and/or community care settings. Students will focus on planning, implementing and evaluating nursing care for allocated client. Students will apply knowledge from nursing and clinical sciences in the clinical management of clients. Attendance for the scheduled clinical practicum is mandatory.", + "title": "Clinical Practice: Medical/Surgical I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "NUR1108C", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the importance and need for nurses to communicate in an effective manner with patients, family members and other health care professionals in order to facilitate optimal health outcomes for the patients.", + "title": "Effective Communication for Health Professionals", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR1110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the importance and need for nurses to communicate in an effective manner with patients, family members and other health care professionals across culture in order to facilitate optimal health outcomes for the patient. Students will also develop culture competency by operating with sensitivity and respect in a diverse culture of communities.", + "title": "Communication and Cultural Diversity", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "NUR1110A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 2, + 5 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 11 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students the opportunity to focus on the holistic needs of the older adults\u2019 population and explore means to support them to achieve optimal level of functioning and quality of life. Students will examine theories and concepts of ageing, normal physiologic and psychosocial changes and the bio-psychosocial issues associated with these processes. By developing an understanding of the specific needs of older adults, students will be able to promote health and wellness for this population. Ethical and legal aspects of caring for older adults are addressed.", + "title": "Health and Wellness for Older Adults", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR1113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students the opportunity to focus on fostering health and well-being of seniors at different ageing milestones. Students will examine and apply theories and concepts of ageing, normal physiologic and psychosocial changes and the biopsychosocial issues associated with these processes.", + "title": "Healthy Ageing and Well-being", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR1113A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD3-03-01G", + "day": "Friday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD3-03-01G", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 6 + ], + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD3-03-01H", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD3-03-01H", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD3-03-01G", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD3-03-01H", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD3-03-01G", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD3-03-01H", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD3-03-01G", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD3-03-01G", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 6 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 145, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 145, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the development of foundation knowledge and skills for provision of nursing care to patients in a variety of health care settings. The focus is on enabling the nurse to assess, plan, implement and evaluate care around the fundamental care needs to promote ownership of patients\u2019 own health and self-care.", + "title": "Fundamentals of Care", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR1114A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "7", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01D", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01D", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01D", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 8, + 9, + 11, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01D", + "day": "Friday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01D", + "day": "Friday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01D", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01D", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 8, + 11, + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 3 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will develop knowledge and understanding of the normal structure and function of the human body. Following an introduction to the basic principles of anatomy and physiology, learning will take from \u2018cell to organ-systems\u2019 approach to guide student learning. Body systems covered will include cardiovascular, blood, respiratory, endocrine and integumentary system. Deviations from normal will be considered to situate the student\u2019s understanding of health problems and to foster an appreciation for the complexity of the human organism. Correlated physical assessment parameters and related procedural skills will be integrated into each of the topics.", + "title": "Anatomy, Physiology and Physical Assessment I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR1123", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 9, + 11 + ], + "venue": "MD3-03-01A", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 8, + 12 + ], + "venue": "MD3-03-01A", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 1, + 3, + 7 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 1, + 3, + 7 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "0930", + "weeks": [ + 1, + 3, + 7 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "0930", + "weeks": [ + 2, + 4, + 8 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 2, + 4, + 8 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 2, + 4, + 8 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 2, + 4, + 8 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 9, + 11 + ], + "venue": "MD3-03-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 9, + 11 + ], + "venue": "MD3-03-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 9, + 11 + ], + "venue": "MD3-03-01A", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 8, + 12 + ], + "venue": "MD3-03-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 8, + 12 + ], + "venue": "MD3-03-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 8, + 12 + ], + "venue": "MD3-03-01A", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 9, + 11 + ], + "venue": "MD3-03-01A", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 3, + 7 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 1, + 3, + 7 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "0930", + "weeks": [ + 1, + 3, + 7 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 2, + 4, + 8 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 8, + 12 + ], + "venue": "MD3-03-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 9, + 11 + ], + "venue": "MD3-03-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 4, + 7 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 8, + 12 + ], + "venue": "MD3-03-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 9, + 11 + ], + "venue": "MD3-03-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1230", + "endTime": "1400", + "weeks": [ + 1, + 3, + 7 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 8, + 12 + ], + "venue": "MD3-03-01A", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1230", + "endTime": "1400", + "weeks": [ + 2, + 4, + 8 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 5, + 8, + 9, + 10, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 6 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "0930", + "weeks": [ + 2, + 4, + 8 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will develop knowledge and understanding of the normal structure and function of the human body. Following an introduction to the basic principles of anatomy and physiology, learning will take from \u2018cell to organ-systems\u2019 approach to guide student learning. Body systems covered will include musculoskeletal, digestive, urinary, nervous and the special senses. Deviations from normal will be considered to situate the student\u2019s understanding of health problems and to foster an appreciation for the complexity of the human organism. Correlated physical assessment parameters and related procedural skills will be integrated into each of the topics.", + "title": "Anatomy, Physiology and Physical Assessment II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR1124", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01G", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01G", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01G", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01G", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 2, + 5, + 7, + 9 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1230", + "endTime": "1400", + "weeks": [ + 2, + 5, + 7, + 9 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1230", + "endTime": "1400", + "weeks": [ + 2, + 5, + 7, + 9 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 5, + 7, + 8, + 9 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 240, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 6, + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 240, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01H", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01H", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 2, + 5, + 7, + 9 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 4, + 6, + 8, + 10 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 4, + 6, + 8, + 10 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "0930", + "weeks": [ + 2, + 5, + 7, + 9 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 2, + 5, + 7, + 9 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 5, + 9, + 11 + ], + "venue": "MD3-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 10, + 13 + ], + "venue": "MD3-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 5, + 9, + 11 + ], + "venue": "MD3-03-01C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 10, + 13 + ], + "venue": "MD3-03-01C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 10, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 240, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01G", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01H", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1100", + "weeks": [ + 2, + 5, + 7, + 9 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "0930", + "weeks": [ + 2, + 5, + 7, + 9 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 5, + 9, + 11 + ], + "venue": "MD3-03-01C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 10, + 13 + ], + "venue": "MD3-03-01C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 5, + 9, + 11 + ], + "venue": "MD3-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 5, + 9, + 11 + ], + "venue": "MD3-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01G", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 5, + 9, + 11 + ], + "venue": "MD3-03-01C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 10, + 13 + ], + "venue": "MD3-03-01C", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "0930", + "weeks": [ + 4, + 6, + 8, + 10 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 10, + 13 + ], + "venue": "MD3-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 4, + 6, + 8, + 10 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1100", + "endTime": "1230", + "weeks": [ + 4, + 6, + 8, + 10 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 5, + 9, + 11 + ], + "venue": "MD3-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 10, + 13 + ], + "venue": "MD3-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01H", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 5, + 8, + 9 + ], + "venue": "MD3-03-01G", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 10, + 13 + ], + "venue": "MD3-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 240, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 240, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "0930", + "weeks": [ + 4, + 6, + 8, + 10 + ], + "venue": "MD10-01-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate knowledge of pathophysiology, health assessment, principles of medical and nursing management and pharmacology related to cardiovascular, respiratory, and musculoskeletal conditions. Students will also develop critical thinking skills through conducting health assessments, interpreting results of diagnostic investigations and problem-solving.", + "title": "Pathophysiology, Pharmacology and Nursing Practice I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR1125", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "C", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 10 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "C", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "D", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "F", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "H", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "E", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "I", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "J", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "C", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01B", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "I", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01B", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "J", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01B", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "H", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01B", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "A", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01A", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "F", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01B", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "G", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01B", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "B", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "Unknown" + }, + { + "classNo": "D", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01B", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "D", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 10 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "B", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01A", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01B", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 60 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01B", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01B", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 13 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Lecture", + "size": 197, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01A", + "day": "Friday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01A", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01B", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01A", + "day": "Friday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01B", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01B", + "day": "Friday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01B", + "day": "Friday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 197, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01A", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01A", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13 + ], + "venue": "MD3-03-01A", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 10, + 11 + ], + "venue": "MD11-01-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 13 + ], + "venue": "MD11-01-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 197, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate theory and\npractice through acquiring clinical experience in the\ncommunity health services and aged care facilities.", + "title": "Clinical Experience I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "NUR1202C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to integrate nursing theory and clinical knowledge through experience in clinical placement attachments in medical, surgical and/or community care settings. Students will focus on planning, implementing and evaluating nursing care for allocated client. Students will apply knowledge from nursing and clinical sciences in the clinical management of clients. Attendance for the scheduled clinical practicum is mandatory.", + "title": "Clinical Practice: Medical/Surgical II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "NUR2106B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to integrate nursing theory and clinical knowledge through experience in clinical placement attachments in in mental health, obstetrics/gynaecology or paediatric settings, and elder care settings. Students will focus on planning, implementing and evaluating nursing care for allocated patients. Students will apply knowledge from nursing and clinical sciences in the clinical management of patients. Attendance for the scheduled clinical practicum is mandatory.", + "title": "Clinical Practice: Specialty Care", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "NUR2107B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on developing students\u2019 knowledge and skills in providing nursing care to patients with mental illnesses in both institutional and community settings. The module contents were updated according to the latest release of the diagnostic statistical manual \u2013 5 classifications.", + "title": "Mental Health Nursing", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR2113", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 12 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 277, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 13 + ], + "venue": "MD6-01-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 277, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 70 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the foundations of\nthe profession and discipline of nursing including the\nprinciples of ethics and legal accountability. It will equip\nstudents with knowledge of the evolution of nursing in the\nhistorical and social context, nursing epistemology and\ntheoretical frameworks of nursing practice. It will provide\nopportunities to examine ethical and legal factors\ninfluencing the performance of nurses in the healthcare\nsetting within a multi-professional team in a collaborative\ninquiry process.", + "title": "Professional Nursing Practice, Ethics and Law", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR2120", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD6-01-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 5, + 7, + 9, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 388, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to gain knowledge on a range of behavioral change theories as well as the Salutogenic Theory to promote health in the community The module helps students better understand how to apply principles of behavior change, health literacy, and coaching to plan, conduct, and evaluate a health promotion intervention for a targeted population in the community.", + "title": "Healthy Community Living", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NUR2124", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1201", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-07" + }, + "venue": "E-Learn_B", + "day": "Saturday", + "lessonType": "Lecture", + "size": 390, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD6-01-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate knowledge of pathophysiology, health assessment, principles of medical and nursing management and pharmacology related to the common gastrointestinal, renal, urinary, integumentary and musculoskeletal conditions. Students will also develop critical thinking skills through conducting health assessment, interpreting results of diagnostic investigations and problem solving.", + "title": "Pathophysiology, Pharmacology and Nursing Practice II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR2125", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 379, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01E", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01K", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01G", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01K", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01B", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01K", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01B", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01E", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01G", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01G", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01E", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01B", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01E", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01B", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01K", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01G", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01G", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01E", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01B", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01G", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01E", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01B", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01K", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "LT37-03-07A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 4, + 5, + 7, + 8 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "MD6-03-01K", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "LT37-03-07A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 9, + 12 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate theory and\npractice through acquiring clinical experience in acute\ncare (operating theatre, surgical, obstetrics, gynaecology\nand paediatrics wards) and community hospitals.", + "title": "Clinical Experience II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "10", + "moduleCode": "NUR2203C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to women and children health within the context of family-centred care. It allows students to acquire knowledge and skills on the care of infants, children, adolescents and women including pathophysiology, principles of health assessment, diagnostic investigations and management of common problems and conditions", + "title": "Women and Children Health", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR2204C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 2, + 9, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 277, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "22", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2022-09-01", + "end": "2022-10-06", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2022-08-30", + "end": "2022-10-04", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01F", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "0800", + "endTime": "1200", + "weeks": { + "start": "2022-08-31", + "end": "2022-10-05", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2022-08-30", + "end": "2022-10-04", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "23", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01E", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01B", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "0800", + "endTime": "1200", + "weeks": { + "start": "2022-09-01", + "end": "2022-10-06", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01C", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01E", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01E", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01B", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01B", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01E", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2022-08-31", + "end": "2022-10-05", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01F", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01E", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1200", + "weeks": { + "start": "2022-08-30", + "end": "2022-10-04", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01C", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1200", + "weeks": { + "start": "2022-08-30", + "end": "2022-10-04", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01F", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01B", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0800", + "endTime": "1200", + "weeks": { + "start": "2022-08-31", + "end": "2022-10-05", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01F", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2022-08-31", + "end": "2022-10-05", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01C", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01B", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01E", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "0800", + "endTime": "1200", + "weeks": { + "start": "2022-09-01", + "end": "2022-10-06", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01F", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 3, + 7, + 9 + ], + "venue": "MD6-03-01B", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 5, + 6, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2022-09-01", + "end": "2022-10-06", + "weekInterval": 2, + "weeks": [ + 1, + 4, + 6 + ] + }, + "venue": "MD6-03-01F", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 8 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 277, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 70 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module aims to enhance cross-cultural experience of undergraduate nursing students by providing opportunities to visit an overseas country for short-term student exchange of a minimum 1 or 2 consecutive weeks. Students will be expected to use the visit to the overseas host institution to build networks and ascertain similarities and differences in health care practices, models of service delivery, and policies between Singapore and the overseas partner universities.", + "title": "Cross-cultural Experience for Nursing Students I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "NUR2441A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module aims to enhance cross-cultural experience of undergraduate nursing students by providing opportunities to visit an overseas country for short-term student exchange of a minimum of three consecutive weeks. Students will be expected to use the visit to the overseas host institution to build networks and ascertain similarities and differences in health care practices, models of service delivery, and policies between Singapore and the overseas partner universities.", + "title": "Cross-cultural Experience for Nursing Students II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "NUR2441B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This elective module aims to enhance cross-cultural experience of undergraduate nursing students by providing opportunities to visit an overseas country for Overseas Community Improvement Projects (OCIP) of a minimum 1 or 2 consecutive weeks. OCIP offer students opportunities to experience community settings in a rural area.", + "title": "Cross-cultural Experience for Nursing Students (OCIP)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "NUR2442", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on developing knowledge in both pathophysiology and pharmacology relevant for nursing practice. Learners will gain an understanding of the etiology, pathogenesis, clinical manifestations, diagnosis and management of some major disease states or disturbances in homeostasis. Learners will gain a comprehensive understanding of drugs used to treat disorders addressed within this module.", + "title": "Applied Pathophysiology and Clinical Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR2500", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop learner\u2019s history taking, physical examination and clinical decision-making skills. There are both academic and clinical aspects in the module which allow the learners to develop clinical reasoning and critical thinking skills. The module will enable learners to develop their knowledge and skills in order to make safe and effective clinical judgements.", + "title": "Clinical Health Assessment and Reasoning", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR2501", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1945", + "endTime": "2115", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide learners with in-depth knowledge of the relationship between healthcare policies, health economics and health systems in Singapore. Learners will be able to analyse and understand social, economic and political contexts of health policies and develop a critical appreciation of healthcare policies and health systems.", + "title": "Healthcare Policy", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR2502", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces learners to the challenges of community health from a global perspective, providing a platform for education and research about health challenges facing the community.", + "title": "Global and Community Health", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NUR2503", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to integrate nursing theory and clinical knowledge through experience in community health care settings, such as home/ transition care/ intermediate long term care and primary health care settings. Students will focus on planning, implementing and evaluating nursing care for clients in the community health services and facilities. Students will apply knowledge from nursing and clinical sciences in the integrated clinical management, health promotion and education of patients. Attendance for the scheduled clinical practicum is\nmandatory.", + "title": "Clinical Practice: Community Care II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "NUR3105B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to integrate nursing theory and clinical knowledge through experience in community health care settings, such as home/ transition care/ intermediate long term care and primary health care settings. Students will focus on planning, implementing and evaluating nursing care for clients in the community health services and facilities. Students will apply knowledge from nursing and clinical sciences in the integrated clinical management, health promotion and education of patients. Attendance for the scheduled clinical practicum is mandatory.", + "title": "Clinical Practice: Community Care II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "NUR3105C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to integrate nursing theory and clinical knowledge through experience in clinical placement attachments in medical, emergency, surgical and/or community care settings. Students will focus on planning, implementing and evaluating nursing care for allocated client. Students will apply knowledge from nursing and clinical sciences in the clinical management of clients. Attendance for the scheduled clinical practicum is mandatory.", + "title": "Clinical Practice: Medical/Surgical II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "NUR3106B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the effectiveness of nursing leadership and management in healthcare delivery systems. The module prepares students to make decisions, minimize and manage risks to ensure patient safety, and use of advanced health information technology within the health care environment.", + "title": "Leadership and Management", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "NUR3114", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "19", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 4, + 7, + 8 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 382, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 10 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 382, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 382, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Lecture", + "size": 382, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate theory and practice through acquiring clinical experience for transition into the role and competencies of a newly registered nurse.", + "title": "Transition to Professional Practice Experience", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "NUR3116B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate theory and practice through acquiring clinical experience for transition into the role and competencies of a newly registered nurse.", + "title": "Transition to Professional Practice Experience", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "11", + "moduleCode": "NUR3116C", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores principles of global, public and community health practice including epidemiology, social, cultural and political determinants of health, primary health care, community and home care. Global health challenges and public health policy on the delivery of healthcare system are also explored.", + "title": "Public and Community Health", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "NUR3117A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 398, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 5 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 398, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to basic principles of palliative care and end-of-life care across the life span (children, adolescents and older adults). Students will acquire knowledge on pain and symptoms management and end-of-life care, and will raise their awareness in spiritual care and ethical issues; and providing bereavement support.", + "title": "Palliative and End-of-Life Care", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NUR3119", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 2, + 10 + ], + "venue": "E-Hybrid_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 385, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 6, + 8, + 11, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 11, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4, + 6, + 8, + 11, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 11, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 11, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Lecture", + "size": 385, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 11, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 11, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 11, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 12 + ], + "venue": "E-Hybrid_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 4, + 6, + 8, + 11, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 11, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate knowledge of pathophysiology, health assessment, principles of medical and nursing management and pharmacology related to neurological and haem-oncological conditions and to patients requiring emergency or critical care management. Students will also develop critical thinking skills through conducting health assessment, interpreting results of diagnostic investigations and problem-solving.", + "title": "Pathophysiology, Pharmacology and Nursing Practice III", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR3120", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 383, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01K", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01G", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01G", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01K", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01G", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01G", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01G", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01G", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01K", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01K", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01K", + "day": "Friday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01G", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01K", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "18", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01G", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01K", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01K", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 6 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 383, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01G", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01K", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01K", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD6-03-01G", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "E-Learn_B", + "day": "Friday", + "lessonType": "Lecture", + "size": 383, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students the knowledge of research\nand evidence-based healthcare. It allows students to\nacquire critical appraisal skill and the use of SPSS in data\nanalysis.", + "title": "Research and Evidence-based Healthcare", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR3202C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "14", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "venue": "MD11CRCAUD", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 383, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate theory and\npractice through acquiring clinical experience in mental\nhealth nursing.", + "title": "Clinical Experience III", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "3", + "moduleCode": "NUR3204C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate theory and practice through acquiring clinical experience in in acute care (medical & surgical wards, emergency department) and community settings (palliative care, home care).", + "title": "Clinical Experience IV", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "NUR3205C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate theory and practice through acquiring clinical experience in in acute care (medical & surgical wards, emergency department) and community settings (palliative care, home care).", + "title": "Clinical Experience IV", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "7", + "moduleCode": "NUR3205D", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to integrate theory and practice through acquiring clinical experience for transition into the role of a registered nurse.", + "title": "Transition to Practice", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "10", + "moduleCode": "NUR3206C", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce learners to the philosophy and principles of palliative and end-of-life care. It will equip the learners with skills needed to\nprovide holistic care to patients requiring palliative and end-of-life care and families.\n\nLearners will acquire knowledge and skills on pain and symptoms management and advance care planning.", + "title": "Practice of Palliative and End-of-Life Care", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR3500", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to enhance the learner\u2019s awareness surrounding accountability, liability and professionalism in clinical practice. Learners will explore ethical and legal structures in the local context and develop in-depth understanding of the role of the nurse and their professional duty of care.\n\nThis module will prepare learners to practice according to current legal and professional standards. Learners will be also be equipped with skills necessary to carry out academic writing and presentation.", + "title": "Professionalism, Ethics and Law in Healthcare", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NUR3501", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1945", + "endTime": "2115", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 50 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare the learner to assume the role as an educator in clinical practice. Learners will be introduced to the principles of teaching and learning and a range of teaching, learning and assessment methods relevant to their practice. The module focuses on the development of the learner\u2019s competence, confidence and reflective abilities, capable of evaluating and developing teaching and learning in clinical practice.", + "title": "Teaching and Learning in Clinical Practice", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR3502", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to enable learners to evaluate, examine and critically reflect on leadership knowledge and apply capabilities to leading innovation and change in the healthcare setting. Learners will explore related quality and patient safety issues and align the role of the nurse to develop competencies to meet the needs of the continually changing workplace environment.", + "title": "Leadership, Innovation and Change in Healthcare", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR3503", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to advance students\u2019 understanding of chronic disease management. Students will explore integrated disease models of care including the need for inter-professional collaboration. Emphasis will be placed on promoting and supporting behavioral changes as well as application of principles of self-management of chronic diseases.", + "title": "Chronic Disease Management", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR3504", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to build on and enhance learner\u2019s skills and knowledge on research methodology and statistics. The module aims to advance the learner\u2019s research-mindedness by developing skills required to continually improve practice through research.", + "title": "Research Methodology and Statistics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NUR3505", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 5, + 6, + 6, + 7, + 7, + 8, + 8, + 9, + 9, + 10, + 10, + 11, + 11, + 12, + 12, + 13, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 5, + 6, + 6, + 7, + 7, + 8, + 8, + 9, + 9, + 10, + 10, + 11, + 11, + 12, + 12, + 13, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1945", + "endTime": "2245", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide learners with the knowledge and skills of translating evidence into practice to achieve better patient outcomes.\n\nLearners will have the opportunity to develop an evidence-base workplace proposal under the supervision of a mentor.", + "title": "Translation of Evidence into Practice", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR3506", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a framework for learners to specialize in an area of study and engage in a research, quality or evidence-base work-based project.\n\nIn this module, the learners will design, develop and implement a work-based project that demonstrates practice development. Learners are required to draw on their clinical experiences, theoretical knowledge and research skills gained through the programme to conduct a work-based project.", + "title": "Clinical Practice Development Project", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NUR3507", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the knowledge and skills on how to change their practice based on up-to-date evidence-based practice. It will also challenge students to critically appraise the literature to provide the information needed to answer specific clinical questions. Major topics covered include qualitative and quantitative systematic review processes, models of evidence-based implementation, barriers to implementation and strategies to overcome these barriers.", + "title": "Evidence-based Health Care Practice", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR4101B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD4-02-03E", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13 + ], + "venue": "MD3-03-01H", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module conducted over two semesters enables students to integrate theory and clinical knowledge through experience in the clinical setting. Students will focus on planning, implementing and evaluating care using evidence based practice in their selected area of interest.", + "title": "Consolidated Clinical Practice", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "10", + "moduleCode": "NUR4102B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the grounding for students to apply research in nursing. Major topics include an introduction to research; framing a research question; collection and analysis of quantitative data, qualitative data collection and analysis.", + "title": "Applied Research Methods", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "NUR4103B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 7 + ], + "venue": "MD4-02-03E", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 7 + ], + "venue": "MD3-03-01G", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 7 + ], + "venue": "MD3-03-01G", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12 + ], + "venue": "MD3-03-01H", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12 + ], + "venue": "MD3-03-01G", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-08-11", + "end": "2022-11-10" + }, + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01G", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "MD3-03-01G", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 7 + ], + "venue": "MD4-02-03E", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the student draws together the clinical experiences, theoretical knowledge and research skills gained through the programme to conduct a supervised research project. The student will design a research project (protocol), apply for ethical approval, and undertake a clinically focused research project under the supervision of an academic staff member and a clinical advisor.\n\nThe student will undertake a clinically focussed, six month research project under the supervision of an academic staff member and clinical advisor.", + "title": "Honours Project in Nursing", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "14", + "moduleCode": "NUR4104B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 191, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of descriptive and inferential statistics used in health care research. Emphasis is placed on how and when to use statistical techniques as well as interpretation of statistics. Computer applications also are explored.", + "title": "Statistics for Health Research", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "NUR5002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module involves an individual programme of study undertaken in conjunction with an overseas university with which NUS has a signed collaborative agreement. Students will be expected to use the visit to the overseas host institution to build networks and ascertain similarities and differences in health care practices, models of service delivery, and policies between Singapore and the host country. The minimum placement will be two consecutive weeks. On return to Singapore students will present an oral seminar on outcomes of the visit and write a 2000 word critical review of key issues.", + "title": "Independent Study", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR5003", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students a practical approach in appraising the process, steps and rigor in academic writing; grant writing and writing for publications. It will enable students to draft funding proposals for their graduate\nstudies, and draft manuscripts for publications. The topics include principles of academic writing, common problems in academic writing, and good style in academic writing.", + "title": "Grant Writing and Writing for Publications", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR5013", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a foundation to enhance patient-centred care through acquisition of knowledge of pathophysiology of common problems and conditions, diagnostic investigations and principles of management related to cardiovascular, respiratory and gastrointestinal systems, neonates and development of a child. It also develops clinical reasoning and health assessment skills, shared decision-making and effective communication.", + "title": "Integrated Clinical Decision Making I (Paediatric)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NUR5609", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a foundation to enhance patient-centred care\nthrough acquisition of knowledge of pathophysiology of common\nproblems and conditions, diagnostic investigations and principles of\nmanagement related to central nervous, endocrine and renal system. It\nalso develops clinical reasoning and health assessment skills, shared\ndecision-making and effective communication.", + "title": "Integrated Clinical Decision Making II (Paediatric)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NUR5610", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide in-depth understanding of integrated care for paediatric population at different stages of health status across care continuum. It focuses on essential knowledge, skills and professional attitude required to manage paediatric patients in collaboration with other care providers.", + "title": "Paediatric Care Across Care Continuum", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NUR5613", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to identify the learning needs of healthcare\nprofessionals using the learning needs analysis framework.", + "title": "Learning Needs Analysis", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NUR5701", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide participants with the knowledge and\nskills to plan and design a curriculum that fulfil desired outcomes\nto build workforce capability.", + "title": "Curriculum Design", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NUR5702", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares participants to apply principles of\nassessment and select appropriate assessment methods to\nassess learners\u2019 knowledge and skills. In addition, this module\nfocuses on the process of programme evaluation.", + "title": "Assessment and Evaluation", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NUR5703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module strives to enhance participants\u2019 ability to integrate\nknowledge acquired from multiples modules. Participants will\nembark on a real-work project within their own organization, to\nconduct a training needs analysis, design a curriculum, lesson\nplan and assessment documents.", + "title": "Capstone Project", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NUR5704", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the determinants of health and the factors influencing primary care for Child and Family Health (CFH). Learners will incorporate life course perspective to support parents of child and promote family health. Learners will develop effective communication skills to work with multidisciplinary team to provide holistic care and support to children and their families", + "title": "Principles of Child and Family Health", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NUR5711", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2022-08-03", + "end": "2022-09-07" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2022-08-03", + "end": "2022-09-07" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module emphasizes on promoting maternal and infant health across the perinatal period. Learners will incorporate evidence- based care to promote health and well-being of pregnant women, new mothers, and their new-borns across the perinatal period in primary care. The module will allow learners to practise and promote family-centred care to support new parents in the community settings.", + "title": "Maternal and Infant Health Across Perinatal Period", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NUR5712", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2022-09-21", + "end": "2022-10-26" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2022-09-21", + "end": "2022-10-26" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module emphasizes on promoting and maintaining child health by applying the principles of primary health care. Learners will be able to engage and enable parents to enhance overall wellbeing among children in the community settings. The module will prepare learners to demonstrate evidence-based care for children aged 0-6 years\u2019 old by recognizing individual child\u2019s needs and initiating appropriate referrals to the multi-disciplinary professionals.", + "title": "Child Health", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NUR5713", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2022-08-03", + "end": "2022-09-07" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2022-08-03", + "end": "2022-09-07" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module emphasizes on promoting women and reproductive health. Learners will be able to apply knowledge of the physiological, psychological, sociological, and cultural aspects to influence women\u2019s health. The module will prepare learners to demonstrate understanding of the ethical and professional framework for delivery of reproductive health services by recognizing individual needs and initiating appropriate multidisciplinary interventions.", + "title": "Women and Reproductive Health", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "NUR5714", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2022-09-21", + "end": "2022-10-26" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2022-09-21", + "end": "2022-10-26" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to enhance patient-centred care through acquisition of knowledge of pathophysiology of common problems and conditions, diagnostic investigations and principles of management related to cardiovascular, respiratory and gastrointestinal systems. It also develops clinical reasoning and health assessment skills, shared decision-making and effective communication\n\nDuring the work-based practice, students will have the opportunity to further develop and apply knowledge and skills learnt in the module.", + "title": "Integrated Clinical Decision Making and Management I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NUR5801G", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to enhance patient-centred care through acquisition of knowledge of pathophysiology of common problems and conditions, diagnostic investigations and principles of management related to central nervous, endocrine and renal systems, common general medicine and psychological abnormalities. It also develops clinical reasoning and health assessment skills, shared decision-making and effective communication.\n\nDuring the work-based practice, students will have the opportunity to further develop and apply knowledge and skills learnt in the module.", + "title": "Integrated Clinical Decision Making and Management II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NUR5802G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an in-depth understanding of the health needs of adult clients living in the community. A systems approach has been chosen to provide a holistic framework as the module is underpinned by the belief that health is shaped by biological, psychosocial, politico-economical dimensions. An emphasis is placed on using clinical decision making skills and techniques to perform comprehensive health needs assessment of clients.\n\nThis module builds upon the existing communication skills of the students to develop enhanced communication skills when dealing with complex and challenging situations.\n\nDuring the work-based practice, students will have the opportunity to further develop and apply knowledge and skills learnt in the module.", + "title": "Community Health Practice", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR5803G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to advance students\u2019 understanding of contemporary issues in chronic disease management across the life span in the community. Students will explore integrated disease models of care including inter-professional collaboration. Emphasis will be placed on promoting and supporting behavioral change as well as application of principles of self-management\nof chronic diseases. The module will also introduce students to the principles\nof palliative care including symptom management, advanced care planning and end-of-life care in clients with non-malignant conditions.\n\nDuring the work-based practice, students will have the opportunity to further develop and apply knowledge and skills learnt in the module", + "title": "Chronic Disease Management in the Community", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR5804G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare students to function and excel in the rapidly changing landscape of wound care practices in community setting. Students will use the approach of realist review to develop structurally coherent explanations of wound interventions when applied in diverse context. They will unpack the relationships between context, mechanism and outcomes (abbreviated as C-M-O) and explore on how and why a particular wound intervention works or does not work in complex situation.\n\nDuring the work-based practice, student will have the opportunity to further develop and apply knowledge and skills learnt in this module.", + "title": "Chronic Wound Management in the Community", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR5805G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to gain an in-depth\nknowledge in utilising the process of evidencebased\npractice to solve a clinical question.\nStudents will develop critical inquiry and\nanalytical skills through asking compelling\nquestions,critical appraisal and synthesis of the\nliterature.", + "title": "Evidence-based Practice", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR5806G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": { + "start": "2022-08-04", + "end": "2022-09-22" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2100", + "weeks": { + "start": "2022-08-04", + "end": "2022-09-22" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with an understanding of APN development in providing high quality care to meet the national healthcare needs. This module focuses on APN role development with relevant APN models as well as health care systems, leadership, ethical considerations and principles of healthcare policies and finances.", + "title": "Professional Development and Ethical Healthcare", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR5807", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide in-depth understanding of integrated care for adults at different stages of health status across care continuum. It focuses on essential knowledge, skills and professional attitude required to manage adult patients in collaboration with other care providers.", + "title": "Adult Care Across Care Continuum", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "NUR5808", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows the students to translate their theory knowledge and learnt skills into actual clinical practice through clinical placements in the medical discipline.", + "title": "Clinical Practicum I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "10", + "moduleCode": "NUR5811A", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows the students to translate their theory knowledge and learnt skills into actual clinical practice through clinical placements in the surgical discipline.", + "title": "Clinical Practicum II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "NUR5811B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows the students to consolidate their theory knowledge and learnt skills into actual clinical practice through clinical placements in the medical and surgical disciplines.", + "title": "Clinical Practicum III", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "16", + "moduleCode": "NUR5811C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with opportunities to gain and apply the knowledge and skills needed to understand the research process, prepare for the written components of a PhD thesis, and present research findings in a professional forum. Content is broad and provides students with independent elements of study (attendance at a series of seminars of the students choosing) as well as structured sessions and guidance to produce a PhD research proposal and obtain ethical approval, and opportunities to present preliminary work.", + "title": "Graduate Research Seminar", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "NUR6001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 10, + 11 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will spread over two semesters providing students with the opportunity of analysing the processes involved in nursing research and evaluating different research methodologies. It will enable students to develop\na research proposal for their graduate studies. The topics include quantitative, qualitative and mixed-methods research designs, methods of sampling and sample size planning, data collection as well as methods of quantitative\nand qualitative data analysis.", + "title": "Research Methods", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "NUR6003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides comprehensive discussion in the theoretical and practical issues in conducting a systematic review and meta-analysis. Students will learn the importance of evidence-based practice in nursing and the steps in conducting a systematic review. Topics covered include judging the quality of a review, how and why high quality reviews can reach different conclusions, and steps in conducting a systematic review.", + "title": "Systematic Review and Meta-Analysis", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR6004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of the psychometric measurement theory and the best practice in measurement. The module will cover the topics of essential concepts of measurement, essential tools and characteristics of\npsychological measurement, development and validation of instrument, and application of measurement.", + "title": "Measurement Theory and Instrument Validation", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR6005", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce principles and in depth knowledge of designing and conducting an intervention research in nursing and/or health sciences successfully. The knowledge conveyed in this module will enable MSc/PhD students who are interested in conducting intervention studies to generate research questions and hypotheses, design their study scientifically, select a\nrelevant theoretical/conceptual framework to guide their intervention to achieve intended outcomes, calculate sample size, conduct randomisation, select appropriate outcomes and measurements, as well as conduct the data\ncollection and analysis.", + "title": "Intervention Research in Nursing and Health Sciences", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR6006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 16, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students a practical approach in appraising the development and leading research, the team research, and the challenges and opportunities for academics with leadership aspirations. The topics include\nattributes of research leaders, collaboration and leadership in research and academia, and frameworks for academic and professional development.", + "title": "Research Leadership and Professional Development", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "NUR6007", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oral Biology", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "OL1000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides undergraduates with a holistic, multidisciplinary approach to identify, diagnose and understand the aetiology and pathogenesis of common pathologies affecting the oral and maxillofacial structures using a combination of history taking, clinical, histological and radiographic investigations. At the end of the module, undergraduates will be empowered to apply the knowledge in planning patientcentric treatment plans to manage patients who present with common oral maxillofacial pathologies.", + "title": "Oral & Maxillofacial Medicine, Pathology & Radiology", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "OMS2100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oral & Maxillofacial Surgery", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "OMS3010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides undergraduates with a holistic, multidisciplinary approach to identify, diagnose and understand the aetiology and pathogenesis of common pathologies affecting the oral and maxillofacial structures using a combination of history taking, clinical, histological and radiographic investigations. At the end of the module, undergraduates will be empowered to apply the knowledge in planning patientcentric treatment plans to manage patients who present with common oral maxillofacial pathologies.", + "title": "Oral & Maxillofacial Medicine, Pathology & Radiology", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "OMS3100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oral & Maxillofacial Surgery", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "OMS4000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oral & Maxillofacial Surgery", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "OMS4010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oral Medicine", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "OMS4020", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves independent study over two semesters, on a topic in Offshore Technology approved by the Programme Management Committee. The work may relate to a comprehensive literature survey, and critical evaluation and analysis, design feasibility study, case study, minor research project or a combination.", + "title": "Independent Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "OT5001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves independent study over two semesters, on a topic related to subsea engineering in Offshore Technology approved by the Programme Management Committee. The work may relate to a comprehensive literature survey, and critical evaluation and analysis, design feasibility study, case study, minor research project or a combination.", + "title": "Independent Study Module: Subsea Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "OT5001A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves independent study over two semesters, on a topic related to petroleum engineering in Offshore Technology approved by the Programme\nManagement Committee. The work may relate to a comprehensive literature survey, and critical evaluation and analysis, design feasibility study, case study, minor research project or a combination.", + "title": "Independent Study Module: Petroleum Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "OT5001B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves independent study over two semesters, on a topic related to offshore structures approved by the Programme Management Committee. The work may relate to a comprehensive literature survey, and critical evaluation and analysis, design feasibility study, case study, minor research project or a combination.", + "title": "Independent Study Module: Offshore Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "OT5001C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module objective is to provide a broad understanding of the petroleum industry, as a foundation for more advanced work and as a context and background. Areas that are covered include the sources of petroleum, the geological context, how petroleum is discovered, how it is produced and transported, the environmental, historical and societal impact of petroleum, and the special problems of production deep water and in the Arctic. Care is taken to go into some problem areas in depth, so that the module is more than just a superficial survey.", + "title": "Exploration and Production of Petroleum", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oil & Gas Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the main topics on marine hydrodynamics and structure dynamics in offshore engineering.\nIt first discusses the hydrostatics and stability of offshore structures, which is followed by the special properties of potential and viscous flows. The wave forces on offshore structures of different sizes are then discussed, including Morison equation for small structures, and diffraction theory for large structures. Accordingly, the corresponding numerical techniques are introduced.\nThe module also covers random wave forces on offshore structures. Lastly, the dynamic response of offshore structures in waves is discussed.", + "title": "Marine Statics & Dynamics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with design knowledge on steel offshore structures. The major topics covered include planning considerations; design criteria and procedures; methods for determining loads; structural analysis methods; member and joint designs; material selection and welding requirements; and design for fabrication, transportation and installation phases. The module will be valuable to students interested in offshore engineering.", + "title": "Analysis & Design of Fixed Offshore Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with knowledge in the analysis of steel offshore structures. The major topics covered include planning considerations; design criteria and procedures; methods for determining loads; member and joint selection; and structural analysis methods. The module will be valuable to students interested in offshore engineering.", + "title": "Analysis of Fixed Offshore Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5202A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with design knowledge on steel offshore structures. The major topics covered include platform design; bracing patterns and role of redundancy; member and joint designs; material selection and welding requirements; and design for fabrication, loadout, transportation, installation and inplace phases. The module will be valuable to students interested in offshore engineering.", + "title": "Design of Fixed Offshore Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5202B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the design of floating offshore structures and elements. Floating structures dealt with in this module include semi-submersibles, FPSOs, spar platforms, floating jack-up structures and elements such as reinforced (hull) plating and mooring turntables. The important design parameters for floating structures will be highlighted. Also covered are the methods of analysis and criteria in design such as wave loading and motion in waves, floating stability, (dynamic) positioning, structural strength and fatigue. Safety assessment and codes in relation to design will also be treated.", + "title": "Analysis & Design of Floating Offshore Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the hydrostatics and hydrodynamics of floating structures, which include semisubmersibles, FPSOs, spar platforms and tension-leg platforms. Stability analysis, wave loads and dynamic analysis of floating structures will be covered.", + "title": "Analysis of Floating Offshore Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5203A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the practical design of different types of floating structures, including semi-submersibles, FPSOs, spar platforms and tension-leg platforms. Design criteria in relation to design codes will also be covered.", + "title": "Design of Floating Offshore Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5203B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the fundamental concepts of mooring, riser and pipeline systems. The topics covered include introduction to pipeline/riser/mooring systems, catenary equations, review of hydrodynamics, dynamic analysis, fatigue design, and vortex-induced vibration, rigid and flexible riser mechanics, flow assurance, material/coating specification, strength/stability design, installation, precomissioning, flowline integrity.", + "title": "Offshore pipelines, risers and moorings", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Pipelines are critical components of offshore floating and subsea systems. In this module, the students will learn the fundamental concepts of a pipeline system, covering rigid and flexible riser mechanics, flow assurance, material/coating specification, strength/stability design, installation, precomissioning, and pipeline integrity.", + "title": "Pipeline System", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5204A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Moorings and risers are critical components of offshore floating systems. In this module, the students will learn the fundamental concepts of analysis and design of different mooring and riser systems.", + "title": "Mooring and Riser Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5204B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is concerned with the design, fabrication, installation and operations of offshore pipelines. Students will be learn advanced concepts on various aspects of offshore pipelines, 16 including material selection; loads; hydrodynamic and on-bottom stability; collapse & buckling; pipeline design & evaluation; fabrication; installation methods and controls; pipeline operations; risk and safety", + "title": "Offshore Pipelines", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the analysis and design of foundations for offshore structures. Students will learn the principles, concepts and design considerations that are peculiar to the offshore environment. The major topics covered include: offshore design considerations; foundations for jack-up rigs and offshore gravity platforms; offshore pile foundations installation, analysis and design.", + "title": "Offshore Foundations", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the analysis and design of shallow foundations for offshore structures. The major topics covered include: site investigation, gravity based foundation, and jack-up spudcan foundation. Students gain an understanding of the design methodology for shallow foundations for offshore structures.", + "title": "Shallow Offshore Foundations", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5206A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the analysis and design of deep foundations for offshore structures. Students will learn the principles, concepts, analysis methodology and design considerations. The major topics covered include:\npile driving analysis, piles subject to axial load, and lateral and moment loads. Students gain an understanding of the design methodology for deep\noffshore foundations for fixed and floating structures.", + "title": "Deep Offshore Foundations", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5206B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is useful for engineers dealing with offshore structures for cold climate regions as well as students wanting to specialise in Arctic Offshore Engineering. It provides the knowledge of arctic technology for safe and sustainable development, and exploitation of petroleum resources in Arctic waters. Substantial use of recent offshore developments in Arctic regions is made in class discussions to provide students with the broadest possible insights as well as the basis to evaluate different structural concepts. Major topics include: Ice features, Physical and mechanical properties of ice, Ice-structure interaction, Design of offshore structures for ice-infested waters, and Ice management.", + "title": "Arctic Offshore Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip graduatelevel students in civil engineering with sufficient fundamental knowledge and skills on the fatigue and fracture mechanics for offshore structures, which will build a firm technical ground for their future research work and engineering professions. This module introduces the principles of mechanics for fracture and fatigue covering\nthe linear-elastic fracture mechanics, elastic-plastic fracture theories, fatigue and fracture mechanism, stress and strain based approaches for fatigue design in offshore structures, with assignments and projects cultivating the students\u2019 understanding on both the fundamental principles and the practical applications.", + "title": "Fatigue and Fracture for Offshore Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for persons interested in the subsea systems engineering in offshore oil and gas production. Its contents are focused on giving an overview and understanding of subsea systems employed in the\nsubsea production and processing of oil & gas. Contents to cover subsea systems, equipment and their architecture, offshore exploration, drilling, well completion, subsea processing of oil & gas, subsea control systems, flowline,\npipline and risers, etc. A structured programme of lectures, seminars, term papers, mini-projects and a final examination are included in this module.", + "title": "Subsea Systems Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Flow Assurance is a relatively new term in the Oil & Gas industry which is all about ensuring the safe and uninterrupted transportation of a multiphase mixture of oil, gas and water from the reservoir to the delivery location. This module is designed for students interested in offshore oil and gas production and the multiphase transportation of oil, water and gas. Its contents are focused on giving an overview and understanding of the various aspects in both single phase and multiphase flow transportation and assurance issues in the oil & gas industry with emphasis on the subsea production and transportation of oil, gas and water. A structured programme of lectures, term papers, mini-projects and a final examination are included in this module.", + "title": "Flow Assurance", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Subsea Control is an essential and integral part of all subsea systems. This module introduces the fundamentals and principles of subsea control used in subsea systems for oil & gas production. Subsea data communication systems as well as various subsea protocols used are also addressed in this module.", + "title": "Subsea Control", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The design of subsea systems is significantly affected by operational considerations and can radically change a system configuration. Key considerations that must be taken into account in a subsea system design include vessel availability, design for weather window, reduction in number of operations, elimination of construction risk and ability to perform an early production start-up.\n\nThis module considers key operational aspects that will be encountered in everyday offshore operations, and will look specifically at technologies that are used in subsea operations that are essential to understand their use and limitations.", + "title": "Subsea Construction & Operational Support", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5304", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "01", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is suitable for persons interested in the design and analysis of pressure surge protection in Oil & Gas Systems. It is also suitable for R&D engineers working in the Oil & Gas field flow systems. Its contents are focused on giving an overview of the pressure surges in fluid systems; Methods of solutions and analysis of transient flow for Oil & liquid systems; Gas flow systems; Two phases Oil & Gas flow systems; Analysis and Solutions of Industrial Fluid Transients Problems; Industrial Pressure Protection methods. A structured programme of lectures, seminars, term papers, mini-projects and a final examination are included in this module.", + "title": "Pressures Surges in Oil & Gas Flow Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Geoscience is integral to the petroleum industry and understanding the principles and applications of petroleum system geoscience is important for Petroleum Engineers. This module introduces the fundamental principles of geology and its application for petroleum exploration. This shall address the theoretical, practical and applied aspects of geoscience used for the upstream petroleum industry.", + "title": "Geoscience for Petroleum Exploration", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Geoscience is integral to the petroleum industry and understanding the principles and applications of petroleum system geoscience is important for Petroleum Engineers. This module introduces the fundamental principles of\ngeology.", + "title": "General and Sedimentary Geology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5401A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Geoscience is integral to the petroleum industry and understanding the principles and applications of petroleum system geoscience is important for Petroleum Engineers. This module introduces the applications of geology for\npetroleum exploration. This shall address the applied aspects of geoscience used for the upstream petroleum industry.", + "title": "Petroleum Geology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5401B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the basics of seismic surveys for petroleum reservoirs, from the physics to the acquisition and processing of seismic data. Both land and marine acquisition will be covered. Traditional and modern methods of seismic imaging will be covered.", + "title": "Geophysical Imaging of the Earth Interior", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the basics of seismic surveys for petroleum reservoirs, from the physics to the acquisition and processing of seismic data. Both land and marine acquisition will be covered.", + "title": "Seismic Acquisition", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5402A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Seismic processing and imaging is the corner stone for the oil and gas exploration and production. This module introduces the basics of seismic processing techniques. Traditional and modern methods of seismic imaging will be covered. Methods to build seismic velocity models are introduced.", + "title": "Seismic Processing and Imaging", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5402B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the commonly used downhole measurements of petroleum reservoirs. The module will cover electrical, acoustic, nuclear, NMR, and seismic measurements. The module will cover the physics, hardware, data processing and interpretation of each kind of measurement. Both wireline and Logging While Drilling measurements will be discussed.", + "title": "Petrophysics and Downhole Measurements", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the commonly used downhole measurements of petroleum reservoirs. The module will cover electrical, acoustic, nuclear, NMR, and seismic measurements. The module will cover the physics, hardware, data processing and interpretation of each kind of measurement. Both wireline and Logging While Drilling measurements will be discussed.", + "title": "Petrophysics for Petroleum Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5403A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Together with OT5403A, this module introduces the commonly used downhole measurements of petroleum reservoirs. The module will cover electrical, acoustic, nuclear, NMR, and seismic measurements. The module will cover the physics, hardware, data processing and interpretation of each kind of measurement. Both wireline and Logging While Drilling measurements will be discussed.", + "title": "Downhole Measurements for Petroleum Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5403B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the methodology commonly use in the characterization of the physical properties of petroleum reservoirs. Topics covered include downhole measurements, rock physics modelling, fluid substitution, seismic well tie, AVO (amplitude versus offset) analysis, and pre-stack inversion for reservoir properties.", + "title": "Reservoir Characterization and Rock Physics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject will provide basic as well as advanced concepts in the area of Enhanced Oil Recovery (EOR). It will deliver the concepts of microscopic and macroscopic displacement of fluids in a reservoir, displacement efficiencies, mobility control processes, chemical EOR, miscible processes, thermal recovery processes, and novel EOR methods (e.g. low-salinity waterflooding, nano-EOR).", + "title": "Enhanced Oil Recovery", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the basics of enhanced oil recovery including two phase flow in porous media, relative permeability, capillary pressure, Buckley-Leverett\nequation, displacement and sweep efficiency, mobility control, capillary desaturation curves.", + "title": "Fundamentals of Enhanced Oil Recovery", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5405A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics to be covered include polymer flood, micellarpolymer flood, ASP, miscible and immiscible carbon dioxide flood, thermal recovery, SAGD and advanced topics such as low-salinity waterflood and nano-enabled EOR.", + "title": "Enhanced Oil Recovery Methods and Application", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5405B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject will provide basic as well as advanced concepts in the area of Petroleum Production Systems. Topics covered will include: the role of petroleum production engineering, production from undersaturated oil reservoirs, production from two-phase reservoirs, production from natural gas reservoirs, near wellbore skin effects, wellbore flow performance, well\ndeliverability, and numerical modelling of well inflow and outflow.", + "title": "Petroleum Production Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5406", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover basic concepts of Petroleum Production Systems including inflow-outflow, skin concept, production from undersaturated oil reservoirs two-phase reservoirs and natural gas reservoirs.", + "title": "Petroleum Production Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5406A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover basic concepts in well completion, sand control, well testing, artificial lift and stimulation.", + "title": "Petroleum Production Engineering - Wellbore", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5406B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide basic as well as advanced concepts related to Geomechanics and Rock Mechanics issues in the exploitation of Oil and Gas Petroleum. Topics covered will include: 1) Fundamentals of Petroleum Geomechanics, with review of rock strain and stress, impact of fluid pressure; Rock deformation and failure; deformation of natural fractures and stresses in\ndepth earth. 2) Rock mechanical characterisation, from laboratory core testing to field data collection. 3) Key subsurface processes involving the principles of\nGeomechanics \u2013 borehole stability while drilling, predicting rock failure behaviour during production, analysis of reservoir compaction and subsidence,\nmechanics of injection from hydraulic fracturing in unconventional resources to waterflooding in deep water reservoirs.", + "title": "Petroleum Geomechanics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5407", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will give an overview of various unconventional and renewable energy resources and technical challenges facing their production and usage. Issues around energy security, sustainability and affordability will be addressed. In addition, the role of disruptive innovations on energy systems will be discussed. The student will develop both a global and regional view on energy production and usage with emphasis on Singapore and Asia-Pacific region.", + "title": "Unconventional and Renewable Energy Resources", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5408", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is part of the core curriculum in the Petroleum Engineering specialization under Offshore Technology. It will cover the fundamentals of drilling and completion engineering related to petroleum production. Major topics to be covered are drilling fluids, cementing, drilling hydraulics, casing design, directional drilling, completion components, perforating, completion fluids, tubing design, intelligent wells, and sandface completion etc.", + "title": "Drilling and Completion Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5409", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover advanced topics of current interests in offshore engineering that will not be taught on a regular basis. The requirement and syllabus will be specified when the module is offered. The course will be conducted by NUS staff and/or visitor from the industry.", + "title": "Topics in Offshore Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover advanced topics of current interests in subsea systems engineering that will not be taught on a regular basis. The requirement and syllabus will be specified when the module is offered. The course will be conducted by NUS staff and/or visitor from the industry.", + "title": "Topics in Subsea Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Flow Assurance is a relatively new term in the Oil & Gas industry which is all about ensuring the safe and uninterrupted transportation of a multiphase mixture of oil, gas and water from the reservoir to the delivery location, especially from any subsea well. This module is designed for students interested in offshore oil and gas production and the multiphase transportation of oil, water and gas. Its contents are focused on giving an overview and understanding of the various aspects in both single phase and multiphase flow transportation and assurance issues in the oil & gas industry with emphasis on the subsea production and transportation of oil, gas and water. A structured programme of lectures, term papers, mini-projects and a final examination are included in this module.", + "title": "Topics in Subsea Engineering - Flow Assurance", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5882A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover advanced topics of current interests in petroleum engineering that will not be taught on a regular basis. The requirement and syllabus will be specified when the module is offered. The course will be conducted by NUS staff and/or visitors from the industry.", + "title": "Topics in Petroleum Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the fundamental of petroleum reservoir engineering which is a foundational subject for petroleum engineering. Topics cover will include primary and secondary recovery and decline curve analysis of conventional reservoirs. Students will learn to use the state-of-the-art petroleum softwares on material balance and reservoir simulation. In addition, the module will highlight the reservoir engineering aspects of unconventional reservoirs.", + "title": "Topics in Petroleum Engineering: Petroleum Reservoir", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5883B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the theory and applications for inverse problems in geophysical imaging, with a strong emphasis on the practical aspects and hands-on experiments. Topics include linear and nonlinear inversion, constrained and\nunconstrained inversion, convex and nonconvex inversion, deterministic and stochastic inversion techniques. It is intended for students to gain knowledge and use of inversion techniques for applications in geophysical imaging and general engineering context.", + "title": "Topics in Petroleum Engineering: Geophysical Inverse methods", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5883C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject will provide concepts in the area of Reservoir\nFluid Characterization. Topics covered will include:\ncomponents of petroleum fluids, phase behaviour,\nequations of state, the five reservoir fluids, properties of\ndry gas, properties of wet gas, properties of black oil, and\nfluid sampling.", + "title": "Reservoir Fluid Characterization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5901", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The formation, distribution and preservation or destruction\nof oil and natural gas resources are governed by geologic\nhistories of basins. Good understanding of geological\nprinciples and aspects of petroleum geoscience, therefore\nfounds the basis for successful exploration, development\nand production in the petroleum industry.\nThis course aims to provide students with a knowledgebase\nto understand the\n(1) fundamental principles of geology and its use for\nsedimentary basins studies.\n(2) nature and origin of petroleum and the methods for\ncharacterizing and evaluating hydrocarbon basins and\nprospects\n(3) direct experience of studying sedimentary rocks in an\noilfield.\nThis module also serves as an introduction to oil & gas\ndrilling and completion process. Starting from a typical Drill\nRig and its major systems, to the process of drilling\nonshore and offshore, to casing & cementing, through to\nwell completion.", + "title": "Petroleum Geoscience & Drilling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5902", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamentals of subsurface\nproduction including reservoir studies and well performance\nconsiderations for the production forecast and optimization.", + "title": "From Reservoir to Wellhead", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "OT5903", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamentals of process\nengineering, including principles of oil, gas and water\ntreatment, design and modelling of the process.\nHSE concerns are explained and taken into consideration in\nthe design.", + "title": "Petroleum Process", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "OT5904", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the monetization of petroleum\nresources. It covers the technological challenges and the\neconomics of resource monetization.", + "title": "Petroleum Fluid Valorisation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "OT5905", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces concepts of subsea systems\nengineering and associated offshore field architecture. The\nmodule considers key decision criteria and options available\nfor both shallow and deep-water field developments and\ncovers aspects of subsea equipment design, control and well\nintervention systems.", + "title": "Offshore Field Architecture and Subsea System", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "OT5906", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the design of offshore\nstructures and elements including fixed and floating offshore\nstructures, like semi-submersibles, FPSOs, spar platforms,\nfloating jack-up structures and elements such as reinforced\n(hull) plating and mooring turntables. Topsides design\nprinciples, key hydrodynamic effects and environmental\nloading will be highlighted. Important concepts such as the\ndesign process, construction and installations requirements\nand interactions among platform elements are introduced.\nAlso covered are the methods of analysis and criteria in\ndesign such as stability, wave loading and motion in waves,\n(dynamic) positioning, mooring system components,\nstructural strength and fatigue, and design safety\nassessment codes.", + "title": "Design of Offshore Structures", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "OT5907", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Subsea Umbilicals, Risers and Flowlines (SURF) are the\nconduits that connect Subsea Systems and Offshore\nStructures, to allow the export of petroleum fluid from the\noffshore wells to onshore refineries. SURF also serves as\na conduit for communication and control of the different\nsystems offshore.\nThe module covers the design of Subsea Umbilicals, Risers\nand Flowlines (SURF). The syllabus include Flow\nAssurance, Pipeline Definition and Detailed Design of\nPipeline System. It will also include an introduction to\nFlexibles & Risers, and Umbilicals.", + "title": "Subsea Umbilicals, Risers and Flowlines Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "OT5908", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide the students the understanding of\nkey technical and operational parameters that drive the\noffshore construction, commissioning and decommissioning\noperations, and the impact on the intrinsic\ndesign of a fixed, floating or subsea asset. After completion\nof the module, the students will be able to select appropriate\nmarine spread and methodology for the offshore\nconstruction of a fixed, floating or subsea asset.", + "title": "From Construction to Decommissioning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5909", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module completes the portfolio of hydrocarbon\nresources \u2013i.e. outside the domain of conventional oil and\ngas accumulations in reservoirs. Main differences are\nhighlighted and production technics described.", + "title": "Special Topics on Energy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5910", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This subject will provide students with fundamental\nunderstanding of materials, properties, corrosion, welding\nand inspection techniques.", + "title": "Offshore Materials, Welding and Corrosion", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "OT5911", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Apply the whole knowledge acquired during the master\nduring the final Project, based on a real case of offshore\nfield development.", + "title": "Development of Offshore Upstream Projects", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "7", + "moduleCode": "OT5912", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Apply the overall knowledge acquired throughout the\ncoursework period to work on real issue/s in an industrial\nenvironment.", + "title": "Professional Integration (Internship)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "OT5913", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oral Pathology", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "OY3000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a team-taught module that aims to prepare pharmacy students with the fundamental principles in how drugs influence human body and how human body handles these agents. These principles are key to introducing system pharmacology here which includes major topics: autonomic, corticosteroid, steroid hormone and immune-pharmacology.", + "title": "Basic Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PA1113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PA2131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will give students with different scientific backgrounds the opportunity to understand the underpings and development of modern physics. Students will be exposed to the big ideas and fundamental concepts in modern physics with necessary depth, learn about the key historical experiments as well as the revolutionary ideas at frontiers of physics, including quantum physics and Einstein\u2019s theory of relativity.", + "title": "Frontiers of Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "12", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 240, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 240, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Friday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 500, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to bridge the gap between \u2018O\u2019-level physics and first-year-level university physics. The module covers two branches of fundamental physics mechanics and electricity & magnetism. Topics included in mechanics are linear motion, circular motion, Newton\u2019s laws of motion, work and energy, conservation of energy, linear momentum, and simple harmonic motion. Topics included in electricity & magnetism are electric force, field & potential, current & resistance, DC circuits, electromagnetism and electromagnetic induction.", + "title": "Fundamentals of Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 230, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "7", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "LT28", + "day": "Monday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "LT28", + "day": "Monday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S11-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an insight into the scientific\nprinciples and the use of new and powerful technologies\nthat are the basis for many high-tech diagnostic and\ntherapeutic systems, including Proton Beam Therapy,\nMedical Imaging (MRI/CT/PET) and other advanced\nMedical Technology. In lab sessions, the students will gain\nhands-on experience with such systems, among them\nMRI and CT imaging and other medical physics devices.\nElements of basics of radiation physics, radiation\ndetection and radiation protection will also be covered\nboth via lectures and experiments.", + "title": "A Basic Introduction to Medical Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1346", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-07-13", + "end": "2023-07-27" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-24" + }, + "venue": "", + "day": "Monday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-24" + }, + "venue": "S11-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-07-14", + "end": "2023-07-28" + }, + "venue": "", + "day": "Friday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-07-11", + "end": "2023-07-25" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-07-11", + "end": "2023-07-25" + }, + "venue": "S11-0205", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-07-13", + "end": "2023-07-27" + }, + "venue": "S11-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": { + "start": "2023-07-12", + "end": "2023-07-26" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-07-14", + "end": "2023-07-28" + }, + "venue": "S11-0205", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-07-12", + "end": "2023-07-26" + }, + "venue": "S11-0205", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comprehensive and basic physics training within a single semester for first-year students from life sciences. It will cover mechanics, thermodynamics, electromagnetism, optics plus a few topics in atomic and nuclear physics. The specific contents have been chosen according to their relevance to life sciences as well as their importance in the conceptual framework of general physics.", + "title": "Physics for Life Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1421", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0205", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0205", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to provide a clear and logical introduction to the concepts and principles of mechanics and thermodynamics, with illustrations based on applications to the real world. Topics covered include motion in one dimension; curvilinear motion; circular motion; relative motion; Newton's laws; friction; work and energy; conservative forces, conservation of energy; linear momentum and conservation, collisions; rotational kinematics; moment of inertia and torque; rotational dynamics; conservation of angular momentum; gravitational force, field and potential energy; planetary motion; temperature and the zeroth law, temperature scales; thermal expansion of solids and liquids; heat and internal energy, specific heat capacities, enthalpy and latent heat, work for ideal gases, first law of thermodynamics; equipartition of energy, mean free path; entropy and the second law, heat engines; entropy changes for reversible and irreversible processes. The module is targeted essentially at Engineering students.", + "title": "Physics IE", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1431", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to provide a clear and logical introduction to the concepts and principles of mechanics and thermodynamics, with illustrations based on applications to the real world. Topics covered include motion in one dimension; curvilinear motion; circular motion; relative motion; Newton's laws; friction; work and energy; conservative forces, conservation of energy; linear momentum and conservation, collisions; rotational kinematics; moment of inertia and torque; rotational dynamics; conservation of angular momentum; temperature and the zeroth law, temperature scales; heat and internal energy, specific heat capacities, work for ideal gases, first law of thermodynamics; equipartition of energy, entropy and the second law, heat engines; entropy changes for reversible and irreversible processes. The module is targeted essentially at Engineering students.", + "title": "Physics IE", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1431X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fundamental concepts of physics and is illustrated with many practical examples. Topics covered include a) Electricity and magnetism, where the basic concepts of electric and magnetic fields, forces on charged particles, electric potential, electromotive force, work and energy, are described. The properties of basic electrical circuits comprising resistors, inductors and capacitors are discussed, along with analysis of their transient and steady-state behaviour. Understanding the role of Maxwell's equations in electromagnetism is emphasized; b) Waves, introducing properties of waves, including geometric optics, propagation, interference and diffraction, and electromagnetic waves; and c) Quantum physics, where new physics concepts which led to the quantization of energy are introduced, leading to an explanation of atomic transitions, atomic spectra and the physical and the chemical properties of the atom. The uncertainty principle, wave-mechanics and wave particle duality concepts are covered, together with the use of wavefunctions in predicting the behaviour of trapped particles. The module is targeted essentially at Engineering students.", + "title": "Physics IIE", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1432", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fundamental concepts of physics and is illustrated with many practical examples. Topics covered include a) Electricity and magnetism, where the basic concepts of electric and magnetic fields, forces on charged particles, electric potential, electromotive force, work and energy, are described. The properties of basic electrical circuits comprising resistors, inductors and capacitors are discussed, along with analysis of their transient and steady-state behaviour. Understanding the role of Maxwell's equations in electromagnetism is emphasized; b) Waves, introducing properties of waves, including geometric optics, propagation, interference and diffraction, and electromagnetic waves; and c) Quantum physics, where new physics concepts which led to the quantization of energy are introduced, leading to an explanation of atomic transitions, atomic spectra and the physical and the chemical properties of the atom. The uncertainty principle, wave-mechanics and wave particle duality concepts are covered, together with the use of wave functions in predicting the behaviour of trapped particles. The module is targeted essentially at Engineering students.", + "title": "Physics IIE", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1432X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module consists of two parts. In Part 1, students will be introduced to the concepts and principles of mechanics of rigid bodies and their applications to solve practical problems. The topics to be covered include: force systems, equilibrium, kinematics of particles, kinetic of particles, work and energy, impulse and momentum, kinetics of system of particles, kinematics of rigid bodies, damped and undamped vibrations. In Part 2, students will be introduced to the fundamentals of wave mechanics. General description of wave propagation; types of waves: longitudinal, transverse and circular waves; speed of a travelling wave; propagation of energy and momentum; power and intensity; sound waves, oscillations of a string; light waves; superposition of waves; interference; standing waves, resonant waves; harmonics; resonance.", + "title": "Mechanics and Waves", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1433", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Physics Advanced Placement", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1601", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Physics Advanced Placement", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC1602", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to electromagnetics (EM) for\nelectrical engineers. Electromagnetics is essential in all\ndisciplines of electrical engineering. At the end of this\nmodule, students will be able to explain many physical\nphenomena in everyday life, such as electricity energy\ntransmission, wave reflection/transmission, and the impact\nof skin depth on wave propagation. Topics covered\ninclude: static electric fields, static magnetic fields, timevarying\nfields, electromagnetic waves, transmission lines\nand antennas.", + "title": "Electromagnetics for Electrical Engineers", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2020", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Friday", + "lessonType": "Packaged Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 11 + ], + "venue": "E4-07-08", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5 + ], + "venue": "S12-0402", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "E4-07-08", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Thursday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Monday", + "lessonType": "Packaged Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 12 + ], + "venue": "E4-07-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 11 + ], + "venue": "E4-07-08", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 11 + ], + "venue": "E4-07-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 12 + ], + "venue": "E4-07-08", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 6 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "E4-07-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 12 + ], + "venue": "E4-07-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5 + ], + "venue": "S12-0402", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 5 + ], + "venue": "S12-0402", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Among the four fundamental forces in nature, the electromagnetic force has great technological importance and is critical for the understanding of many subjects in Engineering and Science. This essential module for Physics majors is intended for students who wish to acquire a deep understanding of Electricity and Magnetism. It considers the fundamentals of Electricity and Magnetism and covers topics such as: electrostatic fields, Coulomb\u2019s law and Poisson\u2019s equation; magnetostatic fields, Biot-Savart\u2019s law and Poisson\u2019s equation; time-varying electric and magnetic fields, Faraday\u2019s and generalised Ampere\u2019s laws; Maxwell\u2019s equations and electromagnetic waves in vacuum. Knowledge from PC2032 is desirable.", + "title": "Electricity & Magnetism I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2031", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This essential module for Physics majors gives a first look at and serves as a model for the mathematical treatment of all later Theoretical Physics modules. It assumes knowledge from H2 Mathematics (or equivalent) and is intended for students who wish to acquire a deep understanding of our Mechanical Universe. It considers the principles of Newtonian Mechanics and covers topics such as kinematics, inertial and non-inertial reference frames, linear momentum, kinetic energy, and angular momentum; Newton's laws of motion, forces and torques; systems of many particles including rigid bodies; conservation laws; Newtonian gravity and Kepler\u2019s laws of planetary motion.", + "title": "Classical Mechanics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2032", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a rigorous introduction to quantum mechanics. It begins with a brief introduction to the development of quantum physics. Then it discusses topics like particle-wave duality, the Schr\u00f6dinger equation, one dimensional systems like free particle, square potential well, quantum tunnelling, harmonic oscillator, and the formal description of quantum systems including Hilbert space, observables and operators, eigenfunctions, the uncertainty relations, the Dirac notation and simple two-level systems. The module ends with discussions of some stationary problems in three dimensions like particle in a box and degenerate states, the Schr\u00f6dinger equation in spherical coordinates, and the hydrogen atom.", + "title": "Quantum Mechanics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2130", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introductory aspects of quantum physics. Two state quantum systems. The wave function and Schrodinger equation. Quantum harmonic oscillator; hydrogen atom; spherical harmonics. Atomic spectra. Scattering theory. Applications such as semiconductors, lasers, quantum dots and wires.", + "title": "Applied Quantum Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2130B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to give students the necessary mathematical skills for other physics courses. The topics to be covered include: complex numbers and hyperbolic functions; multivariable calculus; elements of vector calculus; Taylor series; Fourier series, Dirac delta-function, Fourier transforms, Laplace transforms, physical applications; second-order ordinary and partial differential equations, wave equation, diffusion equation, Poisson\u2019s equation; Green\u2019s functions; Sturm-Liouville theory; special functions associated with physical systems, Hermite polynomials, Bessel functions, Legendre functions.", + "title": "Mathematical Mtds in Physics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2134", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This essential module for Physics majors is intended for students who wish to acquire a deep understanding of systems of many particles. It considers the fundamentals of thermodynamics and statistical mechanics and is a prerequisite to advanced statistical mechanics. It covers topics such as: the laws of thermodynamics, thermodynamic functions, ideal gases, heat engines; microcanonical ensemble, canonical ensemble, Boltzmann distribution and partition function; introduction to quantum gases.", + "title": "Thermodynamics and Statistical Mechanics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2135", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to give students the necessary mathematical skills for other physics modules. The topics to be covered include: complex numbers and hyperbolic functions; series and limits, Taylor series; partial differentiation; multiple integrals; matrices and vector spaces, eigenvalues and eigenvectors; vector calculus; line, surface and volume integrals, Green\u2019s theorem, divergence theorem and Stokes\u2019 theorem; physical applications.", + "title": "Mathematical Methods in Physics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2174A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comprehensive training of both experimental and data analytical skills in mechanics, electronics, magnetism, nuclear physics, semiconductors, optics and lasers. In particular, emphasis is placed on the basic measurement skills in physics experiments, familiarisation of the commonly used experimental apparatus, as well as the collection, handling, and analysis of real world data. While this module is mainly targeted at physics majors, it is also suitable for science and engineering students who are interested in a career in the industries of semiconductors, optical communications, and life sciences.", + "title": "Experimental Physics and Data Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2193", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introductory course in statistical and thermal physics, and is a prerequisite to advanced statistical mechanics. The topics to be covered include: mathematical background, laws of thermodynamics, thermodynamics functions, chemical equilibrium and phase transitions, kinetic theory, postulates of statistical mechanics, independent particle approach of statistical mechanics, basic distributions, ideal gases, paramagnetism, equipartition theorem, etc. Science and engineering students with a background knowledge of general physics are the targeted students.", + "title": "Thermodynamics and Statistical Mechanics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 2000 level module is designed to give students an indepth grounding in fundamental aspects of modern physics. The module concentrates on modern optics and quantum mechanics (QM), with a focus on the applications of these two topics in electrical engineering.", + "title": "Physics for Electrical Engineers", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is intended for a small cohort of undergraduates who have a strong aptitude for physics and who have demonstrated outstanding scholarship. The problems will be assigned on a case-by-case basis.", + "title": "Special Problems in Undergrad Physics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2239", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the underlying principles and mechanisms of physics behind life sciences. It incorporates introductory concepts of physics into the phenomena associated with biological functions. The topics to be covered include: biological structures and the relation to biophysics; principles and methods of physics applied to biology; physical aspects of structure and functionalities of biomolecules, physical principles of bioenergy conversion and membrane-bound energy transduction; physical processes of bio-transport, nerves and bioelectricity. The module includes some basic biophysics experiments. It is targeted at both physics and non-physics students who already have basic knowledge in physics.", + "title": "Biophysics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2267", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Friday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Please note that only 4MCs can be accredited towards major requirements in case that a student undertakes 8MCs for both PC2288 and PC2289.", + "title": "Basic UROPS in Physics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Please note that only 4MCs can be accredited towards major requirements in case that a student undertakes 8MCs for both PC2288 and PC2289. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Physics I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2288R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Please note that only 4MCs can be accredited towards major requirements in case that a student undertakes 8MCs for both PC2288 and PC2289.", + "title": "Basic UROPS in Physics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Please note that only 4MCs can be accredited towards major requirements in case that a student undertakes 8MCs for both PC2288 and PC2289. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Physics II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2289R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 1ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PC2310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "PC2312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "PC2313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the use of telescopes and data collection in astronomy. Students will learn how to set up and competently operate a telescope. Then students will learn how to plan and conduct astronomical observations for scientific purposes. Finally, students will learn how to process and analyse astronomical data.", + "title": "Practical Astronomy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2411", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 3, + 5, + 9, + 11 + ], + "venue": "", + "day": "Friday", + "lessonType": "Laboratory", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an interdisciplinary module and it will adopt a heuristic approach to celestial dynamics. Mathematics will be introduced only when necessary. Participants will also be enthused with the historical and philosophical development of celestial adventures discussed. Topics covered include elements of Newton and Kepler\u2019s Laws, Planetary Orbits and Rocketry, Apollo program, Saturn V & SpaceX Boosters.", + "title": "Celestial Exploration", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2412", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S11-0301", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The satisfaction of understanding how rainbows are formed, how ice skaters spin, or why ocean tides roll in and out \u2014 phenomena that we have know \u2014 is one of the best motivators available for building scientific literacy. This module aims to make the physics of the world around us accessible to non-science majors. The coverage will be broad, and include Newtonian mechanics, fluid and heat, electricity and magnetism, waves and optics, and modern physics, with emphasis on relevance to everyday phenomena. The use of mathematics will be limited in this module and subordinated to the physical concepts being addressed.", + "title": "Physics of Everyday Phenomena", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2421", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Climate change and global warming are currently some of the most pressing problems that the world has to address. This module aims to provide a basic introduction to the processes that are involved in climate change, based on a physics perspective. Students will learn about climate processes, solar radiation and the energy budget of the earth, as well as basic thermal and radiation physics behind the greenhouse effect and the phenomenon of global warming. The phenomena of loss of sea ice and accelerated sea level rise will also be discussed.", + "title": "Physics of Climate Change", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2422", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The solutions to the global energy crisis lie in harnessing what Mother Nature has already provided. This module aims to help students discover the scientific underpinnings of natural phenomena that can be tapped for energy production and storage. Students will learn about the physical principles behind harnessing energy from the sun, ocean, wind and atomic nuclei (nuclear energy), as well as forms of energy storage such as batteries and fuel cells. The impact of these technologies on the environment will also be discussed. All physics concepts will be taught as needed. The module is suitable for students from diverse backgrounds.", + "title": "Energy for a Better World", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC2423", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module continues from PC2130 and aims to complete basic introductions of quantum mechanics to physics oriented students. This module will mainly cover the following angular momentum albegra, spin, identical particles, time-independent perturbation theory, variational principle, time-dependent perturbation theory, and basics of quantum scattering theory, with applications including the Zeeman effect, atomic fine structure and hyperfine structure, ground state of the helium atom, the Fermi golden rule, atom in a classical electromagetic field, stimulated and spontaneous emission, s-wave scattering.", + "title": "Quantum Mechanics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3130", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This continuous assessment module is intended to provide training in experimental techniques and analytical skills. Experiments are based on various areas of physics such as spectroscopy, nuclear physics, laser physics, optics and electronics. Some experiments involve the use of research-grade equipment like the electron microscope, the atomic force microscope and the FTIR spectrophotometer. Project-type experiments are also available. The module is targeted at science and engineering students who have a foundation in Level 2 experimental physics.", + "title": "Experimental Physics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3193", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-0313", + "day": "Monday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-0313", + "day": "Friday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-0313", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-0313", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module assumes knowledge of and is a sequel to PC2031. A good command of calculus and linear algebra is desirable. It is intended for students who wish to acquire a deeper understanding of Electricity and Magnetism. It prepares students for more advanced study at the postgraduate level. This module provides a comprehensive treatment of electromagnetic fields and forces. It covers the following topics Electrostatic fields in matter, magnetostatic fields in matter, time-varying electric and magnetic fields in matter, relativistic electrodynamics, and radiation.", + "title": "Electricity & Magnetism II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an intermediate course in nuclear physics, with an introduction to particle physics. Properties of nuclei, e.g., masses, spins, and moments, are introduced and an introductory discussion of nuclear models is presented, the semi-empirical mass formula, the Fermi gas model, the shell model and some aspects of the collective model are discussed. The energy balances and spin/parity selection rules of alpha, beta and gamma decay processes are discussed in considerable detail. The various types of interaction between radiation and matter are discussed, and an introduction to radiation detectors is given. A discussion of the operational principles and technological aspects of accelerators and an introductory survey of particle physics completes the material covered.", + "title": "Nuclear & Particle Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3232", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores elements of nuclear physics and its applications for students who are not physics majors, beginning with a concise introduction to the relevant elements of quantum mechanics. After a discussion of basic nuclear properties (masses, radii, spins, binding energies), elements of nuclear structure are introduced (liquid drop, Fermi gas and Shell model). Then alpha, beta and gamma decays, their selection rules and transition probabilities are discussed. The general properties of nuclear reactions, their conservation laws and energetics and the general features of the different reaction mechanisms are illustrated.The various interactions between radiation and matter are discussed, and an introduction to radiation detectors and technological applications (nuclear medicine, PET, accelerators, fusion, fission) are covered, and lastly the basics of radiation protection are discussed.", + "title": "Applied Nuclear Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3232B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents the basic concepts and principles of atomic and molecular physics. In particular, the module revolves around the energy level schemes of atoms and molecules which are essential to the interpretation of atomic and molecular spectra. Topics covered include the hydrogen and helium atoms, spin-orbit coupling schemes, hyperfine interaction, Lamb shift, atoms in magnetic fields, multi-electron atoms, Pauli exclusion principle, Hund's rules, diatomic molecules, Born-Oppenheimer approximation, electronic, vibrational, rotational and rotational-vibrational spectra; The module is targeted at students who have background in quantum mechanics and want to build the foundations for studying the interactions of matter and light in modern atomic physics contexts.", + "title": "Atomic & Molecular Physics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a first course in solid state physics. It aims to lay the foundations for students seeking to major in physics as well as students studying in materials science and engineering. The lectures emphasize on the fundamental concepts of condensed matter, covering crystal structure and reciprocal lattice, crystal binding and elastic constants, crystal vibrations and thermal properties, free electron theory and physical properties of metals, electron in periodic potentials, and basic semiconductors. Simple model prediction data and the experimental data from real systems would be compared and discussed to help students develop an intuitive understanding of the subject.", + "title": "Solid State Physics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3235", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0401", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0401", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0401", + "day": "Monday", + "lessonType": "Tutorial", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers fundamental solid state physics concepts (crystal structure, reciprocal lattice, free electron theory) and the physical properties of metals, electrons in periodic potentials, and basic semiconductor physics: Doping, p-n junctions, crystal defects, diffusion processes, energy bands of the nearly free electron model, tight binding approximations, Fermi surfaces and their experimental determination, optical processes, piezoelectricity, basic ideas of magnetism.", + "title": "Applied Solid State Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3235B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S13-M-09", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "S14-0619", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module presents basic computational methods useful for physics and science students. The lectures cover: (1) Basic numerical methods - differentiation, integration, interpolation, root-finding and random number generators, (2) Differential equations - finite difference method, shooting method and relaxation method; applications to chaotic dynamics of a driven pendulum, one-dimensional Schr\u00f6dinger equation, and fast Fourier transform, (3) Matrices - Gaussian elimination scheme for a system of linear equations, eigenvalues of Hermitian matrices; Hartree-Fock approximation, (4) Monte Carlo simulations - sampling and integration; random walk and simulation of diffusion equation, stochastic differential equation, Brownian dynamics; variational Monte Carlo simulation; Metropolis algorithm and Ising model, and (5) Finite element methods - basic concepts; applications to the Poisson equation in electrostatics.", + "title": "Computational Methods in Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces fundamental aspects of fluid dynamics, with emphasis on topics relevant to atmospheric and ocean dynamics. The Navier-Stokes equations are derived from first principles. After an introduction to potential flow theory, the study of water waves is taken up to illustrate the behaviour of dispersive wave propagation and nonlinear shock forming tendency. Effects of vertical stratification and rotation on fluid flows are then discussed, and applied to the analysis of atmospheric and ocean flow phenomena. The module closes with an introduction to the theories of turbulence, with application to the atmospheric boundary layer.", + "title": "Fluid Dynamics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3238", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S12-0401", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 4, + 5, + 7, + 9, + 11 + ], + "venue": "S16-0436", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is intended for a small cohort of undergraduates who have a strong aptitude for physics and who have demonstrated outstanding scholarship. The problems will be assigned on a case-by-case basis.", + "title": "Special Problems in Undergrad Physics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3239", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the basic physical principles and mathematical theories essential for understanding the dynamics of the atmosphere, ocean and climate. \n\nThe aim is to provide students with an introductory but rigorous course, so that they will be well-prepared for postgraduate studies or a career as research scientist at \nweather services or climate research establishments. \n\nThe major topics to be covered include: radiative energy balance and green-house effect, dynamics of the atmosphere in the mid-latitudes and the tropics, dynamics \nof the wind driven, thermohaline ocean circulations, and numerical simulations of the atmosphere-ocean systems for weather prediction and climate projects.", + "title": "Atmosphere, Ocean and Climate Dynamics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to solid state devices. The topics covered include: introduction to semiconductors, charge carrier concentrations, drift of carriers in electric and magnetic fields, diffusion and recombination of excess carriers, p-n junction physics, junction diodes, tunnel diodes, photodiodes, light emitting diodes, bipolar junction transistors, junction field effect transistors (JFET), metal-semiconductor contacts metal-insulator-semiconductor interfaces, basic MOSFET.", + "title": "Solid State Devices", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The ability to create and characterize nanomaterials and nanostructures is important for many emerging advanced materials industries, from silicon electronics to intelligent nanosystems. Two general approaches to create nanostructures are bottom-up (colloidal-based chemistry) and top-down (nanofabrication and nanopatterning) methods. The course covers the essential physical chemistry principles and synthesis of bottom-up nanomaterials. Principles and practical aspects of top-down nanostructuring using nanolithography (optical, electron beam, ion beam) and pattern replication methods, including 3D-printing are discussed. Finally, nanocharacterisation using electrons, ions and scanning probe techniques are covered. Knowledge gained will be invaluable to design current and future nanosystems for diverse industries.", + "title": "Nanofabrication and Nanocharacterization", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "venue": "E4-04-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "E3-06-06", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a first course on photonics that combines fundamentals with important applications, and is targeted at students interested in modern optical technology. The course covers planar dielectric waveguides, basics of optical fibre communication, optical properties of crystals and semiconductors, interband transitions and radiative recombination, semiconductor detectors, stimulated emission and population inversion, diode laser threshold and output power, argon and YAG lasers, Q-switching and mode-locking, electro-optics modulators and flat panel displays. The course strives to maintain succinctness in physical meaning and simplicity in approach with generous allotment of numerical examples to help in understanding the equations.", + "title": "Photonics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the application of physics to astronomy. The students will be introduced to some astronomical phenomena, and they will learn to understand these fascinating phenomena by using basic physics. The module allows the physics students to review, and to extend their knowledge. The module cover two basic classes of celestial objects: the stars and planets. The topics include Kepler\u2019s laws, telescopes, binary stars, stellar spectra, stellar interiors, stellar formation and evolution, solar magnetic field, planetary tidal forces, planetary atmospheres, and Newtonian cosmology.", + "title": "Astrophysics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3246", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to establish the interconnectedness of knowledge between principles of optics and modern sciences/technologies and identify the applications in our daily life. It covers wave properties, refraction and dispersion, interference, Michelson interferometer, Fabry-Perot cavity and optical resonator, interference filter, Fraunhofer and Fresnel diffraction, resolution limit, Fourier transformation, holography; polarisation, birefringence and wave plates, light absorption and emission, lasers. This module is targeted at physics and non-physics students, who are interested in principles of modern optics.", + "title": "Modern Optics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3247", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The changes to physical properties (electronic, optical and magnetic) due to formation of structures at the nanoscale will be the main emphasis of this module. Properties differing from the bulk due either to an increase in surface area/volume ratio or quantum confinement will be studied in structures ranging from quantum wells, wires and dots to self-assembled mono-layers and heterostructure formation. The kinetics and thermodynamics driving the formation of these nanostructured surfaces and interfaces will be discussed. The module will also highlight current and potential applications of these nanoscale systems. Examples of materials systems will include metals, oxides, III-V, II-VI, CNT, SiC and SiGe systems.", + "title": "Nanophysics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-11", + "end": "2023-07-25" + }, + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-14", + "end": "2023-07-28" + }, + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-24" + }, + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-13", + "end": "2023-07-27" + }, + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1800", + "weeks": { + "start": "2023-07-12", + "end": "2023-07-26" + }, + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module assumes knowledge of and is a sequel to PC2032. A good command of calculus and linear algebra is desirable. It is intended for students who wish to acquire a deeper understanding of our Mechanical Universe. It considers the principles of relativistic, Lagrangian and Hamiltonian mechanics, and aims to establish a bridge to the principles of modern Physics. Topics covered include: dynamics with central forces, bound and unbound orbits, scattering; relativistic kinematics and dynamics of a particle, Lorentz transformations, four-dimensional notations; Lagrangian mechanics, the action principle, Euler-Lagrange equation; Hamiltonian mechanics.", + "title": "Classical Mechanics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3261", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce the principles and approaches of physics in the area of molecular biophysics. It includes molecular complexes of biomolecules; physical and symmetrical relationships between biomolecules; physical and structural characteristics of proteins and amino acids; symmetric and statistical descriptions of nucleic acids; first law and second law of thermodynamics in biological systems; bonding and non-bonding potentials, and stabilizing interactions in biomacromolecules, and the correlation to macromolecular structures; molecular mechanics in biological systems; bio soft condensed materials, bio-membrane and biomembrane structure, principles of molecular self assembly of biomolecules. There is a lab component included in this module. This module is targeted at both physics and non-physics students who already have basic knowledge in physics and life sciences.", + "title": "Biophysics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3267", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Lecture", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "By extracting and predicting insightful correlations within observations of complex physical phenomena, Machine Learning (ML) models push the boundaries of data-driven scientific exploration. This module introduces ML models and their underlying principles, including a short overview of foundational statistics and information theory. Furthermore, students will see applications of ML models to the Physical Sciences (e.g. optics, statistical physics, condensed matter, biological physics). Although this module will be taught in the Python programming language, prior experience in any programming language will nonetheless be helpful.", + "title": "Machine Learning for Physicists", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces important mathematical methods for the solution of a variety of mathematical problems in physics. The following topics are covered: functions of a complex variable, singularities and residues, contour integration; calculus of variations; transformations in physics, symmetries and group theory, discrete groups, group representations and their applications in physics; tensor analysis, application to classical mechanics, electrodynamics, and relativity.", + "title": "Mathematical Methods in Physics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3274", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to give students the necessary mathematical skills for other physics modules. The topics to be covered include: Fourier series, Dirac delta-function, Fourier transforms, Laplace transforms; first-order and second-order ordinary differential equations, Green\u2019s functions, Sturm-Liouville theory; partial differential equations, separation of variables; special functions: Hermite polynomials, Bessel functions, Legendre functions; physical applications.", + "title": "Mathematical Methods in Physics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3274A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This student seminar series offers the opportunity to study a particular subject directly supervised by a faculty member whose research is related to the subject. The subjects are presented in form of seminar talks with time for questions and discussions, and are to be summarized in a report. Emphasis is made on further developing presentation and communication skills by supervision of the preparation of seminar talks and feedback on presentation style involving fellow students. The actual physical field that is covered by the seminar series depends on the particular lecturer(s) and will be announced online.\n\nPlease refer to the following website for more information: http://www.physics.nus.edu.sg/corporate/student/ugrad_module_PC3280.html", + "title": "Senior Student Seminar", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PC3280", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Please note also that only 4MCs can be accredited towards major requirements in case that a student undertakes 8MCs for both PC3288 and PC3289.", + "title": "Advanced UROPS in Physics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289.", + "title": "Advanced UROPS in Astrophysics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3288A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Astrophysics I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3288AR", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289.", + "title": "Advanced UROPS in Nanophysics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3288N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Nanophysics I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3288NR", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289.", + "title": "Advanced UROPS in Quantum Technologies I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3288Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Quantum Technologies I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3288QR", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Please note also that only 4MCs can be accredited towards major requirements in case that a student undertakes 8MCs for both PC3288 and PC3289. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Physics I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3288R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Please see section 4.4.3.", + "title": "Advanced UROPS in Physics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289.", + "title": "Advanced UROPS in Astrophysics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3289A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Astrophysics II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3289AR", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289.", + "title": "Advanced UROPS in Nanophysics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3289N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Nanophysics II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3289NR", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289.", + "title": "Advanced UROPS in Quantum Technologies II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3289Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Variants of PC3288 or PC3289. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Quantum Technologies II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3289QR", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of PC3288. Please note that only 4MCs can be accredited towards major or specialisation requirements in the case a student undertakes 8MCs for both PC3288 and PC3289. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Physics II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3289R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides hands-on experience with modern detectors, electronics, data acquisition systems, radiation sources and other nuclear physics equipment that forms the basis for the applications of nuclear physics to medical physics, radiation protection and other fields. The module will be restricted to the students in the Medical Physics minor.", + "title": "Radiation Laboratory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3294", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module gives an introduction to the basic physics, the biology and the applications of radiation in medical imaging and radiation therapy. After a review of basic radiation physics and the relevant radiobiology, the currently used major modes of diagnostic and interventional imaging are covered. This will be followed by a discussion of the major methods of radiation cancer therapy (by photons, protons and electrons).", + "title": "Radiation for Imaging and Therapy in Medicine", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3295", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PC3310", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. Module is open to FoS undergraduate students from Cohorts AY2020/2021 and before, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PC3311", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 16-20 weeks during regular semester. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "FOS Undergraduate Professional Internship Programme 3S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "PC3312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduates students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 3S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "PC3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an interdisciplinary module and it will adopt a heuristic approach to understanding current paradigm of first 3 minutes of the Big Bang. Mathematics will be introduced only when necessary. Participants will also be enthused with the historical and philosophical development of Space and Time discussed. Topics covered include Relativity, Quantum Physics and Cosmology.", + "title": "The First 3 Minutes of the Universe", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the physics of stars and the closely related processes of nucleosynthesis. A brief review of basic astronomy and an introduction to the relevant nuclear physics is given, followed by a discussion of the big bang cosmology. Then important elements of the structure of stars are discussed, including heat transfer in stars, thermo-nuclear fusion in stars, stellar structures and star life-cycles. We will discuss nucleosynthesis via quiescent burning, and the various processes that lead to the production of heavy (A>60) elements.", + "title": "How Stars Work", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3412", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the structure of galaxies starting from star formation and star clusters with a strong focus on the analysis of observational data and insights from simulations. We discuss the underlying physics that give rise to the various shapes and structures that we see in galaxies, and briefly discuss the role of the supermassive black hole in the centre of many galaxies. Finally, we end off with clusters of galaxies and the large-scale structure of the universe.", + "title": "From Data to a Galaxy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3413", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Quantum phenomena based on the superposition principle and quantum entanglement have attracted significant attention in the past. Nowadays, strong efforts are being made to develop applications based on these phenomena. Such Quantum Technologies includes use cases in quantum communication and information processing, quantum enabled sensing, and quantum computations and simulations. The aim of this module is to provide the student with an overview of the applications and underlying principles. This covers a broad range of topics from quantum key distribution, over atomic clocks, inertial sensors, to early types of quantum computers.", + "title": "Quantum Technologies", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3421", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the rapid ageing of the world population and an increasing world-wide prevalence of chronic and infectious diseases, the demand for medical infrastructure is expected to rise over the foreseeable future. A basic understanding of the various forms of modern medical technology is therefore important as a form of health literacy among the general population. This module provides a basic introduction to the major forms of diagnostic imaging and radiation therapy from a physics perspective. The course content is taught from an introductory level and prior knowledge in biology and medicine is not required.", + "title": "Physics of Medical Technology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC3422", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of module PC3130. It is targeted at physics majors. The algebraic structure of angular momentum is developed with an emphasis on the addition of two angular momenta. The properties of systems consisting of identical particles are studied. The last part of the module focuses on time-dependent perturbation calculus and scattering theory. The module is mainly targeted at physics majors.", + "title": "Quantum Mechanics III", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4130", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Honours Project in Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "PC4199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Integrated B.ENG./B.SC. (Hons) Dissertation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "PC4199R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Quantum technology is a field of physics and engineering which exploits quantum phenomena, such as entanglement, superposition and tunneling, for advanced applications, including quantum computing, quantum key distribution, quantum metrology, and information processing. This is a fast emerging field with strong industry potential. In this course, students will be equipped with essential knowledge in the physics and technology of a wide range of quantum devices, including quantum detectors, quantum light sources, quantum number generators, quantum sensors, and quantum computers. Students will also learn skills in the characterization of these devices, including data analysis and interpretation of quantum behavior.", + "title": "Device Physics for Quantum Technology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4228", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This third undergraduate module in quantum mechanics starts with a recap of the main contents covered by lower-level quantum mechanics courses, in particular time-independent and time-dependent perturbation theory, with more depth. Matlab is introduced to implement the discrete variable representation to solve time-independent Schrodinger equations, and the Split-Operator technique to solve time-dependent Schrodinger equations, with necessary coding from the stratch. This module also covers a number of frontiers topics, including adiabatic theorem, adiabatic control, shortcuts to adiabaticity, geometric phases, density matrix, reduced density matrix, quantum measurement models, quantum master equations, spin-boson model, decoherence, and dynamical decoupling.", + "title": "Quantum Mechanics III", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The topics covered include galaxies, cosmology, cosmological parameters, large scale structures of the universe, dark matter and dark energy, negative energies, cosmic microwave background, baryon genesis, big bang, inflation, open and closed universe, gamma ray burst (standard candles), cosmic acceleration.", + "title": "Cosmology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Computation is playing an increasingly important role in materials discovery. This module introduces the basic concepts and provides an overview of methods in modern computational condensed matter physics. Major topics to be covered include a brief review on empirical and semi-empirical approaches in electronic structure calculation, density functional theory, methods for solving the Kohn-Sham equation, applications to different types of materials, modelling effects of external fields and transport property. The module is suitable for upper level undergraduate and graduate students who are interested in computer modelling and simulation in condensed matter physics and materials science.", + "title": "Computational Condensed Matter Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S13-M-09", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to elements of the physics of crystalline solids. Topics covered include energy bands of the nearly free electron model, tight binding method, Fermi surfaces and their experimental determination, plasmons, polaritons and polarons, optical processes and excitons. We will also cover superconductivity, dielectrics and ferroelectrics, diamagnetism, paramagnetism, ferromagnetism and antiferromagnetism, and magnetic resonance. This module is targeted at physics majors, and is useful for science and engineering students who already have background knowledge of solid state physics on par with PC3235 Solid State Physics I.", + "title": "Solid State Physics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4240", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "S12-0403", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents the fundamentals of statistical mechanics. Starting with the classical and quantum postulates, the three ensembles of Gibbs are derived. The statistical interpretation of thermodynamics then follows. The thermodynamic quantities are obtained in terms of the number of states, partition and grand partition functions. Applications to independent electron systems, with and without magnetic field, and Bose-Einstein condensation are given. The course ends with a brief introduction to phase transitions. This module is targeted at physics students with at least one year of thermal physics.", + "title": "Statistical Mechanics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced module presents the fundamentals of classical electrodynamics in much depth. It covers the following topics: relativistic formulation of the electromagnetic field, covariance of electrodynamics, conservation laws, radiation by moving charges, Lienard-Wiechert potentials, Larmor's formula, angular distribution of radiation, spectral properties of radiation, Cherenkov radiation, Bremsstrahlung, synchrotron radiation, multipole expansions, and applications. A good mathematical foundation is required.", + "title": "Electricity and Magnetism III", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students with a background to the important developments in atomic physics over the last 30 years that have now become standard techniques utilized in many laboratories around the world. The lectures provide a detailed description of the interaction of atoms with electromagnetic fields and applies this analysis to a number of applications such as laser spectroscopy, laser cooling, and magnetic and optical trapping. The course will provide students with a comprehensive background to the tools of modern atomic physics", + "title": "Atomic & Molecular Physics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course on the fundamental constituents of matter and their basic interactions; important concepts and principles, recent important experiments, underlying theoretical tools and calculation techniques in elementary particles physics will be expounded. The topics covered are: basic properties of elementary particles and the standard model, relativistic kinematics; symmetries: isospin and SU(3), quark model; parity and CP violation; Feynman diagrams and rules; quantum electrodynamics; cross sections and lifetimes: deep inelastic scattering; and introductory gauge theories and unified models. This module is mainly targeted at physics majors.", + "title": "Particle Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4245", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to the quantum description of the electromagnetic field, with a special focus on phenomena at optical frequencies; in short, \u201cquantum optics\u201d. It starts with two introductory chapters: a concise reminder of important facts and devices of classical optics; and a presentation of typical quantum phenomena that have been observed with light (entanglement, violation of Bell's inequalities, teleportation\u2026). The core of the module is the canonical quantization of the electromagnetic field and the introduction of the corresponding vector space (\u201cFock space\u201d) and field operators. Then, we present the main families of states (number, thermal, coherent, squeezed) and the most typical measurement techniques (photo-detection, homodyne measurement, first- and second-order coherence, Hong-Ou-/Mandel bunching). The statistical nature of light fields is highlighted. Finally, we present the basic case studies of photon-atom interactions in the full quantum approach: cavity quantum electrodynamics (Janyes-Cummings model), spontaneous decay (Wigner-Weisskopf approach).", + "title": "Quantum Optics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4246", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the theory of general relativity. The topics covered are general tensor analysis, the Riemann tensor, the gravitational field equation, the Schwarzschild solution, experimental tests of general relativity, black holes, and Friedmann-Robertson-Walker models of the expanding universe. While this module is mainly targeted at physics majors, it is also suitable for science students with a strong mathematical foundation.", + "title": "General Relativity", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4248", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Starting with an introduction to the nuclear physics of stars and the processes of nucleosynthesis, following a brief introduction to nuclear physics. nucleosynthesis via quiescent burning, and the processes that lead to the production of heavy (A>60) elements are covered. The endstages\n(brown dwarfs, white dwarfs, neutron stars and black holes) are discussed in detail. In the second part of the module, large structures in the universe, are discussed, including star clusters, galaxy structure, and galaxy clustering. The module ends with a discussion of the cosmological scale structure of the universe. This module is a continuation of PC3246 Astrophysics I.", + "title": "Astrophysics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4249", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The scope of the course embraces the basic principles of thin-film deposition techniques such as chemical vapor deposition and physical vapor deposition as well as their applications in the microelectronics industry. The basic principles include vacuum technology, gas kinetics, adsorption, surface diffusion and nucleation. These are the fundamental features which determine the film growth and the ultimate film properties. Common thin-film characterization methods which measure film composition and structure as well as mechanical and electrical properties are also covered. This course is for senior physics students with an interest in pursuing a career in industry.", + "title": "Thin Film Technology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to surface physics, its techniques and applications. The topics include: surface tension, surface crystallography, surface physical processes such as relaxation, reconstruction and defects, surface chemical properties, surface segregation, surface electronic structures including surface states, band bending, dipole layer, work function, core-level-shifts, Fermi level pining, plasmon, and surface vibrational properties. Experimental techniques, such as LEED, RHEED, XAS, SEXAFS, XPS, UPS, AES, SIMS and EELS, will be also addressed with examples and applications. This module is targeted at physics or materials science students, who have a basic knowledge of quantum mechanics and solid state physics.", + "title": "Surface Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Remote sensing is the acquisition of information about a target from a distance, in particular from satellites, aircrafts, and drones. This course equips students with knowledge to understand, and model, satellite orbital dynamics and global positioning, radiometry, multi-spectral and hyper-spectral imaging of atmosphere, land, and ocean. Students will also learn skills in data processing of real-life satellite images through project work, including the application of radiometric, terrain and atmospheric corrections. The course will also leverage on access to Singapore's Centre for Remote Imaging, Sensing and Processing.", + "title": "Remote Sensing", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4262", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is a follow-up of PC3241 Solid State Devices and is designed for those intending to join the semiconductor industry. The course is intended to give the students an understanding of the physics behind selected devices and that of some of their fabrication technologies. Devices examined are: MOSC & MOSFET, CCD, majority carrier diodes, transferred electron devices, non-volatile memory devices, thyristors and heterojunction devices.", + "title": "Advanced Solid State Devices", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the principles of statistics in relation to biophysics and bio soft materials. It focuses on modeling of biomacromolecular structure and statistical complexities; molecular mechanics of biomolecules; statistical models for structural transitions in biopolymers, statistical physical description of structural transitions in macromolecules, simulation of macromolecular structure, structural transitions in polypeptides and proteins; coil-helix transitions; prediction of protein secondary and tertiary structures; statistics of structural transitions in polynucleotides and DNA; modeling of non-regular structures of biomacromolecules. This module is targeted at both physics and non-physics students who already have basic knowledge in physics, thermodynamics and molecular biology.", + "title": "Biophysics III", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4267", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the techniques applied in biophysics and biomolecular electronics. It covers absorption and emission spectroscopy associated with biomolecules; infrared and Raman spectroscopy; magnetic resonance; symmetry of crystal, x-ray crystal structure analysis for macromolecular-structures; principles of light scattering, Rayleigh scattering, scattering from particles comparable to wavelength of radiation, static light scattering, dynamic light scattering, low angle X ray/neutron scattering, scanning probing microscopy; chemical, somatic, and visceral receptors, elements of integrated technologies and applications for biosensors; bio-molecular devices, protein computer. There is a lab component included in this module. This module is targeted at both physics and non-physics students who already have basic knowledge in physics, electronics and molecular biology.", + "title": "Biophysical Instrumentation & Biomolecular Electronics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces advanced mathematical methods that are essential in many areas of theoretical physics. The topics covered are: differentiable manifolds, curved manifolds, tangent and dual spaces, calculus of differential forms, Stokes' theorem, and applications to electromagnetic theory; symmetries of manifolds, Lie derivatives, Lie groups and algebras, their representations and physical applications. The module is targeted at students who wish to study theoretical physics.", + "title": "Mathematical Methods in Physics III", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC4274", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a new module which aims to highlight the relevance and importance of physics in many aspects of technology. It aims to serve as the overview module to expose the students to a few key technological development when Physics plays a vital role. This module will be conducted by our own lecturers. The selected topics will be current and directly relevant to the potential career options that the MSc students will be considering. Discussion of each topic shall cover the basic physics principles leading to the state of the art development in the technology. The duration on each topic can last from 2 weeks to 3 weeks. Examples of the topics include energy and batteries, solar energy systems, quantum technologies, computer modelling in Physics, sensor devices, microelectronics, advanced functional materials, communication systems, biophysical instruments, etc.", + "title": "Physics and Technology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers a series of lecture clusters/seminars in industrial physics co-taught by our lecturers and our industrial partners and collaborators. Students will be exposed to the multiple-faceted career options that a physicist can choose in the industry. Our industrial partners will provide an overview of a certain industry sector and share their experience on the role a physicist plays in this sector. Our partners shall also emphasize the important skillsets to learn in order to be well-prepared for the career chosen. The range of industrial sectors shall cover Semiconductors, Engineering, Material Science, IT, Data Sciences, Energy Sector etc.", + "title": "Physics in Industry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The main purpose of this module is to help graduate students to improve their presentation skills and to participate in scientific seminars/exchanges in a professional manner. The activities of this module include giving presentations during the lecture hours and attending seminars organised by the Department. Students are also required to write summaries of some departmental seminars attended. The grade of this module will be \"Satisfactory/Unsatisfactory\" based on student's talk presentations, participation of seminars and the summary writing.", + "title": "Graduate Seminar Module in Physics", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PC5198", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to advanced topics in quantum theory. Topics include applications in many-body systems; Scattering theory; Approximation methods and their applications. General description of relativistic equations and their solutions; Interaction with electromagnetic fields; Path integral formulation of quantum mechanics. This module is targeted at all students undertaking graduate studies.", + "title": "Advanced Quantum Mechanics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents an introduction to phase transitions and fluctuations. For phase transitions, the course starts with the treatment of Landau and mean field. Exact Ising model results are then discussed. Critical exponents are introduced and their relations obtained using the scaling hypothesis and Kadanoff's scheme. Real space renormalization is then used to show how the critical exponents can be calculated. For fluctuations, Langevin, Fokker-Planck equations will be used. Time dependence and fluctuation dissipation theorem then follow. Brownian motion will be used as an example. This module is targeted at physics graduate students with at least one year of statistical mechanics.", + "title": "Advanced Statistical Mechanics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to give graduate students additional training in the foundations of solid state physics and is intended to prepare them for research work and other graduate coursework modules. Topics to be covered include: translational symmetry and Bloch's theorem, rotational symmetry and group representation, electron-electron interaction and Hartree-Fock method, pseudopotential and LCAO schemes of energy band calculations, Boltzmann equation and thermoelectric phenomena, optical properties of semiconductors, insulators and metals, origin of ferromagnetism, models of Heisenberg, Stoner and Hubbard, Kondo effect. Berry phase and topological insulators. Students are expected to read from a range of recommended and reference texts, and will be given an opportunity to present their reading as part of the regular lessons.", + "title": "Advanced Solid State Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Spintronics is the study of the intrinsic spin of the electron and its application in spin-logic and devices, spin-polarized injection devices, and storage media. This is important for a variety of current and emerging applications in magnetic memories. This course equips students with essential knowledge of magnetism, and exchange interactions in solids; half metals, and dilute magnetic semiconductors; spin injection, transport and detection; and magnetic nanostructures, and their applications in: GMR read-write heads, MRAM, spinFET, spin-torque oscillators.", + "title": "Magnetism and Spintronics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Flexible electronics/devices and integrating various flexible electronics, sensors, and energy harvesting devices, etc. into fabrics have been attracting considerable interests in many areas due to the great potential applications in the smart, living, health care and medication. What makes them so different?\nIn this module, we will explore the latest break-through in materials, flexible devices design and fabrication. It also potential applications and future perspectives. The module will combine the semiars with projects, and lecturing with classroom discussion.", + "title": "Soft Materials and Flexible Devices", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5204A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers advanced mathematical methods for obtaining approximate analytical solutions to physical problems. It is designed to help graduate students build the skills necessary to analyse equations, integrals, and series that they encounter in their research. Topics include local analysis of differential equations, asymptotic expansion of integrals, and summation of series.", + "title": "Selected Topics in Physics: Analytic Approximations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5204B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to surface physics for graduate and year-4 undergraduate students major in physics, chemistry and materials science and engineering. It covers the properties of solid surfaces, experimental techniques and applications. The topics include the importance of surfaces in science & technology, surface crystallography and topography, surface energy and stress, surface electronic properties (surface states, work function, band bending and Fermi level pining at semiconductor surface/interface, magnetism), surface phonon and plasmon, adsorption, desorption and reaction on surfaces. The applications of basic surface science knowledge in semiconductor technology, materials growth and processing, heterogeneous catalysis, nanoscience and thin film technology will be demonstrated. Experimental techniques, such as XPS, UPS, AES, LEED, STM, AFM, SIMS, EELS, TPD and vacuum technology, will be addressed with examples and applications. To take this module, students should have a basic knowledge of quantum physics, thermodynamics and solid state physics.", + "title": "Topics in Surface Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 44, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 44, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module for students of theoretical physics. The topics covered are: Second quantization and path integral formulation of quantum field theory, Feynman rules for scalar, spinor, and vector fields, renormalization and symmetry, renormalization group, and connection with condensed matter physics.", + "title": "Selected Topics in Quantum Field Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to provide a comprehensive understanding on the principles of nonlinear optics. The module is targeted at postgraduate students who have acquired a background in optics, and who are involved in optics-related studies and research. The module presents the principles of nonlinear optics and photonics devices, which includes: nonlinear optical susceptibility, wave propagation in nonlinear media; sum and difference frequency generation, parametric amplification and oscillation, photonic crystals; phase conjugation, optical-induced birefringence, self-focusing, nonlinear optical absorption, photonic devices; ultrafast laser.", + "title": "Topics in Optical Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5207", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to provide an introduction to the microscopic and phenomenological theories of superconductivity. It lays the analytical foundation for the understanding a wide range of modern applications of both low- and high- temperature superconductors. The lecture links established theories with current research activities in the development of the physics and technology of the superconductors. Students should have a background in quantum mechanics and thermal physics.", + "title": "Superconductivity", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course gives an in-depth introduction to the field of Ion Beam Analysis (IBA). IBA methods allow the composition of unknown material systems to be quantitatively determined through the use of ion beams that are produced by small particle accelerators. Theoretical fundamentals will be covered in detail, e.g. Thomas-Fermi statistical model, screened inter-atomic potentials, scattering cross sections, stopping powers etc. Accelerators, detectors and basic pulse processing instrumentation will be discussed. A range of analytical techniques will be discussed in detail: Rutherford Backscattering (RBS), Proton Induced X-ray Emission (PIXE), Elastic Recoil Detection Analysis (ERDA), Nuclear Reaction Analysis NRA, and Accelerator Mass Spectrometry (AMS). Apart from academic content, students will be required to engage in group discussions and work on group research projects that involve performing literature review, producing a conference poster as well as giving an individual oral presentation. Through these discussions and projects, students will gain experience in real-world skills of teamwork, online literature search, academic writing, design of conference posters and giving academic oral presentations.", + "title": "Accelerator Based Materials Characterisation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S1A-0217", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to understand Lagrangian mechanics, Hamiltonian mechanics, and basic ideas of nonlinear dynamics and chaos. Topics discussed are variational principle and Lagrangian mechanics, Hamiltonian mechanics, the Hamiltonian formulation of relativistic mechanics, symplectic approach to canonical transformation, Poisson brackets and other canonical invariants, Liouville theorem, the Hamilton-Jacobi equation, Hamilton's characteristic function, action-angle variables, integrable systems, transition from a discrete to continuous system, relativistic field theory, Noether's theorem, Lie groups and group actions, Poisson manifolds, Hamiltonian vector fields, properties of the Hamiltonian fields, conservative chaos, the Poincare surface of section, KAM theorem, Poincare-Birkhoff theorem, Lyapunov exponents, global chaos, effects of double dissipation and fractals.", + "title": "Advanced Dynamics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the physics of nanostructures. Students taking this module will be introduced methods of fabrication and characterization of nanostructured materials and nanodevices, common types of nanostructures, their properties and applications. More importantly, the underlying physics of the intricate properties and functions of nanostructures will be discussed. The module starts with a brief review of relevant topics of quantum mechanics and solid state physics in reduced dimensions. Common techniques for nanostructure fabrication and characterization are introduced next. Transport in low-dimensional systems, optoelectronics of nanostructures, nanotubes and nanowires, clusters and nanocrystallites are discussed. Finally, magnetic nanostructures, and molecular electronics (optional), will be covered. This module is designed for postgraduate students who are interested in nanoscience and nanotechnology research and applications. Understanding the physics of nanostructures will allow the students to better appreciate the interesting properties and their tunability of nanostructures, understand the operating principles of nanodevices, and to design and optimize nanostructures for different applications.", + "title": "Physics of Nanostructures", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses the molecules in cells and the physics behind their functions. At the core is the understanding of biomolecular conformations, structural stability and interactions under physical constraints such as force, geometry and temperature, by theory and state-of-art experimental technologies. Besides homework and quiz, projects are an important component of assignments. Multiple projects are provided for students to choose, which may involve numerical/Monte Carlo simulation of biomolecular conformations, analysis of experimental data, or investigation of the DNA micromechanics by analyzing DNA conformations. This module is targeted at students who have a basic knowledge in general physics and thermodynamics.", + "title": "Advanced Biophysics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The ability to setup high-quality experiments and measurements is fundamental to innovation in many areas of sciences and engineering, including materials and devices. Therefore a good understanding of, and practical training, in experimental physics techniques is essential to a lot of research and development work in both academia and industry. This course equips students with the essential knowledge and practical skills in a broad range of modern experimental physics techniques, including: mechanical design and materials selection; vacuum technology, cyostats, and thin-film deposition techniques; Gaussian beam laser optics; photodetectors; stepper motors and piezoelectric actuators; feedback and control loops; techniques in analog, digital and pulse signal processing; weak-signal detection and lock-in amplifiers; fast-signal detection and transmission lines. The practical skills will be taught in laboratory classes, which are part of this course.", + "title": "Essential techniques in experimental physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5214", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Covers computational techniques for the solution of problems arising in physics and engineering, with an emphasis on molecular simulation and modelling. Topics will be from the text, \u201cNumerical Recipes\u201d, Press et al, supplemented with examples in materials and condensed matter physics. This course insures that graduate students intending to do research in computational physics will have sufficient background in computational methods and programming experience.", + "title": "Numerical Recipes With Applications", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces from an experimentalists point of view to the modern world of ultracold quantum gases that so much changed atomic physics in the past two decades. The lectures present the basic experimental methods of\nlaser cooling, magnetic and optical trapping, and evaporative cooling that produce matter near absolute zero temperature. We then discuss basic effects like Bose-Einstein condensation and Pauli pressure. Further, selected research examples are presented that give insight to some of the many close relations between quantum matter designed in many labs worldwide and other physical systems found in the range of quantum information science, condensed matter physics, metrology, nuclear physics, and astronomy. Solid background in quantum\nmechanics, atomic physics, and statistical mechanics is desired.", + "title": "Advanced Atomic & Molecular Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce a phenomenological description of superconducting materials and their applications to modern technologies. For this, the module will cover bulk and thin-film superconducting materials and introduce the Josephson junction, which is the basis of many superconducting devices. From this, we will introduce the main parameters that are relevant to the design of modern superconducting devices, namely resonators, qubits, SQUIDs and photodetectors. Finally, we will cover how the choice of materials and geometry influences the functioning of these devices.", + "title": "Superconductivity and Superconducting Devices", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as an introduction to the physics of 2D-materials, the technological aspects of devices based on 2D-materials, and some of the experimental techniques used to investigate 2D-materials.\n\nWe cover topics of basic science such as the Quantum Hall effects, Berry curvature, the role of defects, and strain induced gauge fields.\n\nWe also treat experimental aspects such as fabrication and design of samples, and low temperature equipment.\n\nA range of experimental techniques used in this field of research will be covered, such as non-local voltage measurements, valley-selective optical excitation, spin-valves and more.", + "title": "The Physics and Technology of 2D-Materials and Devices", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an introduction to quantum information and quantum computation. In addition to physics majors, the course addresses students with a good background in discrete mathematics or computer science.The following topics will be covered: (1) Introduction: a brief review of basic notions of information science (Shannon entropy, channel capacity) and of basic quantum kinematics with emphasis on the description of multi-qubit systems and their discrete dynamics. (2) Quantum information: Entanglement and its numerical measures, separability of multi-partite states, quantum channels, standard protocols for quantum cryptography and entanglement purification, physical implementations. And (3) Quantum computation: single-qubit gates, two-qubit gates and their physical realization in optical networks, ion traps, quantum dots, Universality theorem, quantum networks and their design, simple quantum algorithms (Jozsa-Deutsch decision algorithm, Grover search algorithm, Shor factorization algorithm).\nThe module is tightly integrated with IBM quantum computer hands-on experience via IBM Q Experience cloud services. Students will learn fundamentals of Qiskit, a modern and rapidly developing quantum computer programming language, by directly implementing concepts learnt in the classroom.", + "title": "Quantum Information and Computation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Friday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The problems will be assigned on a case-by-case basis.", + "title": "Special Problems in Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will present a unified look at the basic\nbranches of physics (classical mechanics, quantum\nmechanics, electrodynamics, thermodynamics and\nstatistical physics) from the perspective of variational\nprinciples, which offer compact statements of the\nfundamental laws and are also an important tool for\ndesigning models and finding approximate solutions.", + "title": "Variational Principles", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5239B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S11-0205", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is intended to provide detailed treatment of the principles of lasers and working knowledge of major optical techniques used in manipulating laser spatial mode properties and their temporal and spectral characteristics. The topics being covered include laser beams, laser theory, laser survey, modulation techniques, non-linear optics, and fiber optics. This is a graduate-level module and is to prepare students for using lasers and related techniques in either academic research or industrial R&D. Students will acquire a solid understanding of laser principles, will learn characteristics and applications of various types of lasers, and will become familiar with major techniques on manipulating laser outputs based on electro-optic, acousto-optic, and non-linear effects for different kinds of applications. At the end of the module, students will be equipped with sufficient theoretical and working knowledge to effectively apply commercially available laser instruments in their research as well as build from basic optical components their own coherent light sources where lasers for particular experiments and applications may not be readily available. This module should be relevant to any student who is or will be working in R&D areas involving laser-related techniques.", + "title": "Photonics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module exposes graduate students to examples of Machine Learning and Data Science that are commonly encountered in data analyses in the Physical Sciences (e.g. optics, statistical physics, condensed matter, biological physics). We will take a hands-on approach to implementing, training, and evaluating machine learning models. This module will be taught in the Python programming language. Prior experience in any programming language will be helpful.", + "title": "Applied Machine Learning and Data Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5251", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "S12-0403", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the age of big scientific data, Bayesian statistical methods and machine learning techniques are becoming a vital part of the modern scientist's toolkit. This module provides a graduate level introduction to the two related fields, with equal emphasis on both. Key topics for the first part include: fundamentals of probability and inference, hierarchical modellin g, model validation and comparison, and Monte Carlo methods; for the second part, they include: classification and regression, kernel methods, variational methods, and neural networks. The module will be largely theoretically oriented, with the occasional computational component.", + "title": "Bayesian Statistics and Machine Learning", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5252", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Much of our real world data are manifestations or measurements of their underlying complex interactions. Hence, modelling and analysis of the underlying complex systems can reveal understandings and predictions that complement black-box machine learning tools. This module will cover the basic concepts and tools in analysing complex systems and simulation models, and more importantly why and when we need such white-box tools derived from statistical physics. Certain key concepts in complexity science will be intrudcued. It will also provide hands-on experience with system analysis and simulation modelling in Python.", + "title": "Complex Systems Analysis and Modelling", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S12-0403", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the physics behind a wide spectrum of modern sensors is covered, capturing basic properties like temperature, distance, forces, pressure, magnetic fields, and light that are relevant in everyday applications, as well as more advanced sensors for acceleration and rotation that became commonplace in mobile devices for orientation and navigation. Furthermore, advanced sensing techniques used in microbalances, particle detection and advanced optical and acoustic sensing techniques will be discussed.", + "title": "Physics of Sensors", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PC5271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a project module in the self-funded M.Sc. Physics programme (by coursework). It carries 8 Modular Credits (MCs), which is equivalent to two regular NUS modules. Students will complete a research project (normally within two semesters) under the supervision of an academic staff, submit a project thesis, and present the results to a panel of examiners.", + "title": "MSc Physics Coursework Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "PC5286", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is intended to provide an opportunity to our M.Sc. students in carrying out a substantial and relatively independent research project under the supervision of a supervisor. It also serves to help a student to gain practical experience in problem-solving, This is directly relevant to student who plans to pursue a career in industrial company.\nDuring the course of the training, the student will develop their advanced research skills and contribute to new development in applied physics.\nThe wide-ranging of academic staffs and industrial partners will give the student opportunities to develop specialist knowledge and honed research skills in the following areas: Advanced Characterisation Techniques, Biophysics and Biological physics, Computational Modelling of Matter, Thin Film Techniques, Surface Physics, Physics of Nanomaterials, Computer Modelling of Dynamic Systems, Quantum Information and Quantum Optics, Quantum Devices and Sensors, Radiation and Medical Physics, Magnetic Materials System, and other relevant topics.", + "title": "M.SC Coursework Thesis for Physics And Technology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "PC5287", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "M.sc Coursework Thesis For Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "PC5288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "M.sc.(coursework) Thesis For Applied Physics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "PC5289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, participants will learn the working principles of several important smart devices that are already embedded in everyday life, from traffic control sensors to devices built into modern cell phones, and also emerging ones based on quantum technologies. Participants will also learn how to use these stories, as well as sensors in smart phones, to promote curiosity-driven and authentic learning of selected physics topics, engaging students to appreciate the emerging Internet-of-Things revolution.", + "title": "Smart Devices for Physics Teachers", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "PC5731", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE1741E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE1741P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE1741S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE1742E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE1742P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE1742S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to PPE as a multidisciplinary endeavour, by showing them how social and political philosophy can be done in a way that is strongly informed by the findings of social science. The course will be organized around discussing a few specific issues \u2013 such as inequality, nudging, climate change, and the formation of the state. Analysing these issues will introduce students to the methods and results of philosophy, political science, and economics, and show how they could be integrated to better understand and tackle social and political phenomena.", + "title": "Introduction to Philosophy, Politics, and Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE2101P", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Thursday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE2741E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE2741P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE2741S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE2742E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE2742P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE2742S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to decision and social\nchoice theory. The first half introduces the theory of\nexpected utility, according to which rational actions\nmaximise the probability of desirable consequences.\nThe second half introduces utilitarianism, according to\nwhich the right action is one which maximises the\nsatisfaction of desire for the population at large. Both\ntheories are controversial for their highly quantitative\nnature, their demanding conception of rationality and\nrightness, their insensitivity to risk and inequality, their\nprioritization of ends over means, and their tenuous\nrelationship to actual human behaviour and morality.\nThese controversies are discussed.", + "title": "Decision and Social Choice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE3101P", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Thursday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, possibly in a team, on an existing research project. It has relevance to the student\u2019s Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS or ARI, possibly with other external involve international partners. All are assessed. They may be proposed by the supervisor or student and require the vetting and approval of the Specialization Department. All will be assessed by the Specialization Department (Economics).", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE3551E", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, possibly in a team, on an existing research project. It has relevance to the student\u2019s Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS or ARI, possibly with other external involve international partners. All are assessed. They may be proposed by the supervisor or student and require the vetting and approval of the Specialization Department. All will be assessed by the Specialization Department (Philosophy).", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE3551P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, possibly in a team, on an existing research project. It has relevance to the student\u2019s Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project. UROPs usually take place within FASS or ARI, possibly with other external involve international partners. All are assessed. They may be proposed by the supervisor or student and require the vetting and approval of the Specialization Department. All will be assessed by the Specialization Department (Political Science).", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE3551S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE3741E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE3741P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE3741S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE3742E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE3742P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PE3742S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies money and its role in economic systems from a multidisciplinary perspective. We examine 5,000 years of monetary development and trace the changes in the institutions of monetary governance and stability, both domestic and international. We examine the development of monetary economics and the interplay between theory and actual monetary arrangements. We then discuss contemporary philosophical and political debates surrounding the allocation and use of the powers of money creation and destruction, including digital currencies, quantitative easing, and \u201cmodern monetary theory\u201d.", + "title": "Political Economy of Money", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4101E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Nudge policy uses people\u2019s cognitive biases to steer them towards decisions that they would have made if they were rational. This module takes an in-depth look at nudge policy, and the ethical and political issues surrounding it.\nWe first review nudge policy and the psychological theories underpinning it. We then tackle issues such as: whether governments can identify a citizen\u2019s true/rational preferences and help citizens satisfy them, whether nudges are manipulative or paternalistic, whether nudges violate principles of publicity and transparency, and what public choice analysis could tell us about nudge policy.", + "title": "The Ethics and Politics of Nudging", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4101P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Political economy studies conflict management it explains political and economic behaviour by characterizing the incentives of actors and the context in which these actors make decisions and influence outcomes. This course will introduce students to a broad class of potential interactions between political and economic actors, not only in the context of economically developed countries and consolidated democracies, but also exploring autocratic regimes, failed states, and emerging economies. Course materials will describe important empirical regularities in order to help identify key questions, guide model-building efforts, evaluate the usefulness of the economic models, and provide perspective on major politico-economic developments.", + "title": "Institutions and Political Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4102E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What makes a good life? This module aims to examine different theories of welfare (or wellbeing) as they appear in economics and philosophy, and related concerns pertaining to the distribution and measurement of the goods possessed by members of society. Topics covered might include: theories of wellbeing, cost-benefit analysis and its ethical assumptions, the value of equality, the \u2018equality of what\u2019 debate, the contrast between resources and capabilities, and the value of social equality.", + "title": "Welfare and Distribution", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4102P", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module requires students to conduct an independent research project on an approved topic at the intersection of Philosophy, Political Science, and Economics, under the supervision of a faculty member from the Economics Department. The research project, which is intended to be multidisciplinary, engaging the intellectual tools and insights from the disciplines of Philosophy, Political Science, and Economics, will be submitted as an Honours Thesis. The maximum length of the thesis is 12,000 words.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PE4401E", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module requires students to conduct an independent research project on an approved topic at the intersection of Philosophy, Political Science, and Economics, under the supervision of a faculty member from the Philosophy Department. The research project, which is intended to be multidisciplinary, engaging the intellectual tools and insights from the disciplines of Philosophy, Political Science, and Economics, will be submitted as an Honours Thesis. The maximum length of the thesis is 12,000 words.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PE4401P", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module requires students to conduct an independent research project on an approved topic at the intersection of Philosophy, Political Science, and Economics, under the supervision of a faculty member from the Political Science Department. The research project, which is intended to be multidisciplinary, engaging the intellectual tools and insights from the disciplines of Philosophy, Political Science, and Economics, will be submitted as an Honours Thesis. The maximum length of the thesis is 12,000 words.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PE4401S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module requires PPE students to pursue a policy research internship with an external organization. Interested students must secure (i) a position in suitable organizations either full time in the vacation period or part time in a regular semester (ii) a workplace supervisor; and (iii) an academic supervisor. They will submit journal entries; reflection reports; a final research paper (4-5,000 words); and make an oral presentation. The module enables PPE students to apply their multidisciplinary academic learning to real world policy research while gaining work experience.", + "title": "Research Internship Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PE4402E", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module requires PPE students to pursue a policy research internship with an external organization. Interested students must secure (i) a position in suitable organizations either full time in the vacation period or part time in a regular semester (ii) a workplace supervisor; and (iii) an academic supervisor. They will submit journal entries; reflection reports; a final research paper (4-5,000 words); and make an oral presentation. The module enables PPE students to apply their multidisciplinary academic learning to real world policy research while gaining work experience.", + "title": "Research Internship Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PE4402P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module requires PPE students to pursue a policy research internship with an external organization. Interested students must secure (i) a position in suitable organizations either full time in the vacation period or part time in a regular semester (ii) a workplace supervisor; and (iii) an academic supervisor. They will submit journal entries; reflection reports; a final research paper (4-5,000 words); and make an oral presentation. The module enables PPE students to apply their multidisciplinary academic learning to real world policy research while gaining work experience.", + "title": "Research Internship Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PE4402S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module enables the student to explore an approved topic at the intersection of Philosophy, Political Science, and Economics in depth. The student should approach an Economics lecturer to identify a topic, readings, and assignments. A written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. The ISM Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and agreed between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4660E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module enables the student to explore an approved topic at the intersection of Philosophy, Political Science, and Economics in depth. The student should approach a Philosophy lecturer to identify a topic, readings, and assignments. A written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. The ISM Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and agreed between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4660P", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module enables the student to explore an approved topic at the intersection of Philosophy, Political Science, and Economics in depth. The student should approach a Political Science lecturer to identify a topic, readings, and assignments. A written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. The ISM Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and agreed between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4660S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4751E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4751P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4751S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4752E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4752P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PE4752S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the fundamental concepts of project management, identifying nine broad project management knowledge areas. Students are given an introduction to theories relating to the management of project scope, time, cost, risk, quality, human resources, communications and procurement. The overall integration of these eight knowledge areas and the management of externalities as the ninth project management knowledge area is also emphasised.", + "title": "Fundamentals of Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 960, + "covidZone": "Unknown" + }, + { + "classNo": "19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "24", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "32", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "WT-Lab", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "31", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "WT-Lab", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR5-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ER1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR5-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "20", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR5-6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 870, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR5-6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide an overview of the concepts and applications of digital construction. The concepts of computational thinking will form the theoretical basis of this module and will be incorporated to teach how computation can be used to accomplish a variety of goals. It will also provide students with a brief introduction to programming skills with applications to digital construction. The major topics include basics of computational thinking, basic coding, and applications in digital construction such as Building Information Modelling (BIM).", + "title": "Digital Construction", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF1103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles of law in Singapore. Topics include the Singapore legal system; legal system and method including statutory interpretation; basic principles of the law of contract and the tort of negligence. These principles will be applied to and explained with examples from infrastructure and project management and the built environment.", + "title": "Infrastructure and Project Management Law", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF1107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers aspects of building performance in relation to technical and human requirements. Major topics include external and climatic effects including pollution, humidity, solar radiation sky illuminance, and noise; role and performance of building elements; passive and active control; air?conditioning and natural ventilation, artificial and daylighting; indoor air quality; building acoustics; human requirements.", + "title": "Introduction to Building Performance", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF1108", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ER1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ER1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the principles underlying the performance and safety of structures. The major topics include concepts of forces, moments and equilibrium; structural design lifecycle; principles of structural analysis; properties of common structural materials; principles of foundation design; structural behaviour of simple buildings; and high rise systems.", + "title": "Structural Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles for the measurement of work items on projects with special focus on building works. It also covers the writing of specifications for such items. It develops students' skills in conventional and e-measurement of building works covering foundations, frame, building envelope, fenestration and architectural finishes.", + "title": "Measurement (Building Works)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "2000", + "endTime": "2200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2000", + "endTime": "2200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the evaluation, selection and performance of specialised advanced construction technology for tall buildings with emphasis on the integration of construction systems. The major topics are deep foundation systems, proprietary wall and floor systems, advanced formwork and scaffolding technology, precast and prestressed concrete construction, envelope systems, and roof construction. Also covered are the basic principles relating to the selection, operation and integration of specialised equipment for construction work, and the fundamentals of site surveying, setting out and alignment systems for high-rise buildings.", + "title": "Construction Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the basic principles relating to estimating of items of the work to be undertaken on projects, and tendering. Major topics are quantitative techniques in cost analysis, cost planning, approximate estimating and tendering procedures. The principles governing the pricing of items and building up rates for items of work are also covered.", + "title": "Project Cost Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2108", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the pre-development stage of a project. Major topics include the real estate development cycle; market study and site selection; site control; due diligence; sketch of scheme; preliminary cost estimate; financial analysis; financial close; site acquisition; development of Project Brief; project programming; and design development. A basic understanding of cost-benefit analysis is required for public infrastructure projects.", + "title": "Project Feasibility", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2109", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "NAK-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental concepts of facilities management for different types of real assets. It explores the principles that underpin sustainable facilities management and the perspectives of stakeholders. Topics include FM activities, FM strategy, outsourcing, maintenance management, performance management and safety, resource management, FM technology, financial management, and procurement.", + "title": "Infrastructure and Facilities Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2110", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE-ER4", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR5-6", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to develop knowledge of the role of management in improving quality andproductivity in projects and within firms. Major topics covered include managementprinciples, models and tools that have the potential to improve the level of quality and productivity at the project and corporate levels.", + "title": "Quality and Productivity Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers project financing for infrastructure projects. Major topics include time value of money; balance sheets and income statements; financial ratios and returns; project finance structures; major stakeholders in project finance; contracts and agreements; and risk management.", + "title": "Project Finance", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers aspects of event management in the context of project and facilities management. Major topics include event context, event planning, operation and evaluation, event risk management, event sponsorship, and case studies on the management of different types of events.", + "title": "Event Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time undergraduate students who have completed at least 60MCs as at 1 January of that year and plan to proceed on an approved internship of at least 10 weeks in duration in the vacation period. This module recognizes work experiences in fields that could lead to viable career pathways that may or may not be directly related to the student\u2019s major. It is accessible to students for academic credit even if they had previously completed internship stints for academic credit not exceeding 12MC, and if the new workscope is substantially differentiated from previously completed ones.", + "title": "Work Experience Internship", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PF2402", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the properties, characteristics, selection, specfication, assembly and inter-relationship of materials utilised in modern facilities, focusing on construction materials. Major topics are materials suitable for application in relation to weather resistance, stability, durability, damp prevention, insulation, energy conservation and fire protection. Principles relating to the weathering and corrosion of materials, especially building materials, are also covered. The coverage includes practical tests to evaluate the behaviour of selected materials under various conditions.", + "title": "Materials Technology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2504", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the mechanical and electrical systems in modern facilities, with special focus on a building. It considers the design principles, operation and maintenance of major systems such as:\nheating, ventilation and air conditioning systems, power generation and distribution, vertical and horizontal transportation systems, fire fighting systems, communication and security systems, as well as piping and plumbing systems. This module also covers the engineering principles and key factors influencing the thermal environments and quantification of these factors, functional requirements of\nutilities, and the design of systems to local codes.", + "title": "M&E Systems", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF2505", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE-ER5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE-ER5", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR5-6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the execution of project baseline plans. Major topics include managing stakeholders; project control for time, cost, quality, safety, risk, health, and the environment; scope changes; variation orders; submittals and shop drawings; claims and disputes; progress payments; status reports; documentation; and use of logs, diaries, images and other control forms.", + "title": "Project Execution", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ES1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ER1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ES1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers both qualitative and quantitative research. Major topics include philosophies of science; the research process; problem formulation; literature review and hypothesis or framework; common research designs; methods of data collection; data collection and processing; data analysis; concluding the study; writing the report; and research ethics.", + "title": "Research Methods", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ER1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops further the students' skills in the measurement of items of work on projects, with a special focus on the quantification of specialist building works. Major topics are measurement of fluid flow systems, specialist and civil engineering construction works and building services.", + "title": "Measurement (Specialist Works)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This modules covers the more advanced aspects of building measurement found in projects including the use of IT in integrating measurement works and project management. Topics include measurement of deep excavation, substructures, underpinning, structures, additions and alterations and complex building forms.", + "title": "Advanced Measurement", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ES1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles relating to the various legal relationships in a project; laws relevant to procurement, contract administration, termination and insolvency; and professional negligence and concurrent liability. Students are recommended to take PF2101 Project and Facilities Management Law before taking this module.", + "title": "Project Management Law", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 5, + 6, + 10, + 11, + 12 + ], + "venue": "WT-Lab", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 5, + 6, + 10, + 11, + 12 + ], + "venue": "WT-Lab", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 5, + 6, + 10, + 11, + 12 + ], + "venue": "WT-Lab", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 5, + 6, + 10, + 11, + 12 + ], + "venue": "WT-Lab", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers how a project manager leads the project team. Major topics include theories of leadership; traits of project leaders; and leadership competencies such as visioning, strategizing, team building, decision-making, empowering, influencing, planning, and communicating.", + "title": "Project Leadership", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ER1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ES1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the nature and potential of BIM as a new format for exchanging digital and spatial information in project and facilities management. Topics include the principles of BIM, the supporting infrastructure, implementation, and the financial, legal, and other nontechnical aspects of BIM.", + "title": "Building Information Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 87, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers aspects of building performance and diagnostics, systems integration and their implementation throughout building delivery. Major topics include building systems and performance; performance mandates; total building performance; building diagnostics; integration for performance; building delivery; and stakeholder involvement.", + "title": "Total Building Performance", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-CL2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the main AI applications in the built environment. Students will study the fundamental background of AI, machine learning, data processing and uncertainty analysis, followed by AI applications in the built environment. Major topics include fundamentals of AI, classification, prediction, clustering, fault detection and diagnosis of HVAC system, energy consumption\nforecasting and solar energy generation optimization.", + "title": "AI Applications for the Built Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ES1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the maintainability issues of various categories of facilities under tropical conditions, focusing on buildings. It aims to improve the standard and quality of design, construction and maintenance practices so as to produce efficient buildings that require minimal maintenance. The module examines the durability, sustainability and maintainability of various materials and components to set benchmarks for the selection of materials, components and systems for better maintainability. The basic principles involved in building pathology-diagnosis and repair are covered.", + "title": "Maintainability of Facilities", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR5-6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR5-6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles of planning and designing of facilities such as space allocation, planning and implementation. The topics include facilities management planning process, space and design basics, human factors, universal design, programming, site analysis, master planning, environmental planning, capital planning, space management, design for various facility\ntypes.", + "title": "Facilities Planning and Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3305", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ER1", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT425", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the legal aspects of facilities management (FM) in Singapore. Major topics include legal aspects of property; town councils; building maintenance; strata management; building control; occupational safety and health; environment and waste management; fire safety; FM operations; torts in FM; FM contracts; and events management.", + "title": "Facilities Management Law And Contracts", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3306", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR5-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR5-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR5-6", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the strategic aspects of facilities management: strategy formulation, planning, studying options, delivery and review. Emphasis is put on the strategy and business of the organisation and how this translates into the outcomes for the physical workplace. Topics include strategic facilities management framework; the need for coordination between workflow and space; facilities management system and tools; the procedures; automation; integrated FM systems; and strategic FM case studies.", + "title": "Strategic Facilities Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3307", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ES1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ES1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the application of knowledge gained from academic studies to practical situations in the relevant local or foreign industry. There are also opportunities for students to be employed on funded research projects undertaken by staff members of the department. Through practical work experience, the module facilitates the development of valuable workplace and communication skills. Students are required to undergo twelve (12) weeks of approved practical\ntraining at the end of the second semester in their Second or Third Year of study. They are to submit a Log Book, an Interim Report, and an Academic Report for assessment.", + "title": "Practical Training Scheme", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PF3401", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Smart Facilities ensure that the various \u201cintelligent\u201d aspects of buildings such as building management systems, automated building systems ( ACMV, Water, Fire, Lighting etc ) all work in sync to optimize the overall functionality of a building. Major topics include Internet of Things (IoT), design and use of sensors to collect data, data analysis and visualization, and building control and automation.", + "title": "Smart Facilities", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3502", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE-ER4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT422", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE-ER4", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the essential principles of energy management in the operation and management of facilities. The major topics include quantitative energy analysis, prediction, simulation and relevant codes of practice; demand side management, building energy performance and benchmarking; energy retrofit of existing building and building energy performance contracting;\npolicy and practices in energy management and procurement.", + "title": "Energy Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF3504", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ER1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students demonstrate their research, analytical and communication skills by investigating a topic of interest to them, and of relevance to the programme. The student is expected to demonstrate an ability to pursue unaided investigations relevant to the topic chose, to communicate the findings clearly, concisely and with detachment, to draw relevant conclusions, and to offer suitable recommendations.", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "PF4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles of administering projects from the client\u2019s perspective by developing further, and applying, students\u2019 knowledge of project management law. Major topics are procurement systems, valuation of work done based on the Security of Payment Act, valuation of variations and financial control of projects. Students are recommended to take PF1107 Infrastructure and Project Management Law and PF3207 Project Management Law before taking this module.", + "title": "Contract and Procurement Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 5, + 6, + 8, + 9, + 11 + ], + "venue": "WT-Lab", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 5, + 6, + 8, + 9, + 11 + ], + "venue": "SDE1-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 5, + 6, + 8, + 9, + 11 + ], + "venue": "SDE2-ER1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 5, + 6, + 8, + 9, + 11 + ], + "venue": "SDE2-ES1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 5, + 6, + 8, + 9, + 11 + ], + "venue": "WT-Lab", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 5, + 6, + 8, + 9, + 11 + ], + "venue": "WT-Lab", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": { + "start": "2023-05-18", + "end": "2023-06-15" + }, + "venue": "SDE4-EXR-2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "SDE4-EXR-2", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "SDE4-EXR-2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental legal principles relating to disputes on projects in the various stages of preparation of documents, formation of contract, contract administration including documentation and issues of evidence; methods of dispute resolution including contractual mechanism, summary judgment, alternative dispute resolution (ADR), statutory adjudication, arbitration; enforcement and insolvency; and legal approaches to disputes with third parties.", + "title": "Project Dispute Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF4203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 5, + 6, + 10, + 11, + 12 + ], + "venue": "WT-Lab", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 5, + 6, + 10, + 11, + 12 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 5, + 6, + 10, + 11, + 12 + ], + "venue": "WT-Lab", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the knowledge required to manage projects to comply with safety and health standards, codes and regulations. Major topics include incident causation model; risk assessment and management; design for safety; safety management system; safety culture; incident investigation; and common construction safety hazards and controls.", + "title": "Safety and Health Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF4208", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-CL2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers aspects of construction enterprise\nmanagement. Major topics include the nature of\nconstruction enterprise; productivity and innovation;\nbusiness ethics; business structure; leadership and\norganization behaviour; bonds and insurance; financial\nanalysis and management; strategic planning and\nmanagement; business development; human resource\nmanagement; information management; and enterprise\nquality management.", + "title": "Construction Enterprise Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF4209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers 3D printing construction techniques (additive manufacturing) with a strong focus on 3D and 4D printable materials for smart digital construction and fast prototyping applications. Major topics include 3D printing fabrication techniques, additive materials and nanomaterials, and material properties enhancement.", + "title": "Construction 3D Printing", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the nature and potential of BIM to integrate with spatial information in facilities management. Topics include the principles of Integrated Digital Delivery Management, the supporting infrastructure, implementation and the financial aspects of Integrated Digital Delivery Management (IDDM) and Building Information Modelling (BIM).", + "title": "Advanced Building Information Modelling", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF4212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT425", + "day": "Monday", + "lessonType": "Lecture", + "size": 58, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses the main concepts and applications of building energy simulation. The main focus of the module is on design decision support using simulation tools to evaluate the impact of different passive designs and active systems. We will also review various key performance indicators, such as peak loads, energy consumption, thermal, and visual comfort. Students will also learn about the energy modelling methodology for Green Mark.", + "title": "Building Energy Analysis and Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PF4213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-CL2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the theories and industry practices of\nfacilities management in Real Estate Investment Trusts\n(REITs). It examines the strategic planning, designing for\nmaximum efficiency and managing of lettable spaces for\nvarious REITs facilities and how it develops into a viable\nworking model for the business. Emphasis is put on the coordination\nof the physical REITs workplace with the tenants\nand the work of the organisation.", + "title": "REITs Facilities Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF4306", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "SDE1-SR1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE1-CL2", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers aspects of operations and maintenance for typical infrastructure and facilities.\nMajor topics include the organization of O&M teams; resource deployments; O&M contracts & execution; management; insurances; use of various systems related to building works/ mechanical/electrical/ plumbing/ fire protection; and O&M management systems.", + "title": "Infrastructure Operations and Maintenance", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PF4309", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "SDE2-ER1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE2-ER1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "SDE1-SR5-6", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This multi-disciplinary studio-based module integrates environmentally responsive development, design and construction. The emphasis is on how environmental considerations affect the entire project cycle. Major topics include feasibility study; site planning; building designs; Green Mark assessment; approvals; construction; and occupancy.", + "title": "Green Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PF4502", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "WT-Lab", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Non-classical logic builds on classical logic in two ways.\nFirst, classical logic can be extended with modal\noperators, to reason about necessity and possibility,\nobligation and permission, and past and future.\nClassical logic can also be weakened, to accommodate\nvagueness, paradox, failures of relevance and circular\nreasoning. In this course, non-classical logic is\nexplored in both these directions.", + "title": "Non-Classical Logic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the basic principles of computation, particularly as they pertain to philosophy and related fields. Along the way, students will develop fluency with Python, a popular and easyto-learn programming language. Although the course will contain philosophical themes, it may serve as a general introduction to computation for students in all disciplines.", + "title": "Computation and Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a course on the metatheory of first-order predicate logic. It focuses on the strengths and limits of first-order languages, their semantics, and the calculi for first-order logic, along with some first-order theories, such as Peano Arithmetic and Zermerlo-Fraenkel set theory. It also explores these strengths and limitations, and their consequences, from a philosophical point of view.", + "title": "Logic and its Limits", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad overview of the major philosophical issues related to natural science to students of both science and humanities without a background in philosophy. It introduces the views on the distinctive features of science and scientific progress espoused by influential contemporary philosophers of science such as Popper and Kuhn. There is also a topical treatment of core issues in philosophy of science, including causation, confirmation, explanation, scientific inference, scientific realism, and laws of nature.", + "title": "Introduction to Philosophy Of Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to some of the major political philosophers in the Western tradition by examining their different views on such issues as the nature and basis of justice, its relation to equality and liberty, the justification of the state, and the basis of political obligation.", + "title": "Major Political Philosophers", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to some of the major moral philosophers in the Western tradition by examining their different approaches to the question of what we should do or how we\n\nshould be, including deontological, consequentialist and virtue-based approaches. We will critically analyze these philosophers\u2019 approaches using historical and contemporary sources.", + "title": "Major Moral Philosophers", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to survey the history of Indian philosophy both classical and modern. The course will begin with lectures on the Rig Veda and the Upanishads. It will proceed with the presentation of the main metaphysical and epistemological doctrines of some of the major schools of classical Indian philosophy such as Vedanta, Samkhya, Nyaya, Jainism and Buddhism. The course will conclude by considering the philosophical contributions of some of the architects of modern India such as Rammohan Ray, Rabindrananth Tagore and Mohandas Gandhi.", + "title": "Introduction to Indian Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module looks at the beginnings of modern Western philosophy in the seventeenth century, when philosophers conceived of themselves as breaking away from authority and tradition. It will deal with central themes from the thought of Descartes, Locke, Berkeley, Leibniz and Spinoza; in particular, the attempt to provide foundations for knowledge and science.", + "title": "Founders of Modern Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Two major philosophers are studied in this module: David Hume, in the first half, and Immanuel Kant, in the second. We will try to determine what each philosopher's fundamental approach to philosophy consists in, and how it gives rise to his views on the nature of causation, the external world, the self, and the limits of knowledge. As Kant's first Critique was a response to Hume's philosophical scepticism, we will pay close attention to his diagnoses of Hume's difficulties and his proposed solutions.", + "title": "Hume and Kant", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module considers some of the significant normative ethical theories in the history of moral philosophy and examines how their principles may be applied to ethical issues of practical concern. There is a wide range of topics that are typically understood to come under the category of applied ethics. These include ethical issues pertaining to the family, food, race relations, poverty, punishment, conduct in war, professional conduct in general, and so on. The specific topics to be dealt with may vary from semester to semester, and the selection will be announced at the start of the semester in which the module is offered.", + "title": "Applied Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Art and aesthetics raises deep philosophical puzzles. Sunsets are beautiful because they\u2019re pleasing. But they seem pleasing because they\u2019re beautiful. Galleries display some things because they\u2019re art. But some things are art because galleries display them. Just as the Mona Lisa resembles Lisa, she resembles it. But she does not represent it as it represents her. When one watches a horror film one feels fear, but one does not run away. When one listens to instrumental music one feels sad, but there\u2019s nothing one is sad about. This course addresses the central philosophical questions with which these puzzles are entangled.", + "title": "Philosophy of Art", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the main issues in contemporary philosophy of religion. Topics covered will be selected from the following (other topics may also be considered): arguments for the existence of God (cosmological, ontological, teleological), argument for atheism (problem of evil), religious pluralism, nature of mystical experiences, the nature of miracles, the nature of religious language.", + "title": "Philosophy of Religion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0523", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0523", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0523", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to some of the main figures and movements of Continental European Philosophy. The purpose is to provide a broad synoptic view of the Continental tradition with special attention paid to historical development. Topics to be discussed include phenomenology, existentialism, structuralism, hermeneutics, Critical Theory, and post\u2010structuralism/post\u2010modernism. Thinkers to be discussed include Husserl, Heidegger, Sartre, Levi\u2010Strauss, Derrida, Gadamer, Habermas, Lyotard and Levinas. The main objective is to familiarize the student with the key concepts, ideas and arguments in the Continental tradition.", + "title": "Introduction to Continental Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Broadly speaking, Metaphysics is the study of fundamental conceptual categories, including that of space and time, appearance and reality, mind and body, substance and existence, objects and their properties, and God. These concepts pertain to the structure of \"ultimate reality\" and generate perplexing philosophical issues, a sample of which will be discussed in this course. Some topics: the problem of universals, paradoxes of the infinite, the concept of God, paradoxes of time travel, problems of cause and effect, free will, fatalism and determinism, the mind-body problem, realism and idealism, existence, identity, and individuation, essentialism, the relation between logic and metaphysics.", + "title": "Metaphysics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an introduction to some standard accounts of how humans ought to relate to the natural environment. We begin by examining the issue of whether only humans are entitled to moral consideration, and go on to consider what other objects might be deserving of such consideration. We then explore how our attitude towards the natural world is shaped by what we take to be morally considerable.", + "title": "Environmental Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will help students identify and think critically about the ethical dimensions of markets and business organizations and provide tools for making informed and ethically responsible decisions relating to workplace issues. Specific topics may include justifications for free markets and government intervention, corporate governance and economic democracy, managerial compensation, price discrimination, hiring discrimination, employment at will, privacy and safety in the workplace, advertising, product liability, the environment, whistle-blowing, and international business.", + "title": "Business Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will trace an intellectual dialogue between two central traditions in 20th Century European philosophy the Frankfurt School of Critical Theory and post-Heideggerian Hermeneutics. The module will provide an introduction to the main thinkers of both traditions Theodor Adorno, Max Horkheimer, Herbert Marcuse for the Frankfurt School and Martin Heidegger, Hans Georg Gadamer and Paul Riceour for the Hermeneuticists. We will also examine different conceptualisations of reason and how both schools were shaped by their attempts to grapple with, and respond to, the implications of understanding reason as a practice conditioned by particular histories and forms of life.", + "title": "Critical Theory and Hermeneutics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a study of the different ways societies organize their political, economic, and other social institutions, with an emphasis on the philosophical principles that justify (or don\u2019t) alternative social arrangements. Topics will include different systems of social organization (capitalism, socialism, and democracy), specific policies (taxation, redistribution), and related normative concepts and theories (feminism, individualism, collectivism, community, freedom, equality, rule of law).", + "title": "Social Philosophy and Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will help students identify and think critically about the ethical dimensions of the medical profession and the provision of medical care and provide tools for making informed and ethically responsible decisions relating to healthcare issues. Specific topics may include the ethics of abortion, euthanasia, physician assisted suicide, physician-patient relationships, organ procurement, bio-medical research, etc.", + "title": "Medical Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Socrates and Plato stand at the source of the Western Philosophical tradition. Alfred Whitehead said that \u201cthe safest general characterization of the European philosophical tradition is that it consists of a series of footnotes to Plato.\u201d Through a close reading and analysis of several representative Platonic dialogues, this module introduces the student to the philosophy of Plato and Socrates (Plato\u2019s teacher and main interlocutor in his dialogues), and prepares him/her for PH 3222 on Aristotle\u2019s philosophy and the Honours seminar on Greek Thinkers. The module may include material on earlier Philosophy forming the background to Socrates and Plato.", + "title": "Greek Philosophy (Socrates and Plato)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module looks at the philosophical problems arising from technology and its relation to nature and human values. In doing so, it draws on a number of philosophical approaches and traditions. Among the topics to be discussed are the relation between science and technology, the way technology has shaped our perception of nature and human experience, and the ethical challenges posed by technological progress. Potential topics to be discussed will include the concept of risk, issues in environmental ethics, and socialepistemological problems arising from communication technology.", + "title": "Introduction to the Philosophy of Technology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\"Philosophy and Film\" means, in part, philosophy of film, in part, philosophy in film. Philosophy of film is a sub-branch of aesthetics; many questions and puzzles about the nature and value of art have filmic analogues. (Plato's parable of the cave is, in effect, the world's first philosophy of film.) Philosophy in film concerns films that may be said to express abstract ideas, even arguments. (Certain films may even be thought-experiments, in effect.) Questions: are philosophical films good films? Are they good philosophy? The module is intended for majors but - film being a popular medium - will predictably appeal to non-majors as well. (This module is offered as special", + "title": "Philosophy and Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the development of the concept of nature, the different roles it serves in the inquiry of various disciplines, from philosophy, the natural sciences, to literature and art, how these disciplines transform our conceptions of nature over time, and influence our interactions with nature. The module will compare different cultural traditions in their understandings of, attitudes towards, and practical interactions with, nature. It will also examine the barriers created by disciplinary differences and specializations and consider the potential of more integrated approaches to human interactions with nature.", + "title": "Concept of Nature in Inquiry", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Games can and do serve as a medium for communicating philosophical ideas. For instance, what is freedom? Are moral dilemmas possible? What is reality? Equally, philosophy can shed light on the nature of games. For instance, can games be art? What is skill and luck? What is the nature of artificial intelligence? This course will serve to explore some of these issues, using games and philosophical texts in tandem to explore various issues about what it is to be a human, and what it is to be a gamer.", + "title": "Games and Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is the nature of mind and its relation to physical body? The mental realm is among the last great unknowns in the modern view of sentient beings and their place in the Universe and is a fertile field of philosophical inquiry. This module examines central conceptual issues surrounding the idea of mind and its relation to physical body. These include the distinction between the mental and the physical, the nature of consciousness, personal identity, disembodied existence, mental representation, and the attempt to tame the mental in purely physical terms.", + "title": "Philosophy of Mind", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2241", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS5-0205", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics in the philosophy of language, especially concerning truth, meaning and reference. In particular, we will consider questions such as but not limited to whether language is mediated by convention or intention, whether understanding a language is tacitly knowing a theory of that language, whether the meaning of a name is simply its referent, whether mathematical and moral statements are true in virtue of meaning and whether sentences such as \u2018breaking promises is wrong\u2019 are statements of moral fact or simply expressions of emotion.", + "title": "Philosophy of Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Epistemology is the study of knowledge. Epistemologists want to know what knowledge is, how we acquire it, and how we should respond to arguments for philosophical scepticism, according to which there is very little that we know. We shall read the works of philosophers who have grappled with such perennial issues in philosophy, and explore and discuss various theories of knowledge. Along the way, we shall also discuss related issues having to do with justification, rationality, and the reliability of memory, testimony, intuition, sensory perception, and inductive reasoning.", + "title": "Epistemology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2243", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the first half of a two-part course which offers an introduction to philosophical debate in the Warring States period of ancient China, the Classical Age of Chinese Philosophy and the seedbed from which grew all of the native currents of thought that survived from traditional China. It will begin by considering the intellectual-historical background to the ancient philosophies and focus primarily on the Confucius (the Analects), Mozi, Yang Zhu, Mencius and Laozi, closing with a brief introduction to some of the later developments that will be covered more fully in Part II. The approach of the course will be both historical and critical, and we will attempt to", + "title": "Classical Chinese Philosophy I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the first half of a two-part course on Chinese Philosophy. This module surveys the philosophical discourse of the period from early Han dynasty up to the close of the Tang dynasty. We begin by considering the philosophical developments in Confucianism and Xuan Xue thought. Then, we turn to the arrival of Buddhism in China and survey the transformations in Chinese Buddhist philosophy through the Tang. We will treat these thinkers and their ideas in their proper historical contexts and evaluate their philosophies critically. We will also address and assess the relevance of these ideas to contemporary philosophical debates.", + "title": "Chinese Philosophical Traditions I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": ":Topics\" designates a category of module, not a specific module. Th category exists to allow the occasional teaching of specilaised subjects outside of the department's set of standard offerings.", + "title": "Topics in Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH2880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The founding of social science as a special discipline for the study of social phenomena in the late nineteenth century and its development through the twentieth century will be examined in this module. The critique of the physical science model, which was originally used to ground the theory of social science research, will be considered. This course guides students through the various philosophical debates, which shaped the development of modern social science. Attention will also be given to how social science research bears, directly or indirectly, on social practices.", + "title": "Philosophy of Social Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the relationship between law and morality. Is there a necessary connection between law and morality? Must a valid law, or legal system, satisfy certain minimal moral requirements? Is there a moral obligation to obey a valid law, irrespective of its content, or is there a significant difference between moral obligation and legal obligation? How should a judge decide hard cases where no legal rule applies? Should these decisions be based on sound moral considerations? The module will discuss these issues in the light of contemporary debates in legal and political theory, and in the context of some important texts.", + "title": "Philosophy of Law", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with an area in Moral Philosophy called 'meta-ethics'. Meta-ethics is a discussion of the nature of ethics. It is a second-order, reflective activity about ethics, and not a first-order discussion of the rights and wrongs of particular issues within ethics. Beginning with non-naturalism, the module proceeds to discuss emotivism, prescriptivism, descriptivism or naturalism, culminating in current discussion of moral realism.", + "title": "Moral Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0523", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0523", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to survey developments in Indian Philosophy in post-independence India. Figures may include, among others, Radhakrishnan, K. C. Bhattacharya, Kalidas Bhattacharya, J. N. Mohanty, Bimal Krishna Matilal, J. L. Mehta and Daya Krishna. Two broad topics will be considered first, the contemporary re-evaluation of the classical Indian tradition; and secondly, the efforts at situating the Indian tradition within the global philosophical discourse.", + "title": "Issues in Indian Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module looks at the development of twentieth century analytic philosophy through the works of some of its major exponents. These include Frege, Russell, Wittgenstein, Moore, Austin and Quine. The fundamental assumption in analytic philosophy is the idea that all philosophical problems are really problems of language and may be solved either by reformulating them in a perfect language or by a better understanding of the language that we actually speak. One of the aims of this course is to show how certain problems in ethics, metaphysics and epistemology may be solved (or dissolved) through the careful analysis of language and meaning.", + "title": "Recent Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using Existentialism as a springboard, the module discusses recent movements in Continental Philosophy. Objectives: (1) Introduce major movements in Continental Philosophy, (2) Promote understanding of the characteristics of Continental Philosophy, (3) Encourage further study in Continental Philosophy. Topics include existentialism, structuralism and post-structuralism. Target students include all those wanting to major in philosophy and those wanting to have some knowledge of European philosophy.", + "title": "Continental European Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As Buddhist philosophical issues and logic were only established in the course of Mahayanic development, we will study Mahayanic issues such as icchantika and the Mahayanic theory of knowledge. Under the latter, topics such as the concept of Buddha nature, reality, sources of knowledge, sensations, reflexes, conceptions, judgement, inferences, etc. will be examined.", + "title": "Buddhist Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the ways in which modern science and technology impact on the forms-of-life which cultures and societies have built up for their collective self-understanding and biological survival. Issues in epistemology and how changes in the concept of \"reason\" have contributed to the project of modernity will be explored. The role of technology in its simultaneous creation and destruction of social-material wealth will also be considered. This discussion will be tied to an examination of certain key issues in environmental ethics, social theory, and cultural studies.", + "title": "Knowledge, Modernity and Global Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will consider, side by side, certain `philosophical' works of literature and more orthodox philosophical works. The idea is to explore the ways and degrees to which it makes sense - also, the ways and degrees to which it does not make sense - to say that this work of fiction (a novel, say) is really about the same thing that this philosophical text is about. Turning the point around: when philosophers - like Plato or Nietzsche - employ literary techniques more characteristic of fiction, what philosophical work is hereby done?", + "title": "Philosophy and Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines how various traditions, both East and West, perceive the relationship between humans and the natural world. It will compare how, e.g., Christianity, the secular West, Hinduism, Taoism and Confucianism conceive of this relation. Commonalities and differences in the respective approaches will be discussed and highlighted. Environmental issues are now in the forefront of global attention. Our current environmental problems may arguably be said to ultimately trace their roots to (implicit) metaphysical assumptions, to cultural or religious attitudes towards the natural world, to ethical perspectives that do not accord moral consideration to non-humans.", + "title": "Comparative Environmental Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with philosophy by women (eg Christine de Pisan, Hildegaard von Bingen, Mary Wollstonecraft, Ban Zhao, Iris Murdoch, Martha Nussbaum) and philosophy about women, to counter the perceived neglect of these in many philosophical discourses. Students are encouraged to reflect critically about their own experiences as men and women who live in a gendered world, to think through the implications of gender: how women's experience may challenge some fundamental assumptions regarding human nature, femininity and masculinity, sexuality and the body, public and private life, subjectivity and representation. We will explore how these challenges to philosophy may be met.", + "title": "Feminist Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module, designed for students with some philosophical training in both western and non-western philosophy, brings together traditions of philosophy that have developed in relative isolation from one another for the purpose of comparing how different cultures have approached and thematized major issues such as knowledge, truth, values (ethical, religious, social, political and aesthetic) and the practices they inform, language and the place of the human. It aims to elucidate the assumptions implicit in different ways of thinking about these issues and investigate how issues may be related in the light of these assumptions.", + "title": "Introduction to Comparative Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Aristotle is one of the two most important ancient Greek philosophers. This module complements the level 2000 module, PH 2222 Greek Philosophy (Socrates and Plato), and adds to the preparation for the Honours seminar on Greek Thinkers. Readings will be selected from various works representing the wide range of Aristotle\u2019s philosophical interests and achievements. In-depth exploration of a specific area (e.g. metaphysics, or ethics) or topic (e.g. theory of the soul or practical wisdom) will focus on one or two key texts. The module may include later Hellenistic philosophy (e.g. Epicureanism, stoicism, or scepticism) or contemporary development of Aristotle\u2019s philosophy.", + "title": "Greek Philosophy (Aristotle)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a study of the main contending contemporary views about goodness and virtue, principles of moral evaluation, and moral decision-making. These include deontological, consequentialist, and contemporary virtuebased and contractarian theories. Emphasis will be placed on securing a thorough understanding the arguments used to derive fundamental moral principles and to justify claims about our moral obligations. Such study aims to reveal the kinds of issues that are involved in analyzing what constitutes rational considerations for moral action, and the strengths and weaknesses of the rival theories.", + "title": "Normative Ethical Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the main problems of consciousness concerns whether consciousness can be explained solely in terms of brain activity and the like. Some philosophers think so. After all, science has successfully explained various cognitive functions in such terms, and it\u2019s natural to think that its success will eventually extend to consciousness. Other philosophers disagree, finding it hard to fathom how consciousness can arise from the purely physical. To help us decide which answer is correct, we shall examine various important positions on the nature of consciousness including physicalism, dualism, eliminativism, and idealism.", + "title": "Consciousness", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The self is a philosophical crossroads where mind, metaphysics, and morals come together to bear on questions of profound interest to all who partake of the human condition. Topics to be covered include the spatial and temporal boundaries of the self, the rationality (or otherwise) of the fear of death, the idea that the self is an illusion, the idea that it is a social construction, and the relative importance of biology, psychology, and phenomenology to the question of who we are.", + "title": "The Self", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We often appeal to probabilistic notions in everyday life. We say things such as \u2018It\u2019ll probably rain later\u2019, \u2018It\u2019s unlikely that an asteroid will collide with Earth any time\nsoon\u2019, and \u2018There\u2019s a chance that the restaurant will be open\u2019. But what exactly is probability? We shall investigate various answers to this question by looking\nat various theories of probability, including the subjective theory, the epistemic theory, the frequency theory, and the propensity theory. Along the way, we\u2019ll\nsee how issues in the philosophy of probability bear on issues in the philosophy of science, metaphysics, and epistemology.", + "title": "Chance and Uncertainty", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Plato holds that the world of sensible objects is a mere shadow of an ideal realm that transcends experience. Locke maintains that sensible objects have intrinsic natures that are exhausted by a small number of basic spatial and temporal properties. Kant argues that we can never know the natures of things in themselves, beyond the fact that they give us certain senseimpressions. Mill construes a physical object as a bare propensity for sensations to occur in certain patterns. In this module, students engage with the major metaphysical systems of Western philosophy, examining how each coordinates subjective experience with objective reality.", + "title": "Appearance and Reality", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics at the intersection of philosophy of mind and language, such as whether thought depends on talk or vice versa, whether we think in words or images, whether those words are words of English or a sui generis mental language just for thinking, whether animals which can\u2019t talk can think and whether the mind is like a computer. These questions are central to contemporary philosophy and language and are also an important case study in the relationship between the methods of analysis, experiment and introspection in philosophical psychology.", + "title": "Language and Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3245", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a survey of classic paradoxes, ancient and modern. No mere brain\u2010teasers, these riddles have exercised some of history\u2019s best minds, often with startling results. How is motion possible? What is a gamble at given odds worth? Is time travel possible? Why do nations honor their treaty obligations? What are numbers? The contemplation of paradoxes drives the search for answers to these questions and more, and by grappling with the paradoxes, students gain familiarity with key techniques and concepts of decision theory and logical analysis which are useful both in philosophy and other fields of inquiry.", + "title": "Paradoxes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3246", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course considers topics in philosophical logic. Consider, for example: 'This sentence is false'. If it is true, it is false. But if it is false, it is true. Resolving the paradox is extremely difficult, requiring revision to classical logic or the theory of truth. The course will cover this and other topics in philosophical logic such as vagueness and the sorites paradox, the paradoxes of material implication, essentialism and necessity, and probability and induction, all of which turn out to be deeply entangled with hard philosophical questions.", + "title": "Philosophical Logic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3247", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "According to classical logic all names refer to existing things, and it\u2019s a tautology that something exists. Moreover, the simplest combination of propositional modal logic with classical predicate logic is constant domain modal logic, according to which everything which in fact exists necessarily exists. This course investigates free logics, which relax the assumptions of classical predicate logic, and variable domain modal logics, which allow different things to exist in different possibilities. Finally, it covers quantification in intuitionist, many-valued and relevant logics.", + "title": "Quantification and Modality", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3250", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course investigates controversies surrounding the nature of truth, a notion which is of central interest but which generates widespread and fundamental disagreement. We will address questions like: Is truth an objective matter, independent of how we conceive it, or is it relative to cultures or worldviews? Can there be truths that are unknowable in principle? How should our understanding of truth be affected by fundamental and far-reaching paradoxes involving the concept? Does truth even have a nature at all? Discussing these questions will also shed light on other important philosophical notions, such as reality, objectivity, knowledge, justification, and representation.", + "title": "The Nature of Truth", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course investigates some of the deep and puzzling philosophical issues arising from mathematics. Some are metaphysical and semantic: What is mathematics about? Are there such things as mathematical objects (numbers, functions, sets, etc), and if so, do they exist in the same way as more familiar entities such as tables and chairs? Others are epistemological: How do we obtain mathematical knowledge? Does it arise from pure reason alone, or does the empirical world play a role? In the course of addressing such questions, we will examine a number of influential views, including logicism, constructivism, platonism, fictionalism, and structuralism.", + "title": "Introduction to Philosophy of Mathematics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Kant is widely regarded as one of the greatest philosophers, if not the greatest, and his Critique of Pure Reason is widely considered his greatest work. This course will delve into this work, entering into the intricate framework of Kant\u2019s Transcendental Idealism. Major topics include Space and Time, the Categories, the Analogies (focusing on causation) and the Antinomies (focusing on the issue of freedom). Although the course focuses primarily on Kant\u2019s metaphysics and epistemology, this grounding is expected to improve one\u2019s understanding of the basis of Kant\u2019s ethics, particularly when dealing with the Transcendental Dialectic.", + "title": "Kant's Critique of Pure Reason", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is the second part of a two part course which offers an introduction to philosophical debate in the Warring States period of ancient China, the Classical Age of Chinese Philosophy and the seedbed from which grew all of the native currents of thought that survived from traditional China. Continuing from Part I, we will be discussing Later Mohist Logic, Gongsun Long and other \u2018Sophists\u2019, Zhuangzi, Xunzi and Hanfeizi in this module. The approach of the course will be both historical and critical, and we will attempt to both situate Classical Chinese philosophical discourse in its intellectual-historical context and to bring out its continuing relevance.", + "title": "Classical Chinese Philosophy II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This second half of a two-part course on Chinese Philosophical Traditions focuses on Early Modern Chinese Philosophy. This module focuses on the changes in the Confucian tradition between the late Tang through the Qing. We cover the main figures in Neo-Confucianism, and examine in detail the philosophies of Zhu Xi (1130-1200) and Wang Yangming (1472-1529). We close with a discussion of the philological turn in the Qing dynasty. We treat these thinkers and their ideas in their proper historical contexts and evaluate their philosophies critically. We also address and assess the relevance of these ideas to contemporary philosophical debates.", + "title": "Chinese Philosophical Traditions 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Epistemologists have recently been applying the tools of their trade to issues of practical import. Some examples include the issue of how to define fake news, of who to believe when purported experts disagree, of whether or why it is good to have a diversity of views, of whether stereotyping or profiling is ever epistemically beneficial when making medical diagnoses or designing algorithms, and of how we should balance any potential epistemic benefits against ethical costs in such cases. This module aims to equip students with the epistemological tools required to understand, discuss, and analyse such issues in depth.", + "title": "Applied Epistemology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH3551R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses important issues concerning the structure and development of scientific knowledge. These involve questions regarding the character of scientific method, the demarcation of scientific theories from other types of theories, whether the growth of science can be characterised as cumulative and progressive, the role of socio-cultural factors in shaping the content of scientific theories, the criteria deployed to determine which of a number of competing theories are scientifically acceptable, and the extent to which scientific theories can be said to give a realistic description of the world.", + "title": "Philosophy of Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will discuss some of the central issues in political philosophy such as the basis and limits of toleration and individual liberty, the importance of a shared morality, and the role of the state in meeting the claims of different conceptions of what a worthwhile life should be. In plural societies, with a diversity of different values, what would be a fair basis for social co-operation?", + "title": "Political Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines different issues in meta-ethics or normative ethics. It asks questions such as: Can ought be derived from is? Are there natural laws? Is morality about an agent\u2019s character or actions? Are actions morally justified by consequences or compliance with moral laws or principles? It may also examine and assess different schools of moral philosophy, such as utilitarianism, Kantian ethics or virtue ethics, or a current debate among moral philosophers, for example, the nature and role of intuition, or emotions, in acting morally.", + "title": "Issues in Moral Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An in-depth study of a major topic in Indian philosophy. We may study a particular philosopher such as Sankara or Nagarjuna. We may concentrate on a particular school of Indian Philosophy such as Advaita Vedanta or Madhyamika. We may also consider modern Indian thought within the context of contemporary cultural theory by considering figures such as Tagore or Gandhi.", + "title": "Topics in Indian Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Specific topics from in East Asian Philosophy (e.g., Chinese, Japanese, Korean) will be discussed in the module. The aim is to introduce students to a more in depth study of traditional East Asian Philosophical texts and issues debated in them. The texts selected will focus on specific topics and traditions and will vary from year to year.", + "title": "Topics in East Asian Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A study of the work of a major figure in philosophy. The philosopher studied may be from the Asian or Western tradition, from any period up to the present day. The philosopher selected may be someone important who has not been given much coverage in other courses.", + "title": "A Major Philosopher", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will deal with the thought of the four major classical phenomenologists: Edmund Husserl, Martin Heidegger, Maurice Merleau-Ponty and Jean Paul Sartre. Readings will be selected from Husserl's Ideas and Cartesian Meditations, Heidegger's Being and Time, Merleau-Ponty's Phenomenology of Perception and Sartre's Being and Nothingness.", + "title": "Phenomenology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A study of the work of a major figure in philosophy. The philosopher studied may be from the Asian or Western tradition, from any period up to the present day. The philosopher selected may be someone important who has not been given much coverage in other courses. This module deals with specific Buddhist thinkers and philosophical schools. Topics chosen vary from year to year, and could include the philosophy of Madhyamaka, Zen Buddhism, the Three Treatise School, Vasubandhu, Nagarjuna, and major figures in Chinese Buddhism.", + "title": "Topics in Buddhism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An examination of selected texts from the pre-Socratic philosophers, Plato, Aristotle, as well as philosophers of the Stoic, Epicurean and Sceptic schools of thought. The emphasis may vary from year to year, and may focus on ethics, epistemology, metaphysics, logic, or philosophy of mind.", + "title": "Greek Thinkers", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with specific topics of current interest and controversy in Western philosophy. The topics to be discussed may be in, but are not limited to, philosophy of science, philosophy of language, philosophy of psychology, epistemology, metaphysics, ethics, or social and political philosophy.", + "title": "Topics in Western Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore an advanced topic in epistemology in depth. Some possible topics are the problem of scepticism, including realist and anti\u2010realist responses to it, the nature of certainty and the relationship of knowledge to chance and credence, the internalism versus externalism debate about the nature of knowledge and justification, and the definability of knowledge in terms of truth, belief, justification and their cognates. The module may also explore a problem from formal epistemology, such as the lottery paradox, the problem of logical omniscience, or probabilistic approaches to the problem of induction.", + "title": "Issues in Epistemology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth an advanced topic in the philosophy of mind. Possible topics are the unity of consciousness, the relationship between consciousness and time and the relationship between phenomenology and intentionality. The course may also focus on alternative conceptions of the mind to physicalism, such as dualism, panpsychism, or phenomenalism, issues from the philosophy of perception, such as the problems of illusion, hallucination, and the inverted spectra, or issues from philosophical psychology and cognitive science, such as the modularity of mind, the nature of tacit knowledge, or the relationship between neural states and mental states.", + "title": "Issues in Philosophy of Mind", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module identifies and compares the philosophical traditions generally labelled Eastern and Western. Aspects of comparative analysis include philosophical reasoning, linguistic style, logic of arguments, and substantive content. Comparison between traditions is cross-cultural and can result in dialogues across boundaries of space and time, and can also provide a forum to demonstrate the universality of human thought. Possible topics include, for example, Wittgenstein and Daoist philosophy, Nietzsche and Buddhism.", + "title": "Comparative Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines at least one recent movement in Continental European Philosophy. Recently, the module has been concerned with Philosophical Hermeneutics. Objectives (1) Promote understanding of the main arguments in one or more of the recent movements in Continental Philosophy, (2) Familiarize students with the main debates, (3) Encourage further work in Continental Philosophy. Topics covered include hermeneutics, Critical Theory and post-structuralism.", + "title": "Recent Continental European Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The self image of human beings as morally responsible agents to which praise and blame may be legitimately ascribed, entities to which autonomy and dignity might be attributed, appear conditioned upon our having a robust freedom to will and to do. But do we really have such a freedom? And just what is presupposed in\nthe area of free will by our practice of assigning moral responsibility to each other in the first place? Through discussing a series of seminal writings on the topic, the student is introduced to the philosophical controversies in the area of freedom and moral responsibility.", + "title": "Freedom and Moral Responsibility", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental issues are now in the forefront of global attention. Our current environmental problems may arguably be said to ultimately trace their roots to (implicit) metaphysical assumptions, to cultural or religious attitudes towards the natural world, to ethical perspectives that do not accord moral consideration to nonhumans. This module will involve a critical and thorough discussion of specific topics in environmental philosophy. These may include topics in both Eastern and Western environmental traditions. Examples of topics that may be discussed are: the ethical problem of future generations, intrinsic values in nature, varieties of eco-feminism, and ecology in Neo-Confucian thought.", + "title": "Topics in Environmental Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to examine specific philosophical topics or issues (e.g. causation, the nature of mind, moral motivation) from a historical perspective. The\ntopics or issues in question may be examined within the framework of different philosophical traditions (e.g. Chinese, Indian and Western), or across\ntraditions. It is aimed at providing philosophy students with an understanding and appreciation of the history of the discipline, so that they gain a wider perspective, and can better locate current philosophical debates in the context of broader movements in intellectual history.", + "title": "History of Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth some advanced topics in metaphysics. Some possible topics include whether similar things have universals in common, whether time flows, whether past and future exist, whether a whole is something over and above the sum of its parts, whether chance is objective, whether there are other possible worlds, and whether numbers, gods, or chairs and tables exist.", + "title": "Issues in Metaphysics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4240", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth some advanced topics in philosophical logic. Possible topics include extensions to classical logic, such as modal logics and\nhigher order logics, non\u2010classical logics, such as intuitionistic, many\u2010valued and relevant logics, or philosophical questions about logic.", + "title": "Issues in Philosophical Logic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth some advanced topics in philosophy of language. Possible topics are the nature of truth, Dummettian anti\u2010realism,\ncontextualism, relativism, or two\u2010dimensionalism. We may also consider the application of philosophy of language to issues in other areas of philosophy, such as the debate between cognitivists and noncognitivists in metaethics, or the question of whether metaphysical disputes are merely verbal.", + "title": "Issues in Philosophy of Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth an advanced topic in aesthetics. Possible topics are the ontology of art, the nature of the imagination, the definition of art, subjectivism about beauty, relativism about taste, or the appreciation of nature. Alternatively, we may consider the aesthetics of a particular artform, such as music, film, fiction, painting or dance, or of a particular philosopher, such as Immanuel Kant or Nelson Goodman. Finally, we may consider issues that arise at the intersection of aesthetics and other areas in philosophy, such as the debate over fictionalism in metaphysics.", + "title": "Issues in Aesthetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore advanced issues in philosophy of mathematics. The purpose of the course is to examine a small number of advanced topics at the forefront of contemporary philosophy of mathematics. While the topics may vary from year to year, possibilities include logicism and neo-logicism, set theory and the search for new axioms, structuralism, the applicability of mathematics, determinacy and categoricity, informal provability and the mechanism vs anti-mechanism debate. The literature considered will raise and discuss fundamental philosophical questions concerning the ontology, metaphysics, epistemology, and semantics of mathematics and mathematical discourse.", + "title": "Issues in Philosophy of Mathematics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4244", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Immanuel Kant is one of the most important philosophers and his major works are influential in many areas of contemporary philosophy. This module allows students to study the philosophy of Kant in some depth. Each offering of this module will select a key body of works from Kant\u2019s philosophical corpus, such as (1) his Critique of Pure Reason or (2) his main texts in Moral Philosophy or (3) his philosophy of the natural and/or human sciences. It may also include the study of major contemporary scholarship on Kant.", + "title": "Kant", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the philosophy of the 19th Century German philosopher Friedrich Nietzsche. It will proceed chronologically through Nietzsche's most significant writings, such as The Gay Science; Thus Spoke Zarathustra; Beyond Good and Evil; On the Genealogy of Morality. Most of the attention will be on primary sources. All materials will be in English.", + "title": "Nietzsche", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4262", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to Classical Chinese through close reading and practice at translation of selected passages from philosophical texts, including a\nphilosophically oriented grammatical introduction in English to the Classical Chinese language. It is intended for students who have little or only average second language reading ability in Mandarin. Topics include the fundamentals of Classical Chinese grammar and readings from philosophical texts written in Classical Chinese from different periods. This module will provide the language foundation required for students intending to do graduate work in Chinese Philosophy, and enable them to work with primary materials.", + "title": "Classical Chinese Through Philosophical Texts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A selection of contemporary discussions on East Asian Philosophy (e.g., Chinese, Japanese, Korean) will be discussed in the module. The aim is to introduce students to the more recent scholarly developments in the modern study of traditional East Asian Philosophy. The readings selected will focus on specific topics and will vary from year to year.", + "title": "Contemporary Readings in East Asian Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A dissertation on an approved research topic not exceeding twelve thousand words.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PH4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A dissertation on an approved research topic not exceeding twelve thousand words.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PH4401HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will intern in an educational organization approved by the Department. (e.g. Logic Mills, which specializes in courses on analytical thinking skills to schools and other educational organizations). During the internship, they will learn to use their philosophical skills to teach, and through practice, reflect on the usefulness of Philosophy in education practice and intellectual development.", + "title": "Internship: Philosophy for Teaching", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4550", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module invites students to engage in normative thinking about a range of issues related to politics, most of which have to do with questions about the legitimate exercise of political power. We will consider liberal views of political legitimacy and various criticisms of these views. These debates concern issues such as liberty, equality, moral values, and rights.", + "title": "Advanced Political Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH5420", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module invites students to engage in normative thinking about a range of issues related to politics, most of which have to do with questions about the legitimate exercise of political power. We will consider liberal views of political legitimacy and various criticisms of these views. These debates concern issues such as liberty, equality, moral values, and rights.", + "title": "Advanced Political Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH5420R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is intended to provide a framework for discussing thematically related questions arising in contemporary philosophy of science and technology. The focus will be on an in-depth study of a specific debate within general philosophy of science (e.g., scientific realism), or on a close examination of a branch within the philosophy of special sciences (e.g., philosophy of biology, philosophy of physics). In exceptional cases, the module may be structured around a suitable recent monograph or collection of papers.", + "title": "Philosophy of Science and Technology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH5423", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Philosophy of Science & Technology", + "title": "Philosophy of Science & Technology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH5423R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus on the sustained study of ethical theory involving one or more of the following four theoretical approaches to ethics: Utilitarianism, Deontology, Virtue Theory and Contractarianism. If necessary, the module may additionally study applications of the theory/theories to a variety of applied issues.", + "title": "Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH5430", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 14, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus on the sustained study of ethical theory involving one or more of the following four theoretical approaches to ethics: Utilitarianism, Deontology, Virtue Theory and Contractarianism. If necessary, the module may additionally study applications of the theory/theories to a variety of applied issues.", + "title": "Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH5430R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH5510", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will intensively study a major movement in twentieth century Continental Philosophy. The module will consider phenomenology, hermeneutics, deconstruction or postmodernism. Other topics from the Continental tradition or a combination of more than one topic may also be considered under exceptional circumstances. Focus will be on the historical development and contemporary uses of the movement under consideration.", + "title": "Topics In Continental Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH5650", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics in Continental Philosophy", + "title": "Topics in Continental Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PH5650R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Philosophy in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will intensively examine a historical period in Western Philosophy. Historical traditions that may be studied may include (but is not restricted to) Greek Philosophy, Medieval Philosophy, Early Modern Philosophy, Twentieth-Century Analytic\nPhilosophy, and Twentieth Century Continental Philosophy. The module will especially attend to the major philosophical problems that define each of these historical frameworks. The relations\nbetween the major thinkers of the period under consideration will be profiled.", + "title": "Topics in History of Western Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore an advanced topic in epistemology in depth. Some possible topics are the problem of scepticism, including realist and anti\u2010realist\nresponses to it, the nature of certainty and the relationship of knowledge to chance and credence, the internalism versus externalism debate about the\nnature of knowledge and justification, and the definability of knowledge in terms of truth, belief, justification and their cognates. The module may also explore a problem from formal epistemology, such as the lottery paradox, the problem of logical omniscience, or probabilistic approaches to the problem of induction.", + "title": "Advanced Epistemology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth an advanced topic in the philosophy of mind. Possible topics are the unity of consciousness, the relationship between\nconsciousness and time and the relationship between phenomenology and intentionality. The course may also focus on alternative conceptions of the mind to physicalism, such as dualism, panpsychism, or phenomenalism, issues from the philosophy of perception, such as the problems of illusion, hallucination, and the inverted spectra, or issues from philosophical psychology and cognitive science, such as the modularity of mind, the nature of tacit knowledge, or the relationship between neural states and mental states.", + "title": "Advanced Philosophy of Mind", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves an advanced examination of some key ethical positions in environmental philosophy. It will focus on the meta-ethical questions raised in respect of the different ethical positions. Coverage of these positions will\nbe both wide and deep.", + "title": "Advanced Environmental Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth some advanced topics in metaphysics. Some possible topics include whether similar things have universals in common,\nwhether time flows, whether past and future exist, whether a whole is something over and above the sum of its parts, whether chance is objective, whether there are other possible worlds, and whether numbers, gods, or chairs and tables exist.", + "title": "Advanced Metaphysics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6240", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth some advanced topics in philosophical logic. Possible topics include extensions to classical logic, such as modal logics and higher order logics, non\u2010classical logics, such as intuitionistic, many\u2010valued and relevant logics, or philosophical questions about logic.", + "title": "Advanced Philosophical Logic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth some advanced topics in philosophy of language. Possible topics are the nature of truth, Dummettian anti\u2010realism, contextualism, relativism, or two\u2010dimensionalism. We may also consider the application of philosophy of language to issues in other areas of philosophy, such as the debate between cognitivists and noncognitivists in metaethics, or the question of whether metaphysical disputes are merely verbal.", + "title": "Advanced Philosophy of Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore in depth an advanced topic in aesthetics. Possible topics are the ontology of art, the nature of the imagination, the definition of art, subjectivism about beauty, relativism about taste, or the appreciation of nature. Alternatively, we may consider the aesthetics of a particular artform, such as music, film, fiction, painting or dance, or of a particular philosopher, such as Immanuel Kant or Nelson Goodman. Finally, we may consider issues that arise at the intersection of aesthetics and other areas in philosophy, such as the debate over fictionalism in metaphysics.", + "title": "Advanced Aesthetics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will intensively examine philosophical traditions from the histories of Chinese or Indian Philosophy. Traditions may\ninclude (but is not restricted to) Confucianism, Taoism, neo-Confucianism, Legalism from Chinese Philosophy and Vedanta, Indian Buddhism, Nyaya, modern Indian philosophy from the Indian tradition. The emphasis will be on the building of a solid foundation in the philosophical grammar of a non-Western\nphilosophical tradition.", + "title": "Traditions in Asian Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6320", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to provide an intensive grounding in one of the major areas in contemporary Analytic Philosophy. The module will consider philosophy of language, philosophy of mind, epistemology, or metaphysics. Other topics from the analytic tradition or a combination of more than one topic may also be considered under exceptional circumstances. Focus will be on contemporary issues and problems currently engaging the philosophers belonging to the analytic tradition.", + "title": "Topics in Analytic Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6540", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Philosophy in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will study a topic in various areas of philosophy, ethics, metaphysics, epistemology, aesthetics, political philosophy, a topic that crosses area boundaries. An example might be \"Theories of Human Nature\". The module might approach the topic from within the perspective of one philosophical school or from a comparative perspective that examines the views of more than one philosophical school, eastern or western.", + "title": "Philosophical Topics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PH6760", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PH6770", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0523", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide the knowledge and understanding on the complete development plan ensuring successful lead identification in the drug discovery process, describing preclinical studies, formulation and product developments, clinical trials and post-marketing studies. The importance of quality, quality assurance and control and key global/regional regulatory frameworks and strategies for product development will be covered. Following post-marketing approval, upcoming innovative regulatory and marketing strategies for effective lifecycle management of a pharmaceutical product such as improved patient compliance, revenue growth, expanded clinical benefits, cost advantages, life extension exclusivity etc will also be introduced.", + "title": "The Billion-Dollar Pill - Bench to Bedside Drug Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Friday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers essential topics in medicinal and synthetic organic chemistry that serve as the foundation for understanding the principles of drug discovery and development. Functional groups and ring structures are the key features that confer physicochemical and reactivity properties to chemical and biological drug molecules. Physicochemical properties that contribute to variation in drug likeness will be dealt with in detail. Functional groups and rings that are susceptible to structural derivatisation will be discussed in terms of the reaction mechanism involved illustrating how structural modifications can create better drug likeness.", + "title": "Foundation for Medicinal and Synthetic Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS1110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed to provide fundamental biochemistry knowledge which is important and relevant for pharmaceutical science students to relate the knowledge to drug discovery and development. The module will emphasise the relevance and application of biochemistry in pharmaceutical practices.", + "title": "Fundamental Biochemistry for Pharmaceutical Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module gives insights into the pre-formulation considerations covering different physicochemical properties important to pharmaceutical formulation development, as well as giving an introduction to dosage forms including solutions and disperse systems. The fundamental knowledge of the physicochemical properties, manufacture, and applications of these dosage forms will be discussed.", + "title": "Principles of Pharmaceutical Formulations I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS1114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module adopts a biological approach to explain and illustrate foundational pharmaceutical chemical principles that are essential for the understanding of pharmaceutical science related to drug synthesis, drug properties, drug action and preparation of biomaterials. Three broad topics will be covered, including bio-organic chemistry, radical chemistry and enzymatic catalysis.", + "title": "Essential Topics in Pharmaceutical Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS1120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed to provide fundamental knowledge and understanding of the normal function of the human body. The underlying physiological processes within each of the following human body systems will be covered: 1. musculoskeletal system, 2. cardiovascular system, 3. blood and immune system, 4. respiratory system, 5. endocrine system, 6. digestive system, 7. renal system, and 8. nervous system.", + "title": "Physiology for Pharmaceutical Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on PHS1101, this module introduces the fundamental principles behind drug-receptor theory that serve as a foundation for understanding both the drug and the target in drug development. Theory of drug-receptor binding and impact on drug action and design will be exemplified with pharmaceutically relevant and clinically approved drug products to illustrate the application of fundamental knowledge of cellular and biochemical processes in drug target identification and pharmacophore optimization. Completion of this module will further prepare students for future modules on biopharmaceutics, drug metabolism and strategic development of pharmaceutical drug products.", + "title": "Physicochemical and Biochemical Principles of Drug Action", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS2102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Friday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on PHS1101, this module covers topics in pharmaceutical chemistry, synthetic organic chemistry, and pharmaceutical analysis that are key to drug synthesis, stability and analysis in the process of drug discovery and development. The importance of the concept of quality control and quality assurance in the drug development process will be highlighted in light of pharmacopoeial requirements for ensuring product safety and quality based on both active pharmaceutical ingredients and excipients. Assays validation will be covered in light of pharmaceutical regulatory requirements. Completion of this module will prepare students for modules on development and regulation of pharmaceutical and health products.", + "title": "Essentials of Pharmaceutical and Synthetic Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS2103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Friday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Protein- and nucleic acid-based biopharmaceutical products and therapeutics such as monoclonal antibodies, growth hormones, vaccines and biotechnologically derived diagnostic aids/tests are making significant medical advances in improving human health. This module therefore provides students with the knowledge in the physicochemical properties, pharmacology and production of such biopharmaceuticals, as well as the principles and advances in biotechnological techniques that have increasing applications in medicine. The principles and practical capability of various analytical instruments for macromolecule characterization and quality assurance of biopharmaceuticals will be also be covered.", + "title": "Macromolecules in Pharmaceutical Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS2104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Friday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives insights into the pre-formulation considerations covering different physicochemical properties important to pharmaceutical formulation development, as well as giving an introduction to dosage forms including solutions and disperse systems. The fundamental knowledge of the physicochemical properties, manufacture, and applications of these dosage forms will be discussed.", + "title": "Principles of Pharmaceutical Formulations I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS2105", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will demonstrate the application of chemical and pharmacological sciences in the processes of drug discovery beginning from lead identification phase to pre-clinical study phase. The main learning will focus on how molecules are modified into potential drug candidates through achieving suitable pharmacodynamic and pharmacokinetic profiles. Approaches in pharmacophore identification and principles in lead optimisation will be introduced. Chemical diversity in drugs will be illustrated through a selection of commercially available drugs. Structure-activity relationship will be elucidated using drugs of different pharmacological actions. The approaches to how drug disposition (ADMET) is optimised in the pre-clinical phase will be highlighted.", + "title": "Basic Principles of Drug Design and Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS2115", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an introduction to solid dosage forms including tablets, capsules, powders and granules, as well as topical products and transdermal delivery. Formulations of emerging importance including biologics, polymers and biomaterials will be discussed. Fundamental knowledge of product quality and stability will be covered.", + "title": "Principles of Pharmaceutical Formulations II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS2117", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide the knowledge and understanding on the complete development plan ensuing successful lead identification in the drug discovery process, describing preclinical studies, formulation and product developments,\nclinical trials and post-marketing studies. The importance of quality, quality assurance and control and key global/regional regulatory frameworks and strategies for product development will be covered. Following postmarketing\napproval, upcoming innovative regulatory and marketing strategies for effective lifecycle management of a pharmaceutical product such as improved patient\ncompliance, revenue growth, expanded clinical benefits, cost advantages, life extension exclusivity etc will also be introduced.", + "title": "Drug Product Development and Lifecycle Management", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS2120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to train students in the principles and practical capability of pharmacopeia assays and various analytical instruments for pharmaceutical analysis. In particular, students will apply the analytical techniques in the characterization of active pharmaceutical ingredient (API), the quality assurance of dosage forms and the analysis of biological fluids, coupled with hands-on experience with instrumentation and real-life problem solving.", + "title": "Analytical Techniques and Pharmaceutical Applications", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS2143", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the theory and practical applications of major tools and techniques used in in the continuum of drug discovery and development. Factual knowledge in pharmaceutical/medicinal chemistry techniques, such as synthetic skills, lead optimization, molecular modelling, will be integrated with laboratory practice.", + "title": "Laboratory Techniques in Pharmaceutical Science I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS2191", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-05-01A", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 1ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PHS2310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "PHS2312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "PHS2313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a comprehensive foundation of the concepts of pharmacokinetics and biopharmaceutics. The application of these concepts are important in the drug discovery and development process. Major topics include basic principles, concepts and processes of drug absorption, distribution, metabolism and excretion, kinetics of drugs following intravascular and extravascular routes of administration, design of appropriate dosage regimens, and application of pharmacokinetic concepts in drug design and development.", + "title": "Pharmacokinetics and Biopharmaceutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS3116", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to provide an understanding of the important guidelines, tools and practices of quality risk management that can be applied to all aspects of pharmaceutical quality including development, manufacturing, distribution, and the inspection and submission/review processes throughout the lifecycle of drug. The module will cover the history and philosophy of product quality management, the concept of quality by design, overview of major quality management systems such as \"Six Sigma\", \"Total Quality Management\", \"Lean\nManagement\" etc. The module will also provide an overview of various types of audits and inspections that occur in the pharmaceutical industry.", + "title": "Pharmaceutical Quality Management", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS3122", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Friday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will gain knowledge of the various techniques in biotechnology and their applications in the manufacturing of biopharmaceuticals and biomedical research, the physicochemical properties, pharmacology and the formulation of commonly used biopharmaceuticals, as well as the principles of the mechanism of some biotechnologically derived diagnostic aids/tests. Major topics to be covered include biotechnologically derived therapeutics such as insulin, growth hormones, cytokines, enzymes, monoclonal antibodies, vaccines, blood products, diagnostic aids/tests for urine analysis, plasma glucose, plasma lipids, HIV and pregnancy, as well as gene therapy, transgenic technology, gene silencing and gene editing technology.", + "title": "Biotechnology for Pharmaceutical Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS3123", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module extends from PHS2191 to introduce the theory and practical applications of further major tools and techniques used in the continuum of drug discovery and development. Factual knowledge in drug metabolism and pharmacokinetic techniques, such as enzyme kinetics, CYP inhibition, drug-drug interaction assays; and in pharmaceutical biology, such as cell viability/toxicity testing, DNA extraction and purification, aseptic techniques/cell culture, will be integrated with laboratory practice.", + "title": "Laboratory Techniques in Pharmaceutical Science II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS3191", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-01A", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with knowledge and practical skills in the fundamentals of pharmaceutical microbiology and controls in microbial contamination of pharmaceutical products, medical devices and the environment. This module will give an insight into the nature of microorganisms, with greater emphasis on bacteria and their significance to the pharmaceutical industry and medicine. It will discuss the characteristics and morphology of microorganisms, their growth requirements, reproduction, enumeration and identification and relate this knowledge to disinfectants and disinfection, and the concept of sterility and sterilization methods for pharmaceutical products and medical devices.", + "title": "Microbiology for Pharmaceutical Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS3220", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The modules, PHS3288 and PHS3289, are part of the UROPS program in Faculty of Science to provide students with the unique opportunity to gain research experience via hands-on project work under the mentorship of faculty members and research staff. The UROPS experience allows students to pursue research to address real-world problems in the pharmaceutical setting, and to enhance their creative thinking as well as communication and presentation skills. Such experience prepares students for future careers in the pharmaceutical sector and for postgraduate training.", + "title": "UROPS in Pharmaceutical Science I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS3288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The modules, PHS3288 and PHS3289, are part of the UROPS program in Faculty of Science to provide students with the unique opportunity to gain research experience via hands-on project work under the mentorship of faculty members and research staff. The UROPS experience allows students to pursue research to address real-world problems in the pharmaceutical setting, and to enhance their creative thinking as well as communication and presentation skills. Such experience prepares students for future careers in the pharmaceutical sector and for postgraduate training. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "UROPS in Pharmaceutical Science I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS3288R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The modules, PHS3288 and PHS3289, are part of the UROPS program in Faculty of Science to provide students with the unique opportunity to gain research experience via hands-on project work under the mentorship of faculty members and research staff. The UROPS experience allows students to pursue research to address real-world problems in the pharmaceutical setting, and to enhance their creative thinking as well as communication and presentation skills. Such experience prepares students for future careers in the pharmaceutical sector and for postgraduate training.", + "title": "UROPS in Pharmaceutical Science II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS3289", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The modules, PHS3288 and PHS3289, are part of the UROPS program in Faculty of Science to provide students with the unique opportunity to gain research experience via hands-on project work under the mentorship of faculty members and research staff. The UROPS experience allows students to pursue research to address real-world problems in the pharmaceutical setting, and to enhance their creative thinking as well as communication and presentation skills. Such experience prepares students for future careers in the pharmaceutical sector and for postgraduate training. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "UROPS in Pharmaceutical Science II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS3289R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PHS3310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. Module is open to FoS undergraduate students from Cohorts AY2020/2021 and before, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PHS3311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 16-20 weeks during regular semester. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "FOS Undergraduate Professional Internship Programme 3S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "PHS3312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduates students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 3S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "PHS3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Exchange Enrichment Level 3000", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS3994", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The availability of healthcare products is governed by the regulations of individual jurisdictions, resulting in the disparity of requirements hindering the access of valuable therapeutics to patients. As such, the development of therapeutics should always consider the regulations involved and the impact to the timely availability to patients, and eventually the effectiveness of the healthcare system. This module aims to introduce the fundamental concepts of regulatory affairs, covering major frameworks, trending innovation in regulatory processes, key influencers and concerns arising from gaps in regulatory capacities. This knowledge expands on the understanding of product life cycle management, and enables a further appreciation of the intricate relationships among stakeholders in healthcare.", + "title": "Regulation of Healthcare Products", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS4121", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to nurture the passion of final year students for inquiry and knowledge creation through fostering their intellectual rigor in tackling research questions related to pharmacy and pharmaceutical sciences. It also aims to not only provide hands-on research experience gained through project work, but also to develop students\u2019 higher order thinking skills, such as the critical evaluation of information, as well as hone students\u2019 written and oral academic communication skills in the context of pharmaceutical sciences and practice. Students will carry out their projects under the supervision of Pharmacy academic staff and/or approved external industrial or academic partners.", + "title": "Honours Project in Pharmaceutical Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "PHS4199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on synthetic strategies for the construction and synthesis of new bioactive small molecules with potential therapeutic properties. It also\ncovers topics in peptide and oligonucleotide syntheses which are fundamental in the production of some small sized biologics. The module supplements knowledge in medicinal chemistry to give students an appreciation on how to manipulate molecules through chemical synthesis to achieve better bioactivity.", + "title": "Synthetic Strategies for Drug Substances", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS4220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Exchange Enrichment Level 4000 Module", + "title": "Exchange Enrichment Level 4000 Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS4991", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Exchange Enrichment Level 4000 Module", + "title": "Exchange Enrichment Level 4000 Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS4992", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Exchange Enrichment Level 4000 Module", + "title": "Exchange Enrichment Level 4000 Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PHS4993", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces psychology as an empirical social science. The aim is to provide students with a broad overview of the different areas of psychology. There are two emphases (1) expose students to the diversity of topics within the discipline of psychology; (2) provide students with questions and approaches used by psychologists. In doing so, we look at the biological basis for perception, cognition and behaviour, and introduce students to the subfields of behavioural, developmental, social, cognitive, and clinical psychology.", + "title": "Introduction to Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E22", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E16", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 275, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 275, + "covidZone": "Unknown" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0306", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS5-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E21", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E16", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E20", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "E21", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E22", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 275, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 275, + "covidZone": "Unknown" + }, + { + "classNo": "E13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS6-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E18", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0114", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E19", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS6-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at equipping students with the critical thinking and analytical skills necessary as a foundation for evaluating or carrying out empirical research in psychology. It is an essential module for psychology major students. It consists of two sections the first deals with the design of psychological research; the second covers basic descriptive and inferential statistical techniques. Students will be taught how to design their own empirical study, to carry out appropriate statistical analyses on the data collected so as to draw valid conclusions, and how to write up their findings. Ethical aspects of psychological research are covered.", + "title": "Research and Statistical Methods I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL2131", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 260, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "Unknown" + }, + { + "classNo": "E14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the methodological and statistical base prepared by PL2131. An essential module for psychology major students, it aims to provide knowledge and experience in conducting a psychological study. Methods of data collection in laboratory and field settings are taught alongside commonly-used statistical techniques for data analysis. Students are introduced to issues of design and analysis in factorial experiments and correlational studies. Students also do experiments in class and learn the use of computer statistical packages for data analysis. A group empirical project is required.", + "title": "Research and Statistical Methods II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL2132", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Thursday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 220, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Psychology Exchange Module", + "title": "Psychology Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PL2711", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a comprehensive, one-semester overview of the connection between the brain and behaviour. The course is geared towards psychology majors and serves as a starting point for those looking to take advanced courses in cognitive neuroscience. The course will examine nervous system function, brain organization, vision and other sensations, emotion, and cognitive and motor processes. Clinical topics such as the impact of drugs on behaviour, sleep disorders, Parkinson's disease, and schizophrenia will also be covered.", + "title": "Biological Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0205", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the psychological study of human information processing; learning and memory; acquisition, retrieval, and forgetting; and general knowledge, concepts, reasoning, and related issues in cognition. The impact of computational approaches on cognition is considered.", + "title": "Cognitive Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W8", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "W12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W6", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "W8", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is primarily for psychology major students, for whom it is a core area. It aims to provide an overview of the major issues in developmental psychology, with a main focus on infancy and childhood. The development of individual differences is reviewed. Stage and process theories of cognitive, social and linguistic development are evaluated. The extent to which research findings have pan-cultural and local application is considered throughout the course. The importance of empirical research is stressed, and students are recommended to take PL2131 before reading this module.", + "title": "Developmental Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "E5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "Unknown" + }, + { + "classNo": "E9", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a broad foundation for the study of human social behaviour. Topics such as attitudes, social cognition, interpersonal relations and group processes are discussed. One aim of this course is to introduce students to the theories and research of social psychology. A second aim is to help students appreciate how the findings of social psychologists are relevant and applicable to the day-to-day situations in our lives.", + "title": "Social Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W10", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W11", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W8", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W9", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W3", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W7", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0601", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0304", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This core module covers most of the common mental health problems identified for children and adults, e.g. eating disorders, behavioural problems, attention deficits, learning disabilities, schizophrenia, anxiety, stress, depression, personality disorders, sexual adjustment, substance abuse, suicide, and dementia. The lectures and discussion groups provide an introduction to clinical intervention, but emphasis is placed on the theoretical formulation of problems. Whenever possible, films and case studies are used to supplement the textbook and readings, and a visit to the local Institute of Mental Health will usually be arranged.", + "title": "Mental Health and Distress", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0305", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E9", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Thursday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "E12", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0119", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0308", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "Unknown" + }, + { + "classNo": "E10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to undertake an individual research project under staff supervision. Students wishing to take this module are advised to obtain additional details from the Department.", + "title": "Independent Research Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3231", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers aspects of current research in the fields of psycholinguistics and cognitive psychology. The aim of the module is to provide a broad theoretical and empirical foundation for the study of the cognitive processes underlying how people understand, produce, and learn language. Lectures, tutorials and workshops will include the following topics: speech perception, word recognition, language production, semantics, bilingualism, language acquisition, acquired and developmental disorders of language.", + "title": "Language & Cognitive Processes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Social Cognition uses cognitive processes to explain how people think and behave in the social world. It operates on the assumption that interpersonal behaviour is cognitively mediated in that social interactions are determined by what we know and believe about ourselves, other people, and the situations in which we encounter them. Topics to be covered include person perception, person memory, social categorization, social judgment, unconscious processes, motivation and emotion, and the development of social cognition.", + "title": "Social Cognition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0307", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Thursday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended to expose students to applications of the facts and principles of scientific psychology to industrial and organisational settings. Topics include the structure and function of organisations; selection and training; management of efficiency (motivation, working conditions, and coping attitudes); and group processes in organisations. Lectures build the knowledge base of the students; case discussions encourage applications of their knowledge.", + "title": "Industrial and Organisational Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3239", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Monday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0305", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is built around applications of theoretical and experimental psychology to group processes. The psychological processes underlying human interactions in groups are the principal foci. Topics included are group formation, development of group structure, formulation of group goals, team building, leadership and power within groups, conflicts, group decision-making, and group changes. Psychological tools and skills relevant for research in field settings are also examined.", + "title": "Group Dynamics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to research on personality and individual differences. The main theories and measurement of related constructs will be discussed with an emphasis on normal, rather than abnormal, populations. Topics covered may include personality traits, motivational constructs, cognitive ability constructs and cognitive styles. Reference will also be made to some current applications such as personnel selection.", + "title": "Personality & Individual Differences", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Thursday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the role of psychological factors in physical health. Topics covered may include the relationship of mind and body, the role of human behaviour in health, stress and coping as they relate to health, the nature of illness, patient-practitioner relations, chronic illness and disability, death and dying, and the relationship of psychology to such important health problems as AIDS, cancer, heart disease and pain.", + "title": "Health Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of the module is to introduce students to the basic methods of vision science, and to fundamental aspects of, and current research in, sensation and perception. The methods part of the course introduces the student to both classical and modern psychophysical methods, as well as the basic concepts of fourier analysis. The content part examines aspects of sensory psychology, with emphases on vision and audition. We will trace an arc that starts from a consideration of neural processing, and ends with the representation of the perceptual world in the brain.", + "title": "Sensation and Perception", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Adolescence is a period of many transitions. This module will explore some of these transitions, ranging from the physical changes related to puberty to the psychological processes of identity formation to the social challenges of negotiating new patterns of relationships with family and peers.", + "title": "Adolescent Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Learning is a fundamental area of psychology and everyday life. This module focuses on how humans and other animals learn information, for example associations between different stimuli in their environment, or between their actions and the outcomes of those actions. The concepts of classical (Pavlovian) conditioning and instrumental (operant) conditioning will be introduced, alongside various learning phenomena (e.g. acquisition, extinction, spontaneous recovery, overshadowing, blocking, sensory preconditioning, latent inhibition). While some mathematical learning theories such as the Rescorla-Wagner model will be discussed, an effort will be made to relate these more abstract concepts to adaptive everyday life functioning as well as clinical issues such as anxiety disorders, addiction and behavioural therapy.", + "title": "Learning and Conditioning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3248", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Friday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0119", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will examine contemporary theories of human memory. Topics range from sensory memory all the way to long-term memory. Evidence for different types of memory systems such as episodic, generic, implicit, and procedural will be discussed. Biological and developmental bases for human memory will also be covered. The course will use these topics to explore the link between research, theory, and data on human memory.", + "title": "Memory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module concerns the application of experimental psychology research to the improvement of human-machine/environment interactions. This is not designed as a \"cookbook\" module where the principles of good human factors are merely enumerated. Rather, the emphasis will be placed on the theoretical principles underlying information processing and human performance. The topics include: signal detection and information theory; attention; spatial displays; navigation; memory and training; selection of action, manual control; time-sharing and workload; and the effects of stress on human error.", + "title": "Human Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will focus on areas of development in infants and young children: these include cognitive, language, and emotional development. This module aims to give students who are interested in child development a chance to examine in further depth aspects of child development, as well as some areas of atypical development. In particular, we will explore how current research informs our understanding of normal development in infants and children. Topics covered include developmental disorders such as autism, atypical language such as speech language impairment and aspects of parent-child attachment.", + "title": "Atypical Development and Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an exploration of current socialcognitive research on emotions. Emotions are complex, multiply-determined states that influence our experiences, biochemistry, thinking, actions, relationships, motivations, and behaviours, as well as our health. Topics to be covered in this module include 'what is the nature of emotion?', 'what functions, if any, do specific emotions serve?', 'what are their antecedents and their consequences?', among others. The discussion of emotion will stretch across various sub-disciplines in psychology, such as developmental psychology, biological psychology, social and personality psychology, cognitive neuroscience, social-cognition, cross-cultural psychology and evolutionary psychology.", + "title": "Social-Cognitive Perspectives on Emotion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "W3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0306", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Friday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "W4", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will provide an overview of past and current theories on how emotions are implemented in the brain and how they interact with cognitive, behavioural and psychophysiological systems. In accord with current insights, individual emotion systems including happiness, anger, fear, and disgust will be introduced and potential dysfunctions of these systems in relation to psychological and psychiatric disorders will be discussed. The knowledge provided in this course will be applicable to other areas of psychology including but not limited to clinical, social, industrial/organizational and experimental psychology.", + "title": "Psychobiological Perspectives on Emotion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of current psychological theories in the understanding of human responses to psychological trauma and life adversities. Topics include traumatic guilt, acute stress reactions, post-traumatic stress disorder (PTSD), complex PTSD, and other disorders (e.g. personality disorders, depression) resulting from interpersonal, relational and family violence, sexual victimization, traumatic loss and death, disaster, and other critical life events. Resilience and post-traumatic growth in the face of life challenges will also be discussed. This module focuses on understanding trauma in the context of comorbidities and complexities, and how to adapt treatment to a wide range of trauma reactions.", + "title": "Trauma Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an intermediate level course in child psychology. It is intended to build greater understanding of the interface between child psychology and medicine, with a focus on how illness can affect development in children. The impact of acute and chronic illness on children transcends their physical health and this course is aimed at teaching students about distinct neuropsychological, emotional, interpersonal and daily living issues that emerge for children who become ill.", + "title": "Introduction to Paediatric Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3255", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Infant development refers to changes in cognitive, social and motor abilities that occur during the first year of life. The course will include an overview of\nresearch methods in psychological research on infants and of psychological theories that have inspired infancy research. Research in prenatal development that bears\non infant cognitive development will be covered. In addition, recent research on visual perception, linguistic development, numerical knowledge, categorization, social\u2010emotional development and motor development will be covered.", + "title": "Infant Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the history, evolution, and contemporary practices of clinical psychology. Students will use the scientist practitioner model to study underlying theoretical frameworks and the skills and practices of clinical psychologists. Ethical and professional issues covered include classification and diagnosis, clinical research, assessment, case formulation and treatment planning, interventions, and prevention. The materials will be discussed in the context of typical work settings of clinical psychologists (e.g. mental health, forensic or neuropsychological) and across varied client populations (e.g. children, adults, couples).", + "title": "Introduction to Clinical Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3257", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Decision Neuroscience is the study of the neural mechanisms of human decision making. This module will provide a broad introductory examination of this topic, to facilitate an intermediate understanding of cognitive neuroscience. This module builds upon the introductory level Biological Psychology module and helps prepare students for honours level discussion modules in the area.", + "title": "Decision Neuroscience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to the study of ageing that views the ageing process as a normal part of lifespan development. This includes exploring what ageing means, examining which factors are involved in healthy and pathological aspects of ageing, and distinguishing between ageing stereotypes and reality. Students will study the research for age\u2010related change (and stability) in several psychological domains in the context of changing paradigms of ageing, examining various issues in ageing (e.g., transition to retirement, health\u2010related changes, optimal ageing factors), as well as multiple influences on the experience of ageing (e.g., caregiving, societal policies, attitudes toward elderly).", + "title": "Psychology of Ageing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the study of the origins, development and cognitive processing of morality. The module will cover the beginnings of moral psychology, the early theories of moral development, the contemporary developmental research on infants\u2019 and children\u2019s moral decision\u2010making, and the influence of society (e.g., media, law, parenting) on children\u2019s moral development. Through lectures, discussions, course readings, and essay writing we will analyse and debate whether morality is innate, adaptive, and unique from other aspects of cognitive development.", + "title": "Moral Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3260", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to further develop students\u2019 skills in statistical analyses for psychological research, with emphasis on the use of statistical software (e.g., SPSS, R) and a focus on applications to PL4401 Honours Thesis. It adopts a hands-on approach to various statistical techniques, some of which extend from the techniques covered in PL2131 and PL2132 while others are more advanced topics. Four recurring themes underlie the learning of these techniques: (i) formulating research questions into statistical hypotheses, (ii) selecting the right statistical tests for the hypotheses, (iii) carrying out the tests, and (iv) properly interpreting the results and drawing conclusions.", + "title": "Statistical Techniques in Psychological Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to the different methodologies used in cognitive research such as classical psychophysics, signal detection theory, reaction time paradigms, judgment tasks, similarity ratings, memory measures, and psycholinguistic methods. Selected topics on perception, attention, memory, categorisation, language, problem solving, and decision making will be used to illustrate these methods. Students will work in small groups to design and conduct an experiment using these methodologies and submit individual research reports. Prior background and interest in cognitive psychology will be very helpful.", + "title": "Lab in Cognitive Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3281", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this lab will be perception and attention. Students will be introduced to the different methodologies used in cognitive research such as classical psychophysics, signal detection theory, and reaction time paradigms. Selected topics on perception and attention will be used to illustrate these methods.", + "title": "Lab in Perception and Attention", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3281A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to the different methodologies for assessing memory performance such as simple and complex memory spans, direct and indirect tests of memory. Selected techniques in manipulating encoding and studying retrieval in short-term memory, working memory, and long-term memory will be covered. Students will work in small groups to design and conduct an experiment using these methodologies and submit individual research reports. Prior background and interest in cognitive psychology will be very helpful.", + "title": "Lab in Memory and Cognition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3281B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module extends students' experience of laboratory work to the fields of cognitive psychology and psycholinguistics. On a general level, students will learn about the principles of experimental design, ethics appraisal, data collection, and statistical analysis. More specifically, students will identify a research question, conduct their own experiment, and write up a laboratory report on topics relevant to models of word recognition and reading.", + "title": "Lab in Reading Processes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3281C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Lab in Music Perception and Cognition introduces students to experimental music psychology. Specifically, students will ask research questions, conduct experiments, and write research manuscripts on topics relevant to music perception and cognition. Prior training in cognitive psychology and music will be essential.", + "title": "Lab in Music Perception and Cognition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3281D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This lab module focusses on key research topics within the area of psycholinguistics and cognitive psychology. Students are introduced to different methodologies used to study the cognitive and mental processes related to speech perception and spoken word recognition. Students will work in small groups to identify a research question, conduct their own experiment, and write up a laboratory report on topics relevant to models of speech perception and spoken word recognition.", + "title": "Lab in Speech and Language Processes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3281E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to the different methods used in psychology research pertaining to the learning sciences. The learning sciences is an emerging interdisciplinary field that aims to understand learning processes and how those processes can be optimised in educational contexts. Major investigative approaches\u2014including experimental, qualitative, replication, survey, systematic review, and meta-analytic techniques, as well as laboratory, online, and classroom research\u2014will be addressed. This module will culminate in the opportunity to conduct learning sciences research via a group project on a topic of students\u2019 own choosing.", + "title": "Lab in Learning Sciences", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3281F", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This laboratory is intended to expose students majoring in psychology with both correlational and experimental approaches to research on how people feel, think, and act in relation to others. Studies will include topics such as attitudes and social cognition (e.g., beliefs, attitudes and values, social influence, attribution and impression formation) and interpersonal and group relations (e.g. aggression, altruism, attraction, prejudice and discrimination, followers and leaders). Both laboratory and field methods of testing hypotheses will be covered. Importance of using personality and culture of people as moderators of their social behaviors will be emphasized.", + "title": "Lab in Social Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3282", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This first half of the module will explicate different methods and paradigms in social psychology with interpersonal relationships studies. The design aims to provide students a broad overview of methodologies as well as a deeper understanding of the important issues in interpersonal relationship research. In the second half of the module, students would carry out group projects, applying their knowledge to conducting a research study. They will have hands-on experiences at different research stages, from how a research study is formulated, crystallized and carried out to data analysis, results presentation and writing-up.", + "title": "Lab in Interpersonal Relationships", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3282A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This first half of the module will explicate different methods and paradigms in social psychology with attitudes and persuasion studies. The course aims to provide students with a broad overview of methodologies as well as a deeper understanding of the important issues in attitudes research at the same time. For the second half of the module, students will carry out group projects, applying their knowledge to conducting research. They will have hands-on experiences at different research stages, from how a research question is formulated, operationalized and investigated, to data analysis, result presentation and writing-up.", + "title": "Lab in Attitudes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3282C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Studying what motivates people and how to influence their mindsets requires a disciplined scientific approach. This course introduces research methods that are foundational skills for social psychological research in the area of mindsets and motivation. Students will develop an understanding of how to articulate a research question relevant to mindsets or motivation, and conduct a study using the appropriate methods to test it. They will gain an appreciation of the basic theories and practice of quality research in mindsets and motivation topics.", + "title": "Lab in Mindsets and Motivation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3282D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This lab module will give students a practical introduction to methods and techniques in developmental psychology. The exact age range and techniques targeted may vary from infancy to adolescence to the aged depending on the instructor and the availability of participants. The aim is to cover essential ethical, theoretical, methodological, and practical issues of importance when conducting research. Observational and experimental methods will be covered, and basic techniques and tools of developmental assessment will be introduced. Target students are single psychology majors, especially those who are also taking or intending to take theoretical courses in Developmental Psychology.", + "title": "Lab in Developmental Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3283", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to give students a practical introduction to some of the concepts, methods, and techniques used in research or practical interventions involving adolescents. The aim of the module is to cover essential conceptual, methodological, ethical, and practical issues of importance when conducting research or designing practical interventions on adolescents, especially in Singapore and Asia.", + "title": "Lab in Adolescent Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3283A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This lab module will introduce to students linguistic and non-linguistic ways of human communication from psycholinguistic perspectives. It addresses the following issues: 1) How do speakers communicate? 2) How do they modify the ways of communication to accommodate different circumstances? 3) When and how do children develop different ways of communication? 4) Are there cross-linguistic differences in ways of communication? 5) How do communication-impaired adults and children incorporate other modalities to communicate? Theoretical and empirical issues will be discussed. Students will also conduct scientific studies to examine the latest issues of human communication.", + "title": "Lab in Development of Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3283B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to give students a practical introduction to the concepts, methods, and techniques used in developmental psychology research involving early childhood. The aim of the module is to cover essential conceptual, methodological, ethical, and practical issues of importance when conducting research in early childhood development.", + "title": "Lab in Early Childhood Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3283C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide psychology majors with hands-on experience using research designs and methods commonly used in applied psychology such as health, engineering, education, and industrial/organizational psychology. Students will work in teams to carry out research exercises on specific topics in applied psychology. Topics to be covered will vary depending on the specific application of psychology. The focus will be an understanding the rationale, design, and interpretation of empirical research in the specific application. Target students are psychology majors who intend on a career in psychology or to pursue a postgraduate degree.", + "title": "Lab in Applied Psychology (Scale Construction)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3284", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Biological Psychology (cognitive neuroscience) is a fast-moving multidisciplinary and fundamental area at the cutting-edge of psychology research that involves psychology, neuroscience, medicine, statistics and physics. Students will be introduced to functional magnetic imaging (fMRI) and event-related potentials (ERP) as well as the underlying physiological processes, technical design issues and cutting-edge experiments. Students will then work in small groups to propose experimental designs. The best design will be selected and all students will help conduct the experiment at one of the local hospitals. Individual student groups will then independently process, analyze and interpret these data. Prior background in biological psychology is essential.", + "title": "Lab in Biological Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3285", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide psychology majors with hands-on experience using research designs and methods commonly used in health psychology, including both questionnaire and experimental methods. Students will work in teams to carry out research exercises on specific topics in health psychology. Topics to be covered may include health attitudes, health behaviours, and psychophysiological responses to stress among others. The focus will be an understanding the rationale, design, and interpretation of empirical research in the specific application within health psychology. This module is particularly relevant for psychology majors interested in a career in psychology or who wish to pursue a postgraduate degree.", + "title": "Lab in Health Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3286", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the foundation training in the use of major research skills and techniques in clinical and abnormal psychology. Students will have opportunities to observe and conduct research in clinical settings. This module is particularly relevant for psychology major students who are interested in pursuing a postgraduate research or professional training program in clinical psychology.", + "title": "Lab in Clinical Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3287", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to theories/models in personality, psychopathology, and the interface between the two fields. The module will provide students with a broad overview of the commonly-used designs, methods, and statistical techniques, while at the same time cultivate an appreciation of specific design issues in personality-psychopathology research. In the second half of the module, students will take on group projects, and apply their knowledge to conducting a research study. They will have hands-on experiences at different research stages, from how a research study is formulated and carried out to data analysis, results presentation, and report writing.", + "title": "Lab in Personality and Psychopathology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3287A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide psychology majors with hands-on experience using research designs and methods commonly used in decision science. Topics to be covered include the decoy effect, framing effect, ambiguity aversion, delay discounting, fairness, game theory, and cooperation. We will review seminal and most recent research on these topics and discuss implications for understanding human decision making in real-life situations. Students will then work in small groups to design and conduct an experiment using these methodologies/paradigms and submit individual research reports.", + "title": "Lab in Decision Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3289", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project. UROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed. UROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3551R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics not already covered by level-3000 modules can be taught under this module. The contents will vary from time to time, contingent upon the interests and expertise of the teaching staff.", + "title": "Topics in Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The overarching objective of the class is to allow students to become knowledgeable about basic pharmacology and understand how neuro-pharmacology can lead to changes in behaviour. The teaching style will be lecture with discussion of relevant scientific studies from the animal and human literature. Major topics covered will be neurophysiology, neuropharmacology, effects of alcohol, cocaine, marijuana and nicotine on humans.", + "title": "Alcohol, Drugs and Behaviour", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL3880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is designed for students to acquire important scientific knowledge and practical professional skills in the areas of psychometrics and psychological testing. Topics covered include paradigms in psychological testing and research, conceptual bases of test construction, principles of reliability, and validation strategies.", + "title": "Psychometrics and Psychological Testing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0308", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to provide students with an integrated overview of the development of modern psychology since around 1850. Special attention will be given to the emergence of biological, behavioural, cognitive and social theoretical approaches. The intention is to help students appreciate the paradigm changes that have taken place in the last 150 years, and thus also appreciate the strengths and weaknesses of current paradigms.", + "title": "History and Systems of Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the student to the fundamental issues of cognitive science. Specifically, the main concern is how we might model cognition. The topics include the modes of representation, issues relating to the processing of information, and the nature of cognitive architectures. Both classical models of cognition and connectionist models will be considered. There will be several sessions of computer simulation of basic connectionist models. This course is mounted for students interested in how we might study how the mind works.", + "title": "Cognition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course concerns development in infancy, childhood, adolescence and adulthood. It reviews in depth important cognitive, social and emotional changes during these phases, the theories of development that document these changes and the rich variety of research methodology that track these changes. Students will get a genuine understanding of how current information on human development contribute to, modify or challenge extant theories of development and how far developmental psychology has progressed in the last 50 years.", + "title": "Developmental Processes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces recent research findings in Cognitive Neuroscience - in particular, functional brain imaging (fMRI and ERP). We will explore whether brain imaging techniques have illuminated what each part of the brain actually does, and how these different parts interact functionally, before finally discussing recent applications of such findings. Two currently popular application areas are brain-machine/computer interfaces (using brain-waves to directly control robotic devices) and creating new \"sensory abilities\" in those people who have sensory impairments (e.g., the blind or deaf). The style of the course will be an informal one, and the \"lectures\" should be treated more like seminars/discussions. The emphasis will therefore rely heavily on preparation work outside the lectures that culminates in a fruitful debate during the lectures. To facilitate this style, several lectures will begin with students' critiques of research articles before \"opening up the floor\" for general discussion.", + "title": "Cognitive Neuroscience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with contemporary social psychology. Topics include cognitive and learning perspectives in social psychology, quantitative methods in social psychology, attitudes and attitude change, attribution and social perception, altruism and aggression, sex roles, interpersonal attraction, social influence, leadership and power, intergroup relations, and cultural psychology. In discussing these topics, illustrations are given of how research programmes are conducted in social psychology.", + "title": "Social Psychology: Theories and Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide students with an overview of the content area of counselling psychology. This is an introductory course that can serve as a foundation to specialised training in counselling assessment and interventions. Students will learn basic helping skills and interviewing techniques, receive didactic and experiential training applicable to human service related fields.", + "title": "Counselling Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4208", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cognitive neuropsychologists analyze case-study data from brain-injured children and adults in order to develop and evaluate models of normal cognitive processes. This module provides an opportunity for students with core knowledge in cognitive psychology, to examine how patterns of impaired performance have informed models of bilingualism, speaking, listening, reading, writing, object recognition, face perception, memory and attention. Wherever possible, video-tapes of patients with these deficits will be used to supplement the main textbook and journal articles. The ensuing discussion will hold implications for rehabilitation, but the emphasis will be on theoretical and methodological issues in the field.", + "title": "Cognitive Neuropsychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to give students an understanding of evolutionary theory and its implications for psychological theory. The idea that behaviour, like physical structure, is evolved in response to selection pressures carries implications for understanding phenomena in a range of diverse fields such as logical reasoning, altruism, competition, mate selection, aggressive behaviour, attachment and child maltreatment. Pitfalls and limitations in the speculative use of evolutionary explanations will be considered, and the way in which such explanations complement those couched in terms of psychological processes or mechanisms will be explored.", + "title": "Evolutionary Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4214", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is primarily for psychology major students. The module covers the science and practice of personnel selection. The purpose of the module is to familiarise students with personnel selection research and heighten students' awareness of validity and utility issues that emerge in the practice of personnel selection. Topics covered include job analysis, theories and measurement of performance and individual difference characteristics, design of validation research, and evaluation of validation data.", + "title": "Personnel Selection", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the techniques of psychological assessment that are widely used by practising psychologists. Content will include the properties of assessment techniques; the context of assessment and its applications in a clinical setting; practical, social, and ethical considerations in assessment; and an introduction to the assessment of individual differences in intelligence, cognition and ability/disability. Students will be exposed to some commonly used psychological tests. They will learn to follow the standardised rules of administration, how to use test manuals to interpret test scores, and how to construct a professional psychological report from their findings.", + "title": "Psychological Assessment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is an advanced course in Abnormal Psychology. It builds on the fundamental concepts introduced in PL3106/PL3236, by focusing on some specific areas, e.g., mood, psychotic and anxiety disorders. The role of stress and emotion in psychopathology, and the treatment of these disorders, with drug therapy and cognitive-behavioral therapy will be considered. The student will be introduced to recent advancement in research and practice in these and other cognate domains. The focus of the seminars will be discussion of current basic and clinical research papers.", + "title": "Advanced Abnormal Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores topics on language development in infants and young children: these topics include speech perception, development of phonology, syntax and morphology, vocabulary development, and bilingual language development. We will examine theoretical issues and research methods in these areas. Through the series of seminars which make up this module, we will read and discuss journal articles, with particular attention to current research. Students may benefit from taking PL3234 (Developmental Psychology) before this module.", + "title": "Early Language Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the neural underpinnings of memory. This course will cover the biological bases of the different memory systems and how these may interact with biological systems that support other cognitive functions like attention, language etc. Additionally, the various neuroscience methods that are used to study these will be discussed.", + "title": "Neuroscience of Memory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces advanced students to the field of neuropsychology in the medical environment. The work of neuropsychologists in hospitals is discussed with clinical case examples. Students are familiarised with basic concepts of clinical practice, case formulation, and ethical principles in working with hospital patients. They are also provided with site visit opportunities to increase their appreciation for the work of the helping professions among people with neurological impairment and psychosocial dysfunction.", + "title": "Introduction to Clinical Neuropsychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an advanced course in child mental health issues. It is intended to build a foundation of knowledge and concepts necessary in the specialized area of child clinical psychology, by focusing on theory, research and clinical application in the area of childhood mental health. Theories that will be highlighted include developmental psychopathology, the diathesis-stress model and cultural diversity models. Mental health issues relevant to the following periods of development will be discussed: infancy/early childhood; school age; adolescence. The seminars will consist of lectures, as well as in-class, small-group discussion of current clinical topics and selected research papers.", + "title": "Mental Health and Distress in Children", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course reviews historical and cultural perspectives of the psychology of gender. Various genetic, biological, and social determinants of gender differences in physical and sexual attributes, cognitive abilities, personality, and social behaviours are examined. Socialization processes by way of parenting, play, school and media will be explored with regard to gender roles and stereotypes. Consequences of gender bias will be discussed in relation to individual development, education, vocation, media, and physical and mental health. New trends in gender relations, as well as gender conflicts and abuses of power such as battering, sexual assault, and sexual harassment will be explored.", + "title": "Psychology of Gender", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to equip students with an understanding of criminal behaviour and the criminal justice agencies\u2019 response to offending in the local settings. Students will be introduced to psychological theories of criminal behaviours, psychopathology associated with offending, offender assessments, offender programming, re-entry initiatives, professional practice and research.", + "title": "Correctional Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4226", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The DNA revolution is coming of age also in the social sciences. The purpose of this course is to introduce students to the basic concepts needed to understand genomics and how to apply these ideas in their own field of study.\n\nSyllabus includes Mendelian Genetics, Quantitative Genetics QTL (twin studies, heritability), Basics of Molecular Genetics, Complex Traits\u2010 Relationship between Phenotype and Genotype, Nature and Nurture, Epigenetics, Personality Genetics, Social Behavior, Addiction, Mental Disorders & Human Diversity and Genetic Counselling.\n\nWhile having O-level biology is advantageous, prospective students with no biology background are encouraged to peruse Chapters 1, 3, 8 and 18 of Human Heredity 11th Edition by Michael Cummings (available in the library) to gauge their comfort level with the biology.", + "title": "Behavioral Genetics for Social Scientists", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Criminal forensic psychology is the intersection between psychology and the criminal justice system, which involves the understanding of criminal law in the relevant jurisdictions in order to interact appropriately with the legal professionals. The course will introduce students to the relevant sentencing and evidentiary issues, as well as the literature on the assessment andmanagement of violent and sexual offending behaviours, amongst other problem behaviours. In addition, the course will explore areas relating to eyewitness testimony in children. Further, the association between personality disorders and offending behaviours, as well as the relevant assessment and management issues will be examined.", + "title": "Criminal Forensic Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to the main orientations of psychological therapy including psychodynamic psychotherapy, behavioural and cognitive therapies, and systemic therapies, amongst others. Theoretical underpinnings, specific therapeutic techniques, applications to particular psychiatric disorders or psychological problems, methods of evaluation, levels of empirical support, mechanisms of change, and ethical and professional issues will be covered. Seminars will include didactic teaching, class discussions, clinical case studies, selected articles, and where possible, video footage.", + "title": "Psychological Therapies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4229", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Mindful Psychology is an integration of Western and Buddhist psychology, mindfulness and neuroscience. This unique integration takes essential elements of these disciplines and blends them into a new way of understanding the human psyche, emotional suffering and healthy psychological development.\n\nThe aim of this course is to address questions such as: What is Mindful Psychology and how does mindfulness practice relate to healthy psychological development? What are the theoretical and philosophical underpinnings of this emerging discipline? This course will introduce students to the scientific research, applications and future trends in Mindful Psychology.", + "title": "Mindful Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Personality measures have gained traction in Economics, Psychiatry and Health Psychology as potential predictors of wellbeing and social and economic achievement. Students will read key article showing the relationship between personality, economics, wellbeing and social success. The student\nwill explore through interactive discussions the role of hard wiring mediated by genetic polymorphisms, as well as environment, in shaping individual personalities and how personality impacts individual trajectories across the life span.", + "title": "Personality Biology, Economics and Wellbeing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with knowledge of organizational psychology and the behavior of people in today\u2019s complex organizations. A variety of\norganizational processes will be examined, including motivation, leadership, group dynamics, justice and ethics, organizational climate, and decision\u2010making. The effective management of people is a key requirement for organizational functioning. This module covers the psychological concepts and theories concerning the administration and management of organizations, groups, and individuals.", + "title": "Psychology of Organizational Processes", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an overview of the science of negotiation, drawing largely upon the theories and research in organizational psychology and social\npsychology. Students will learn basic and classic issues in the field including distributive and integrative bargaining, as well as the cognitive, motivational, and\nemotional processes that inhibit or facilitate effectiveness in negotiating. Students will also be introduced to complex issues including multi\u2010party\nnegotiations, third\u2010party negotiations, agency and ethics, and cross\u2010cultural negotiations.", + "title": "Psychology of Negotiation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to increase knowledge and understanding of health psychology as an applied science. The module focuses on understanding developmental and lifespan frameworks in the experience of illness and disease; exploring patients\u2019 experiences in the health\u2010care system; and developing an appreciation of factors that may lead to patient harm and adverse events in the context of health care delivery.", + "title": "Patient and Health Care", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the study of the origins, development, and cognitive processing of morality. The module will cover the history of moral psychology, and the shift from cognitive\u2010developmentalist theories of reasoning\u2010based morality to the current social intuitionist theory of intuition and emotion based morality. The course debates whether morality is innate, intuitive, emotion\u2010driven, reasoned, learned, or a dual process. In doing so, we will explore infants\u2019 and children\u2019s moral development, moral emotions, morality through neuroscience, morality across culture and in politics, and moral dilemmas from philosophical thought experiments.", + "title": "The Psychology of Moral Judgments", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Autism Spectrum Conditions affect social and communication development in approximately 1 in 100 individuals. This module will cover the history, presentation, diagnostic process and challenges, genetics and neurobiology, etiological theories, assessment and evidence\u2010based interventions for individuals with Autism Spectrum and related neurodevelopmental conditions across the life\u2010span. Emphasis will be given to recent research and empirically validated neurobiological, developmental and psychological theoretical perspectives and understanding the high comorbidity in ASC. This module will also explore the presentation of autistic traits in the general population, family and relatives of those with ASC and in those with other disorders (\u201cthe autism continuum\u201d).", + "title": "Autism Spectrum and Related Conditions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an overview of evidence- based treatments that are empirically supported as efficacious for treating trauma and stress-related disorders, including cognitive-behavioural therapies such as trauma-focused therapy, cognitive processing therapy, skills training in affective and interpersonal regulation, prolonged exposure, acceptance and commitment therapy, virtual reality, motivational interviewing among others, and body-focused treatments such as meditation and mindfulness. Theoretical underpinnings of stress-related disorders, application of specific therapeutic techniques for trauma treatment, methods of evaluation, empirical support for mechanisms of change, and ethical and cultural considerations will be covered. Seminars will include didactic presentations, video vignettes, and discussion.", + "title": "Evidence-Based Treatments for Trauma", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Social Neuroscience uses biological concepts and methods to understand social emotion and behaviour. Topics to be covered include the neural basis of selfrepresentation and theory of mind; the neural signature of social pain and social reward; and the neurobiological mechanisms underlying cooperation, emotion regulation, and inequity aversion. The influence of culture on the neural responses to social stimuli and the neural mechanisms underlying social cognition deficits in psychiatric disorders such as autism will also be explored. In this module, we will review seminal and most recent research on these topics and discuss implications for understanding human behaviour.", + "title": "Social Neuroscience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Conscious awareness is a prized possession of mankind. Lay people and philosophers alike ascribe sacred values to people\u2019s capacity for conscious thoughts, reasoning, and behaviour. However, social psychology research demonstrates the powerful influence of the unconscious, mechanisms that occur without conscious awareness, on high-level mental processes. In this module, students will be exposed to an array of research revealing how the unconscious affects social perception, social behaviour, goal pursuit, and complexed decision making. Students will acquire a basic understanding of how the unconscious operates and appreciate the real-life implications of the unconscious in consumer behaviour, public opinion, and legal decisions.", + "title": "Social Psychology of the Unconscious", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the history and current status of research on emotion especially in relation to psychopathology. The background philosophy and two different traditions stemming from Plato and Aristotle will be summarised. Modern day approaches will be considered, and dimensional versus categorical approaches will be reviewed with their implications for clinical practice. Approaches to normal versus abnormal emotions will be considered, with analysis of how the five basic emotions of anxiety, anger, disgust, sadness, and happiness provide a framework for understanding emotional disorders. Therapy that focuses on emotion experience, expression, and regulation will be reviewed.", + "title": "Emotion and Psychopathology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Perceptual consciousness allows us to interact with the world that we live in through touch, sight, sound, smell and taste. In addition, conscious decision-making (free will) allows us to interact with our surroundings in ways that fulfil our goals and desires. In this course, we will discuss neuroscientific, psychological and philosophical investigations on conscious perception and decision-making. We will discuss the methods used to study it, and importantly, highlight the limitations of our current understanding in the field.", + "title": "Exploring Consciousness \u2013 Theory and Neuroscience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Historical Controversies in Psychology will expose students to pertinent issues and challenges the field has faced throughout its history. Each controversy will be explored through debate, discussion and critical analysis inside, and outside of, the classroom. A range of controversies will be explored spanning the different subfields of psychology (e.g., social psychology, neuroscience), and across different timelines (e.g., pre and post cognitive revolution). The aim of this module is to present students with an opportunity for critical thinking to tackle difficult questions that shed light on psychology\u2019s failings and advances.", + "title": "Historical Controversies in Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a deeper understanding on Intellectual Developmental Disorder. It is intended for students who have interest to learn more about special needs. The module will cover key topics in the field, such as assessment, emotional and behavioural presentation, intervention and specialist topics. The module will also adopt a life-span approach and pertinent developmental issues will be presented.", + "title": "Intellectual Developmental Disorder", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Why is sleep so important that we need to spend one-third of our life on this (in)activity? Although sleep is important for many aspects of health, this course will address sleep primarily from a cognitive neuroscience perspective. This course will provide a basic introduction to how sleep is regulated and measured, and how sleep changes across the lifespan. The cognitive importance of sleep in multiple age groups will be discussed. This course will also address how sleep can be improved. Sleep research in Singapore will be reviewed to help students understand some of the topics in a local context.", + "title": "Sleep: A Cognitive Neuroscience Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4244", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to introduce psychology students to modern methods of prediction called data science or machine learning. The module will cover both the foundations of these methods and their use in areas of applied interest to social scientists such as psychometrics. The methods covered include regularized regression, trees and random forests, neural networks, and support vector machines. The module will focus not on derivations and proofs, but instead on gaining an intuitive conceptual understanding of the techniques, how and when to use them for data analysis, and how to assess performance of these methods.", + "title": "Data Science for Psychology: Methods and Applications", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4245", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0201A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Monday", + "lessonType": "Lecture", + "size": 84, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of how network science methods are applied to investigate diverse topics in psychology. Networks are commonplace in core domains of psychology, ranging from social and cognitive psychology, to the clinical and brain sciences. Students will learn about current research on lexical and semantic networks, social networks, brain networks, and symptom networks, and understand how psychologists can make use of network science methods to analyse the structure of psychological and social systems. The module includes an accessible introduction to the basics of network analysis and several opportunities to apply these techniques on real datasets.", + "title": "Networks in Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4246", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module takes an in-depth look at the acquisition and extinction of phobias from an experimental psychopathology framework. It also examines how and why fears relapse after successful exposure therapy and how to reduce return of fear (ie, recovery from extinction effects). These topics are investigated within the context of fear conditioning with the translational focus on phobias and other anxiety disorders. This class will discuss the biological and theoretical mechanisms of these phenomena, and the research that has investigated these topics. Animal and human research from associative learning, experimental psychopathology, cognitive, and behavioral neuroscience will guide the discussions.", + "title": "Application of Psychology to Fears and Phobias", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4247", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Distressing experiences of hallucinations and delusions might serve as clinical indicators of psychosis, a severe and complex form of mental ill-health. Despite a considerable prevalence of psychotic-like experiences in the general population, individuals with psychiatric diagnoses of schizophrenia would often be exposed to stigma and discrimination in their communities, leading to social disengagement and exclusion. This module aims to equip students with introductory empirical, academic, and clinical knowledge related to cognitive understanding of hallucinations and delusions. It will provide a normalising, destigmatising, depathologising, socially inclusive, and compassionate evidence-based framework to reflect on and formulate experiences of psychosis.", + "title": "Hallucinations and Delusions: A Cognitive Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4248", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Mindfulness-based techniques and interventions have become established as an empirically supported means of treating psychopathology and enhancing well-being. In this seminar, we will undertake a broad survey of the field, focusing on how mindfulness meditation changes the body, the brain and the mind. We will examine the evidence for the effects of mindfulness on cognition, emotion, stress, sleep, brain structure and function, physiology, and its uses in treating psychopathology. Mindfulness teachers, practitioners, clinicians, and app developers will be invited to share their experience and knowledge with the class.", + "title": "The Psychology and Neuroscience of Mindfulness", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4249", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Each student selects a topic for research and works under the supervision of a member of the teaching staff. The research work is presented as a thesis for examination. The Honours Thesis carries an equivalent weight of three modules. Please register PL4401 manually with the Department.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PL4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Each student selects a topic for research and works under the supervision of a member of the teaching staff. The research work is presented as a thesis for examination. The Honours Thesis carries an equivalent weight of three modules. Please register PL4401HM manually with the Department.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PL4401HM", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Integrated Thesis is a single thesis that satisfies both the Master\u2019s thesis and Honours thesis requirements of the Psychology Concurrent Degree Programme. The Integrated Thesis is pitched at the Master\u2019s level and should thus entail original research that contributes to new knowledge. Similar to PL4401 Honours Thesis, the Integrated Thesis carries an equivalent weight of three 4000-level modules and is done under the supervision of a member of the teaching staff.", + "title": "Integrated Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PL4501", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "One or more topics not covered in other Honours modules can be periodically offered under this heading, depending upon the interests of students and staff.", + "title": "Topics in Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Every aspect of the scientific enterprise, from conception of a project to dissemination through the popular media, is fraught with conflict. This course will sensitize students to some of the concerns, including the role of funding agencies, publication decisions, measurement issues, null hypothesis significance testing, selective reporting of data, double blind studies, introspection, and philosophical challenges to scientific methodology. There will be discussion of potential problems of various research designs, including surveys, comparative research, and archival research.", + "title": "Issues in Testing and Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to major contemporary perspectives on addictive behaviours. Topics to be covered include the aetiology, assessment, prevention, and treatment of substance-related and 'behavioral' (e.g., gambling, eating) addictions. Recent research and clinical advances in related areas such as behavioural genetics, dual diagnosis, contingency management, cognitive expectancy, and motivational enhancement will also be explored.", + "title": "Addictive Behaviours", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Positive Psychology is the study of how people thrive despite external obstacles and their own human frailties. The aim of this course is to address questions such as: What are the positive psychological mind-states and action sequences that promote flourishing lives, and how can we live life well? What are the behaviours and cognitions that undermine wellbeing? This course will introduce students to the scientific research and issues in positive psychology, and will explore the meaning and implications of positive psychology towards a global understanding of wellbeing.", + "title": "Positive Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The application of sport psychology is becoming an integral part of elite sports performance. The purpose of this course is to introduce students, without a background in sport psychology, to the basic concepts needed to understand sport psychology and its application. Topics to be covered include Psychological Skills Training, Peak Performance, Performance Profiling, Goal Setting, Performance Review, Motivation, Psychophysiology, Relaxation, Activation, Imagery, Self\u2010Talk, Concentration, Team Building, and, Competition Routines.", + "title": "Sport Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Brain lateralization is the notion that each of our cerebral hemispheres (\u201cthe left and the right brain\u201d) has its own unique processing strength. Among the various techniques employed to understand how the left and right brain function, divided visual field (DVF) stands out as a widely\u2010used non\u2010invasive behaviour\u2010based method and thus will constitute a major focus of this module. Students will be exposed to discussions on the historical and theoretical background to, and application of DVF in understanding brain lateralization, either by itself or combined with brain recording/imaging methods. A demonstration of divided visual field method will be conducted.", + "title": "The Right and Left Brain", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the various aspects of parental influence on children\u2019s development, with a focus on cultural differences in parenting practices. Topics to be covered include a critical evaluation of the crosscultural relevance of parenting styles and the concept of emotional availability in accounting for differences in children\u2019s developmental outcomes. The notion of \u201cgood enough parenting\u201d and parenting as a bidirectional process will be analysed. The course concludes with a discussion of whether parents are the most important source of influence, bearing in mind the many other domains of influence in children\u2019s lives, such as peers.", + "title": "Parenting and Child Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880K", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the cognitive processes that underlie learning in educational contexts. We will examine (i) the factors that influence effective encoding, organisation, and subsequent retrieval of knowledge, (ii) how learners monitor and regulate their learning, and (iii) how expertise is acquired. We will also delve into the scientific literature to evaluate the effectiveness of various study/instructional strategies, and compare the research findings against our own intuitions (i.e., how we learn best may not correspond to how we think we learn best). We will consider the implications of cognitive science research for enhancing educational practice.", + "title": "Applying Cognitive Psychology to Learning & Instruction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880L", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Technology has changed the way humans live, think and interact. New technologies that emerged over the past few decades have also changed the way that psychologists study human behaviour. This module aims to provide students with broad-based overview of social psychological theories and principles in technologically-supported social interactions. Through this module, students will also be introduced to new methodological techniques of studying social behaviour, e.g. mobile and social sensing to measure real-life behaviour, as well as state-of-the-art technology in studying behaviour in teams and organizations.", + "title": "Social Psychology and Technology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Religion is ubiquitous across cultures and highly influential in many individuals\u2019 lives, society, and history. This module examines religion through cognitive, developmental, social, and evolutionary psychology. Key questions that will be examined are Why do people believe in gods and perform rituals? What psychological processes support religious beliefs, behaviours, and experiences? What are the social effects of religion? What is the relationship between religion and morality? The module also examines methods and issues in studying religion empirically.", + "title": "Psychology of Religion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880P", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers central issues in the fields of bilingualism/multilingualism. Seminars will include the following topics: bilingual language acquisition and processing; bilingual literacy skills; brain bases of bilingualism; cognitive consequences associated with bilingualism. Reading material is supplemented with local case studies to facilitate discussion of issues relevant to language and cognitive processes in bilingual populations. Students are expected to become familiar with the nature of language and cognitive processing in bilinguals.", + "title": "Psychology of Bilingualism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on developmental processes of adolescence, and will seek to further examine these processes in the context of Singapore and Asia. Specifically, themes such as parent-adolescent relations, educational experiences and processes, and various adolescent challenges would be explored in depth.", + "title": "Issues in Adolescent Developmt", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Programme evaluation is essential in the social service sector. It helps policy makers and practitioners to determine whether a programme, for instance a psychological intervention, fundamentally improves its clients\u2019 wellbeing. Through this systematic process, evaluators identify opportunities for improvements and make recommendations to programme owners for subsequent implementation. \n\nThis module aims to provide students with the knowledge and skills to conduct a simple programme evaluation within the social service sector. Students will also learn to appreciate the challenges of conducting real world research and develop strategies to overcome these challenges.", + "title": "Programme Evaluation in the Social Service Sector", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the theoretical issues in applying psychology in the context of education, and present students with the opportunity to critically analyse the contribution of psychological theories and research to educational issues and school practices. It is also intended for those who wish to have a sound and current understanding of the role of educational psychologists in shaping school practices and policies in general, early childhood and special education.", + "title": "Applying Psychology In Education", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880T", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the core topics within cultural psychology using a developmental lens. Two major questions guide the module. First, how do diverse aspects of human development (e.g., emotion, cognition, psychopathology, relationships) converge and diverge across cultures? Second, how may culture shape differential developmental experience and outcomes among people? Focusing on childhood, adolescence, and emerging adulthood, we explore perspectives and critiques of the study of culture within the field of developmental psychology. Emphasis will be on developing an understanding of recent cultural theory, research methods, and critical interpretation of research results.", + "title": "Culture and Human Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL4880V", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the use of the general linear for the analysis of psychological data including multiple regression and various forms of analysis of variance. Among the topics that may be covered are correlation and multiple regression, randomized groups analysis of variance, repeated measures analysis of variance, and mixed models. Emphasis will be placed on the development of skills through hands-on data analysis and interpretation.", + "title": "Analysis of Psychological Data Using Glm", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Analysis of Psychological Data using GLM", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL5221R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the use of multivariate methods for the analysis of psychological data. Included among the methods to be covered may be canonical correlation, discriminant function analysis, multivariate analysis of variance, exploratory and confirmatory factor analysis, and structural equation modeling. Emphasis will be placed on the development of skills for multivariate data analysis through hands-on analysis and interpretation of datasets.", + "title": "Multivariate Statistics in Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the use of multivariate methods for the analysis of psychological data. Included among the methods to be covered may be canonical correlation, discriminant function analysis, multivariate analysis of variance, exploratory and confirmatory factor analysis, and structural equation modeling. Emphasis will be placed on the development of skills for multivariate data analysis through hands-on analysis and interpretation of datasets.", + "title": "Multivariate Statistics in Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL5222R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module with introduce the ideas of structural equation modeling and its relationship to other current statistical models. Specifically, regression analysis, path analysis, confirmatory factor analysis will be formulated within the general framework of structural equation modeling. Advanced topics, such as ordinal data analysis, missing data, multiple-group analysis and latent growth models, will also be covered. After the course, students are expected to know how to conduct the analysis and interpret the results themselves.", + "title": "Structural Equation Modeling", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module with introduce the ideas of structural equation modeling and its relationship to other current statistical models. Specifically, regression analysis, path analysis, confirmatory factor analysis will be formulated within the general framework of structural equation modeling. Advanced topics, such as ordinal data analysis, missing data, multiple-group analysis and latent growth models, will also be covered. After the course, students are expected to know how to conduct the analysis and interpret the results themselves.", + "title": "Structural Equation Modeling", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL5225R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys recent advances in cognitive psychology and is targeted at graduate students and advanced undergraduates who have an interest in cognitive science. Students will be introduced to the foundations and basic philosophy behind contemporary approaches to cognition such as the symbolic, connectionist, ecological, dynamic, and embodied movements. We will examine the applications of these approaches to recent research in selected topics from the areas of perception, memory, language, creativity, consciousness, and intelligent behaviour. Prior exposure to cognitive psychology at the undergraduate level is required.", + "title": "Advanced Cognitive Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys recent advances in cognitive psychology and is targeted at graduate students and advanced undergraduates who have an interest in cognitive science. Students will be introduced to the foundations and basic philosophy behind contemporary approaches to cognition such as the symbolic, connectionist, ecological, dynamic, and embodied movements. We will examine the applications of these approaches to recent research in selected topics from the areas of perception, memory, language, creativity, consciousness, and intelligent behaviour. Prior exposure to cognitive psychology at the undergraduate level is required.", + "title": "Advanced Cognitive Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL5303R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course explores current research in developmental psychology and is relevant to students with research interests in this area. Current research and research methodology will be covered from selected topics in the areas of infant, child, and/or adolescent development. Contemporary issues, such as those relating to the ethics of research, may also be covered. Prior exposure to developmental psychology at the undergraduate level is strongly advised.", + "title": "Advanced Developmental Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module explores current research in developmental psychology and is relevant to students with research interests in this area. Current research and research methodology will be covered from selected topics in the areas of infant, child, and/or adolescent development. Contemporary issues, such as those relating to the ethics of research, may also be covered. Prior exposure to developmental psychology at the undergraduate level is strongly advised.", + "title": "Advanced Developmental Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL5304R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to provide postgraduate students with an in depth knowledge of selected topics in social psychology, such as social influence, interpersonal relationships and applied social psychology. This knowledge is based on both a historical perspective and an overview of the current research and theory in this field. Students will read a sampling of classic articles as well as review current research and theory on selected topics. Classes will consist of lectures, discussion and student presentations.", + "title": "Advanced Social Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5305", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to provide postgraduate students with an in depth knowledge of selected topics in social psychology, such as social influence, interpersonal relationships and applied social psychology. This knowledge is based on both a historical perspective and an overview of the current research and theory in this field. Students will read a sampling of classic articles as well as review current research and theory on selected topics. Classes will consist of lectures, discussion and student presentations.", + "title": "Advanced Social Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL5305R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with advanced knowledge in clinical psychology from historical as well as from the latest conceptual and empirical perspectives. The implications of life-span psychology, psychopathology, personality theory, neuropsychology, and competing systems of clinical psychology for multi-cultural clinical understanding, clinical epistemology, and clinical judgment will be critically reviewed.", + "title": "Advanced Clinical Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5306", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with advanced knowledge in clinical psychology from historical as well as from the latest conceptual and empirical perspectives. The implications of life-span psychology, psychopathology, personality theory, neuropsychology, and competing systems of clinical psychology for multi-cultural clinical understanding, clinical epistemology, and clinical judgment will be critically reviewed.", + "title": "Advanced Clinical Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL5306R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of current research being undertaken in health psychology. Topics to be covered will vary from semester to semester but may include, health behaviour, stress and its relationship to health, illness cognition, illness behaviour, patient-practitioner interaction, psychological factors in hospitalization, chronic illness, death and dying, psychological research on pain as well as applications of health psychology for cancer, heart disease and other health conditions.", + "title": "Advanced Health Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of current research being undertaken in health psychology. Topics to be covered will vary from semester to semester but may include, health behaviour, stress and its relationship to health, illness cognition, illness behaviour, patient-practitioner interaction, psychological factors in hospitalization, chronic illness, death and dying, psychological research on pain as well as applications of health psychology for cancer, heart disease and other health conditions.", + "title": "Advanced Health Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL5307R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Over the last decades, the study of human cognition has extended its focus to include neuroimaging techniques such as electroencephalography (EEG), functional magnetic resonance imaging (fMRI), and transcranial magnetic stimulation (TMS) among others. This allowed researchers to investigate cognitive processes as they unfold in time and to relate these processes to neuronal structures and networks. In this module, students will review this research and critically evaluate whether and how it advanced our understanding of human cognition.", + "title": "Advanced Social and Cognitive Neuroscience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5308", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Over the last decades, the study of human cognition has extended its focus to include neuroimaging techniques such as electroencephalography (EEG), functional magnetic resonance imaging (fMRI), and transcranial magnetic stimulation (TMS) among others. This allowed researchers to investigate cognitive processes as they unfold in time and to relate these processes to neuronal structures and networks. In this module, students will review this research and critically evaluate whether and how it advanced our understanding of human cognition.", + "title": "Advanced Social and Cognitive Neuroscience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL5308R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Effective teachers, leaders, entrepreneurs, and advertisers have one thing in common \u2013 they have mastered the skill of motivating others. Whether you are trying to persuade people, inspire teams, negotiate strategically, or nudge people towards better decisions, you need to understand what drives people. In this course, we will read research papers on motivation theories, ranging from the older classics to more cutting\u2010edge research. We will also learn about interventions that successfully motivate behavior change and apply this knowledge to addressing real-world issues.", + "title": "Motivation and Behaviour Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5309", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Effective teachers, leaders, entrepreneurs, and advertisers have one thing in common \u2013 they have mastered the skill of motivating others. Whether you are trying to persuade people, inspire teams, negotiate strategically, or nudge people towards better decisions, you need to understand what drives people. In this course, we will read research papers on motivation theories, ranging from the older classics to more cutting\u2010edge research. We will also learn about interventions that successfully motivate behavior change and apply this knowledge to addressing real-world issues.", + "title": "Motivation and Behaviour Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PL5309R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Course is designed to enable the student to explore an approved topic in Psychology in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The ability to conduct independent psychological research is a prerequisite for embarking on a doctoral dissertation. As such the course is aimed at advancing the research skills of doctoral students prior to their qualifying examinations. They will achieve this advancement by working on a research project under the close supervision of their doctoral supervisor. All doctoral students must take this course.", + "title": "Empirical Research Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL6208", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Various courses requiring applied expertise in the selected fields of psychology will be offered from time to time by visiting or local staff.", + "title": "Selected Applications in Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL6215", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Course is designed to enable the student to explore an approved topic in Psychology in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required course for all research Masters and PhD students admitted from AY2004/2005. The course provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The course will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The course may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PL6770", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to cover selected topics in cognitive psychology, which include, but are not limited to, attention, perception, memory, language, consciousness, reasoning, problem-solving, judgement, and decision-making. The topic(s) to be covered in any particular year that the course is offered will depend on student demand, faculty expertise, and faculty availability. This course will follow a seminar format, requiring high levels of student participation, writing-intensive assignments, and analytic skills.", + "title": "Selected Topics in Cognitive Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL6883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to cover selected topics in the broad disciplines of social, personality, and/or industrial-organizational psychology. Topics in social psychology may include social attitudes, emotion and cognition, and motivation. Topics in personality psychology may include personality structure and processing dynamics. Topics in industrial organizational psychology may include personnel selection, human performance, and job analysis. The topic(s) to be covered in any particular year that the course is offered will depend on student demand, faculty expertise, and faculty availability. This course will follow a seminar format, requiring high levels of student participation, writing-intensive assignments, and analytic skills.", + "title": "Selected Topics in Social, Personality, I-O Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL6885", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0208", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to cover selected topics in social and cognitive neuroscience, which include, but are not limited to, affective neuroscience, decision making neuroscience, and neuroscience of attention and/or memory. The topic(s) to be covered in any particular year that the course is offered will depend on student demand, faculty expertise, and faculty availability. This course will follow a seminar format, requiring high levels of student participation, writing-intensive assignments, and analytic skills.", + "title": "Selected Topics in Social and Cognitive Neuroscience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL6888", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The field of emotion contributes too many subdisciplines within psychology including cognitive, social, clinical, and health psychology. This course aims to provide students with a solid foundation in emotion by introducing them to relevant research done internationally and within the Department of Psychology. Topics to be covered will include, but not limited to, emotion theories, the interplay between cognition and emotion, the physiological underpinnings of emotion and its associated outcomes. A range of formats, including lectures, student presentations, and guest seminars, will be used to engage students on these topics.", + "title": "Selected Topics in Emotion Psychology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PL6889", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is designed to equip students who are not planning to major in psychology with basic literacy in the discipline. Students will acquire basic understanding of common human experiences, such as sleep, dreams, learning, and memory from a psychological perspective; and apply psychological knowledge to understand some of the common problematic behaviours we encounter, such as forgetfulness, sleep problems, addiction, eating disorders, depression, and mental retardation. Students will also learn about some of the practical issues, such as whether it is beneficial to boost one\u2019s self\u2010esteem, whether subliminal persuasion works, and how we could find happiness.", + "title": "Psychology in Everyday Life", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PLB1201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B107", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with essential background in psychological and neuropsychological assessment. Students will be exposed to a variety of assessment techniques used for the collection of data in order to evaluate psychological functioning of an individual. They will learn about the application of these techniques to a wide range of clinical psychological problems. Students will become familiar with widely used clinical and neuropsychological tests, methods for evaluation of these tests and issues surrounding psychological assessment in professional settings. These include diagnostic decision making, test administration and interpretation, and the integration of material derived from patient history with the mental state examination and other sources.", + "title": "Psychological Assessment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PLC5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an advanced critical understanding of various theories of aetiology and maintenance of adult psychological problems. Students will also acquire an understanding in the appropriate use of diagnostic classification systems and critical appraisal of such systems. The module has a strong emphasis on linking theory to applied clinical practice.", + "title": "Adult Psychopathology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PLC5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended to facilitate acquisition of knowledge and expertise on: 1) normal and abnormal developmental issues affecting health and mental health across one\u2019s lifespan with specific focus on early childhood and adolescent stages, midlife crisis, aging and gero\u2010psychological issues; 2) basic concepts of mind\u2010body interactions and psychoneuroimmunology; 3) role of clinical psychologists in the identification, assessment, and treatment of mental health and health problems across lifespan; 4) psychological management of chronic health and mental health conditions.", + "title": "Health across the lifespan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PLC5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with fundamental skills that are the foundation of clinical psychological interventions, including\ninterviewing and counselling, basic interventions and theoretical concepts, processes and techniques which underlie cognitive-behaviour therapy. Students will begin to develop core\npractical skills in the use of these techniques for therapeutic management of a range of problems and disorders across settings. Content includes basic behavioural change strategies, brief intervention techniques, critical case analysis, assessment and case formulation, and cognitive behavioural therapeutic techniques. Students will also explore the role of the psychologist and the boundaries and responsibilities of this role\nin different cultural contexts.", + "title": "Psychological Intervention and Therapy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PLC5004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an advanced critical understanding of various theories of aetiology and maintenance of disorders of childhood and adolescence. Students will also acquire an understanding in the appropriate use of diagnostic classification systems and critical appraisal of such systems. The module has a strong emphasis on linking theory to applied clinical practice.", + "title": "Child Psychopathology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PLC5005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Through this module, students will develop an understanding and appreciation of ethical principles in clinical psychology practice. The module aims for students to (i) be familiar with international ethical standards and their application in Singapore, (ii) demonstrate awareness of potential ethical dilemmas across different contexts and approach these using appropriate decision-making strategies, (iii) understand the importance of developing and maintaining professional skills and competencies, (iv) demonstrate good insight into ethical obligations as professional clinical psychologists, and (v) appreciate the importance of practising with cultural sensitivity.", + "title": "Ethics and Professional Issues", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PLC5006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Module provides an introductory training in advanced intervention strategies utilised in clinical psychology practice. Students will become familiar with current developments in evidence-based cognitive-behavioural therapies, with particular focus on complex, severe, and enduring presentations of mental ill-health, such as psychosis, bipolar affective disorder, selected personality disorders, and complex PTSD. A repertoire of empirically grounded specialist treatment models will be introduced, including CBT for psychosis (CBTp), Metacognitive Therapy (MCT), and Narrative Exposure Therapy (NET). Elements of Behavioural Family Therapy (BFT) and Family Intervention for psychosis (FIp) will also be presented. Positive and strengths-based approaches in psychological therapies will be discussed.", + "title": "Advanced Psychological Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PLC5007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0115", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This compulsory module provides an introduction to evidence-based practice and focuses on research skills for clinical psychologists. Students will acquire a solid grasp of the scientific and statistical methods relevant to psychology. There will be an emphasis on statistical skills and methods required for the analysis of different types of data required for conducting a Master-level research thesis. The module covers the basics of statistics, including analysis of variance (ANOVA), analysis of covariance (ANCOVA), repeated measure ANOVA, multivariate analysis of variance (MANOVA), regression analyses, as well as qualitative analysis, and small n-studies.", + "title": "Graduate Research Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PLC5008", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0201A", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module prepares students for research project that must be submitted in semester 4 of their training. In seminars, students will gain a critical understanding of the development and presentation of master\u2019s research proposals and theses, and consider clinical applicability of proposed research projects. Throughout the academic year, students will need to identify a specific area of their empirical study, secure an academic supervisor, submit application for ethical clearance, and develop, write up and submit a structured research proposal for a formal academic examination, following which they will receive critical feedback to be incorporated in their final research theses.", + "title": "Research Proposal", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PLC5009", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to help students prepare a scholarly report of their proposed applied research project submitted in PLC5009 Research Proposal. Under the supervision of a member of the faculty, students will make appropriate modifications to the planned design, complete data collection and analyses, and prepare draft reports. Students will also receive comments and feedback from other faculty, clinical supervisors and peer students. Students then submit the final draft of the report as a thesis of about 20,000 words in APA style for examination.", + "title": "Research Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "PLC5010", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clinical Placement 1", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "PLC5011A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides professional practice experience related to the theoretical foundations on clinical psychopathology covered in coursework modules. Students will undertake direct clinical experience either in a hospital or a community setting, under the close supervision of an experienced clinical psychologist. The focus of this second placement is on the gradual development of the clinical skills required for assessing, describing, diagnosing and treating adult and/or paediatric psychological disorder.", + "title": "Clinical Placement 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "PLC5012B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides professional practice experience related to the theoretical foundations of clinical psychopathology, assessment, diagnosis and intervention covered in coursework modules. Students will undertake an intensive block (40 days) of direct clinical experience either in a hospital or a community setting, under the supervision of an experienced clinical psychologist. The focus of this third placement will be on the continued development of clinical skills in planning and carrying out intervention with psychiatric patients with minimal guidance. If considered appropriate by their supervising clinician, students may progress to independent management of clients by the end of the placement.", + "title": "Clinical Placement 3", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "PLC5013C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This modulet is part of the Roots & Wings 2.0 programme. It focuses on soft skills on the interpersonal level in terms of more effective working with other people and reaching for better outcomes jointly. Through various experiential activities (e.g., role-play, negotiation exercises), students learn to understand the importance of collaboration in various settings and to apply basic techniques to help resolve conflicts and to strive for win-win situations when collaborating with other people in task accomplishment.", + "title": "Cultivating Collaboration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "PLS8001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "ME2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TO2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HE1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ME1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "MO1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WO1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HO1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WO2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TE2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FO2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "FO1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HE1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HO1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TE2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TO2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "ERC-SR10", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ME2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WO2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "ERC-SR10", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ME1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "MO2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students achieve better self-awareness through the understanding of basic psychological concepts such as self-esteem, social comparison, self-perception and self-handicapping. Students learn about how they acquire knowledge about themselves, how low self-esteem came about, and what psychologists learned about happiness. The module consists of two lectures and two tutorials. After each lecture, students will meet in small groups to share their own experience in relation to the concepts covered during lecture. By responding to a set of questionnaires, students will also have the opportunity during small group discussion to achieve a better understanding of themselves.", + "title": "Cultivating the Self", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "PLS8002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 8, + 10 + ], + "venue": "AS4-0603", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 8, + 10 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 8, + 10 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 7, + 9 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "Unknown" + }, + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "Unknown" + }, + { + "classNo": "E5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 8, + 10 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 8, + 10 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students achieve better self-awareness through the understanding of basic psychological concepts such as self-esteem, social comparison, self-perception and self-handicapping. Students learn about how they acquire knowledge about themselves, how low self-esteem came about, and what psychologists learned about happiness. The module consists of two lectures and two tutorials. After each lecture, students will meet in small groups to share their own experience in relation to the concepts covered during lecture. By responding to a set of questionnaires, students will also have the opportunity during small group discussion to achieve a better understanding of themselves.", + "title": "Cultivating the Self", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "PLS8002A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5 + ], + "venue": "AS7-0107", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 4 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students achieve better self-awareness through the understanding of basic psychological concepts such as self-esteem, social comparison, self-perception and self-handicapping. Students learn about how they acquire knowledge about themselves, how low self-esteem came about, and what psychologists learned about happiness. The module consists of two lectures and two tutorials. After each lecture, students will meet in small groups to share their own experience in relation to the concepts covered during lecture. By responding to a set of questionnaires, students will also have the opportunity during small group discussion to achieve a better understanding of themselves.", + "title": "Cultivating the Self", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "PLS8002B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 8, + 10 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 8, + 10 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 8, + 10 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 7, + 9 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "Unknown" + }, + { + "classNo": "E5", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 8, + 10 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 8, + 10 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This modulet is part of the Roots & Wings 2.0 programme. This modulet focuses on helping students recognize potential self-defeating beliefs and biases, and to overcome those beliefs. Students will engage in experiential activities that foster positive emotions, engagement with the work they do and the people they interact with, and a positive narrative of their lives. The general aim of this modulet is to increase students\u2019 awareness of self-limiting beliefs and to equip them with mindsets/behaviors that build psychological resilience.", + "title": "Cultivating Resilience", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "PLS8003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "ME2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FO2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR7", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WO1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FE1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR7", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ME1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR7", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "MO1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR7", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TE1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR7", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HE2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HO2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR7", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "WO2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HE2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 8, + 10, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ME1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "ERC-SR10", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WO1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "ERC-SR10", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FE1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TE1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HO2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "MO2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1 MC module is part of the Roots & Wings 2.0 programme. It focuses on soft skills derived from psychological research for students to better manage their performance level in tasks. Through various experiential activities (e.g., visualization, attention regulation), students learn to develop a set of skills that will be useful for them to optimize their work performance by setting up effective goals, enhancing productivity, and dealing with the challenges of working in demanding and multi-tasking situations.", + "title": "Optimizing Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "PLS8004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "ME1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HE2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TE1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FO1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FO2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FE1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WO1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR7", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HO2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WO2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "WO1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FE1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FO1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "MO2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "ERC-SR10", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ME1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HE2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 8, + 10, + 13 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HO2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ME2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HE1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 1 MC module is part of the Roots & Wings 2.0 programme. It focuses on soft skills derived from psychological research for students to develop effective interpersonal communication in everyday social interactions. Through various experiential in-class activities (e.g., role play, conversation planning, speech practice), students learn about useful concepts and techniques for effective communication such as formulating an argument, asking effective questions, active listening, non-verbal communication, attempting a persuasion, and building relationships.", + "title": "Elevating Interpersonal Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "PLS8005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "WE2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WO2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HE1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FO1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR9", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HO1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HO2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ME2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TO2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TE2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "UTSRC-SR9", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FE1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "WO2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FE1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "UTSRC-SR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HE2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 8, + 10, + 13 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HO1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "HO2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "FO1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "TO2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "UTSRC-SR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "ME2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 8, + 10, + 12 + ], + "venue": "ERC-SR10", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WE1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4, + 6 + ], + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "WO1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5 + ], + "venue": "UTSRC-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This graded module provides students with the opportunity to conduct independent research under the guidance of a supervisor. Students are required to submit a 10,000-word written dissertation.", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "PM5000", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - The module offers an overview of project management. It covers the strategic use of projects as part of business strategy, the project cycle in terms of its conception, planning, and execution, and the factors that underpin the success of projects. The project manager as an effective leader in managing projects is emphasized at each stage of the cycle.", + "title": "Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT425", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Contract Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This module introduces capital budgeting, project finance, and risk analysis. It covers the capital allocation framework, project cash flows, investment criteria, cost of capital, financial risk analysis, and how various types of projects are financed.", + "title": "Development Finance", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5105", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT425", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This module is designed to provide project managers with an appreciation of the role of design as well as the designer in projects. It covers the concept of design for value, integrated designs, the client's brief, design evaluation, and the impact of design on procurement and construction.", + "title": "Design Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This module focuses on management of the construction project from the perspective of the contractor. It covers tendering and estimating, material and equipment procurement, subcontracting, and cost and financial control of projects incorporating cash flow analysis, financial reporting, and project scheduling.", + "title": "Time and Cost Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5107", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT425", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This module provides an understanding of aspects of construction law and mechanisms for resolving disputes. It covers the law of contract, the duties and liabilities of different parties in a project, negligence, claims, procurement, risk allocation, and remedies.", + "title": "Project Management Law", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5109", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT425", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Objective - This module is designed to allow students to conduct independent studies on special topics in project management under the guidance of a team of staff members. Students are required to submit a 6,000-word report.", + "title": "Special Topics in Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5111", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Methods", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5112", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide project managers with an appreciation of the role of BIM as the project manager in projects. It covers the concept of BIM in design matters, contract and dispute management, and post contractual matters.", + "title": "Managing Projects using BIM", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5113", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE2-ES1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the management of complex projects. It covers the design and planning for beyond the project itself, the work package structure of such projects and issues related to the sourcing of suitably experienced contractors, consultants, and other personnel, the impact of variations and consequential claims, and matters concerning termination, completion and handing over.", + "title": "Managing Complex Projects", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5114", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding of aspects of different project finance contracts and agreements. It covers the issues of risk management through\ncontractual terms, duties and liabilities of lenders and borrowers, dispute management and contractual remedies, and issues relating to international contracts.", + "title": "Project Finance Contracts and Agreements", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5115", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT425", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To provide an opportunity for students to study how project\nfinance plays an important role in a major development project by a review of relevant\ncase studies.", + "title": "Project Finance Case Studies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5116", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD3", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with how cities are managed at the local and city levels. The major topics include urbanisation trends, urban challenges, the urban management approach, building capacity, spatial planning and strategies, local economic development, housing, urban service delivery, public utilities, and the provision of urban services.", + "title": "Urban Managment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM5117", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE3-LT424", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "CONSTRUCTION MANAGEMENT", + "title": "Construction Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM6103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "INTERNATIONAL PROJECT MANAGEMENT", + "title": "International Project Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PM6104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Pharmacology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP2131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The LKY School Course is a core module comprising a series of lectures on public policy innovations in Singapore and elsewhere, against a broad background of Asia's development trajectory. The module will provide students with broad appreciation of the philosophy and principles that inform governance and public policy. Notably, it will explore specific public policy innovations in Singapore, like housing and healthcare, and analyse thinking behind the formulation and implementations of such policies.", + "title": "The LKY School Course", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "PP5010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creating, implementing, and delivering programmes, policies, and services effectively increasingly requires the involvement of a highly diverse set of \u2013 supportive as well as adversarial \u2013 stakeholders. This module will address\nquestions such as: Which stakeholders matter the most and why? How do leaders ensure the negligence of stakeholders will not lead to future legitimacy gaps? What\nengagement strategy should be employed?", + "title": "Leading Stakeholders", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will examine how public and privte managers respond to external disruptive innovations in industries and markets, and how they balance existing labour laws, consumer protection, and quality control with the emerging\neconomic opportunities and customer demand. It will examine how managers have to innovate their own policies, practices, and assumptions in responding to\nassertive stakeholder demands and technological developments. The module will also examine the role of public sector managers in creating a conducive climate for\nentrepreneurship and overcome pervasive institutional and individual forces constraining change and renewal, and the inherent \u2018risk averse\u2019 cultures of many\nbureaucracies.", + "title": "Leading Innovation and Change", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "21st century managers encounter brand new types of ethical issues, including the blurring between public and private time in new media usage, tensions created by\nincreasing diversity and internationalization, security risks and ethical risks created by big data and artificial intelligence, and the advent of virtual whistleblowing. The\nmodule will examine the kind of analyses required, the difficulties involved, and what strategies are likely to be effective. It also examines where unethical behavior\ncomes from and how ethical behavior can be incentivized; and the link between compliance, awareness and values.", + "title": "Ethical Leadership", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is clear that governments can no longer \u2018go it alone\u2019 in effectively addressing 21st century challenges. Collaborating within, between and across sectors is paramount. The module will examine the need for horizontal, collaborative leadership and management. It will examine how governments can establish trust and\naccountability especially when they are often held formally responsible and accountable for policy outcomes, and when they are blamed when things go wrong.", + "title": "Leading Collaboration", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Understanding risk is the first step in developing action plans to build greater resilience. The degree of uncertainty assigns probabilities to types of risks ranging from climate change to pandemics. The intensity of impact also varies across risk categories. The product of the probability and impact is a first approximation of the seriousness of the risk. The nature of interaction among government, business and households contributes to the effectiveness of solutions. The responses are also synergetic across sectors like energy and education. Case studies bring out the degree of effectiveness of risk mitigation and suggest the dos and the don\u2019ts.", + "title": "Principles and Applications of Risk Management", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5015", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 2 + ], + "venue": "LKY_SR3-1", + "day": "Friday", + "lessonType": "Lecture", + "size": 38, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To address environmental threats, there needs to be a foundation of understanding of how natural capital is systematically being disinvested in while physical and human capital are invested in. Natural resource management needs to prioritize better management of coastlines, coral reefs, forestry, and waterways while zoning, land use management and greening of cities must become higher priorities in urban areas. Specific action areas include urban air pollution, city congestion as well as water pollution, water conservation and water management economy-wide. Case studies from different regions bring out good practices in environmental protection and natural resource management within Southeast Asia.", + "title": "Environmental Threats and Management Response", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5016", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 4 + ], + "venue": "LKY_SR3-1", + "day": "Friday", + "lessonType": "Lecture", + "size": 38, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To appreciate the implications of climate change, there needs to be a diagnostic of the sources of changing sealevel temperatures, precipitation and climatic phenomena. The implications need to be clearly drawn for climatic changes that are secular versus those that are anthropogenic, for the need for prevention as opposed to only responding. Two sets of actions are called for: climate mitigation involving a switch to a low-carbon economy and climate adaptation involving the building of better defenses and coping capabilities. The needed responses vary across country and locational typologies, and case studies illustrate the types of investments and policies needed.", + "title": "Climate Change and Managing Uncertainty", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5017", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 6 + ], + "venue": "LKY_SR3-1", + "day": "Friday", + "lessonType": "Lecture", + "size": 38, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To deal with risk, it is useful to build disaster scenarios. Typically, these scenarios combine the chances of the disaster occurring and the impact it would have if it occured. Scenarios would also differ across country typologies, low-, middle- and high-income economies, as well as across broad types of disasters, climate disasters, geological ones, pandemics, terrorism etc. Resilience building in response span governments, businesses and households. It also needs to take into account the capabilities and weaknesses in the sectors involved, such as water and health. It also draws on financing needed to implement policies and investments for greater resilience.", + "title": "Disaster Scenarios and Resilience Building", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5018", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 8 + ], + "venue": "LKY_SR3-1", + "day": "Friday", + "lessonType": "Lecture", + "size": 38, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a robust understanding about government strategy and its role in promoting national prosperity in the 21st century. The module addresses concepts and skills that policy makers in developing countries should master in overseeing the formulation of effective economic development strategies. The module connects theory and practical application through case studies and class discussions.", + "title": "Economic Development Strategy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5019", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 1 + ], + "venue": "LKY_SR3-1", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the key techniques for analysis of economic growth and productivity performance. Through practical exercises, students will gain familiarity with the patterns and drivers of economic growth in selected Asian countries over the past two decades. The module demonstrates how analytical tools can provide valuable insights for designing strategies to promote economic growth and productivity performance.", + "title": "Analysis of Economic Growth", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5020", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 3 + ], + "venue": "LKY_SR3-1", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a robust understanding about the impacts of digital technologies on efficiency improvement and value creation. The module introduces key concepts for designing an effective national strategy to promote digital transformation. Class discussions around case studies and international best practices will enhance student familiarity of and appreciation for practical policy steps in implementing digital transformation strategies.", + "title": "Digital Transformation and Economic Prosperity", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5021", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 5 + ], + "venue": "LKY_SR3-1", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the tools and knowledge to understand globalisation and its impacts on national economic growth and competitiveness. The module explores strategic issues and international best practices in embracing globalisation to generate economic growth. The module is focused in particular on policy designs and initiatives to attract FDI and promote exports.", + "title": "Embracing Globalisation for Economic Growth", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5022", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 7 + ], + "venue": "LKY_SR3-1", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will 1) explore the features, applications, benefits and risks of AI and Data on social policy (education, healthcare, insurance, social safety nets), employment and wages, fiscal policy (taxation and expenditure), transport and smart cities and implications for politics and social cohesion (fakenews, deep fake, election manipulation); 2) understand their implications for Singapore; and 3) understand the policy and regulatory implications in terms of growth, equity, security, privacy, efficiency and risk management. The module will be comparative in perspective and will draw from the experience of the US, China, Europe, Japan and Singapore.", + "title": "Artificial Intelligence, Data and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5023", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 2 + ], + "venue": "LKY_SR3-4", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will 1) explore the features, benefits and risks of blockchain and ethereum, cryptocurrencies, tokens and digital fiat currencies including Libra; 2) understand their implications for fiscal policy (taxation), monetary policy (digital fiat currency, payment systems), black markets, intermediation, authentication, stock exchanges, e-commerce, use of smart contracts as legal instruments; 3) applications and implications to Singapore and lessons from other countries in terms of growth, efficiency and equity, competitiveness. The module will be comparative in perspective and will draw from the experience of the US, China, Europe, Japan and Singapore.", + "title": "Bitcoin, Ethereum, Digital Currencies and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5024", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 4 + ], + "venue": "LKY_SR3-5", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will 1) explore the features, applications, benefits and risks of 5G, Cloud and Internet of things in the areas of healthcare, transport, manufacturing, smart cities, banking and finance, small and medium enterprises, digital government; 2) understand their implications for Singapore; and 3) understand the policy and regulatory implications in terms of security, privacy, efficiency and risk management. The module will be comparative in perspective and will draw from the experience of the US, China, Europe, Japan and Singapore.", + "title": "Cloud, 5G, IoT and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5025", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 6 + ], + "venue": "LKY_SR3-5", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will 1) explore the features, applications, benefits and risks of 3D printing and robotics in the areas of manufacturing, construction, defense and security, healthcare, aviation, and other industries; 2) understand their implications for Singapore in terms of job losses/gains, competitiveness, industrial restructuring; and global value chains; 3) understand the policy and regulatory implications in terms of growth, efficiency and equity, competitiveness. The module will be comparative in perspective and will draw from the experience of the US, China, Europe, Japan and Singapore.", + "title": "3D Printing, Robots and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5026", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 8 + ], + "venue": "LKY_SR3-5", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a basic understanding of the concept and measurement of food security. Key issues to be addressed include the definitions and dimensions of food security and the measurement of various food security indicators across global, national, sub-national and household levels. The module also gives an overview of the trends, current status and future projections of food security in developed and developing countries. It also discusses the nature and sources of vulnerability to chronic and seasonal food insecurity across gender, race, ethnicity, age and occupation.", + "title": "Food Security", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5027", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 1 + ], + "venue": "LKY_SR3-5", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a detailed understanding of the various components of a food system, its resilience and its interlinkage with food security. The resilience of the food system during an external shock such as a natural disaster or a pandemic will receive special focus in this module. Government sponsored food and nutrition assistance programs and their effectiveness will be discussed at length by drawing on case studies from both developed and developing countries. Global food insecurity during the COVID-19 pandemic and government response strategies to mitigate the adverse impacts of the shock will be critically assessed.", + "title": "Food System Resilience", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5028", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 3 + ], + "venue": "LKY_SR3-5", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to economic tools and concepts that are commonly used to influence food production and consumption, technology adoption, domestic and international trade and natural resource use and environmental degradation. The module will critically assess the impacts of commonly used food and agricultural policy tools, such as trade restrictions, price control, price subsidy, supply management, agricultural credit, quota etc. on producers, agribusinesses, consumers, and the environment. These concepts, methods and issues will be illustrated with case studies in food, agricultural, natural resource, and environmental policies from both developed and developing countries.", + "title": "Agricultural Economics and Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5029", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 5 + ], + "venue": "LKY_SR3-5", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will discuss concepts, theories, policy issues and best practices on sustainable urban food system management in megacities of Asia. It will address policy challenges that are specific to urban food systems. Topics will cover the problems and prospects of urban agriculture (e.g. community gardens, vertical farming), reducing food waste, changing consumption pattern of urban consumers and associated health risks and technology for a sustainable urban food ecosystem in Asia. Singapore\u2019s approach to building and maintaining a sustainable food system will be receive a special focus and scrutiny.", + "title": "Sustainable Urban Food System", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5030", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "2000", + "weeks": [ + 7 + ], + "venue": "LKY_SR3-5", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the history of industrialisation and growth strategies adopted by Singapore since its independence. Emphasis will be placed on developing simple frameworks that will allow students to analytically understand the evolution of Singapore\u2019s transition from the third world to the first. The module will also provide a comparative perspective of how Singapore has differed from the rest of the South East Asian economies in terms of its development strategies, as well as discuss the contemporary challenges it faces in a post-Covid-19 world.", + "title": "Industrialisation and Growth", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5031", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students an in-depth understanding of the nuances of the multi-dimensional nature of financial globalisation and financial development. as it relates to Singapore and the broader East Asian region. Apart from understanding the cost and benefits attached to financial globalisation, students will be taught Singapore\u2019s pragmatic approach to financial globalisation and how it has managed to maximize the benefits while mitigating risks, compared to other countries in the region.", + "title": "Financial Globalisation and Financial Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5032", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a thorough understanding of the evolution of the international monetary system. Students will learn about the definitions, determinants, importance, as well as the costs and benefits of different exchange rate regimes in the East Asian region and elsewhere, ever since the breakdown of the historical Bretton Woods system. Specific emphasis will be placed on understanding the choice of Singapore\u2019s exchange rate regime and its implications for its macroeconomic and financial stability.", + "title": "Monetary, Exchange Rate Policy and Reserves", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5033", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module includes a comprehensive discussion of the drivers and consequences of free trade agreements (FTAs) in East Asia, where students will be introduced to the details of the types and characteristics of FTAs that exist in the region. The module will also develop simple analytical models that will be used to explain the economic and welfare implications of FTAs, with specific reference to Singapore\u2019s approach and how they have tried to maximize the benefits from FTAs while mitigating the costs. Beyond FTAs, students will also learn about regionalism in Europe and how it compares with the one in Asia.", + "title": "Regionalism in Asia: Free Trade Agreements and Beyond", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PP5034", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Politics and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to statistical methods. Topics covered include descriptive statistics, sampling, inference and bivariate and multiple regression analysis. Emphasis is on the application of these statistical techniques to public policy issues. Students will be introduced to the use of the computer. This module is mounted for MPP students.", + "title": "Empirical Analysis For Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cost Benefit Analysis in Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5105", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "POLICY ANALYSIS EXERCISE", + "title": "Policy Analysis Exercise", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5110A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "0930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is concerned with the economic analysis of the public sector and how government policies affect the economy. It covers topics in state capacity development, tax and fiscal policies, and public good provision. The approach in this course is analytical rather than descriptive, with a focus on recent topical issues, such as tax evasion and avoidance, tax competition, and public debt sustainability. There are no formal prerequisites, but students will be expected to reason based on graphical representations of economic models, and link empirical economic research to policy. Practical policy implications will be at the forefront throughout.", + "title": "Applied Public Sector Economics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5136", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public Management and Organisational Behaviour", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5137", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is for students who have some background in statistics and want to acquire additional techniques and experience. Methods covered in this course include: latent class analysis, multinomial and nested logit models, power analysis, regression discontinuity etc. Many classes will take the form of one hour of lecture followed by two hours of workshop, where each group will be provided with a choice of international datasets and independently test out the models and produce their own novel findings. Students will have the opportunity to apply their knowledge and data skills to address a real-world policy problem.", + "title": "Econometrics for Public Policy Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5138", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "LKY_SR2-2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "LKY_SR2-2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course takes a multi-disciplinary, practitioner-driven approach to analyse Singapore\u2019s public policies. It does this by integrating and applying three conceptual lenses, namely standard economics, the cognitive sciences, and organisation behaviour. We will first examine policies in Singapore through the lens of market failures and how economists have traditionally viewed the role of governments. We then examine the cognitive limits of economic agents and consider how behavioural economics offers the possibility of better policy design by taking into account people\u2019s cognitive biases and limitations. In the third segment, we analyse the Singapore government through the lens of organisation behaviour. Throughout the course, we apply these lenses to various policy successes and failures in Singapore.", + "title": "The Global Financial Crisis-Policy Implications in Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5141", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An unprecedented level of urbanization is expected worldwide, presenting immense resource challenges as well as opportunities for cities. \n\nIt is critical that the future city leaders learn from urban pioneers and case examples, to gain insights into the urban development challenges of cities, and to make informed decisions based on the principles and practice of dynamic urban governance. \n\nSingapore is an example of a very dense city that is also highly liveable. The module will therefore focus on Singapore, analysed through the lens on the Liveability Framework, and brought to life by experts in various fields of urban development.", + "title": "Liveable & Sustainable Cities - Lessons from Singapore & Other Cities", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5142", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the main concepts, methods and paradigm of game theory, decision theory and social choice through short cases borrowed from the current economic, political and business scene. It examines how these tools might lead us to make better decisions, from both an individual and a collective viewpoint. It explores the extent (and limitations) of rationality in individual and collective decision making; it characterizes normatively the outcome of such decisions. Examples from everyday life, sport, military operations or political conflicts will be used to illustrate the reach of game theory and decision theory as tools for strategic analysis.", + "title": "Games, Decisions and Social Choice", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5143", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the main tools of game theory and decision theory through short cases borrowed from the current economic, political and business scene. It examines how these tools might lead us to make better decisions, from both an individual and a collective viewpoint; especially it introduces the biases and mistakes that were documented in the psychological literature, and examine their relevance to decision making. It explores the extent (and limitations) of rationality in individual and collective decision making, and characterizes normatively the outcome of such decisions. Examples from everyday life, sport, military operations or political conflicts will be used to illustrate the reach of game theory and decision theory as tools for strategic analysis.", + "title": "Decision and Game Theory for Public Managers", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5144", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Public managers need to master the skills of not only managing organizations but also managing projects, programs, and particularly larger-scale policy reforms. Good understanding of the political economy embedded in policy and administrative reforms are thus essential. This course examines the political-economic dynamics embedded in the reform process from various institutional\nperspectives. It is a master\u2013level course designed for practitioners in the field of public administration and public policy. It discusses strategies for achieving and enhancing reform outcomes. Studies and practices from different policies written by both academics and practitioners will be drawn on as reading materials and learning resources for the class.", + "title": "Political Economy of Reform", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5145", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Today, a number of local governments and communities are expected to play vital roles in improving people\u2019s lives. This module introduces normative theories and timely real-world cases pertinent to decentralization and local governance. These are discussed in relation to topics of government\nefficiency, equity, corruption, conflict management, democratization, and sector-specific issues in education, health, and environmental and disaster management. Students will learn theoretical and empirical approaches to\nstudying the topics and acquire analytical skills to address the challenges faced by localities and decentralizing states. The module is multidisciplinary, drawing on views from economics, public administration, and political science.", + "title": "Decentralization, Governance & Sustainable Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5146", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s globalization, many of the policy challenges are becoming urban issues, especially in the rapidly urbanizing Asia. This module focuses on examining the new policy challenges and opportunities of Asian global cities that are increasingly strengthening their presence in the world. It studies a number of rising and transforming global cities in East, Southeast and South Asia, in order to understand their experiences of globalization and urban policy priorities. A number of key policy-related topics will be covered, including global urban networks, urban gateways, megaprojects, privatization, land governance, housing development, informal economy, and participatory development.", + "title": "Asian Global Cities", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5147", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on selected analytical and policy issues relating to the international dimensions of macroeconomic policies. The course is not descriptive in nature and it is not just a survey of issues. Rather, the focus will be on developing simple analytical tools to understand key trends and macroeconomic policy issues in an open economy. Topics covered include Balance of payments, exchange rates (regimes and impacts), international financial crises and stabilization policies. An overall theme pertains to the implications of enhanced integration of Asia with global financial markets.", + "title": "Macroeconomics in an Open Economy with Focus on Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5148", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Empirical evidence is key to sound public policy formulatiom, monitoring, and evaluation. Official statistics, as trusted, organized information, have served this\npurpose for centuries; their production is institutionalized and governed by internationally-agreed ethics and practices. Unstructured information, including Big Data and Geoinformation, has emerged recently, offering public policy new empirical basis for making decisions. This has been described as \u2018Data Revolution\u2019 by international organizations. This course is designed for practitioners in the field of public policy to gain an indepth understanding of the design and intricacies of structured information (official statistics) and unstructured information such as Big Data and Geoinformation.", + "title": "Big Data, Official Statistics, and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5149", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How is social welfare organised in East Asia? What are the unique strengths and vulnerabilities? This course examines the origins, structure, and performance of social welfare systems in Hong Kong, Singapore, Taiwan, and Korea, and analyses their distinctiveness relative to the mature welfare states of Europe and other developed economies. Students will be trained to combine major theoretical perspectives such as developmentalism, neoliberalism, and welfare regimes with empirical understanding of country cases using a critical and comparative approach.", + "title": "Social Welfare in East Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5150", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Case studies are widely used in public policy analysis. But what assumptions do we rely on when we draw general lessons from specific policy events? What is the point of comparison and how can we do it fairly? This course examines what the systematic, close study of carefully chosen cases can teach us about political and policy processes. It will enable students to identify the major elements of comparative case studies as a research method, to consume published case studies in a critical manner, and to conduct an independent case study focused on public policy change.", + "title": "Comparative Case Study Method", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5151", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As the energy demand from rising Asian economies grows and climate change concerns intensifies so does the need for redefining interstate and state-market relations. The pertinent questions are as to why there is a lack of international cooperation in areas of energy and climate; what are the trade-offs involve in choices between various energ resources; and what is the role of states, markets, international institutions, and civil society in tackling energy and climate challenges.\n\nThis module equips students with the necessary theoretical and analytical skills to analyse international and national energy policy problems and design policy\nsolutions.", + "title": "International Political Economy of Energy and Climate", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5152", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Contemporary urban development policy and planning issues, and experiences in Asia. Assessments of goals, explanations of causes of successes and failures, policy options, planning and implementation. Part I Development Policy and\nPlanning: urban dimensions of the UN Millennium Development Goals. Part II The Livability of Cities: personal well-being (livelihoods and human capital) and social life (social capital, public space, the public sphere). Part III. The Ecology of Asia\u2019s Urban Transition: environmental sustainability, political ecology, global climate change and disaster governance. Part IV Globalization and the City: intercity competition, the rise of China and India, transborder networks, world cities, secondary cities.", + "title": "Urban Development Policy and Planning in Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5153", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In a world of uncertainty and complexity we need global change agents that can exercise leadership at the international and the local levels. The module is an intensive training program on how to be an agent of change by mobilizing people to face tough problems, do the adaptive work of change, build bridges of understanding, and create outcomes that add value to their communities and institutions. The module is for those who seek to be change agents in government, NGOs, civil society, and politics.", + "title": "The Global Change Agent", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5154", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course discusses the fundamentals of logic, moral philosophy and the art of policy communications. It has a theoretical component in political and moral philosophy and a practical component in policy communications. It provides a foundation for the tool of moral reasoning, the processes of public decision-making and the critical and analytical tools for public discourse.", + "title": "Moral Reasoning in the Policy Process", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5156", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the theory and analytical tools used by economists to analyze alternative regulations and policies for dealing with environmental problems including technology standards, emission taxes,and marketable permits. During this course we will analyze policies addressing various environmental problems including conventional air pollution, overuse of natural resources, and climate change as part of the general focus on the problem of economic growth and efficiency. We will employ tools from microeconomic theory, including consumer theory, firm theory, welfare economics, benefit-cost analysis, and general equilibrium theory to study the relationship between the economy and the natural environment.", + "title": "Economics of Environmental Regulation", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5157", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course explores the connections among events in Asia as they have unfolded since the end of World War II and examines them in relation to contemporary issues. It assesses competing explanations for longstanding issues, including the Taiwan issue, division of the Korean peninsula, South China Sea dispute, and trajectory of regionalism. These issues are playing out amid a major power shift, not only as a consequence of China\u2019s rise, but also with the emergence of Asia as a global agenda-setter. The course also examines the new threats to the region, from WMD proliferation to terrorism and competition for resources.", + "title": "International Relations of Asia after WWII", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5158", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What are America\u2019s interests in Asia? How has it gone about pursuing them and with what degree of success? The course explores these questions by examining U.S. perceptions of, and responses to, challenges in Asia since 1945. We will focus on the wars fought by America in Asia, the regimes it fostered, the economic/military institutions it built, and relate these activities to America\u2019s conceptions of its interests and its role as a great power. The approach of the course will be chronological and historical, with special focus on the most fateful episodes of America\u2019s engagement with Asia.", + "title": "America and Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5160", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Complex policy challenges in the 21st century call for fresh approaches and innovative solutions. Scientific evidence suggests that mindfulness will give policy makers an edge in dealing with these problems. Through cultivating and applying mindfulness in the study of key issues in Economics and International Relations, students learn to sharpen their focus, be alert to their biases, open their minds to new possibilities and think holistically. Issues to be covered include paradigms of economic thought, work and productivity, society\u2019s well-being, perceptions and misperceptions of global issues, cognitive biases in decision-making in crisis situations, and the role of joy and International Relations.", + "title": "Mindful Transformations in Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5161", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The family is the fundamental building block of society and the level at which many important decisions such as fertility and retirement are made. This module discusses a) how families are formed and dissolved, b) how families make decisions in terms of division of labour and allocation of resources; and c) drivers of inequalities within and between families. We will use the economic perspective to explain dramatic changes to the family unit sweeping across Asia and the rest of the world. Students will have a chance to apply these insights to policy case studies in an Asian or comparative context.", + "title": "Economics of the Family for Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5162", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a basic understanding of global climate change issues with a special focus on the economics and governance aspects. It begins with an introduction to climate change as a social scientific issue and discusses its history, economics, politics, the policy debates, international treaties, taxonomy of climate change scepticism, ethical dilemmas and, adaptation and mitigation policies and their limitations. The course uses a multi\u2010disciplinary framework which draws on theories and evidence from economics, sociology, human geography and political science.", + "title": "The Economics and Governance of Climate Change", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5163", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We are all aware of the disruptive impacts of violence and conflict over the security, economic, and social wellbeing of our increasingly interconnected societies. In a time when conflicts are becoming more complex, a better understanding of their dynamics and of the peaceful means to address them is a paramount necessity for future leaders and policy makers. This course offers an opportunity to develop analytical skills to understand today\u2019s conflicts and to learn key tools of conflict resolution.", + "title": "International Conflict Analysis and Resolution", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5164", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for individuals who are interested in the functions of the market in modern economies and who in the course of their careers may be in positions of regulating market behaviour for public policy purposes. The focus is to identify what makes the market imperfect or cause market failures. The course will also examine the appropriate form of governmental intervention.", + "title": "Markets and Growth", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5165", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course looks at health and human development in the context of a global economy. We will study the large improvements in health that have occurred in the last two centuries due to rising incomes and technological advances in public health and heath care. These health improvements will be linked to human capital and increased worker productivity as well as longer life spans and savings for retirement. The effects of health on population growth and development will also be investigated. We will look at the welfare implications of health improvements, economic growth, and globalization.", + "title": "Globalization, Health, and Human Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5166", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to public policy and health economics, with a special focus on the health care systems in Asia. It examines the roles and relationships between public policy in planning, implementation and evaluation processes, and different approaches of national systems in providing, regulating and paying for health care. Regional innovations in the organization, delivery and financing of health care systems will be analysed through selected country case-studies. Seminars and exercises on current topical issues include comparative health and economic policies, private-public participation in the health care industry, stakeholder analysis in health sector reforms and a final project to conduct a public policy and economic analysis of a health system in Asia.", + "title": "Public Policy and Economics of Health Systems", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5167", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will help students to understand the concepts and practice of leadership and develop a better knowledge of public service. Students will be exposed to insights and best practices, with emphasis on the public service and\nlearn the skills to develop into a capable leader. Students will learn to lead, anticipate the future, make decisions, know their bias, build teams, motivate, communicate, understand the public interest and become better leaders.", + "title": "Public Service Leadership", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5168", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a basic understanding of global food security issues from economics, governance and climate change perspectives with an emphasis on low-income countries. Key issues to be addressed include definition and measurement of food security and its current status, food production, distribution, food price shock, poverty, hunger and malnutrition, agricultural policy, biotechnology, Green Revolution and the role of institutions and public\npolicies to achieve and sustain food security.", + "title": "Global Food Security", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5169", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will introduce students to the way economists use theories of consumer and producer behaviour, and welfare analysis to analyze complex public policy issues. We begin by formulating the assumptions and basic structure underlying the competitive model. In the process we will point out the strengths and weaknesses of each assumption as a description of the way economic decisions are made. We then proceed to create more realistic models by relaxing some of those assumptions. The emphasis in this class will be primarily theoretical, although how the theoretical models get applied to policy analysis will be continuously stressed.", + "title": "Microeconomic Theory for Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5170", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to provide students with a \u2018toolbox\u2019 and working knowledge of advanced crosssectional and panel data econometric techniques\nfrequently used in applied microeconomic policy analysis and research. This course will cover major extensions to the standard OLS regression model and provide students with an introduction to the \u2018cutting edge\u2019 techniques used today to evaluate microeconomic theories and policies, including instrumental variables, difference-in-differences, matching estimators, regression discontinuity and quantile\nregressions. The emphasis of the course will be on estimating causal relationships that can then be used to make predictions about the consequences of changing a policy.", + "title": "Advanced Applied Econometrics for Policy Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5171", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will be expected to learn how to devise a feasible, policy relevant, research question, and to address they question using statistical methods. They\nwill undertake a literature review of the topic and find an appropriate data set. They will formulate a theory and devise and method of estimation and hypothesis test for\ntheir question and undertake robustness checks of their results. They will make presentations based on their project and write up a final project paper.", + "title": "Applications of Statistical Methods to Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5172", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover key issues in health economics. Students will learn why health is different from other goods and why health care markets are difficult to organize. They will examine the determinants of health and the demand and supply of health care services. They will study the health insurance market and why there is often market failure in health insurance. There will study cost effectiveness analysis. Through individual and group assignments they will apply this knowledge to the health sector problems of a particular country.", + "title": "Economics and Health in Developing Countries", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5173", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "That international politics can be conceived as a game with its own special rules is a truism for most analysts of the subject. Yet there does not exist a list of what the rules of the game are. This course will examine a list of ten possible contenders for inclusion in the list. The class will debate and dissect these \u201crules,\u201d with the aim of arriving at a mutually agreeable and defensible list of the key rules of the international politics game by the end of the semester.", + "title": "International Politics: The Rules of the Game", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5174", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How do political and psychological factors feature and impact on human decision-making, with what implications? This course introduces students to some of the most important findings on the psychological and political factors that shape\nhuman decision-making. The cases to be examined will be drawn primarily from the foreign policy arena, but domestic public policy examples will also be included.", + "title": "Decision-Making: Political and Psychological Influences", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5175", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In recent years, China has emerged as a major global economic power. Moreover, China has become increasingly integrated with the rest of the global economy. It is important to have a good understanding of China\u2019s increasing importance to global economic growth. This course is intended to provide students with an intensive overview of China\u2019s growing role in the global economy with focus on the interactions between China\u2019s domestic economic reform and its cross-border trade and investment. The impact of China\u2019s Belt and Road Initiative on both domestic economic growth and other developing, as well as developed economies are also discussed.", + "title": "China and the Global Economy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5176", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Focuses on the concept of progressive cities to assess cities in Asia. The class will form teams to cover four dimensions of the urban contribution to human flourishing: inclusion in public life and decisionmaking; distributive\njustice; conviviality of social life; and nurturing of the natural environment. Through a combination of lectures and workshop sessions, concepts will be deepened and\nevidence will be gathered about a select number of candidate progressive cities in Asia. In addition to individual reports, we will attempt to create a progressive city index to compare with liveable city, world city and other city performance measures.", + "title": "Progressive Cities in Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5177", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended to examine the leadership and decision-making skills relevant to public policy formulation and implementation.\nIt will be structured into 3 segments, namely:\n(a) the role and nature of leadership to public policy success;\n(b) the range of decision-making tools used in environmental analysis and the identification of the strategic objectives and policies, and\n(c) the role of behavioural economic insights and cognitive biases that public sector managers have to take into account in the choice and implementation of public policies.\nThe approach will be multi-disciplinary, and Singapore\u2019s experience will be used to illustrate the application of general analytical tools and approaches to public policy.", + "title": "Leadership and Decision-making Skills", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5178", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An inadvertent outcome of economic progress is pollution and environmental degradation. This trade off is faced by every decision-maker, and this module draws on knowledge from various disciplines in social sciences to characterize this problem and study possible policy responses. This module provides a economics and policy perspective on environmental challenges. It is divided into two parts with the first half on using economics frameworks to develop policy responses, and the second half on the process and politics of environmental policymaking. This course will equip students with skills and ways of thinking to better navigate environmental problems, policy design, and implementation.", + "title": "Environmental Social Science", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5179", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "LKY_SR2-3", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "LKY_SR2-3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course links trade policy to global value chains\n(GVCs), which are the driving forces of 21st-century\ninternational trade. The first part addresses specific issues\nin trade policy, such as trade in goods and services,\nforeign direct investment, intellectual property rights, trade\nand standards, free trade agreements (FTAs), and the\nWTO. The second part focuses on GVCs. First it covers\nGVCs from economic and business perspectives, and\nexamines how they work sectorally and geographically.\nThen it links GVCs to trade policy \u2013 at the national and\nsub-national levels, and how GVCs are covered in FTAs\nand the WTO.", + "title": "Trade Policy and Global Value Chains", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5180", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Fragile and failed states pose unique problems to\nthe international community. From the 1990s, wars\nin and among failed states have killed and displaced\nmillions. In an increasingly interconnected world,\ninternal insecurity fundamentally undermines\ninternational security.\nThis module focuses on understanding the main\ndrivers of state fragility and the impact on global\nsecurity. In understanding the root causes and\nconsequences of state fragility, students will work\nthrough appropriate and practical policy responses.\nThe module draws on contemporary case studies of\ncontested states and explores the issues through\nthe lenses of political science, international\nrelations, history, geography, sociology and public\npolicy.", + "title": "State Fragility and Peacemaking", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5181", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Economies succeed not just from generating ever improved domestic social outcomes, but also by navigating successfully their foreign relations. Nation states commit a dangerous error if they situate injudiciously in world order, not least with the current model of global power relations under ongoing stress. Against a background of conventional approaches, this module provides an economic perspective on rethinking world order. It asks what a rational world order is and investigates the role of smaller states in it. The course compares current reality to a rational world order, and analyzes how critical elements of such a new order might emerge.", + "title": "Asia's Ascent: The Economics of World Order", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5182", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Public policy is not just made. It must also be explained. To\nbe effective in positions of authority, public leaders should\nbe able not just to analyse policy, but to talk and write\nabout it as well \u2014 to communicate succinctly and\npersuasively, to frame issues, and to grapple with the\nworlds of ideas and perceptions, all taking place within a\nfast-moving digital media environment.\nThis course is designed to help future leaders improve their\nability to speak and write in challenging situations, from\nwinning over hostile audiences to giving TED-style talks\nand writing punchy op-eds suitable for publication in global\nmedia outlets. Having taken it, students will emerge with a\ndeeper understanding of differing styles of communication\nin public life \u2014 and the ability to begin to develop their own.", + "title": "Communications for Public Leadership", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5184", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course equips students to engage in well-informed\ndebates on how to power our civilisation while protecting\nthe biosphere. The first half of the course positions energy\npolicy within the broader context of sustainable\ndevelopment and, consequently, helps cultivate an\nunderstanding of the problems and prospective solutions\nassociated with fostering a transition away from carbonintensive\nenergy technologies. The second half of the\ncourse introduces students to the policy cycle and aims to\ndevelop applied awareness of the multi-faceted challenges\nthat policymakers face in attempting to cobble together\nsustainable energy policy.", + "title": "Energy Policy and Politics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5185", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Launched on the 50th Anniversary of Singapore-Japan Diplomatic Relations (SJ50), this module is designed to get students to consider future opportunities and challenges for sustainable development in ASEAN and Japan. It will\nbe taught by two professors, with distinguished public service and political leaders as guest speakers. Through interactive discussions, students will gain historical knowledge and new insights for broadening policy options in public administration, foreign affairs, the economy, trade, and international finance. The module will feature topics in energy, environment, agriculture, cyber\nsecurity, health/aging, science, technology and innovation.", + "title": "Japan and ASEAN", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5186", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In an interconnected and interdependent world with business, governments and civil society institutions converging and collaborating on projects and solving issues, with international corporations expected to share leadership, new mindsets, new tools and new narratives are required. This course is an opportunity to learn more about public diplomacy as a conceptual tool linked to other disciplines such as public relations, public affairs, corporate responsibility, strategy, sustainability, social psychology and governance.", + "title": "The Foreign Policy of Global Business", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5187", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a course for changemakers \u2013 those committed to addressing world issues, interested in learning tools and concepts to maximize positive impact with limited resources by focusing on value creation. The course helps students get familiarized with social entrepreneurship concepts and practices, and build awareness of their multiple applications in the public and the private sectors. Topics include: problem and solution identification, business model innovation, piloting, impact assessment, scaling impact, funding, pitching, social entrepreneurship ecosystems and public policies. This is an applied course: students will choose a real-world social venture project and work on it in teams during the semester.", + "title": "Social Entrepreneurship", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5188", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will help the student to understand better the practice of governance and learn how to build better and effective governance.\n\nThe student will be exposed to insights and practices of governance and the delivery of public services that draw from examples from across different countries. \n\nThe emphasis is on the practices of better and effective governance, rather than the theory. Each week, students will discuss an aspect of governance and then offer their own thoughts on the subject using their country (or another\ncountry that they have intimate knowledge of) as setting. Towards the end of the course, the student will propose solutions that may help towards achieving better governance in their country.", + "title": "Practices in Better and Effective Governance", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5189", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to help public management students hone and entrench the skills necessary to cultivate and implement good ideas and effective sustainable performance in public organizations. To do so, the course has been designed in a very unique manner. Firstly, prior to each class, students are asked to complete self-diagnostic exercises which help them to evaluate their current level of proficiency in the skill to be studied. Secondly, a comparably high number of case study discussions and group exercises will be undertaken in class. Accordingly, students need to come to class with\ntheir defences lowered.", + "title": "Managing People", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5190", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Understanding the interplay of Public Administration, Technology and Innovation is the object of this course, and its aim is to stay at the \u201ctop of the game\u201d and therefore to be capable of dealing with this key aspect of the public\nsphere today. What is the relationship between PA and Technology \u2013 which drives the other, what are the motives and interests involved, does cultural context matter, are there any choices, and is the specific PA model relevant?\nShould the bureaucracy innovate itself or promote business innovation? And should the focus be on the future or on the present?", + "title": "Public Administration, Technology and Innovation", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5191", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Data analytics is a scientific approach to help organisations solve problems, make better decisions, and increase productivity. Despite its business origins, analytics has been applied in governments, hospitals, and even museums, spurning a $125 billion market. However, a significant number of analytics projects fail due, in part, to poor science (techniques), art (e.g., implementation, change management) or both. This module covers the critical success factors for organisations embarking on their analytics journeys with topics spanning: project scoping, psychometrics, statistical modelling, text analytics, and applications in government, people, and healthcare analytics.", + "title": "Data Analytics: Science, Art and Applications", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5192", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to international and strategic thought in four Asian countries \u2013 China, India, Japan, and Singapore. As world power shifts towards Asia, it is vital to provide students with insights into how key Asian societies have thought about the nature of international life and how to deal with the threats and opportunities to their countries. Students will read key texts and thinkers, will make comparisons across the four sets of thinkers and will critically assess the relevance of the ideas they encounter for contemporary foreign and security policy.", + "title": "Asian International and Strategic Thought", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5193", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with a knowledge of natural disasters and climate change. It begins by establishing a link between climate-related disasters and human activity. It then considers the joint challenges of disaster risk reduction and management, and provides lessons for policy and investments. The module likewise examines the issue of climate change as an externality that can be addressed through policy tools geared towards mitigation and adaptation.", + "title": "Natural Disasters, Environment and Climate Change", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5194", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Post-Soviet Russia, after an interval of relative inactivity, has recently pursued an assertive foreign policy in its geographic neighbourhood and further afield. This module will familiarize students with Russia\u2019s place in the surrounding region and in the world system and analyse drivers of its international conduct, its capacity to exert influence, and constraints on Russian power, The course\nwill be framed by international-relations theory and will brief participants on historical background from the Cold War period and before. Specific topics will include Russian relations with the West and with its former satellites, the\nMiddle East, China, and the Asia-Pacific.", + "title": "Russia in Eurasian and World Politics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5195", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Education is one of the most fundamental areas of policy, as education impacts many aspects of life and society. This module uses the theoretical and empirical tools of economics to study education \nand education policy. Major topics include the monetary and non-monetary benefits of education; educational inequality with respect to gender, race/ethnicity, and socioeconomic status; and policy issues such as compulsory schooling, girl-friendly schools, and school choice. Examples are drawn internationally.", + "title": "Education Economics and Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5196", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The abiding opportunity of our globalized, multicultural world is to take advantage of cultural diversity. As individuals, we have to learn to live and work in multicultural settings. Our institutions need to learn how to deal with cultural diversity. As we learn and innovate, we have to understand how to take what seems to work in one culture and think about how to apply it in our own cultural setting. Finally, we need to understand cultural change, including how to shape or resist it. The course draws from many disciplines and uses examples from Asia and around the world.", + "title": "Cultural Competence", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5197", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course seeks to explore the role of political leadership in economic policy and performance. It starts with a discussion of politics at the central level and introduces the merits and problems in the Chinese economic context. Students will be exposed to two major debates about control mechanisms in managing central-local relations: fiscal decentralization and promotion tournament. They will critically engage these two theories by examining some recent empirical works. This course concludes with four important issues facing today\u2019s Chinese economy: urbanization, pollution, financial policy and corruption. Students will gain insights about policies that are crucial to China\u2019s future growth.", + "title": "Chinese Political Leadership and Economic Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5198", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Corruption is now perceived as a major challenge to public policy and governance facing many countries, especially in the developing world. This module, which focuses on efficiency consequences of corruption, provides students with quantitative tools to analyze the essence of corruption. Through lectures and class discussions, students will learn how to interpret the incidence, existence and persistence of corruption as an economist and policy maker. Students will be exposed to the most recent empirical studies to comprehensively understand the influence of corruption on economic growth. Finally, this module will examine policy issues and evaluate the anti-corruption efforts in different countries.", + "title": "The Economics of Corruption in Growth and Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5199", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Over the past decade, Singapore has been repeatedly assaulted by a variety of global risks such as disease pandemics; financial crises and terrorism that spread\nquickly in an inter-connected world. This module examines how Singapore as an open global city has been acutely exposed to the negative flows of globalisation.", + "title": "Singapore: Global City, Global Risks", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the increasing importance of \u2018soft\u2019 power to International Relations in the Asia-Pacific region. It surveys the strategies and policies implemented by different states as they all seek, for their own national interests, to project their soft power. Countries surveyed include China, India, Japan, South Korea, Singapore, Taiwan, and Indonesia.", + "title": "'Soft' power in the Asia-Pacific", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Traditional economics, which is one of the key theoretical cornerstones of public policy, typically assumes that human behavior is rational, preferences are stable, and\nindividuals are smart and unemotional. However, human behavior often deviates from standard assumptions due to psychological and social factors; analysis based on\ntraditional economics can therefore misinform policies and lead to detrimental consequences. This course discusses behavioral regularities that are of potential importance for public policy. Students will be exposed to behavioral economic theory and its applications to public policy in the areas of savings, investment, healthcare, climate change, taxation, labor supply, and monetary policy.", + "title": "Behavioral Economics and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Writing in The New York Times, Thomas Friedman encouraged policymakers to emulate the prevailing attitude in Singapore of \u2018taking governing seriously and thinking strategically\u2019. This module is a critical exploration of the basis and implications of such a claim, focusing on features of governance in Singapore that may be viewed as unique. To achieve this, such features \u2013 particularly Singapore\u2019s systematic attempt to manage risks and complexity \u2013 are discussed in the context of influential theories and models of governance. To bridge theory and practice, the module is team-taught by a top civil servant and a political scientist, both Singaporean.", + "title": "Evolving Practices of Governance in Singapore", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Economic Policy in a Global Economy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Politics and Policy in Southeast Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is focused on legal, policy and financial aspects of urban water management and infrastructure development in Asia. It examines how water is governed at the local and national levels in selected Asian countries, and provides some background on the regional and international contexts. Water issues are by their nature interdisciplinary, encompassing a wide range of legal, policy, economic, social and environmental aspects. This module is designed for policy makers, regulators, investors and educators. It will provide them with the knowledge and skills relating to the legal and policy-related aspects of water governance and management.", + "title": "Water Law, Governance and Management in Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a skills-based course that focuses on the interpersonal and intrapersonal dynamics that impact leadership. Participants are encouraged to clarify their own\nleadership direction and personal motives so they may make effective progress in pursuing their ambitions while avoiding typical areas of derailment. The classroom is used for both didactic learning, e.g., of diagnostic tools for\nanalyzing interactions in case studies and in class, and for practicing new strategies of action. Other sources of learning include readings, lectures, plenary discussions, small group work, film, and cases provided by participants\u2019 of their experience with leadership challenges.", + "title": "Exercising Leadership", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide students with a thorough understanding of the structures underpinning contemporary global governance. This will include detailed study of the multilateral institutions, in particular of the UN and the WTO, that provide its principal bulwark. The manner in which key global players pursue their perceived national interests within these institutions would be examined. The \u2018rise of Asia\u2019 against the matrix of changing global power relations, and the accommodation of re-emerging China and India would be analyzed. The role of small powers and their contribution to shaping global values and actions would be studied. All along, public policy perspectives and angles would be emphasized.", + "title": "UN and Global Governance", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course links the fields of macroeconomic and financial policies. It provides coverage of economic principles that underlie the operation of banks and other financial institutions. The role of money in the economy and the impact of the central bank and monetary policy on the macroeconomy are emphasized, as is understanding the foreign exchange market and some basics of monetary\ntheory and international finance. The focus of this course is on analytics.", + "title": "Analytical Issues in Money & Banking", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to selected aspects of Asian economic development and the region's interactions with the rest of the world. It will focus on developing simple analytical tools to understand key trends and macroeconomic, financial and trade policy issues that confront Asia in the world economy. Topics covered include sources of growth in the Newly Industrializing Economies (NIEs) in East Asia, the rise of China and India and their impact on the global trading system, foreign direct investment to Asia, currency crisis in Asia, Asia in the global\nfinancial system, and issues relating to Asian economic regionalism.", + "title": "Financial Issues, Trade and Investment in Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Asia's share of the world's GDP, which is currently little above twenty percent, is likely to double by 2030. This has drawn much attention to the dynamic emerging Asian region, especially to the economic giants China and India. This course explores different aspects of contemporary international economic issues in the\nregion. Coverage will be broad, focusing on financial crises, reserve accumulation, capital flows and currency wars, on the one hand, and issues relating to foreign\ndirect investment and developments in China and India, on the other.", + "title": "Contemporary Financial Policy Issues in Emerging Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The public official is constantly confronted with choices that have ethical dimensions. An obvious one is the attempt to influence officials' decisions by corrupt means. However, ethical issues facing public officials are usually more subtle. They range from the way officials define their political mandate to how they think about policy options that profoundly affect the lives of others. This course will explore the range of ethical issues and choices that confronts public officials and develop skills in recognising and resolving them. This module is targeted at students who are interested in ethics and public official.", + "title": "Ethics & the Public Official", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an overview of opportunities taken and the strengths obtained in the changes of the political economy of Singapore. It will cover Singapore from an East India Company settlement to its status as a Straits Settlement colony and then as a colony by itself, full internal self-government, merger with Malaysia and now an independent republic. Topics covered include how the political economy of Singapore coped with changes in the region, new commodities in the hinterland, population movements, global ideology, national aspirations, international finance, multinational corporations and economic volatility.", + "title": "Changes in Singapore Political Economy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a comprehensive view with rigorous comparative analyses that are essential for understanding the dynamics of economic growth in developing Asia.\n\nThe module also introduces to students concepts and analytical frameworks that enhance their competence in policy analysis for the issues related to economic growth and competitiveness.", + "title": "Economic Growth in Developing Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Innovation leads to higher productivity and economic growth. However, typical innovation metrics focus on input measures which may be necessary but are not sufficient to guarantee outcomes either in terms of adoption or diffusion. This course discusses a number of themes in innovation including network industries; the importance of country context and the role of innovation in developing countries; open data and cloud computing which provide new platforms for citizen participation in the public policy process.", + "title": "Innovation", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the intersection of Public Policy and Futures Studies. The course will develop an understanding of how anticipatory practices can support public policy. A methodological overview of futures research and studies\nand hands on knowledge of the Singapore Government\u2019s Risk Assessment and Horizon Scanning (RAHS) system, as well as other futures research tools and methods are given. Case studies of policy-foresight programs will be\ncomprehensively surveyed. A theoretical understanding of the convergence of public policy and futures studies is developed. Emerging issues in public policy (eGoveCitizen, Sino-global dynamics, alternative futures of\nglobalization and policy) are explored.", + "title": "Foresight Methods and Analysis for Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Innovation and Technology Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is for students to understand the EU and current topics in relation to this economic and political grouping, and its impact on the rest of the world. The course is directed both at European and non-European students.", + "title": "The EU: Special Topics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to social policy in population and health issues, with a special focus on countries in Asia that are experiencing rapid demographic and epidemiological transitions. It examines the relationships between population health and development issues, and the different approaches and methods of social policy utilized to compare present and future health and population-related challenges. Past experiences of population growth, movement and decline and the longer term effects on health and related sectors will also be studied with their policy implications.\n\nThe course takes a systematic life-cycle approach and is a practice-based and policy-oriented module. The practical applications of public health and population sciences are thus employed to the organization of public programs to meet the needs of specific population agegroups. In practice, existing government departments in Ministries of Health or Ministries of Social Welfare have been organized to deliver social services by age-groups - from birth to death across childhood, youth, adulthood and old age. Similarly, the organization of the class schedule takes on such a structure, and will have participation from invited practitioners from relevant government agencies.\n\nSelected regional experiences in population health policies and programs will be analysed in various casestudies. Seminar topics on current topical issues include comparative national population policies, family planning and reproductive health, maternal and child health, adolescent health, adult health, health of the elderly, endof-life issues, population ageing and the future of population health in Asia.", + "title": "Population, Health and Social Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers policy issues of modern ageing societies, with special emphases on families and comparisons between Asian and Western countries. To tackle the complex issues, we discuss both relevant theories and empirical evidence from various disciplines. The first part investigates demographic causes of population ageing\u2013decreased fertility and extended\nlongevity. The second part reviews public old-age support programs and discuss their challenges. We also describe policy options to mitigate the consequences of population ageing, and assess the effectiveness of the policies. The third part examines why families provide elder support, and how public and private old-age provisions are interrelated.", + "title": "Population Ageing, Public Policy, and Family", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores systematic ways to negotiate with a focus on value. It aims to help students increase awareness of the negotiation process as well as their own assumptions and behaviours, and to improve negotiation and influencing skills and results by developing systematic approaches to prepare and conduct negotiations. This is an experiential course, where students will engage in negotiation exercises, role plays and discussions. Other sources of learning include lectures, readings, videos and journals.", + "title": "Value- Focused Negotiations", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "India is a rising power. Its foreign policy and national security choices will be consequential for South Asia, for neighbouring regions such as Southeast Asia, for Asia as a whole, and increasingly for the world. India has always played a fairly large role diplomatically, beyond its neighbourhood. It is poised to extend its military influence as well. The course attempts to provide students with an overview of the problems that India confronts and how it typically goes about dealing with those problems.", + "title": "India's Foreign Policy and National Security", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module offers a critical introduction to essential concepts, approaches, and analytical tools in social policy from a comparative perspective with the purpose of improving the design of social policies. It will focus on the substance and context of social policies, the forms in which they are delivered and financed, and how they might be improved. Adopting a problem-solving approach from a design perspective, we will first understand the scope and magnitude of a number of social problems and then explore ways to address them effectively. To maintain focus, we will concentrate on education, health, housing, and pension in select countries in East, South and Southeast Asia.", + "title": "Social Policy Design", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to improve the understanding and applications of the principles and policies of sustainability and the environment. It examines the policy challenges of achieving global sustainability where strides have been made in some respects, notably poverty alleviation, while others, strikingly climate change and mass species extinction, have accelerated at alarming rates. The course will shift attention from \u201cimplementing\u201d what are often self-standing and competing sustainability goals, to focusing on developing \u201cfit for purpose\u201d policy designs for effectively and urgently prioritizing make or break sustainability conundrums.", + "title": "Principles and Policies in Sustainability and the Environment", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will address the salient aspects of how evidence informs policy making, covering the following areas: needs assessment; evidence generation and synthesis; presentation of evidence in an appropriate, useful and\nactionable manner; strengthening evidence generating and presenting capacity in low income countries; barriers and aids to use of evidence by policy-makers; engaging the public; and effectiveness of methods and processes to achieve evidence-informed policy. Health policy is used to illustrate concepts and practice, but principles are equally applicable to policy development in other sectors. The module will emphasize case studies from real policy situations but will also address the importance of sound conceptual frameworks.", + "title": "Evidence-Informed Policy Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Education is a significant area in public policy impacting individuals, families specific communities and society as a whole. It is widely seen as crucial to economic competitiveness, social cohesion and human development. In this module, students will learn about policy dilemmas, choices and consequences both in Singapore and in East Asia. Topics covered include access and equity issues, medium of institution, values and citizenship education and higher education.", + "title": "Education policy in Singapore: comparative perspectives", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Strategic Management in Public Organisations", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Good governance and managing conflicting ethical demands are key skills for policy makers. This course seeks to introduce students to the ethical aspects of some major problems in global governance. Topics include foundations of ethical theory, human rights, intervention, climate change, immigration and trade. Background readings come mostly from moral philosophical, political theory and political science. Each session pays special attention to a particular policy area in the international domain and thereby combines philosophical inquiry with applied questions. The course does not have any formal prerequisites.", + "title": "Ethics and Global Governance", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5231", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Understanding environmental economics and how it affects policy decisions is an important part of modern policy making. This module builds on the gateway module (PP5451 Foundations of Sustainable Development and Environmental Economics) and introduces advanced level economic analyses of natural resource management. The analyses involve critical reviews of concepts and methods \nin both microeconomics and macroeconomics leading to the formulation of resource management policies some of which deviate from acknowledged norms. Central to both the microeconomic and macroeconomic analyses is the recognition of the role of laws of thermodynamics and ecological systems balance on the functioning of economic systems.", + "title": "Applied Environmental Economics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The art of organizing is foundational to public policy design and implementation. Public managers need to master the skills of not only making policies but also managing their organizations, as well as working effectively with other organizations. This course examines fundamental theories of organization. It discusses strategies for enhancing organizational performance and puts them into the context of the public sector. Studies and practices from organizations in both public and private sector will be drawn on as resources for the class when considering how public organizations can be managed effectively.", + "title": "Organization Theory and Management", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide students with an understanding of some of the challenges and solutions to problems faced by developing countries across four key themes: public health, education, finance and financial technologies, and labour markets. The course will draw on recent advances in development economics and focus on new challenges faced by developing countries post-COVID-19. Students will develop a set of empirical tools that can be applied to the analysis of development related policy problems. This course will focus on empirical microeconomic development economics.", + "title": "Economics of Developing Countries", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Development Policy in Southeast Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to get an understanding of what is poverty, how to measure poverty, who is poor, what causes poverty, and what are the policy responses to poverty alleviation. In addition, the module will also examine the concept of inequality and its interlinkages with poverty. The module will combine theory, measurement, and policy with an emphasis on policy examples from Asia.\n\nIn addition to introducing students to mainstream conceptualizations of poverty and inequality such as predetermined poverty lines and Gini index, this module will bring in contemporary and alternative paradigms such as multi-dimensional poverty, capability deprivation, and inequality of opportunity.", + "title": "Poverty, Inequality, and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Strategies for Poverty Alleviation", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Urban Growth and Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Ethics and good governance are essential to the continuing development of the public sector, in developing as well advanced nations. This module will help you to develop authentic moral positions on public management issues and essential competencies for ethical leadership. You will approach this through first exploring the underlying concepts and philosophical underpinnings of ethical governance and the threats facing it. You will then develop your skills and ethical standpoints by putting your learning into practice with assignments and practical exercises, many of which involve actual cases and dilemma trainings used in professional programs all over the world.", + "title": "Understanding and Managing Corruption", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Applied Policy Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an ambitious, interdisciplinary survey course that covers much of the world and its regions in order to examine, through dynamic comparison, how different countries and regions of the world approach national strategy \u2013 that is, the framing, planning and execution of major national projects (ends) through the mobilization of key national means \u2013 across a number of policy sectors.", + "title": "Comparative Strategic Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5240A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the \"measuring and monitoring\" of public sector performance from several perspectives: the emphasis on measuring performance and the different types of measures and their strengths and weaknesses; how international agencies are at the centre of global efforts to stimulate reform; the dynamics of \"policy transfer\" and \"policy diffusion\"; the spread of so-called \"best practices\"; and how governments respond to these efforts.", + "title": "Measuring and Monitoring Governance", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5240B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "India's Economic Development and Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Topics in Economics or Quantitative Analysis: Developmenteconomics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5241A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Role of Microfinance in Developing Countries", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5241D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics on Development Policy in SE Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5241E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "India's development: a comparative perspective with China", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5241F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Asean", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5241G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Social Movements and Social Markets", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5241H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Asia in the World Economy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5241J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Political Economy of International Trade", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5241K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Policy Responses to Disasters", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Integrated Approaches To Sustainable Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Human Rights and International Relations", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Change Agents and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Strategic Thinking in Business & Government", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Perspectives on the Global War on Terror: Implications for policy-making", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Return of Great Power Politics in the Age of Globalisation", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Effective Implementation: Learning from Effective Implementers", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Policies for Urban Intervention", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "The EU as an International Actor", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Asian Regionalism and Regional Order", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Non-traditional Security Issues and Global Governance", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5242Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Infrastructure Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public Sector Reform in Developing Countries", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Network industries (energy, telecommunication, hardwaresoftware, etc.) have pulled the world\u2019s growth during the two past decades. More generally, economic and social networks govern many aspects of humans\u2019 life. This course analyses the peculiarities of economic behaviour, social interaction and strategic thinking in a network structure. The first part of the course is practical and focuses on the strategies of firms and governments on markets characterized by substantial network external effects. The second part, more theoretical, will introduce \nthe basic concepts and tools to better understand economic, political and social interactions in a networked world.", + "title": "Network Economics & Strategies", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public Policy and Management of Health Systems", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Economic Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Conflict Resolution", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Public policy today is in no small part influenced by public opinion. Public opinion is in turn influenced by a diverse set\nof actors in an increasingly complex media environment. Public opinion today is also made increasingly more complex\nby diverse interests and aspirations across different segments of society, that go beyond traditional demographic\nmarkers. How can policy-makers seek to better gather and understand public opinion to better inform policy-making?\nHow does the evolving landscape impact public policy decision making and implementation?", + "title": "Media, Public Opinion & Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Economic Development Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Institutions and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Ethnic Politics and Governance in Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Financial Policy and Issues", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "WMD Proliferation and International Security", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Energy Policy & Security in Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5255", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Financial Regulation and Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Urban Water Governance", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5257", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Relations and Diplomacy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Crisis Management", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intelligence, National Security & Policymaking", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5260", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public Roles of the Private Sector", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5262", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Global Issues and Institutions", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "States, Markets and International Governance", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Law & Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5265", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The changing social, economic, technological and political conditions across the diverse countries and populations of Asia, and the world mean that there is a need for policy professionals to have an overview of global health policies and associated issues. To do that, this module examines the roles and relationships among major players at the global level, and different approaches taken by various international organizations and national governments in tackling health and related problems in the context of the post-2015, post-MDG development agenda. The module will also compare and contrast global health policies with international policy instruments in other areas related to health. The module will examine global health trends and issues using a macro policy framework. Significant challenges in the organization of global health programmes and the complexities involved in international cooperation and the implementation of international policy instruments will be analysed through selected case-studies. Topics on current issues will include: role of international health organizations, international aid and development assistance, emerging epidemics and disasters, non-communicable diseases (including tobacco use), health impacts of climate change, cross-border health issues (e.g. food security), migration of health human resources (brain drain), international trade in health services, global health diplomacy, international health law and the future of global health.", + "title": "Global Health Policy and Issues", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5266", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Urban Transport Policy: A Global View", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5267", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Institutional Design and Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concepts, principles, and methods of environmental economics and public policy from an interdisciplinary perspective. Students will learn to apply these principles and methods to analyze important environmental issues, such as pollution, climate change, and natural resources, and to explore solutions for sustainable development, at the local, regional, and international levels.", + "title": "Environmental Economics and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5269", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-5", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s rise has been the most important economic event of the past 40 years. China has transformed itself from\nbeing one of the poorest countries in Asia to becoming the largest economy in the foreseeable future. China reforms\ntransformed the country from a largely planned, agricultural, closed and rural economy to a more market,\nindustrialized, open and urban economy. This course reviews China\u2019s key economic reforms since 1978, examines\nthe sources of China\u2019s economic success, and discusses the challenges and policy issues that have resulted from\nChina\u2019s emergence.", + "title": "China\u2019s Economic Development and Reforms 1978-2020", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5270", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-5", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Political Risk Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Energy Systems and Climate Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Political Islam and Governance", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5273", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Financial Management for Policy Makers", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5274", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Central Banks and Economic Management", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5275", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dialogue, Facilitation and Consensus Building", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5276", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Singapore's Development: A Comparative Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5277", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of the economic theories and concepts most relevant to health and healthcare. It introduces students to the theories of consumer and producer behavior, the interaction of economic agents in competitive markets, and market failures, with a focus on their\nimplications for health policy. Topics include demand for health and health care, health insurance, physician and hospital behavior, pharmaceutical markets, and other related topics. This course seeks to help students develop intuition for thinking about challenges facing health care systems in an economic framework by connecting theories to contemporary health policy issues and empirical work.", + "title": "Health Economics and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5278", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Clusters and National Competitiveness", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5279", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Politics and Development: Approaches, Issues and Cases", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5280", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Business enterprises today face new environmental challenges. Public demands for transparency on environmental performance, enhanced requirements for performing environmental impact assessments for new investments, and greater uncertainty about domestic and international environmental regulation. Businesses are\nincreasingly redefining how environmental drivers might define business value both in terms of opportunities and risks. This course will help students of public policy in better understanding how to engage these issues with stakeholders, including investors, regulators, and nongovernmental organizations.", + "title": "Business and the Environment", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5281", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Macroeconomic Programming and Policies", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5282", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "State-Society Relations in Singapore", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5285", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Comparative Public Management Reform", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5286", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Leadership and Teamwork", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5287", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to various issues confronting workers, employers, and institutions in the labour market. By familiarizing ourselves with the canonical theories in labour economics and econometrics, we will improve our capacity to understand the modern-day challenges to the labour market, including labor fource participation, changing returns to education and job training, technological changes, mobility and migration, productivity and wage, discrimination, signaling in job search, and challenges entailing globalization. We will continue with an analysis of policy interventions implemented to resolve the issues, such as social welfare programs, anti-discrimination laws, immigration reform, minimum wage, and on-the-job training.", + "title": "Labour Market Issues and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5288", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Women, Leadership & Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5289", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Policymaking in China: Structure & Process", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5290", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Security in Asia-Pacific", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using the European Union and ASEAN as examples, we will study the opportunities and challenges posed by regional (economic) integration. In particular, we examine the EU\u2019s institutional setup, its core policies, and its place on the international stage as the largest common market in the world. We will compare and contrast the EU's experience with that of ASEAN to see what conclusions can be drawn on the prospects of regional integration.", + "title": "The EU, ASEAN and Regional Integration", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5292", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Ruling the Net: It and Policy Making", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5293", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dynamic Modelling of Public Policy Systems", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5294", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Aid Governance", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5295", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore trade and investment issues in goods and services, in the context of ASEAN\u2019s goal to establish an ASEAN Economic Community (AEC) by\n2015. The issues will be approached from a mix of theoretical, empirical and practical dimensions. The module will cover the measures that ASEAN members\nare undertaking to move towards an AEC, and the challenges as well as potential benefits of deeper regional economic integration. Students will learn to\nanalyse policy issues based on a sound understanding of the theories of trade and foreign direct investment and facility with the construction and use of statistical\nindicators.", + "title": "Trade, Investment and Integration Issues in ASEAN", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5296", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a comprehensive overview of the sustainable development concept and entailing public policies trough an inter-disciplinary framework. The property rights will be explored while the concept of environmental valuation will be discussed. Attention will be given to urban wastewater and solid waste management by also focusing on the linkages between water-energy-food (WEF) nexus and sustainability.The role of decision-aiding tools in designing sustainable public polices will be introduced through simulation exercises. The parameters of climate change as an uncertainty factor will be presented while the role renewable energy scenarios for the future sustainable policy scenarios will be demonstrated.", + "title": "Public Policy for Sustainability", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5297", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a survey of Singapore\u2019s practices in public management and policy development from a comparative perspective. We will focus on innovations in public sector governance as main contributing factors for\nSingapore\u2019s strong economic growth in the last four decades, and discuss underlying principles and rationale for these innovations. The course consists of two parts. The first part of the course introduces to students key elements of public\nsector governance in Singapore, including governance structure, civil servant system, policy development, policy implementation, and financial management. The second part of the course examines Singapore\u2019s experience in policy development and implementation in selected sectors such as health care, housing, water supply, land transport, industrial development, information technology and telecommunication.", + "title": "Singapore's Development Experience", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5298", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Singapore is both an Asian and global leader in urban planning and sustainable development. This module, cotaught by a Singaporean and an American (both political scientists), analyzes how Singapore has transformed itself in little more than four decades from a Third World city with dismal apparent prospects to the vibrant highamenity First World city it is today. The module focuses\non public policy formation and implementation, with particular attention to Singapore\u2019s integrated pursuit of economic growth, environmental quality and\nsustainability, high-quality transport and housing, qualityof- life amenities, social peace, and nation building. Throughout, it links the analytics to real world examples, but mostly through sessions designed to enable direct interaction with policy-makers and civic organizations.Real world examples will also be drawn \nfrom other countries and urban regions.", + "title": "Singapore: The City", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5299", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Globalisation and Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public Financial Management", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This year-long module is designed to get students to think in a practical, problem-oriented, and multidisciplinary way through critical lenses and analytical tools available in the disciplines of Public Management and Leadership, Political Science and International Relations, and Economics, all pillars of a traditional Public Policy education. Students will be presented with an Asia-focused wicked problem, a\ncomplex case study, or a hypothetical situation through which they can engage, throughout the year and in a sustained way, central ideas and tools associated with each discipline. The module will be team-taught and enhanced through flipped classroom approaches.", + "title": "Policy Challenges", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is about approaches, institutions and processes in public policy. Specifically, it examines: definition and approaches to the analysis and practice of public policy; the politicaleconomic context of public policy; and the process of framing, making, and evaluating public policy. The objective is to build students\u2019 capability to conceptualise policy problems, devise strategies for addressing them, and comprehend policy documents.", + "title": "Policy Process and Institutions", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PP5402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this module is to understand foundational economics concepts and principles and their application to public policy. The module is organized in six parts: Part 1 The basic demand and supply framework of microeconomic analyses; Part 2, market demand to gain insights into decisions made by consumers; Part 3, how market inefficiencies can arise, the special characteristics of public goods, and the incidental benefits and costs of an economic activity; Parts 4 and 5 focus on firm behaviour and market structures; and Part 6, basic macroeconomic concepts and goals. Throughout the course, the focus of study will be on the policy interventions that would lead to more efficient resource allocation outcomes and improved welfare of society.", + "title": "Economic Foundations for Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5403", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This MPP core module course covers the key\nfoundational topics of public administration and\npolitics, such as the role of government; public and\nprivate sector relations and dynamics; politicaladministrative\nrelations; collaboration and networks;\nperformance management; stakeholder\nmanagement; and values, ethics, and anti-corruption\nstrategies. It will provide students with knowledge,\ntools, and best practices of thinking about these\nadministrative, political and managerial problems\nnecessary to effectively continue their studies.", + "title": "Public Administration and Politics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PP5405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To train students to be competent users and\nproducers of quantitative evidence for policy analysis,\nthis module will equip students with foundational\nquantitative analytic skills. The focus is on basic\nconcepts of multiple regression analysis and its\napplications to real-world policy problems.\nExercises through textbook examples, case studies,\nand group projects will enable students to identify the\nstrengths and weaknesses of the method.\nPP5407, provided in sequence in the second\nsemester, will provide students with more in-depth\nknowledge and skills required to understand and\nconduct policy evaluation.", + "title": "Research Methods for Public Policy 1", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5406", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Policy evaluation is critical in helping to decide\nwhether to expand, modify, or terminate a program or\npolicy. The objective of this module is to provide\nstudents with the knowledge and skills required to\nunderstand and conduct policy evaluation. The\nmodule will build on the foundational analytical skills\ntaught in PP5406.\nThe focus is on rigorous quantitative evaluation tools.\nThese will be taught using case studies and datasets\nthat will allow students to identify the strengths and\nweaknesses of these methods and learn how to\napply them to a policy problem of their choice.", + "title": "Advanced Research Methods for Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5407", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How can qualitative research methods be used to\nanswer questions about public policy development\nand outcomes? How do we overcome concerns\nabout objectivity and representativeness? This\ncourse introduces students to the conceptual\nfoundations of qualitative research in the social\nsciences. It covers a wide range of techniques for\nconducting research with policy makers and the\npublic, and on country cases. The course will\nprepare students to consume and conduct\nqualitative research by combining both theoretical\nand procedural understanding.", + "title": "Research Methods for Public Policy 2", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5408", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This core MPP module provides students with a working knowledge of theories and methods for public policy, and practical lessons and experiences. It examines and evaluates foundations, approaches, institutions, actors, processes, and cycles in public policy. It explores the context within which public policy is carried out; the interface with politics, administration and policy; the manner in which problems reach the government agenda; policy instruments and design; innovation, change and transformation; and implementation challenges and evaluation. This module\nalso focuses on developing writing and presentation skills on topics of public policy.", + "title": "Foundations of Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5409", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This hybrid course (online and in-class components) equips future leaders and change makers with the knowledge base and skills needed to succeed in the\ngrowing job market at the nexus of international development, social impact, sustainability, and policy implementation. The core components of the course are\nfield-based action learning, team-based projects, and case assignments. These are designed to enhance empathy and collaboration, as well as develop cross-cultural\ncompetencies in select fields such as financial inclusion, small business and social enterprise development, corporate social responsibility, gender and development,\neducation and health policy, sustainable development, and post-conflict reconstruction and governance.", + "title": "Working with clients: PAE Basics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5410", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Consideration of environmental sustainability is a vital part of policy making. This module provides a comprehensive coverage of sustainable development and is structured on the following premises: (1) The natural environment is the core of any economy and economic sustainability cannot be attained without environmental sustainability; and (2) Sustainable development requires the maintenance of a steady stock of environmental capital. The module is designed to enable graduates to work in multidisciplinary teams, to understand the sustainable development perspective and to be able to critique policy and practice. The module has a constructive alignment between outcomes, activities, and assessment tasks set at a postgraduate level.", + "title": "Foundations of Sustainable Development and Environmental Economics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5414", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This gateway to the Specialization in Public Management and Leadership focuses on the ways in which public managers and leaders mobilize resources to achieve important public purposes. In the module, we will discuss the roles and responsibilities of managers in the design, implementation, and evaluation of public programmes and policies. Since leaders try to anticipate and manage change strategically, they must have an appreciation of the integrative, interdependent nature of organizations, their environments, and their stakeholders. We will pay specific attention to the uniqueness of the public sector environment, and the relation between public managers and political principals and stakeholders. Required readings and cases represent a balanced mix of classical and recent materials and studies from around the globe, including Asia, USA, Europe and Africa.", + "title": "Foundations of Public Management (Gateway)", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5415", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the wake of global changes sweeping across national borders, adaptation, resistance and inertia have produced societal schisms, new vulnerabilities as well as opportunities from the perspective of public policy. The goal of this module is to identify and engage with a pressing policy problem spanning the continents of Asia and Europe, and to deliver insights from primary research, rigorous analysis and\nevaluation in collaboration with a client organisation. Students will learn to apply existing analytical skills in the service of a real-world policy issue and develop specific, actionable recommendations in a written report and presentation.", + "title": "Capstone Project: Comparative Study of Asia & Europe", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "PP5417", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this introductory course in financial management, students will learn the fundamentals of budgeting and accounting for public and not-for-profit organizations. Through readings, lectures, real-world case studies, and assignments, students will gain an understanding of how to use financial information in organizational planning, implementation, control, reporting, and analysis. In addition, students will develop their spreadsheet skills by using Microsoft Excel to perform financial analysis and create financial documents. Key topics include operating budgets, cash budgets, break-even analysis, cost allocation, the time value of money, capital budgeting, long-term financing, and preparation and analysis of financial statements.", + "title": "Financial Management for Public Organisations", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5504", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T06:00:00.000Z", + "examDuration": 150 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 135 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This project-based module allows students to develop\ninnovative solutions to real-world policy problems.\nStudents work in teams with external partners\n(government, corporate, incubators, non-profit\norganizations, foundations, etc.) to develop a concrete\ninnovative \u201cproduct\" that addresses a specific public policy\nissue. Students work with their partner on a project. They\nparticipate in workshop-style lectures on key issues related\nto innovation including diffusion, disruption, and policy\napplication, and on practical skills for policy innovation\nincluding design thinking, human-centered design,\nstakeholder analysis, and problem-solving processes.\nExternal partners reserve the right to select the student\nteams working on their proposed projects.", + "title": "Policy Innovation Lab", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5507", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-3", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course addresses regional integration through the\nASEAN and the EU in a comparative manner, including\nhistorical origins, basic structures, decision-making\nprocesses and main policy domains, both internal and\nexternal. The course also examines bi-regional relations\nbetween the EU and ASEAN as well as future challenges\nfor the two regions and regionalism overall.", + "title": "Regional Integration - the cases of ASEAN and EU", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5508", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks at pension systems design and public policy issues associated with retirement income provision in Singapore and internationally. It provides students with an understanding of different models of social security systems, the economics and finance of pensions, governments\u2019 role in pension provision, and reform options. Topics covered include: rationale for state involvement; types of pension schemes; plan design and policy choices; Singapore\u2019s Central Provident Fund scheme; fiscal sustainability of pension systems; distributional issues and risk sharing; recent reforms and policy developments; and international comparisons;. A special focus is given to the implications of population ageing on pension policy.", + "title": "Pensions and Retirement Policies", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5509", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "LKY_SR2-2", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "LKY_SR2-2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the concepts and theories pertaining to the introduction and governance of novel technologies in cities. We will explore innovative practices, analyse the environmental, societal, and economic impacts of various technologies and study analytical approaches that can aid us in devising smart policy solutions to utilise them while minimising their risks and unintended consequences. Some of the topics covered are: conceptions of future cities, risk and unintended consequences, design for socio-technical transitions, and governance of risks of novel technologies. We will analytically explore issues\naround crowdsourcing, sharing economy, 3d printing, ridesharing, autonomous systems, blockchains and automation.", + "title": "Governing Cities of Tomorrow", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5510", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches students how to systematically analyse complex policy problems and conduct policy design to address long-term challenges. The skillset is generic and can be applied to different domains (e.g. Transport, Environment, Energy, Health, etc.). This makes this course crucial for professionals with functions that require long-horizon thinking and decision-making. Relevant theories and techniques and their limitations covered include system analysis, actor analysis, policy networks, problem formulation, definition of goal\nhierarchies, information gathering, generation of a library of policy measures, analysis and selection of policy measures, multi-criteria decision making, generation of alternative solutions, and analysis of their trade-offs.", + "title": "Systemic and Integrated Policy Design and Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5511", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers contemporary issues in US-China foreign relations. It will connect key theories and empirical discoveries from academic research to inform policy questions about the nature of cooperation and conflict between the two great powers in a variety of domains. The course will also give students an opportunity to assess how US-China relations affects other important global actors. The course assignments emphasize reading, policy writing, and discussion and presentation, though students interested in data analysis and academic research will also have opportunities to build upon those skills if they choose.", + "title": "US-China Relations and Great Power Policy Making", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5512", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Singapore is a small postcolonial multicultural nation-state and a cosmopolitan global city. Its experience of rapid development led by a clean, elite, and pragmatic state has been codified into a model and in fact a nation brand, admired by developing and advanced countries alike. This module focuses on how Singapore\u2019s transformation into a top-rank global city has affected its policies surrounding social cohesion, urban development, social development, and foreign affairs. It examines the viability of the Singapore model in the face of complex global challenges, which may require fundamental adjustments to Singapore\u2019s strong state model.", + "title": "Governing Nation-State and Global-City Singapore", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5513", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the political, economic, and\nsecurity issues in the interstate relations of Southeast Asia\nsince the end of World War II. It studies regionalism and\nregional cooperation and conflict in Southeast Asia with a\nfocus on ASEAN as the epicentre of Southeast Asian\nregionalism. It examines how ASEAN member states\nhave coped with various challenges and sought to\nmanage regional order and stability.", + "title": "ASEAN and Regionalism in Southeast Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5514", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to train future policy makers to perform gender analysis and to develop gender inclusive public policy in the context of international development. This course covers theoretical, methodological as well as practical aspects of gender analysis in various sectors of the economy and discusses how public policy and programmes can be designed to bridge gender inequality. The course puts a specific emphasis on methodological issues including the available qualitative and quantitative instruments to measure empowerment and gender disparity.", + "title": "Gender and Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5515", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an advanced course that will provide students practical experience in the field and expose them to practitioners of political risk analysis. The module is\nfocused on completing an assigned political risk analysis project commissioned by real-world client which will be submitted to the client at the end of the module. Students will be organized into small teams that will conduct research, analyze data, prepare a political risk report to be presented to the client. Students will develop and demonstrate key skills related to political risk analysis and client management in a real-world environment.", + "title": "Practical Political Risk Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5516", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-3", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers policy issues related to gender inequality in contemporary, developed societies in Asia. To understand the complex dynamics of gender inequality in the Asian region, we take the life course approach, compare developed Asian countries with their Western counterparts, and discuss both relevant theories and empirical evidence from various disciplines.The first half investigates causes of the inequality over the life course, and describes policy options to reduce the inequality at various life stages. The second half focuses on evaluating options and making policy recommendations, and examining additional topics to prepare governments for gender-sensitive policy design and implementation.", + "title": "Gender and Public Policy: The life course approach", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5517", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The idea that \u2018pragmatism\u2019 accounts for Singapore\u2019s successful development and governance is at the heart of the Singapore model. But its practical meaning \u2013 even in the most seemingly technocratic policy examples \u2013 has been multiple, unstable, contradictory, and increasingly ideological in an age of neoliberal globalization, when the market often gets to dictate what counts as pragmatic, and often in ways that obscure and thus secure elite interests. This module explores the policy and legislative debates surrounding: (1) Sex, including prostitution, homosexuality,\nand procreation; (2) Addiction, including drug use, gambling, and smoking; and (3) Censorship of the arts and popular culture.", + "title": "Pragmatism and Public Morality in Singapore", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5518", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on financial management concepts and skills that are crucial for nonprofit organisations to achieve their mission, and it provides the opportunity to apply that knowledge to an operational context. Case methodology will be utilised to examine financial management practices of NGOs throughout the world. Through these cases, we will look at organisations' approach to cash flow management, revenue and earned income management, cost analysis and allocation, investment management, the analysis of new programmatic investments, project finance, and strategic financial analysis. This course is relevant to students interested in working with or in both domestic and international organisations.", + "title": "Financial Management for Nonprofit Organisations", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5519", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to understand institutional changes in a single-party authoritarian state. Its goal is to explain how politics and the evolution of political institutions help explain the patterns and outcomes of major socioeconomic reforms.", + "title": "The Political Economy of Reform in China", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5520", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Judges make public policy through their decisions in individual cases. This observation is especially true of jurisdictions that recognize opinions as authoritative sources of law. Are case outcomes best explained by the economic notion of social efficiency? How should legal institutions and rules be designed to maximize welfare? This course provides an introductory survey of the answers to these questions, covering the economic analysis of both private and public law. Topics to be addressed include property, torts, contracts, crime, administrative law, and statutory interpretation. Critiques of the neo-classical law and economics tradition will also be considered.", + "title": "The Economic Analysis of Law", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5521", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Appeals to the rule of law are ubiquitous in academia and politics. There is little agreement, however, about the ideals and practices entailed by a commitment to the rule of law. This course explores the rule of law from theoretical and applied perspectives. It begins by examining the different conceptions of the rule of law espoused by philosophers. Attention then turns to how the rule of law is invoked in legal and political debates over the administrative state, the war on terror, and the international order. Specific legal systems, like those of China and the United States, are also discussed.", + "title": "The Rule of Law", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5522", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to issues of diversity in contemporary organizations. The course will examine different perspectives on diversity, inclusion, and representation, their use in a global context, and their challenges and benefits for organizations. These issues will be explored through institutional, organizational, group, and individual lenses, and using a variety of theoretical and practical approaches, including psychological processes, group dynamics, and organizational interventions. These lenses will in turn be used to analyse core management issues such as recruitment, selection, and performance management.", + "title": "Diversity Management in Public Organizations", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5524", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module brings students up to date on the state of the field of international trade \u2013 both theory and empirics, without relying on overly technical models. The first part provides an overall understanding of international trade theory \u2013 comparative advantage, gains and losses, scale and scope, exporting vs non-exporting firms, offshoring and outsourcing; the second part resolves some common misconceptions about trade often seen in the media, and highlights key lessons from the latest empirical research; the third part focuses exclusively on trade policy in Asia, with episodes from Japan, China, India, South Korea, Bangladesh, Indonesia, and others.", + "title": "Understanding Global Trade and Asian Trade Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5525", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the role infrastructure plays in society, and how it shapes power relations. By combining approaches from history and Science and Technology Studies (STS), it aims to equip students with a multi-disciplinary skill set needed to understand the diverse range of issues undergirding infrastructural projects, politics, and policies. The module examines how ethnography has helped us understand large organisations; how humanity has overcome logistical challenges in different geographical and temporal contexts; the different kinds of infrastructure, including communication, water, bureaucracy, and knowledge infrastructures; China\u2019s Belt and Road Initiative; and new computing and digitalization technologies under \u2018Industry 4.0\u2019.", + "title": "The Politics of Infrastructure", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5526", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces game theoretic tools to examine strategic behavior and its consequences for a wide range of economic, political, and social applications. We develop important techniques to better navigate strategic interactions from decision-making under risk and uncertainty, collective decision-making, agenda setting and strategic voting, negotiating and bargaining, the value of common knowledge, information disclosure with signaling and screening, participating in auctions, and designing strategyproof mechanisms in practice. We also highlight the limitations of rationality in practice and develop strategic analysis and institutional design techniques in light of individual/collective decision-making given such empirical (ir-)regularities from behavioral economics.", + "title": "Game Theory and Strategic Decision-Making", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5527", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-5", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to broaden one's perspective on markets and marketplaces. We learn how to design markets, institutions, and organizations in practice, and analyze their allocative properties, induced incentives, and limitations, to help formulate regulatory policy. The course underscores practical takeaways in designing a wide range of markets, e.g., auctions for procurement and spectrum allocation, matching markets to assign students to schools, doctors to hospitals, and resettle refugees, centralized versus decentralized labor markets for civil servants, online market platforms, natural monopolies for electricity, and incentive schemes promoting pharmaceutical R&D. We cover issues like fairness, efficiency, simplicity, transparency, externalities, and collusion.", + "title": "Designing Markets and Marketplaces", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5528", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Will technological change lead to mass unemployment and civil unrest? This module aims to introduce students to the implications of technological changes in the labour market, through the lens of economics, sociology, demography, and other subfields of social science. One of the central themes of the module is the notion that technology holds heterogenous effects on the labour market constituents. In this course, we will delve into the sources of the heterogeneity. We will also examine and evaluate the current individual- and firm- level efforts as well as policy efforts to regulate the nature and the pace of workplace technologies.", + "title": "Technological Changes and Work", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5529", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the rapid advancement of technologies, the data available to us are becoming increasingly large and complex, making it difficult to analyze using traditional data-processing methods. In today\u2019s data-driven world, industries and organizations must embrace the challenges of big data to generate valuable insights to solve realworld problems. The ability to analyse big data has become an invaluable asset in the field of public policy. This course provides a gentle introduction for practitioners to big data analytics. Using Python, students will get hands-on experience working with big data sets, and applying visualization & data analysis methods to generate policy insights.", + "title": "A Practitioner's Guide to Big Data Analytics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5530", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth and practical introduction to essential data analytics tools and techniques for public policy analysis. Students will learn how to use R, a versatile statistical programming language, to clean, organize, visualize, and analyze data, and to communicate and evaluate data analytics results for academic and professional purposes. This module also serves as a gateway to more advanced learnings in data science and analytics for public policy analysis. No prior coding experience is required for this module.", + "title": "Programming R for Policy Analytics", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5531", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-3", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is a broad introduction to organizations and management. It consists of lectures and discussions based on weekly reading assignments. Students will combine their practical knowledge with the class readings to gain new perspectives. The topics include data and decision-making, reengineering work, organizational structure, organizational network and institutional theories. Students are expected to keep up with the readings and be prepared to discuss them in class. Understanding organizations is important for public administration and decision making in public policy. Under new public management, we have to understand organizations outside the public sector as well as in the public sector.", + "title": "Organizations and Management", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5532", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a survey of energy transition and green transformation in Asia and related policy challenges from a global perspective. The module concentrates on three topics: (i) Energy sustainability challenges and the green transformation imperative; (ii) Efforts of Asian countries in renewable energy development; and (iii) International best practices in promoting green transformation and policy lessons for Asia/ASEAN countries.", + "title": "Green Transformation and Policy in Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5533", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-05-09", + "end": "2023-06-13" + }, + "venue": "LKY_SR2-2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-15" + }, + "venue": "LKY_SR2-2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The SG Botanic Gardens, chicken rice, and pinisi boats - heritage is part of our lives, emotional attachments, memories, and identities. Because of its ubiquitous significance, heritage is also mobilized to facilitate international dialogue or legitimate shifts in geo-political landscapes. But whose heritage is invoked where international alliances and boundaries are concerned? How to make sense of competing heritage claims? This interdisciplinary, experiential course draws on politics, international affairs, heritage, geography and history in order to interrogate the geopolitical and economic significance of heritage. Combining theory and practice, the course also invites students to conceptualize individual \u201cgeopolitics of heritage\u201d projects.", + "title": "Geopolitics of Heritage", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5534", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module takes an applied economics approach to strategic management for public policy. We introduce foundational toolsets from network theory, behavioral economics, matching theory, contract and incentive theory for designing effective institutions, efficient organizations, and robust policy implementation. We study applied econometric methods used for data-driven policy evaluation randomized control trials, regression discontinuity designs, survey designs, and difference-in-difference methods. We cover case studies across wide-ranging policy domains to understand why certain policies and organizations worked/failed and why. We discuss issues like leveraging behavioral economics in policy implementation, networks for optimal information dissemination, implementation of affirmative action, personnel economics, corruption, etc.", + "title": "Strategic Management for Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5535", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-12" + }, + "venue": "LKY_SR2-2", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-05-10", + "end": "2023-06-14" + }, + "venue": "LKY_SR2-2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From cartoons to political slogans, and from military parades to data visualization, images provide a most immediate way of understanding reality. Images have similarly long played a critical role in shaping international politics and our understanding of them. Over the past decade, images have also become the main source for Deep Learning, expediting the prowess of Artificial Intelligence. This course examines how visual sources influence international political phenomena, considering the implications for both humans and AI. Students will explore theoretical and methodological debates, delve into concrete cases, and have the option to engage in filmmaking and/or exhibition curation.", + "title": "Drones, Data, Drawings - IA in the age of the image", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5536", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The on-going wave of globalisation has changed the character of threats to human, national and international security. The present security discourse stands in major contrast to the traditional realist understanding of security that prevailed during the Cold War. This interdisciplinary, experiential learning course examines key global challenges, typically described under the umbrella of non-traditional security. The course comprises of three interlinked parts. First, a conceptual/theoretical explication of non-traditional security. Second, in-depth engagement with five non-traditional security topics climate change, migration, technology, gender equality, and food security. Three, hands-on opportunities to design topic-specific interventions.", + "title": "Century 21 (In)security and global challenges", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5537", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5660", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0930", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Internship", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PP5661", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate public policy education. The Independent Study Module is designed to enable the student to research on an approved topic. The student should work with a faculty member to agree on a topic and a list of readings. The faculty member should provide a list of deliverables expected. A formal, written agreement outlining a clear account of the topic, programme of study, assignments and evaluation should be signed by the student and approved by the School prior to the start of the module. The student is expected to meet the faculty supervisor regularly. Evaluation is based on 100% Continuous Assessment.", + "title": "Independent Study Module", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5662", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate public policy education. The Independent Study Module is designed to enable the student to research on an approved topic. The student should work with a faculty member to agree on a topic and a list of readings. The faculty member should provide a list of deliverables expected. A formal, written agreement outlining a clear account of the topic, programme of study, assignments and evaluation should be signed by the student and approved by the School prior to the start of the module. The student is expected to meet the faculty supervisor regularly. Evaluation is based on 100% Continuous Assessment.", + "title": "Independent Study Module", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5663", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate public policy education. The Independent Study Module is designed to enable the student to research on an approved topic. The student should work with a faculty member to agree on a topic and a list of readings. The faculty member should provide a list of deliverables expected. A formal, written agreement outlining a clear account of the topic, programme of study, assignments and evaluation should be signed by the student and approved by the School prior to the start of the module. The student is expected to meet the faculty supervisor regularly. Evaluation is based on 100% Continuous Assessment.", + "title": "Independent Study Module", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5664", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this module is to describe how basic concepts in economics are applicable at different levels in public administration. The module commences with a presentation of the basic concepts and then illustrates the applicability and relevance of these concepts to decision making by recourse to a set of case\nstudies as well as widely cited examples in public administration. Topics covered include: Markets and Pareto Efficiency; Markets and Property Rights; Market Failure; Natural Monopolies; Strategic Outcomes.", + "title": "Economic Applications for Public Organizations", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the key concepts relating to the theory and practice of public administration. The module is organised around four themes: foundations (key concepts and contexts of public administration); core functions (different types of public organisation); key processes; values; and challenges. The module\nuses both a comparative approach and case studies from Asia to link theory to real-world practice of public administration. Upon completion of the module, students will be familiar with the key issues in public administration and will be able in better position to relate the various components of their degree programme.", + "title": "Public Administration in Theory and Practice", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-2", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module are to understand the basic principles and logic of government fiscal activities and government budgets. This module helps MPAM students become familiar with analytical approaches for resource allocation and decision evaluations in the public sector. Major topics covered include rationale for public sector; options for financing government expenditure; taxation policy; expenditure policy; fiscal decentralisation; privatization; role of cost recovery and user charges; budgeting systems and techniques; capital budgeting.", + "title": "Public Finance and Budgeting", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5703", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Government officials are frequently confronted with decisions about whether or not to initiate, continue, modify, or terminate policies or programmes, and the skills in policy analysis and programme evaluation are essential for them to make intelligent choices. This module introduces the key concepts and tools in the professional\npractices of policy analysis and programme evaluation in the public sector. Main topics covered in the module are process of policy analysis, market failures, government failures, information structuring, data collection methods, decision matrices, cost-benefit analysis, and programme evaluation.", + "title": "Policy Analysis and Programme Evaluation", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5704", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-07", + "end": "2023-05-09", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "LKY_SR3-5", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a coherent analysis of Singapore\u2019s development experiences focusing on the economic outcomes, political leadership, policy design and implementation, institutions and the interaction between these components. The objective is to provide students with greater insights into the policies that have shaped Singapore\u2019s economic development, sharpen their understanding of policy making and implementation in Singapore and encourage them to reflect on its relevance to their own country and organisations. The module will draw upon the expertise of senior government policy- and decision-makers as well as those who have been involved or researched in policy-making. It will involve visits to relevant institutions in Singapore and a short attachment to a government agency in Singapore.", + "title": "Comparative Public Policy and Management: Singapore and Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5705", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-5", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides basic grounding for understanding macroeconomic indicators, economic development objectives and principles of market economy within an inclusive society. The study on open aggregate demand and supply model enables analysis pertaining to impact of monetary and fiscal policies on macroeconomic environment. Appreciating the role of the government on budget sustainability, financial liberalization and ease-of doing business would enhance understanding on dynamics balance of payments, capital, saving and investment flows. Ability to analyse impacts of financial crises and international reserve currencies would be combined with a good treatment on evaluating comparative advantage and rule-based global investment and trading system.", + "title": "Economic and Business Environment", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5706", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-2", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-04T07:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the development of urban areas and the public policies that lead to rational and effective urban structures and institutions. The course begins with an examination of the theories and principles that explain the existence of regions and cities. These principles will then be used to establish criteria for evaluating urban policies and to look at several urban problems. Substantive areas which will be explored in the course include land use, housing, transportation, economic development, the environment, urban public finance, and intergovernmental organisations/institutions.", + "title": "Urban Development and Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5711", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-09", + "end": "2023-05-11", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "LKY_SR3-5", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course addresses a number of cutting-edge issues in the international economic policy area. It addresses issues in the real trade area related in, particular, to the interaction between the economic and political dimensions of trade policy, the recent shifts from multilateral approaches to trade liberalization towards regional and bilateral approaches, and the status of the Doha Trade Round. Even though the focus of the course will be on global issues, extensive examples will be provided from Asia and the course will consider how the region is responding to the challenges of globalization, including in the context of he \u201cNew Asian\nRegionalism\u201d.", + "title": "International Economic Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course would seek to provide an in-depth understanding of the important role played by the financial sector in a modern economy, including the potential contribution of a vibrant financial sector to economic growth and financial stability. The course would examine the preconditions for a strong financial sector and measures available to policymakers for strengthening the financial sector. Particular emphasis would be placed on the special challenges of building strong financial sectors in developing countries. Much of the course would focus on financial regulation and supervision, its rationale and relationship to financial sector development. The two broad types of financial regulation, prudential and market conduct would be examined and consideration would be given to the characteristics of an effective system of regulation and supervision. Attention would also be given to financial crises, their capacity to undermine economic development and techniques available to policy makers, central bankers and regulators for minimizing the risks and consequences of financial crises.", + "title": "Financial Regulation and Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5713", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is aimed at providing the basic tools for analyzing a range of important internation alfinancial and macroeconomic policy issues. The course will cover balance of payments and exchange rate determination, the informational efficiency of the foreign exchange market, monetary and fiscal policies under alternative exchange rate regimes, currency volatility and crises, optimal currency areas, the choice of exchange rate regimes, external debt issues, and the behavior of international capital flows. In the process, the course will also review the broad evolution of the international\nmonetary system since the second half of the nineteenth century focusing on the nature of the international adjustment process under alternative exchange rate regimes, the Bretton Woods System of pegged but adjustable exchange rates, and the current period of generalized but differentiated floating (Bretton Woods II or Inflation Targeting Plus?). The course will also address a number of topical policy issues including the possible forms and rationales for the ongoing efforts to strengthen\nfinancial and monetary cooperation in Asia as well as the role the region is playing in financing global current account imbalances through massive reserve accumulation. Unlike discipline-oriented courses that focus mostly on analytical issues, this course will consider real world policy issues with particular attention to Asia.", + "title": "International Financial Policy and Issues", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5714", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding on policy objectives and impact of industrial clusters including infrastructure requirements, approaches in which investors were being attracted, incentivised, and managed. Linkages on operational efficiency of industrial clusters to transformation of national competitiveness in terms of tangible and non-tangible assets will be made. In particular, through commissioned case studies on global industrial parks including those in China, Indonesia, India, Europe and America, the critical role of the government in terms of positioning and planning of industrial clusters, reflecting shifts in production value chains, availability of factor of productions leading to comparative advantages will be highlighted.", + "title": "Industrial Clusters and National Competitiveness", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5715", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is to examine the key security issues in Asia-Pacific, with focuses on the Korean Peninsula and the Taiwan Straight. The principal questions include: the tension between the two Koreas, the nuclear issue and its impact, the tension between Mainland China and Taiwan, the policies and interactions of the United States, China, and other powers in the region, and the future prospect of the reunifications of the two Koreas and China/Taiwan. This course is aimed at enhancing the students\u2019 research and analytical ability, deepening their knowledge on Asia-Pacific affairs in which involves vital stakes USA, China, Japan, Korea, and ASEAN, and gaining insights on how security policies are produced and implemented, given the security environment in the Asia-Pacific region.", + "title": "Security in Asia-Pacific", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5716", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the evolving role of the state in economic development and the developmental strategies and policies of the major economies in East Asia. It will examine issues relating to development/ underdevelopment, monetary management, regional integration, the World Trade Organization and government-business relationships. The question of the \u201crise of China\u201d and its\nimplications for the regional and international political economy will be discussed. By the end of the course students are expected to have developed sufficiently sophisticated skills and understanding of the complex realities of political economy of East Asia.", + "title": "Political Economy of East Asia", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5717", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-02-06", + "end": "2023-05-08", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 14 + ] + }, + "venue": "LKY_SR2-2", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed for students who desire to have in-depth knowledge about China\u2019s policymaking structure and process. The course will examine how the policymaking process is structured, what are the internal dynamics, and how they impact on policy outcomes, given the China\u2019s political system. The aim is to provide students with a clear understanding that policymaking in China, as in the other politics, is essentially a process of compromise making, in which the actors (policy makers) make decisions according to not just their interests but also their structural positions and the procedures they have to follow in policymaking", + "title": "Policymaking in China: Structure and Process", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5718", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the major challenges faced by the public sector today is to manage risks and disasters caused by natural, social and ethnic factors at policy, institutional and operational levels. To cope with these challenges, public sector organizations must learn to discern the hidden risks in these areas, grasp predisaster mitigation and preparedness skills, optimize bureaucratic structure and inter-agency coordination mechanisms, mobilize social forces efficiently and adopt cutting-edge technology and equipments. The major topics of this module include: China\u2019s social reform, social protest management, natural disaster management and ethnic conflict management.", + "title": "Public Sector Risk Management", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5721", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The public sector is under increasing pressure to improve outcomes and increase outputs of their organizations, while simultaneously improving efficiencies and effectiveness. To meet these challenges, public sector organizations must revisit their strategic management processes and measurement systems. While many strategic management frameworks have been developed for the private sector, the same is relatively scarce for the public sector organizations. The major topics of this module include: contemporary strategic management frameworks, appropriate measures for public sector organizations, strategic implementation tools, case studies of public organizations who are Singapore Quality Award winners, etc.", + "title": "Strategic Management", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5722", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "High economic growth in Asia, led mainly by China, in the last three decades was a spectacular phenomenon. Both Hong Kong and Taiwan have contributed to and benefitted from China\u2019s growth. Singapore has deepened economic relationship with China since China\u2019s opening up in the 1980s.Its successful projects such as Suzhou Industrial Park, Tianjin Ecological City and Guangzhou Knowledge City\ndemonstrate the joint developmental potential between the two countries. Hong Kong, Taiwan and Singapore have had different historical experiences, and formed different social and political systems. Their socioeconomic elements, which are the products of the various systems, have been useful and have contributed to China\u2019s phenomenal economic expansion in recent years.", + "title": "Political Economy of Taiwan, Hong Kong and Singapore", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5723", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Sociological and psychological perspectives on management. The sociological perspective includes coverage of: organization structure and design; organization culture; control and coordination systems; the nature and functioning of small groups in organizations; and organization development and change. The \npsychological perspective addresses topics such as: comparative views on leadership; roles and functions of the chief executive; the role of power, influence and politics; establishing supportive communications; enhancing employee performance through motivation and empowerment; delegating for esponsiveness; managing conflict, change and varied stakeholders.", + "title": "Leadership Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5724", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1715", + "weeks": { + "start": "2022-11-30", + "end": "2023-01-04" + }, + "venue": "LKY_SR3-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1215", + "weeks": { + "start": "2022-11-28", + "end": "2023-01-02" + }, + "venue": "LKY_SR3-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Human behaviours in a variety of situations not only deviate from standard rationality assumptions, but they do so in systematic and predictable ways. These deviations are due to cognitive biases, psychological complications and limitations, and social influences. Analysis based on standard assumptions can therefore misinform policies and lead to detrimental consequences. This course presents and discusses behavioural regularities that are important for policy analysis and formulation, and discusses how those behavioural regularities can be used in policy design and implementation to achieve better policy outcomes.", + "title": "Behavioural Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5725", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-06", + "end": "2023-05-08", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 14 + ] + }, + "venue": "LKY_SR3-5", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course exposes the students the key concepts of city planning, real estate market and development process. Recent years have witnessed rapid urbanization in the developing Asia and transitional China and some of its consequences \u2013 substantial urban growth, dramatic ups and downs of real estate markets, financial markets as well as regional economies. The government officials and state-owned enterprise (SOE) executives are facing unprecedented challenges and opportunities, such as how urban planning theories may help to solve urban problems? How zoning regulation may affect urban land development? How bubbles in real estate market were formed? How do the fundamentals determine equilibrium demand, supply, and prices in the real estate market? How to make prudent real estate development decision?", + "title": "Real Estate Fundamentals and City Planning", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5727", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers technology, innovation, organization and policy broadly by discussing economic and sociological aspects of technology and innovation. In particular, the objective is to develop an understanding of the technological innovation process, the organization of innovation and how these are affected by the policy environment. The major topics of this module include key issues in innovation management, the dynamics of innovation, innovation-driven growth in large and small organizations, role of public sector investment in research, innovation and enterprise, intellectual property strategy and policy, and the impact of the Fourth Industrial Revolution caused by recent transformative technologies.", + "title": "Technology and Innovation Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5728", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-02-08", + "end": "2023-05-10", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "LKY_SR3-5", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Public sector organizations have traditionally been blamed for bureaucracy, inefficiency, and corruption, especially with the rise of new and social media. These apparent failings have resulted in poor relationships between the organizations and citizens. Many efforts aimed at improving the relationship seem to fail due to reasons that include a lack of understanding of citizens' changing expectations and an absence of strategic and planned communication. The major topics of this module include: evolution in public sector communications, closing communication gaps through intangible assets, building public reputation, building social capital, improving public engagement, building trust etc.", + "title": "Public Sector Communications", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5729", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1215", + "weeks": { + "start": "2022-11-30", + "end": "2023-01-04" + }, + "venue": "LKY_SR3-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1715", + "weeks": { + "start": "2022-11-28", + "end": "2023-01-02" + }, + "venue": "LKY_SR3-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the process of globalization, supply chain restructuring has not only promoted the efficient use of resources, but also led to the rise and fall of national power. From the perspective of globalization and supply chain, this module explores how countries can engage in international strategic co-opetition through policy formulation, and how related competition can reach the balance between fairness and efficiency. Specifically, the instructor will cover a range of issues inlcuding power shifting and transition in international relations, supply chain security and resilience, market research and development, intellectual property governance, and legislative competition related to S&T policy etc.", + "title": "Strategic Co-opetition Policy & Supply Chain Deployment", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5730", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1215", + "weeks": { + "start": "2022-12-01", + "end": "2023-01-05" + }, + "venue": "LKY_SR3-1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1215", + "weeks": { + "start": "2022-11-29", + "end": "2023-01-03" + }, + "venue": "LKY_SR3-1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the key concepts and approaches of policy design, implementation, and evaluation in environment, energy, and natural resources. We will first discuss the origins and consequences of major environmental, energy and resource issues, including pollution, climate change, energy market, ecosystem services, etc. We will then explore recent advances in research and practice to address these issues, including government regulation, market-based solutions, and other policy instruments, with a focus on quantitative methods and case studies globally. The emphasis is on how the interaction of natural science and social science can support evidence-based policymaking in sustainable development.", + "title": "Environment, Energy and Resource Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5731", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-02-07", + "end": "2023-05-09", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13, + 14 + ] + }, + "venue": "LKY_SR2-2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Social policy plays an important role in promoting social development and fostering social solidarity. In the coming decades, social policy has to respond to profound economic, technological and demographic changes. This module draws on the literature as well as relevant Singapore and China studies to explore factors affecting social policy making, implementation and evolution. Specifically, this module covers key domains including social security, health care, housing, and aging. It also introduces new ways of steering and emerging practices in addressing socioeconomic challenges. To enrich the diversity, the instructor will also cover a small amount of Hong Kong and Korean policies.", + "title": "Social Development and Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5732", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1715", + "weeks": { + "start": "2022-12-01", + "end": "2023-01-05" + }, + "venue": "LKY_SR3-1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1715", + "weeks": { + "start": "2022-11-29", + "end": "2023-01-03" + }, + "venue": "LKY_SR3-1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is organized into two broad sections of microeconomics and macroeconomics. The course starts with an introduction to core concepts in microeconomics, including game theory, behavioural economics, and information economics. This sequence closes with a discussion of topics in labor economics and human capital accumulation. The macroeconomics sequence studies the macroeconomy in the short and long run. Topics include financial crises, the impact of automation on workers, and growth accounting. Broad topics are studies in each part through different lenses and include applications that draw insights from Singapore\u2019s policy landscape and contrast them with policies of other\ncountries.", + "title": "Economic Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5801", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-5", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Public sector managers are frequently confronted with decisions about whether or not to initiate, continue, modify, or terminate policies or programs, and the knowledge and skills in policy analysis and program evaluation are essential for them to make intelligent choices. The module will cover important considerations in conducting policy analysis and evaluation, such as identifying policy problems, establishing criteria, assessing policy alternatives, choosing among policies, and evaluating policy impacts.", + "title": "Policy Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5802", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Public managers are answerable to various groups of people including those within hierarchical structures, political parties and politicians, citizens and civil society groups and also international actors and organizations. Also public managers are often caught in policy dilemmas and are tasked to carry out policy promises in very challenging contexts. This course aims to introduce students to key concepts in the discipline of public administration. Students will explore various ways to think about these public management problems. Students will be able to understand theoretical concepts and appreciate their applicability to real-world practices.", + "title": "Public Management", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5803", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-5", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Governance Study Project (GSP) is a year-long team- based project. Consisting of a study trip at the end of the first semester, a seminar, and a final conference the end of the special term, the GSP connects the beginning to the end of the degree programme, requiring students to put to use the knowledge and skills learnt in each module. Through projects that are real public problems, students will acquire skills related to analysis of complex managerial\nproblems, basic research, and writing and other presentational modes. The GSP also aims to develop team building and a strong sense of cohort.", + "title": "Governance Study Project", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5804", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the three main streams of IR theory: realism, liberalism, and constructivism. In particular we will explore theories of the balance of power, the balance of threat, the rise and decline of great powers, hegemony, cooperation theory, the role of international institutions in global governance, and the structures and relations of identity between and among states and societies. Major contemporary issues that will be addressed include the relations between China and the United States; the global political economy, including trade and development, and the prospects for global cooperation on issues such as climate change.", + "title": "Introduction to International Relations Theory", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5901", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "International Security - Concepts, Issues & Policies", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5902", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course brings together politics, economics and international relations on issues relevant to the global economy. It is divided into three parts: 1) IPE theory; 2) history of the world economy, focusing on the post-1945 era; 3) modern policy. Policy issues covered are in macroeconomics and finance, trade and investment, and energy and environment. Major regions of the world economy are covered, as are the key actors \u2013 governments, international governmental organisations, business and NGOs.", + "title": "International Political Economy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5903", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to provide a graduate-level introduction to the main methods\u2014qualitative and quantitative\u2014commonly used in the analysis of international affairs. What is a good question and how do we go about assessing the answers given in the field of international relations? What\nare some of the most important methods or strategies of inquiry used by students of international studies to support or demonstrate their claims? These are the main questions addressed by module. The aim is to introduce you to some of the key methods of the field, encourage you to think critically about them, and where appropriate, apply them in your research and writing.\n\nEach session will consist of three segments. It will begin with a lecture by one or both the instructors. The lecture will be followed by a question and answer period, where students are encouraged to respond to the issues raised by the lecture and readings. The third segment will be devoted to group exercises or presentations that will allow students to apply and/or critically engage the methods and methodological issues raised by the lecture/discussion.", + "title": "Research Methods in International Affairs", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5904", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on how states formulate and implement their foreign policies. It is structured based on different levels of analysis: systems, state, leaders, bureaucracies/institutions, and society. The course analyses the various constraints that each of these actors face, how they interact with each other, and the processes and mechanisms through which they resolve their differences and formulate policy. It also examines the conditions in the implementation process that impact policy outcomes. Major themes include the state as rational actor, the role of personalities and their psychology, the impact of ideas and cultures, bureaucratic politics, and the role of interest groups and coalitions.", + "title": "Foreign Policy Analysis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5905", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Countries interact economically via the flow of trade, capital, and migration. Changing policies that affect these\nmovements can have major implications for other countries. This course is an introduction to these concepts and will\nfocus on developing simple analytical tools to understand key trends and policy issues, with illustrations from Asian\neconomies. The first part is dedicated to the study of economic growth and the process of economic development,\nwith the goal of understanding why are some countries rich, whereas others remain poor? The second part of the\ncourse is dedicated to topics in international trade, migration, and exchange rates.", + "title": "International Economic Development", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5906", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Financial markets\u2019 meltdown, climate change, and cyber-threats are only some of the global problems that states cannot manage alone. All require cooperation among governments and increasingly with their citizens and the private sector; some need international norms and mechanisms; others call for international and regional organizations. This course provides an introduction to the evolving architecture, processes, and norms of global governance. It then provides an in-depth analysis of the actors, norms, and challenges in the supply of some of today\u2019s critical global public goods, including financial stability, economic development, trade, climate change mitigation, global health, and a secure cyberspace.", + "title": "Global Governance in a Changing World", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5908", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_TB10SR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Asia-Pacific is the most important region of the world with its economic vibrancy and strategic importance, and presents a plethora of important and puzzling security and economic challenges. In this course we will utilize various theoretical approaches to examine and explain a set of substantive issues in the international relations of the Asia-Pacific: US-China rivalry; territorial disputes; Taiwan issue; North Korean nuclear threat; Japan\u2019s foreign policy; the so-called \u2018history problem\u2019 issue; ASEAN; security institutions; economic patterns; human rights; and environmental and aging society problem. In addition, we\nseek to understand the future trajectory of the Asia-Pacific.", + "title": "Geopolitics of the Asia-Pacific", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP5909", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-1", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The MIA thesis is an independent piece of writing that represents the culmination of a student\u2019s training in International Affairs. It is an opportunity for students to investigate a significant question in international affairs\u2014 and discover the answer--through research, reflection, analysis, and writing. Another way to think about the thesis is as an exercise where students tackle an important international affairs problem and come up with an original solution.", + "title": "MIA Thesis", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "PP5910", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "0830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The MIA Capstone Project is an internship-based project culminating in a paper/report on an international issue or challenge that students worked on or observed during the internship.", + "title": "MIA Capstone Project", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "PP5911", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "0900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The White Paper is a policy-focused report that addresses a current or emerging international issue facing an imagined/hypothetical client, which can be a government, international or transnational organization, private sector entity, or civil society entity such as an NGO. This is to provide an option to students who prefer a more policybased project but who are not able to secure internships.", + "title": "MIA White Paper", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "PP5912", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Foundations of Public Policy: Theories and Methods", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP6702", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-4", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines emerging directions in policy research in the contemporary literature in public administration and public management. It focuses on the\nidentification and critique of the research strategies and methodological choices made by prominent contemporary scholars in the field. It prepares students for Ph.d-Level comprehensive examinations in the subject", + "title": "Foundations of Public Administration", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP6703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide economic perspectives on selected features of economic systems, and on design, implementation, and outcomes of various public policy issues. The first part of the course covers broad areas\nsuch as the nature of market systems and capitalism, the economic boundaries of the State, and economics of globalization. The second part of the module focuses on selected public policy themes (such as, inequalities) and issues such as social security, health, education, state enterprise reform, taxes and subsidies, and environment. The module emphasizes that while economic principles are universal, their application must be contextual and capability-driven.", + "title": "The Economics of Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP6704", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-4", + "day": "Monday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Doctoral-level research seminar on institutional theory, emphasizing: (i) frontiers of research on institutionalism (from the fields of public administration, organizational\nsociology, and political economy) and (ii) new research directions. The aim is to train students in theory-building and the conduct of original research in institutional analysis and design, which requires developing an ability to critique extant literature and identify open questions that are ripe for investigation. Open to masters students with instructor's permission. The course begins with an\ninvestigation of current frontiers in research, and ends with positing new directions for inquiry.", + "title": "The Politics of Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP6705", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-4", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the second in a two-module series in research methods in public policy. This module provides a more in-depth understanding of the theory and practice of empirical methods, both quantitative and qualitative, used to study the\ncausal effects of policy on observed outcomes. It focuses on the applications of econometric techniques to policy research with real world data sets. Students apply these techniques to real-life case studies and present analyses in class.", + "title": "Quantitative Methods for Public Policy Research", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP6706", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the course is to enable students to develop\nadvanced skills in designing and implementing qualitative\nand mixed research methods for public policy research.\nUpon completion, students should 1) be able to\ndifferentiate the various ontological and epistemological\napproaches to qualitative research; 2) have an in-depth\nknowledge of qualitative research designs for descriptive,\nexploratory and explanatory research, along with their\npotentials and limitations; 3) be able to put together a\nresearch proposal on a given research topic in their\nchosen fields; and 4) gain practical experience in applying\ntechniques of qualitative analysis using computer software.", + "title": "Qualitative Methods for Public Policy Research", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP6707", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR2-2", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the first and introductory of a three-module series on\nresearch methods that is required for all first-year PhD\nstudents in Public Policy. The purposes of the module are to\nintroduce to students key concepts in research methods,\nand to help them to develop skills in the design of empirical\nresearch used in the analysis of policy problems. The aim is\nthat students are able to apply various research designs in\nconducting rigorous policy research in their chosen fields, as\nwell as develop the ability to critically evaluate policy\nresearch outputs.", + "title": "Research Design in Public Policy", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PP6708", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-4", + "day": "Thursday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Public Policy Graduate Seminar", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PP6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LKY_SR3-4", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department Exchange Module", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PPX5702B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department Exchange Module", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PPX5704B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department Exchange Module", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PPX5704C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department Exchange Module", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PPX5704D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department Exchange Module", + "faculty": "LKY School of Public Policy", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PPX5704E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to facilitate the development of personal and professional identity through self-reflection upon an early experiential encounter of people, patients and system. The experiential encounter in each year is focused around a few of core entrustable professional activities. As pharmacist, the patient should be the focal point of care and such experiential encounter is a way for developing the essential empathetic skills. In year 1, the EPAs selected for training are taking medication history, preparing prescription for dispensing, medication reconciliation and establishing interprofessional practice with co-workers.", + "title": "Professional Identity Development I", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PR1150", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module begins the journey of the development of pharmacist\u2019s skills for patient care. Skills will be demonstrated to the students who will learn to acquire them through hands-on practice. In some cases, students will practise the skills on standardized patients before applying them on real patients during the experiential encounters. Students are expected to reach targeted level of competence which will be determined through OSCE. In year 1, students will be taught to take medication history, conduct physical assessment on the skin, ear, nose and throat, counsel patient on physical assessment finding, interpret prescription.", + "title": "Applied Patient Care Skills I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR1151", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 90, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 90, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to deliver foundational concepts and principles in basic and clinical sciences. There will be a focus on the healthy body whereas foundation II will introduce the disease states and treatments. This module will provide the students a strong understanding of the fundamental knowledge and skills that will be applied repeatedly throughout the curriculum subsequently. In addition, these fundamental knowledge and skills are building blocks for the purpose of understanding the integrated themes in the modules that follow. The key areas of study include biomedical sciences (e.g. anatomy, physiology), and pharmaceutical sciences (e.g. pharmaceutical chemistry, pharmaceutics).", + "title": "Pharmacy Foundations: Science & Therapeutics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "PR1152", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module continues with more foundational concepts and principles in basic and clinical sciences. The focus is on the disease states and treatments building on the foundational knowledge of the healthy body. This module will facilitate a strong understanding of the fundamental knowledge and skills that will be applied repeatedly throughout the curriculum subsequently. In addition these fundamental knowledge and skills are building blocks for purpose of understanding the integrated themes in modules that follow. The key areas of study include pharmaceutical sciences (biopharmaceutics, pharmaceutics, pharmacokinetics) phathology, pharmacology and statistics.", + "title": "Pharmacy Foundations: Science & Therapeutics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR1153", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S16-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S14-0619", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S14-0619", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S16-0431", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S16-0307", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S16-0431", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "At the end of the course, the student will be equipped with a breadth of knowledge to have a basic understanding and appreciation of various complementary medicine, as well as how to achieve and maintain good health. The knowledge brings about an open mind for critical thinking and further independent learning and inquiry, to discern facts from hearsay. Life long learning is emphasized. Major Topics Introduction to complementary medicine. Basic principles, concepts and uses of Homeopathy, Aromatherapy, Herbal medicine and Traditional Chinese Medicine (including acupuncture and Traditional Chinese Herbal Medicine).", + "title": "Complementary Medicine and Health", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR1301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the fundamental physical chemical principles which are important to the design and development of pharmaceutical formulations. The major topics to be covered include: phase diagrams; solutions; buffers & isotonicity; partition, diffusion & mass transfer; solubility & dissolution; reaction kinetics & drug product stability; physical properties of solids (crystallinity, polymorphism); interfacial phenomenon; colloidal systems.", + "title": "Formulation & Technology I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an insight into various dosage forms, with greater emphasis on liquids and semi-solids. The fundamental knowledge of the properties, formulation, manufacture, quality control and applications of these\ndosage forms will be discussed. The rheological properties of liquids and the unit operations employed in the manufacture of these dosage forms will also be included.", + "title": "Formulation & Technology I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2114A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the basic principles of medicinal chemistry for drug design, with the emphasis on the relationship between structure, physicochemical properties and the molecular basis of drug action. Students will learn to apply various synthetic reaction mechanisms to construct organic molecules. They will also learn to apply computational methodologies to derive lead compounds from\ndatabases, derive pharmacophore from bioactive compounds and rationalise the optimal drug-target interaction through docking experiments.", + "title": "Medicinal Chemistry for Drug Design", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2115", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the basic principles of drug design, with the emphasis on the relationship between structure, physicochemical properties and the molecular basis of drug action.", + "title": "Medicinal Chemistry for Drug Design", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2115A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will gain knowledge of the various techniques in biotechnology and their applications in the manufacturing of biopharmaceuticals and biomedical research, the physicochemical properties, pharmacology and the formulation of commonly used biopharmaceuticals, as well as the principles of the mechanism of some biotechnologically derived diagnostic aids/tests. Major\ntopics to be covered include biotechnologically derived therapeutics such as insulin, growth hormones, cytokines, enzymes, monoclonal antibodies, vaccines, blood products, diagnostic aids/tests for urine analysis, plasma glucose, plasma lipids, HIV and pregnancy, gene therapy, transgenic technology and RNA interference technology.", + "title": "Biotechnology for Pharmacy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This pharmacy professional skills development module is a lab based module on the elements of interpersonal and professional communication that is required of a pharmacist to communicate proficiently in addressing and\npromoting the public's health care needs. A series of class sessions may utilize interactive discussions and roleplaying scenarios to teach and develop effective oral and interpersonal skills for the purpose of professional pharmacy practice.", + "title": "Pharmacy Professional Skills Development II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a team-taught module that aims to prepare pharmacy students in the management of noncommunicable diseases through the intergration of pharmacology and pharmacotherapeutics. Major topics include: asthma, COPD, peptic ulcer disease, hypertension, dyslipidemia, and diabetes.", + "title": "Pharmacotherapeutics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2133", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Self-care is a continuum of behaviour initiated by a patient to establish and maintain health, prevent and deal with illness. In this module, students will be taught to integrate knowledge of non-prescription medications and non-pharmacological measures to counsel patients on the appropriate options for self-care management.", + "title": "Self Care", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2134", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to familiarize students with the epidemiology, clinical presentation and diagnosis of disease states including rheumatological conditions, renal diseases, clinical nutrition, heart failure, ischemic heart disease and thromboembolic disorders. In addition, the pharmacotherapeutic management and pharmacology of drugs used in the management of the above disease states will be covered, emphasizing on the monitoring of the clinical outcomes in terms of the efficacy and safety of each drug used.", + "title": "Pharmacotherapeutics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2135", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to train students in the principles and practical capability of pharmacopeia assays and various analytical instruments for pharmaceutical analysis. In particular, students will apply the analytical techniques in the characterization of active pharmaceutical ingredient (API), the quality assurance of dosage forms and the analysis of biological fluids, coupled with hands-on experience with instrumentation and real-life problem solving.", + "title": "Pharmaceutical Analysis for Quality Assurance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2143", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on the concepts introduced in PR1150 Professional Identity Development I. In this module, students will continue to explore and experience what professionalism and ethics mean to pharmacists in practice. To develop stronger identity to the profession, an overarching introduction to the various challenges facing the Singapore\u2019s healthcare system will be conducted to provide a broader perspective to healthcare. In order to effect change, students will be gradually cultivated to fill leadership roles for future. Lastly, more legislative components regarding the practice of pharmacy in Singapore will be built upon what was imparted in PR1150.", + "title": "Professional Identity Development II", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PR2150", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Friday", + "lessonType": "Tutorial", + "size": 85, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 85, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 85, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Friday", + "lessonType": "Tutorial", + "size": 85, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Based on the philosophy and processes of pharmaceutical care, this module aims to further develop students\u2019 skills in patient-centered communication, critical evaluation and clinical reasoning essential in the entrustable professional activities identified by the Singapore Pharmacy Council for entry-to-practice pharmacists.", + "title": "Applied Patient Care Skills II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2151", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Monday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Monday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The 6-week module, delivered by blended learning, aims to have students learn how to recognize, assess, prevent and therapeutically manage medical conditions affecting the human gastrointestinal system (GIS). The scientific component covers the medicinal chemistry and pharmacology of GI drugs; the formulation and manufacture of oral and rectal dosage forms; and factors governing absorption of drugs delivered to the GIS. The practice component includes pharmacist scope of practice, history taking approach, care plan design, health-believe model and disease risk communication. Randomized controlled trial and cost effectiveness of healthcare through colorectal screening will provide the systems perspective of GIS healthcare.", + "title": "Gastrointestinal System: Science & Therapeutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "PR2152", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-05-01A", + "day": "Monday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-05-01A", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The cardiovascular system (CVS) is the focus of this 6-week module that is delivered by blended learning.The objective is to empower students to recognize,assess, prevent and therapeutically manageconditions affecting the CVS. The scientific principlesinclude pharmaceutical chemistry and pharmacologyof CVS drugs, sublingual delivery systems, and factorsthat affect drug distribution in the human body. Appliedtherapeutics constitute the clinical reasoning for careplanning. The impact of determinants of health andhealth equity on the person\u2019s ability to adhere totreatment plans, cost-effective care and cohort studyanalysis provide the systems outlook.", + "title": "Cardiovascular System: Science & Therapeutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "PR2153", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD1-05-01A", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD1-05-01A", + "day": "Monday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 6-week module integrates pharmaceutical, clinical and systems sciences to help students recognize, assess, prevent and therapeutically manage conditions affecting the human respiratory system. The drug\u2019s physicochemical properties underpin the formulation of inhalation delivery system. Pharmacology and applied therapeutics inform students on clinical decision making and care plan development. The strong association of smoking to lung cancer, supported by case-control study, is used to illustrate how Trans Theoretical Model for behaviour change adopted in smoking cessation programme can instil health advocacy attitude in students. The classification of medical devices and therapeutic products is used to introduce principles of regulatory science.", + "title": "Respiratory System: Science & Therapeutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "PR2154", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-05-01A", + "day": "Monday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-05-01A", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 6-week module is delivered by blended learning and integrates basic, clinical and systems sciences to enable students to recognize, assess, prevent and treat diseases affecting the human hepatic and renal systems. The basic sciences include physicochemical and pharmacological properties of the drugs, metabolism and excretion of drugs, principles of toxicodynamics and toxicokinetics, and pathological changes that affect ADME processes. Applied therapeutics and therapeutic drug monitoring will form the clinical bases for effective and safe care plans. Systematic review and meta-analysis provide essential evidence for positive predictive value and negative predictive value of screening tests for liver and kidney diseases.", + "title": "Hepatic and Renal Systems: Science & Therapeutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "PR2155", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Friday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD1-05-01A", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD1-05-01A", + "day": "Monday", + "lessonType": "Laboratory", + "size": 85, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an overview of the anatomy and physiology of the skin and eye followed by the pathophysiology of common conditions related to these structures. Students will learn the scientific theories and principles of medicinal chemistry, formulation sciences and pharmacokinetics that impact therapeutic outcomes, and integrate these with pharmacy practice, in the management of patients with common skin and eye conditions.", + "title": "Integumentary & Ocular Systems: Science and Therapeutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2156", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-05-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-05-01A", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learning objectives: To understand the development, usefulness, classification, composition and application of cosmetics and perfumes. To gain pertinent information for the selection and evaluation of these items. To acquire an overview of the marketing and regulatory aspects of the global industry for these products. Major topics: History of cosmetics and perfumes. Formulation, manufacture and use of perfumes. Biology of the skin, cosmetic preparations, consumer information and precautions. Regulatory and industrial aspects of these products.\n\n\n\nTarget students: All students outside the Faculty of Science. Science and Pharmacy students may read it as an elective", + "title": "Cosmetics & Perfumes", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides opportunity for pharmacy and pharmaceutical science students to engage in a research project in the area of pharmaceutical science and pharmacy practice. Student will conduct the research work under the supervision of a faculty member within the Department of Pharmacy. While developing specific experimental skills relevant to the research question, the student will also gain general skills in terms of performing a thorough background reading of the research question, analysis of the results as well as scientific communication through a written report and oral presentation.", + "title": "Basic UROPS in Pharmacy I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides opportunity for pharmacy and pharmaceutical science students to engage in a research project in the area of pharmaceutical science and pharmacy practice. Student will conduct the research work under the supervision of a faculty member within the Department of Pharmacy. While developing specific experimental skills relevant to the research question, the student will also gain general skills in terms of performing a thorough background reading of the research question, analysis of the results as well as scientific communication through a written report and oral presentation. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Pharmacy I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2288R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides opportunity for pharmacy and pharmaceutical science students to engage in a research project in the area of pharmaceutical science and pharmacy practice. Student will conduct the research work under the supervision of a faculty member within the Department of Pharmacy. While developing specific experimental skills relevant to the research question, the student will also gain general skills in terms of performing a thorough background reading of the research question, analysis of the results as well as scientific communication through a written report and oral presentation.", + "title": "Basic UROPS in Pharmacy II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides opportunity for pharmacy and pharmaceutical science students to engage in a research project in the area of pharmaceutical science and pharmacy practice. Student will conduct the research work under the supervision of a faculty member within the Department of Pharmacy. While developing specific experimental skills relevant to the research question, the student will also gain general skills in terms of performing a thorough background reading of the research question, analysis of the results as well as scientific communication through a written report and oral presentation. his is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Pharmacy II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR2289R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides pharmacy students with a comprehensive foundation of the concepts of pharmacokinetics and biopharmaceutics. The application\nof these concepts are important in clinical pharmacy and the drug discovery and development process. Major topics include: basic principles, concepts and processes of drug absorption, distribution, metabolism and excretion, kinetics\nof drugs following intravascular and extravascular modes of administration, design of appropriate dosage regimens, and application of pharmacokinetic concepts in clinical pharmacy practice and drug design and development.", + "title": "Concepts in Pharmacokinetics and Biopharmaceutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3116", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an insight into various liquid, semi-solid and solid dosage forms. The fundamental knowledge of the properties, formulation, manufacture, quality control and applications of these dosage forms will be discussed. The behaviour of materials and unit operations employed in the manufacture of the various dosage forms will also be emphasised.", + "title": "Formulation & Technology II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3117", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a team-taught module that teaches student on the pharmacology of a broad spectrum of antimicrobial agents and the use of these agents in the pharmacotherapeutic management of commonly encountered infectious disease conditions.", + "title": "Pharmacotherapeutics III", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3124", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a team-taught module that aims to prepare pharmacy students in the management of noncommunicable diseases through the integration of\npharmacology and pharmacotherapeutics. Major topics include psychiatry, neurology and oncology.", + "title": "Pharmacotherapeutics IV", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3136", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a practical-based module that builds on the knowledge gained from other clinical and practice modules to enable students to integrate and apply what they have learnt in the pharmacy practice laboratory sessions. This\nmodule is focused on the provision of pharmaceutical care and involves a partnership between the patient, pharmacist and other healthcare providers to promote safe and efficacious use of medications to achieve desired patient outcomes. Students will undergo simulated practice-based training, and work individually and collaboratively to hone their knowledge and skills in dispensing, patient counselling, medication therapy management, and handling drug information requests, in preparation for pre-registration training.", + "title": "Pharmacy Professional Skills Development III", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3137", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides pharmacy students with a comprehensive understanding on the basic principles, concepts and methodology in clinical and pre-clinical research, including applying statistical knowledge in research design. Research examples are chosen to illustrate and facilitate the learning process. Major topics include: selection and formulation of research hypothesis, study designs used in pharmacy practice and clinical research, hierarchy of evidence, potential biases associated with various designs, data acquisition and handling approaches, statistical data analyses, general methodology in basic science research, and techniques in scientific communication.", + "title": "Principles of Research Methods", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3144", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides pharmacy students with the foundation in various aspects of good practices, regulation and accreditation standards in pharmacy practice and pharmaceutical industries. It serves to emphasize the pharmacist\u2019s obligation to ensure consumer/patient safety in the supply and use of medicines and health products.", + "title": "Compliance & Good Practices in Pharmacy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3145", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches pharmacy undergraduates about the legal and ethical aspects affecting the practice of pharmacy. It covers two areas; firstly, the regulation of pharmacists and the pharmacy profession according to the Pharmacists Registration Act and the Pharmacists Code of Ethics, and secondly, the regulation of medical and health-related products commonly handled by pharmacists. Product regulation introduces various types of health products and the different activities in the product distribution chain. Students will be acquainted with applicable regulatory controls and requirements in the health product regulatory laws.", + "title": "Pharmacy Law in Singapore", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3146", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Pharmacists must possess appropriate knowledge, skills, attitudes, professional and ethical values to deliver optimal patient-centered care. This module integrates and expands upon patient care skills, professional and ethical values introduced in PR1150, PR1151, PR2150 and PR2151. Students will be presented with more complex patient-care scenarios where they will be challenged to apply patient-care skills while demonstrating professionalism and ethical reasoning abilities. Students will participate in pre-employment clinical training to apply what has been learned in the classroom. Students will continue to adopt a reflective approach in their professional development journey as a pharmacy student and future pharmacist.", + "title": "Professional Identity and Skills Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3150", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4-02LAB", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 75, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 6-week module expounds on the optimization of prevention and control of infectious diseases. The module reviews clinical microbiology and host-related factors associated with pathogenesis, transmission, prevention and treatment of infectious diseases. Students will learn the principles of vaccine manufacturing, sterile preparations, pharmacology, medicinal chemistry and spectrum of activity of antimicrobials, and actions of disinfectants. The optimal use of vaccination and antimicrobials in the prevention and treatment of infectious diseases will be emphasized. Students will also be introduced to principles of antimicrobial stewardship and interpret point prevalence studies to identify areas for improving antimicrobial use to hone systems thinking.", + "title": "Infection: Optimising Prevention & Treatment", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "PR3151", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0431", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0431", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0431", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0431", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Blended learning is the way of instruction for this 6-week module. Students learn to recognize, assess, prevent and therapeutically manage conditions affecting the human immune and endocrine systems. Applied therapeutics and pharmacology provide the knowledge for clinical reasoning. The scientific topics include cellular and humoral components of the immune system; impact of physicochemical and pharmacokinetic properties on the biologics\u2019 ADME profile; biotechnological techniques employed for biologics manufacture; immune mediated toxicity and risk; differentiation of proprietary products and their biosimilars. Pharmacist\u2019s value in a collaborative care team is discussed. The socio-economic impact on the use of therapeutic biologics is studied.", + "title": "Immune & Endocrine Systems: Science & Therapeutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "PR3152", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0307", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 6-week module is taught by blended learning. The integration of basic and clinical sciences enables students to recognize, assess, prevent and therapeutically manage conditions affecting the human central nervous system (CNS). Basic sciences include the morphology and pathophysiology of the CNS; medicinal chemistry of the CNS drugs; and transdermal drug delivery will be introduced. Pharmacology and applied therapeutics form the basis of clinical reasoning for achieving therapeutic goals of patients. Students are certified as mental health first aiders. Inquiry-based study is supported using qualitative and quantitative research methodologies.", + "title": "Central Nervous System: Science & Therapeutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "PR3153", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0431", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0431", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S16-0431", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S16-0431", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Basic science and applied therapeutics of the human haematological and musculoskeletal systems are integrated in this 6-week module. Through blended learning, students learn about the structure and pathophysiology of the haematological and musculoskeletal systems; the various pharmacological bases of inflammatory and pain intervention; the management of rheumatoid arthritis, gout, muscular spasm and therapeutics for coagulation disorders and anaemia. Drug-related toxicity of the haematological and musculoskeletal systems is discussed. Systems thinking is instilled with cases on transition of care for the elderly; evaluation and improvement of medication use on a system level through medication use evaluation and concepts of pharmacovigilance.", + "title": "Haematological & Musculoskeletal Systems: Science & Therapeutics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "PR3154", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module aims to equip students with knowledge, skills and attitudes to support contemporary development and delivery of community health services, meeting the evolving needs of the Singapore population. Students will learn to build on their prior knowledge on non-prescription medications and non-pharmacological measures, so that they can counsel and guide patients on the appropriate options for self-care management and preventive care.", + "title": "Community Health & Preventative Care", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the study of medicinal constituents that are derived from herbs that possess therapeutic value. Examples of how these natural products are used as sources for modern drug development will be covered. The module also provides information on how these constituents are extracted, standardized and formulated into various dosage forms which are convenient for clinical use. Students will gain an appreciation of how quality and efficacy of such medicinal products are assured during the manufacturing processes to ensure patient safety and effective outcomes.", + "title": "Medicinal Natural Products", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Please see section 4.4.3. Target students Pharmacy Year Three and Science", + "title": "Advanced UROPS in Pharmacy I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Please see section 4.4.3. Target students: Pharmacy Year Three and Science. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Pharmacy I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3288R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Please see section 4.4.3. Target students Pharmacy Year Three and Science", + "title": "Advanced UROPS in Pharmacy II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Please see section 4.4.3. Target students: Pharmacy Year Three and Science. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Pharmacy II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR3289R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 16-20 weeks during regular semester. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "FOS Undergraduate Professional Internship Programme 3S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "PR3312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduates students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "Undergraduate Professional Internship Programme Extended", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "PR3313", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover contemporary drug information skill and medication therapy management, with focus on geriatric medicine, hormones and contraception, travel medicines, weight managements, complementary medicines/herbal products, and the regulation of pharmaceutical products in Singapore.", + "title": "Pharmacy Professional Skills Development IV", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "PR4138", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Student-led Collaborative Innovative Pharmacy Inquiry (SCI-PhI) Project is a year-long module that aims to provide opportunities for creative inquiry connected to the real world, using rigorous academic approaches in the derivation of innovative solutions. Students will work in teams to perform hands-on research and project work, with advisors from diverse disciplines and expertise. Teams will present their proposals and completed work or findings in written and oral academic communications at various timepoints of the academic year, appropriate to the audience.", + "title": "SCI-PhI Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "PR4191", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip final pharmacy students with the skills of performing a literature-based scientific evaluation study in pharmaceutical science or pharmacy practice. It also aims to help students develop higher-order thinking and communication skills through critical review and analysis of literature as well as via a technical oral presentation. Students will perform their study under the supervision of Pharmacy academic staff with the final output as a written report in the format of a review paper. They will attend classes offered by Centre for English Language Communication (CELC) to gain knowledge and skills required for successful scientific communication.", + "title": "Scientific Evaluation, Analysis and Communication", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "PR4195", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to nurture the passion of final year Pharmacy students for inquiry and knowledge creation through fostering their intellectual rigor in tackling research questions related to pharmacy and pharmaceutical sciences, and developing their academic communication skills. It also aims to not only provide hands-on research experience gained through project work, but also to develop students\u2019 higher order thinking skills, such as the critical evaluation of information, as well as hone students\u2019 written and oral academic communication skills in the context of pharmaceutical sciences and practice. Students will carry out their projects under the supervision of Pharmacy academic staff, and will attend seminars/ tutorials offered by the Centre for English Language Communication (CELC) that aim to equip them with knowledge and skills for successful research communication.", + "title": "Pharmacy Research Project and Scientific Communication", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "PR4196", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The 12 week programme provides an opportunity for pharmacy undergraduates to undertake experiential learning in work environments and situations of different pharmacy practice sectors.", + "title": "Pharmacy Internship I", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "PR4197", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The 12 week programme provides an opportunity for pharmacy undergraduates to undertake experiential learning in work environments and situations of different pharmacy practice sectors.\n\nThis module is to be taken by Pharmacy Major students from Cohort AY2016/17 and after.", + "title": "Pharmacy Internship I", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR4197A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The 12 week programme provides an opportunity for\npharmacy undergraduates to undertake experiential\nlearning in work environments and situations of different\npharmacy practice sectors.", + "title": "Pharmacy Internship II", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "PR4198", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The 12 week programme provides an opportunity for pharmacy undergraduates to undertake experiential learning in work environments and situations of different pharmacy practice sectors.\n\nThis module is to be taken by Pharmacy students from Cohort AY2016/17 and after.", + "title": "Pharmacy Internship II", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR4198A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learning objectives: To understand the systems and principles of marketing. To acquire an overview of the global pharmaceutical industry. To appreciate the unique features of pharmaceutical marketing namely, the players, the types of competitions, international regulations and technology innovation. Major topics: Marketing decisions. Understanding and identifying a market. Creating and managing a product. Assigning value and delivering a product. Communicating about a product. Emphasis is placed on marketing issues pertaining to pharmaceutical/healthcare products and services.Target students: Pharmacy Final Year", + "title": "Pharmaceutical Marketing", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR4201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Exam", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S4A-0308", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learning objectives- To understand the science and technology of rate-controlled administration of therapeutic agents with comprehensive coverage of the basic concepts, fundamental principles, biomedical rationales and potential applications. Major topics: Fundamentals of rate-controlled drug delivery. The following delivery systems will be discussed: parenteral, oral and aerosols. Target students: Pharmacy Final Year", + "title": "Special Drug Delivery", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR4204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learning objectives To learn the different approaches in the design of drugs that are capable of interacting specifically with enzymes, DNA and other cellular targets. Major topics A mechanistic, chemical and biochemical approach to medicinal chemistry, emphasizing enzymatic and macromolecular targets of drug action. Peptide, peptidomimetics and oligonucleotides. Target students Pharmacy Final Year and Applied Chemistry (Drug Option)", + "title": "Bioorganic Principles of Medicinal Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR4205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learning objectives: To understand that the total control of quality in drug industry is a plant-wide activity and involves careful attention to a number of factors including the selection of quality components and materials, adequate product and process design, and control (statistical) of process through in-process and end-product testing. Major topics: Good Manufacturing Practices. Statistical quality control. Microbiological quality control\n\ntechniques. Target students: Pharmacy Final Year", + "title": "Industrial Pharmacy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR4206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Paracetamol is one of the most frequently used medication in the world for treating fever and pain. Yet, it is also the most common agent to cause severe liver toxicity and emergency admissions to hospitals. So, is paracetamol a drug or a poison? Students will learn the fundamental toxicokinetic (TK)/toxicodynamic (TD) considerations to discuss when a drug is a drug or poison. The module also dives into the current and emerging trends in ADME and toxicity testing in drug discovery. Special PK topics such as nonlinearity and PK of protein drugs will be covered.", + "title": "Applied Pharmacokinetics and Toxicokinetics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR4207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to develop the students\u2019 ability to apply the basic knowledge of pharmacokinetics to the clinical situation and to understand the importance of pharmacokinetics and pharmacodynamics in patient care. Emphasis is placed on the adjusting dosage regimen as well as on patient monitoring with respect to plasma drug levels, efficacy, adverse events, drug interactions, and disease and population interactions.", + "title": "Clinical Pharmacokinetics & Therapeutic Drug Monitoring", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5113", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learning objectives: This course will introduce the students to the different study design commonly encountered in clinical research. The course also intends to equip the students with fundamental understanding of how to apply statistical tests commonly used in clinical medicine.Major topics? Basic concepts of research. Fundamental requirements in conducting clinical trials. Study designs commonly encountered in clinical medicine. Advantages and disadvantages of the various designs. Drug information. Statistical tests commonly used in clinical medicine.Target students? Master of Pharmacy (Clinical Pharmacy) students and postgraduates with permission.", + "title": "Drug Information, Critical Literature Evaluation and Biostatistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5115", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at having students gain a fundamental understanding of the diagnosis and therapeutic management of infectious diseases pertinent for clinical\npharmacists.", + "title": "Advanced Pharmacotherapy I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5130", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at having students gain a fundamental understanding of the diagnosis and therapeutic management of acute cardiovascular disorders, stroke,\nhypersensitivity reactions, as well as fluid and electrolyte disorders.", + "title": "Advanced Pharmacotherapy II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5131", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at having students gain a fundamental understanding of the principles of emergency and critical care medicine pertinent for clinical pharmacists.", + "title": "Advanced Pharmacotherapy IIA", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5131A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at having students gain a fundamental understanding of the diagnosis and therapeutic management of oncologic orders and supportive care in\noncology", + "title": "Advanced Pharmacotherapy III", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5132", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at having students gain a fundamental understanding of the diagnosis and therapeutic management of haematologic and immunologic disorders.", + "title": "Advanced Pharmacotherapy IIIA", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5132A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide an overview of the pathophysiology and\nmanagement of common disease states in the areas of special populations (pediatrics and women\u2019s health): focusing on rational non-pharmacologic and pharmacologic therapy to optimize patient outcomes.", + "title": "Advanced Pharmacotherapy in Special Populations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5133", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at imparting clinical and professional skills necessary for a successful patient encounter, with a focus on skills necessary to obtain thorough and accurate medical and medication histories, ensure proper documentation and writing of clinical SOAP notes, as well as, communicate effectively with patients and other healthcare professionals. It will also allow the students to gain an understanding of the principles and methods of basic physical examination.", + "title": "Advanced Skills in Pharmacy Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5134", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at having students develop an understanding and skills of physical assessment of various organ systems, as well as common diagnostic\ntests and procedures used in clinical settings.", + "title": "Physical Assessment and Diagnostic Tests for Advanced Pharmacy Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5134A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at having students acquire effective drug information retrieval skills, literature evaluation skills and gaining a basic understanding of common biostatistical and study design principles.", + "title": "Foundations in Advanced Pharmacy Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5135", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Effective skills in oral presentation and teaching are fundamental to advanced pharmacy practitioners. This module is intended to improve students\u2019 oral communication skills by delivering professional presentations and teaching or precepting undergraduate students and pharmacists in-training. Students\nwill be given the opportunities to demonstrate their clinical knowledge and apply their skills in literature evaluation to deliver professional presentations on healthcare-related topics. They will also participate in workshops to further their teaching and precepting skills and apply these skills in the small-group teaching of undergraduate pharmacy students.", + "title": "Seminar and Teaching", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PR5136", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at having students gain a fundamental understanding of the diagnosis and therapeutic management of disease states and/or conditions unique to the geriatric population.\n\nThe topics covered will be applicable to pharmacists involved in care for geriatric patients in all care sectors.", + "title": "Advanced Pharmacotherapy in Geriatrics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5137", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a 5-week full time clinical clerkship. Students will integrate their knowledge of therapeutics and pathophysiology to effectively provide pharmaceutical care in an ambulatory patient care environment while a licensed preceptor supervises them. Their activities will include: evaluate, assess and monitor pharmacotherapy of acute and chronic diseases in addition to providing drug information to patients and health care professionals. This is a compulsory clerkship.", + "title": "Ambulatory Care Clerkship", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR5150", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 5-week, full-time clinical clerkship is designed to develop the student\u2019s clinical knowledge and skills in the area of acute care medicine. Students will be able to apply this knowledge to the management of patients with a variety of acute and chronic medical conditions. This is a compulsory clerkship.", + "title": "Acute Care Medicine Clerkship", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR5151", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 5-week, full-time clinical clerkship is designed to develop the student\u2019s clinical knowledge and skills in the area of adult general medicine. Students will be able to apply this knowledge to the management of patients with a variety of acute and chronic medical conditions. This is a compulsory clerkship.", + "title": "Adult General Medicine Clerkship", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR5152", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Critical care clerkship is a 5-week full time clerkship that is designed to train students to practice pharmaceutical care in a critical care setting. The aims are to provide patient care services to patients in a critical care area, to effectively communicate with patients and/or their caregivers and to be an effective member of the critical care team. This is a compulsory clerkship.", + "title": "Critical Care Clerkship", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR5153", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 5-week, full-time clerkship is designed to develop the student\u2019s knowledge and skills in the area of drug information. After this five weeks clerkship, students should be able to retrieve, analyze, and communicate appropriate information on medications and healthcare issues to physicians, patients, nurses, pharmacists and other health professionals. This is a compulsory clerkship.", + "title": "Drug Information Clerkship", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR5154", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Lectures on literature survey, writing and assessing manuscripts and research proposals, as well as techniques in seminar and poster presentations will be introduced. The lectures and the corresponding assignments and tutorials in writing and reviewing manuscript/research proposal will serve to facilitate the fulfilment of the main objective in developing the skill set needed, including critical thinking, for effective scientific writing and communication. In addition, additional lectures for covering research methodology, ethics in basic and clinical sciences as well as basic concepts in Intellectual Property (IP) will be added to the module as these are fundamentally important concepts that must be understood by research students.", + "title": "Graduate Seminar Module in Pharmacy", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5198", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed for those interested in advanced methods for pharmaceutical analysis, diagnosis, therapy, anatomical and functional studies, drug monitoring, drug discovery, research and development. The principles, pharmaceutical and biomedical applications of the following topics will be discussed mass spectrometry (MS), analytical method validation, sample preparations, magnetic resonance spectroscopy (MRS), magnetic resonance imaging (MRI) and other bioimaging methods etc. At the end of the course, the students will be able to appreciate and understand the many different techniques and options available to them for analysis, diagnosis, therapy, anatomical and functional studies, drug monitoring, drug discovery, research & development.", + "title": "Pharmaceutical and Biomedical Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learning objectives: To introduce students to the principles of quantitative structure activity relationship and how to carry out and interprete QSAR studies based on multiple linear regression models. To introduce students to Comparative Molecular Field Analysis (CoMFA) and how to carry out and interprete CoMFA. To introduce students to the application of multivariate data analysis to QSAR and how carry out and interprete such analyses. To introduce the application of combinatorial chemistry in drug potential. To introduce rationale in computer-aided derivation of potential pharmacothore.", + "title": "Advanced Topics in Medicinal Chemistry", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To provide students an appreciation of current international regulatory guidance for process validation and common industry practices. Students completing this module should be able to understand the methodology of process validation, validation lifecycle documentation requirements and the handling of excursions during validation execution, and be able to apply the knowledge acquired appropriately for assuring process performance and product quality in the development and manufacture of pharmaceutical products.\n\nTopics to be covered include: \n\u2022\tIntroduction to Pharmaceutical Process Validation\n\u2022\tOrganizing for Validation and Regulatory Guidance\n\u2022\tRetrospective, Prospective and Concurrent Validation\n\u2022\tValidation Master Planning\n\u2022\tValidation sequence \u2013 Validation Master Plan, Protocols, Tests, Reports and Review\n\u2022\tQualification - DQ, IQ, OQ, PQ\n\u2022\tValidation Closure\n\u2022\tProcess Variability and Capability\n\u2022\tChange Control\n\u2022\tData Integrity for Validation \n\u2022\tContinuous Quality Verification\n\u2022\tCleaning Validation\n\u2022\tValidation of Sterilisation Processes/Sterile Products", + "title": "Pharmaceutical Process Validation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will gain advanced knowledge in the area of tablet technology, with special emphasis on research and development aspects, along with an understanding of the physicomechanical attributes of drugs and excipients when compacted. Topics to be covered will include compaction press and tool design along with compaction physics required to fabricate compacts. Several specialized topics related to tablet production and compaction technologies as applicable to the pharmaceutical industry will be discussed.", + "title": "Advances in Tablet Technology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learning objectives: To critically examine the innovative approaches taken by pharmaceutical industries and scientists to develop optimized drug delivery systems. Major topics: Concept of optimized drug delivery systems. Cellular mechanisms of drug absorption. Basic pharmacokinetics. Biological and physiochemical factors influencing drug bioavailability. Challenges in delivering biopharmaceuticals. Design, principles, merit and disadvantages of selected innovative delivery systems for biopharmaceuticals.", + "title": "Advances in Drug Delivery", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5216", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of this module is to teach the principles of formulating active pharmaceutical ingredients into pharmaceutical products, in particular, the commonly encountered oral solid dosage forms. The students will acquire a body of technical knowledge on pharmaceutical manufacturing operations, excipients needed and know-how in product development.", + "title": "Formulation Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will acquire knowledge on skills and techniques relevant to pharmaceutical product development through experiential learning via different modes of teaching/learning. Major topics covered include: Protein purification and related bioassays, formulation and process technologies for preparation of pharmaceutical products, product characterization and quality assurance of pharmaceuticals.", + "title": "Methodologies in Product Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Saturday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide a conceptual understanding of the complete process chain involved in product quality management systems, and practices that are implemented in pharmaceutical manufacturing plants, from product design to their use in patients along with aspects of regulatory oversight.", + "title": "Product Development & Quality Management", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5219", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the theory and application of recombinant DNA and cell culture technologies leading to the development and manufacture of biopharmaceutical products. Students will acquire the basic biological and engineering concepts of cell culture, bioreactors and fermentation processes, and an overview of the current Good Manufacturing Practices and quality control practices in the biopharmaceutical industry. The module will be conducted through lectures, tutorials and journal presentations. Students will be expected to do simple mathematical calculations and work in groups for the tutorial and journal presentations.", + "title": "Bioprocess Technology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to equip students with a better understanding of the molecular basis of modern drug discovery using selected examples of classes of drugs, with a special focus on drug target selection and validation. In this module, we will also discuss selected signaling cascades and pharmacological intervention in these processes. The use of animal and cellular models to validate molecular targets will also be covered. Students will gain an enhanced understanding of the drug discovery process which will complement their technical expertise in the field.", + "title": "Molecular Targets in Drug Discovery", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will be an introduction to drug metabolism focusing on topics such as biotransformation and kinetics, pharmacogenomics, metabolite elucidation, methodologies to improve drug metabolic profiles, metabolic reaction phenotyping, drug metabolizing enzyme inhibition and induction, drug-drug interactions and toxicity.", + "title": "Drug Metabolism", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the principles and\npractical applications of pharmacoepidemiology in the\nevaluation of the utilization, safety and effectiveness of\ntherapeutic products (drugs, vaccines, biologics).\nExamples of case reports, case series, cohort studies,\ncase-control studies, intervention studies, and metaanalysis\nwill be drawn from recent literature to illustrate the\napplication of relevant methods and the challenges in postmarket\nassessment of therapeutic products. Major topics\ninclude: basic principles in pharmacoepidemiology, study\ndesigns for pharmacoepidemiologic studies, data sources,\nand therapeutic risk management. Methodological\nconsiderations relevant to pharmacoepidemiology, such as\nconfounding by indication, will also be introduced.", + "title": "Pharmacoepidemiology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is developed to introduce the rationale, principles and practical applications of pharmaceutical preformulation science in the development and manufacture of pharmaceutical products.The importance of material attributes on final product quality will be highlighted. Topics to be covered will also include test methods to determine the quality attributes of materials. Students will also be introduced to relevant products and their preformulation requisites for screening, optimization or assessment of excipients to ensure end product quality and stability.", + "title": "Preformulation Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Pharmacoeconomics and health outcomes research is a relatively new and rapidly evolving field. It encompasses both economic and humanistic issues and serves as a major tool that aims to decrease health expenditures and optimise healthcare results. This is particularly relevant in the provision of pharmaceutical care by practising pharmacists. Knowledge of this discipline aids the pharmacist in making decisions for the most optimal pharmaceutical products and health services that allow for fair and efficient utilisation of healthcare resources.", + "title": "Pharmacoeconomics and Outcomes Research", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students develop skills to interpret and evaluate pharmacoeconomics studies and apply findings to make pharmaceutical products and\nhealth service decisions.", + "title": "Pharmacoeconomics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5230A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "MD1-06-03M", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students develop skills to interpret and evaluate quality-of-life and outcomes research literature and use this information to make\npharmaceutical products and health service decisions.", + "title": "Outcomes Research", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5230B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A large percentage of the population uses one or more complementary or alternative healing therapies, often in addition to seeking advice from mainstream healthcare practitioners. In order to provide comprehensive pharmaceutical care services to their patients, pharmacists must have an understanding of these non-traditional therapies, and be able to communicate with patients and practitioners regarding the efficacy and safety of these therapies. Related to this is the importance of having an understanding of patients\u2019 health beliefs and rationales for using complementary and alternative therapies.", + "title": "Complementary and Alternative Medicine", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Over the past two decades, widespread industrialization, urbanization and economic development have resulted in rapid and profound changes in the diets and lifestyles of the population. These changes have important negative consequences, resulting in an increase in the occurrence of chronic diseases such as diabetes, ischemic heart disease, hypertension and stroke and certain type of cancer. In today\u2019s healthcare setting, pharmacists are playing an increasingly important role in educating patients on dietary modification in addition to drug therapy for the control and prevention of the chronic ailments and counseling and recommending appropriate nutritional supplements according to the specifics needs of the patients. Thus, a sound knowledge and understanding of basic dietary principles in disease and health is mandatory for current pharmacy practitioners.\n\nThis module is essential for students to acquire a basic understanding of the principles of nutritional science, public health nutrition and promotion and clinical nutrition that are pertinent in the practice of pharmaceutical care.", + "title": "Nutrition, Disease Prevention and Health Promotion", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The knowledge of practice requirements in various settings and management is fundamental to any individual who wishes to pursue a career in the management of a pharmacy or a pharmacy related business. Pharmacists in all practice settings also use a variety of management skills on a daily basis.\n\nThis course introduces students to the role of business management within pharmacy and exposes them to the variety of management theories, techniques, and tools that can used by pharmacists in the most effective and efficient manner.", + "title": "Pharmacy Practice Management", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The science of pharmacogenomics and pharmacogenetics focuses on the variability of patients\u2019 response to medications, which are attributed to inherent genetic differences. In order for pharmacists to function as drug experts in the clinical setting, it is important for pharmacists to understand how pharmacogenomics and pharmacogenetics may play an important role in individualizing drug therapy to maximize therapeutics effects and reduce adverse drug events.", + "title": "Pharmacogenomics and Pharmacogenetics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with a fundamental understanding of the principles and concepts of pharmacogenomics and pharmacogenetics. Through\ndeveloping a knowledge and understanding of the molecular basis of polymorphisms in drug targets, drug metabolizing enzymes and drug transporters, students will appreciate how pharmacogenomics may play an important role in individualizing drug therapy to maximize therapeutic effects and reduce adverse drug events.", + "title": "Concepts in Pharmacogenomics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5234A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Pharmacy practice has evolved over the years from a product and dispensing-centered activity to patient-centered care. This resultant increase in patient interaction requires morally responsible professionals with skills in solving ethical problems that arise in the course of their professional practice, as well as having the ability to reflect on personal values and behaviours and act upon broader social issues.\n\nThis module is designed to help students recognize the ethical issues which they may encounter in the course of their practice and to guide them in using ethical principles and theories to formulate resolutions for the problems encountered.", + "title": "Ethics in Pharmacy Practice", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores concepts the psychosocial and self-management behavioural issues of aging, and trains pharmacists in skills required for holistic assessment and advanced counseling intervention of complex older patients in the community with issues in medication management.", + "title": "Management of Older Patients", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "PR5237", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-06-03M", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an experiential learning module to provide candidates with the needed hands-on application of advanced pharmacy practice skills for managing real patients in the community and ambulatory care settings that could not be attained through work-based training.", + "title": "Advanced Community Case Studies", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5238", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to help students develop skills for clinical research. Areas covered include formulation of research ideas into protocols for clinical studies, gathering, analysis and presentation of clinical data.", + "title": "Clinical Pharmacy Research Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "PR5239", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of one 5-week, full-time clerkships, and is designed to further develop the students\u2019 knowledge and skills in a variety of practice settings. Students will be able to select from a variety of patient care and non-patient care clerkship sites.", + "title": "Elective Clerkship I", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR5250", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of one 5-week, full-time clerkships, and is designed to further develop the students\u2019 knowledge and skills in a variety of practice settings. Students will be able to select from a variety of patient care and non-patient care clerkship sites.", + "title": "Elective Clerkship II", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR5251", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of one 5-week, full-time clerkships, and is designed to further develop the students\u2019 knowledge and skills in a variety of practice settings. Students will be able to select from a variety of patient care and non-patient care clerkship sites.", + "title": "Elective Clerkship III", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR5252", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of one 5-week, full-time clerkships, and is designed to further develop the students\u2019 knowledge and skills in a variety of practice settings. Students will be able to select from a variety of patient care and non-patient care clerkship sites.", + "title": "Elective Clerkship IV", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "PR5253", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module PR5299 is an elective module in the MPST program in Faculty of Science that aims to provide students a unique opportunity to gain hands-on research experience via project work to construct and deliver innovative solutions to real-life pharmaceutical problems. Specifically, the duration of this module is two semesters, with students actively engaged in the daily activities in research labs and facilities during the day under the supervision of our expert faculty members from Department of Pharmacy.", + "title": "Research Project in Pharmaceutical Innovation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "PR5299", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is aimed at reviewing the drug discovery and drug development processes with an emphasis on the regulatory aspects of these activities. Animal pre-clinical research and human clinical research are discussed, along with the three phases of human clinical trials. The chemistry manufacturing and control (CMC) aspects of drug development are presented. The ICH documentation requirements and the application of manufacturing process analytical technologies will also be discussed. The course will conclude with a brief overview of patents and international regulatory issues. Target students: Enrolment in M.Sc. (Pharmaceutical Sciences & Technology) programme.", + "title": "Regulation of Drug Development", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an overview of the FDA and ICH regulations on good manufacturing, good laboratory and good clinical practices. The meaning of these regulations, the globalisation of the practices and the roles and responsibilities of the various professionals implementing these regulations are addressed. Target students: Enrolment in M.Sc. (Pharmaceutical Sciences & Technology) programme.", + "title": "Good Regulatory Practices", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with basic principles\nand knowledge of selected fundamental areas in\npharmaceutical science essential to appreciate and\nunderstand their relevance and applications in drug\ndiscovery to development of quality drug products.\nIn the area on pharmacological science, this module will\nintroduce the principles in pharmacokinetics,\npharmacodynamics and pharmacogenetics, in order to\nappreciate the pre-clinical considerations in the\npharmaceutical industry and the impact of dosage form\ndesign on drug release and action.\nIn the area on formulation science, this module will\nintroduce the principles of formulation, manufacturing\ntechnology and product quality assurance of a range of\ncommonly used pharmaceutical dosage forms.\nMajor topics include:\nPharmacological science area \u2013 pharmacokinetics\nprinciples, concepts in drug target identification and\ndruggability, influence of pharmacogenomics. Formulation\nscience area \u2013 formulation, manufacture, quality\ncompliance and presentation of major pharmaceutical\ndosage forms", + "title": "Fundamental Topics in Pharmaceutical Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PR5304", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module offers MPST full-time students the opportunity to engage in experiential learning beyond the classroom and to gain transferable skills to be career-ready in the workplace. Students are expected to perform ~40h per week of structured internship in an approved, local company/institution for 10 \u2013 12 weeks, whereby the internship must have relevance to the application of domain knowledge and theories from the MPST program. The internships could be from a pre-approved list or self-sourced by students with approval from MPST program director. Students will be evaluated via a workplan, a reflection journal and a final report.", + "title": "MPST Industry Exposure Internship", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PR5399", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Cariology", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Preventive Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV2110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Preclinical Periodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV2120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Preventive Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV3110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dental Public Health", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV3112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Periodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV3120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Orthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV3210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV3220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Preventive Dentistry & DPH", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV4110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Periodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV4120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Orthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV4210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Paediatric Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "PRV4220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is to impart a preliminary overview of political science and its sub-fields so that students have a basic orientation of the discipline. It briefly explains the scope and components of each of the four sub-fields (political theory, comparative politics, international relations and public administration) and familiarises students with the major issues and arguments related to power, justice, political culture, national identity, accountability, ethics and world order. It also focuses on key political institutions. The module will be of interest to students across the university who want to gain a basic understanding of politics.", + "title": "Introduction to Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores basic political ideas from the ancient Greeks and Romans from the emergence of the polis to the collapse of the empire, including the ideas of justice, law, democracy, and politics itself, through the study of original works by Thucydides, Plato, Aristotle, St. Augustine, and others. It also considers how these ideas shaped medieval and early modern political thought.", + "title": "Ancient Western Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores major political ideas and concepts from the modern Western tradition. Key political constructs such as power, authority, justice, liberty and democracy are examined in intellectual and historical context. Reading Thomas Hobbes\u2019s Leviathan and John Locke\u2019s Second Treatise on Government, among other influential writings, students will be exposed to the broader themes and ideas that have shaped political life in the West since 1600.", + "title": "Modern Western Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the major works of Machiavelli, Hobbes, Locke, Adam Smith, Rousseau, and Nietzsche. These thinkers help us to understand the sources of current and competing beliefs about social and political life. So, while we seem to cherish ideas such as freedom, progress, and creativity, we are also troubled by the impact of these ideas on our beliefs in the importance of culture, tradition, and community. This module would be helpful to students interested in the political implications of globalization and the new economy.", + "title": "Western Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is divided into two parts, namely, Hindu Political Thought (HPT) and Islamic Political Thought (IPT). HPT will expose students to the rich tradition of competing ideas that shape the evolution of Hindu political thought and philosophy and will cover the major ideas of classical Hindu epics such as Kautilya and Manu. IPT will help students understand the Islamic worldview in general and the Islamic conception of political theory in particular, and will deal with topics such as principles and sources of Islamic thought and governance of Islamic states, according to the primary sources of Islamic Law, the Qur'an and Sunnah. This module is suitable for beginning students interested in normative political theory in eastern civilizations.", + "title": "Islamic and Hindu Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module begins with the examination of various strands of liberalism, including liberal versions of communitarianism, and then proceeds on that basis to survey various significant reactions to liberalism. In addition to communism and fascism, the module will also examine the ideological challenges to liberalism from radical/militant Islamism and the advocates of so-called \"Asian values\". This is an introductory module and is designed for any beginning student with an interest in the theoretical approach to the study of competing political belief systems.", + "title": "Political Ideologies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces to students some major approaches to comparative politics, including system perspective, case study, comparative approach, rational choice, and cultural approach. Specific cases are used to illustrate how people have applied these approaches in research. It also covers selected topics in comparative politics, such as democratisation and democratic consolidation, revolution, and ethnic conflicts. Much of the discussion will be based on specific cases. This introductory module is offered to students who want to gain basic knowledge of comparative politics.", + "title": "Introduction to Comparative Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0603", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This introductory course gives students a basic understanding of the ideas, institutions, and actors that influence the political life of modern Europe. We explore the domestic politics of several European states including France, and the U.K., as well as relations among European states before and after World War II, with special attention to European integration. While most of our attention will be devoted to western Europe, we will discuss political transitions in eastern Europe and the process of EU expansion. The module is intended for students in European Studies, Political Science, and others with an interest in Europe.", + "title": "European Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Designed as an introductory theoretical module, it covers the basic concepts of International Relations in two halves. The first introduces the concepts of nation, state, sovereignty, non-state actors and their implications for the coexistence of nation-states, as well as a brief roundup of the instruments of conducting relations among them. The other offers a grounding in the major schools of thought on International Relations, namely realism, liberalism/pluralism and revolutionism. Additionally, there will be topics on radical perspectives such as feminism, constructivism and postmodernism. It is hoped the module will provide students with a foundation for other courses in the sub-field.", + "title": "Introduction to International Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2237", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0601", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to understand the international relations of Northeast Asia. The first part of the module provides a historical and theoretical overview of the subject. The second part assesses competing explanations for the international behaviour and interactions of the region\u2019s major powers. The final part examines selected ultilateral/transnational issues as sources of potential conflict and cooperation.", + "title": "International Politics of Northeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This exciting field of study provides an understanding of the foreign policy processes and behaviour of actors in world politics. These actors are largely but not exclusively, the nation states. The module deals with various concepts, frameworks and approaches to the study of foreign policy and diplomacy. It explains both the external and internal determinants shaping foreign policies of different states. It also focuses on foreign policy implementation by analyzing the role of diplomacy, economic statecraft and the use of military force. The module is meant for students who want to understand how states conduct their external relations", + "title": "Foreign Policy and Diplomacy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This introductory module defines the scope of public administration in terms of its structures, functions, sectors, and institutions. It familiarises students with some basic concepts used in public administration, including authority, organisation, bureaucracy, accountability, meritocracy, representation, ethics, professionalism, leadership, and decision making. The module also examines major approaches to studying public administration. Practical cases and examples are used in presenting these topics. The module is available to all year 1-3 students at NUS.", + "title": "Introduction to Public Administration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2240", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module briefly covers the origins, functions, and contexts of public administration, and various comparative approaches to administrative systems in Asian countries. On that foundation, it then focuses on some of the major administrative issues in Asian countries, including local government and decentralisation, privatisation and public sector reform, ethnic representation, bureaucratic corruption, and administrative accountability. The module can be read by year 1-3 students across all faculties at NUS.", + "title": "Public Administration in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with major themed and issues in public administration with specific reference to Singapore. It covers relevant domains of the city-state government and explores issues such as the relationship between politics and administration, meritocracy and performance, combating corruption, grassroots administration, and e-governance. It also discusses administrative trends and challenges in contemporary Singapore.", + "title": "Public Administration in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2244", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will serve an introduction to the nature and dynamics of government and politics in Southeast Asia, especially state-society relations. Hence, the module will look at government and politics in countries like Indonesia, Malaysia, the Philippines, Thailand, Vietnam, and Burma. This module is aimed at students across all faculties and at all levels interested in learning about political dynamics in Southeast Asia. Its primary objective is to expose students to the region, and provide a basic foundation in government and politics of Southeast Asia from which students can further acquire/develop specialised knowledge.", + "title": "Southeast Asian Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is divided into two parts. The first half of the module has a comparative politics focus. It will examine the contemporary politics of South Asian states, focusing on their political culture, institutions and processes and political change and development. It will also treat issues like ethnicity, religion, regime legitimacy and the relationship between violence and democracy. By studying these issues comparatively we can discern regular patterns in the behaviour of individuals and groups and understand how their demands are processed and met. The second part of the module will adopt a thematic approach to explain the various factors that have shaped intra-regional relations. This will include the role of external powers and also the spillover effect of domestic conflicts. Foreign policy objectives of the regional states and their threat perceptions will be the principal area of focus. The module will also deal with issues of regional order and stability. The target students are those enrolled in South Asian Studies Programme and Political Science.", + "title": "South Asian Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to contemporary Chinese politics. After a survey on China's political culture and tradition, the rise of modern China and Chinese Communism, it discusses a range of nation-building issues in the People's Republic of China. These include the role of ideology, developmental strategies, political institutions, and state-society relations. Having examined the domestic political issues, the course proceeds to analyse Chinese foreign policy. Topics to be dealt with include China's relations with the U.S., Japan, Russia, European Union, and ASEAN. The problems related to the reunification of mainland China and Taiwan are also covered.", + "title": "Chinese Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines a number of areas in Singapore's domestic politics with the following objectives identify the key determinants of Singapore's politics; understand the key structural-functional aspects of Singapore's domestic politics; examine the extent to which nation building has taken place in Singapore; and analyse the key challenges facing Singapore and its future as far as domestic politics is concerned. The course examines both the structural-functional aspects of domestic politics as well as issues related to nation building, state-society relations and the likely nature of future developments and challenges.", + "title": "Government and Politics of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2249", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0307", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the evolution of Southeast Asia as a region in international politics. The emphasis of the module is on the impact of external actors on Southeast Asia, albeit the module will also deal with regional developments and indigenous initiatives. Initially, the module will deal with past developments that affected the region. The second half will deal with more contemporary regional developments, some of which are still ongoing. This module will be extremely useful for students who would like to understand regional political issues.", + "title": "International Politics of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will study postcolonial regions in Asia, Africa, the Middle East, and Latin America. They will discuss questions such as What makes a region? Who makes a region? How has the experience of colonialism shaped the region? What are the models of regional cooperation and integration, and whose models are they? How do regions \u2018interact\u2019 with postcolonial global structures and dynamics? Students are encouraged to compare different regional experiences, and draw from this breadth of knowledge to critically evaluate the concepts and theories they will learn.", + "title": "The Region in the Postcolonial World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The American system has been viewed as a model for\n\ncountries around the world and, more recently, a lesson\n\nin the dangers of extreme individualism and\n\nirresponsible government. This module examines\n\npolitical institutions and practices in the United States,\n\nincluding the Constitution, the Presidency, Congress,\n\nand Judiciary, the federal system, the party system, and\n\npresidential and congressional elections. Because it has\n\nbeen intensively studied, the American political system\n\nprovides a good introduction to the study of political\n\nscience.", + "title": "American Government and Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comparative overview of politics in the Middle East, giving particular attention to the history, societies, and cultures of the region. It considers some of the forces shaping its politics and discusses, selectively, major issues and challenges facing states in the Middle East today.", + "title": "Politics of the Middle East", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2255", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0201", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module examines representations of politics in film and television and considers the ways in which they become politically controversial as objects of\nregulation and censorship, economic commodities or projections of cultural \u2018soft power\u2019. It also considers the reflexive potential of film and television to comment their socio\u2010political role as well as on their own representation of politics. The module explores these themes in a variety of cinematic and televisual ways of representing politics, including documentaries, dramas, historical re\u2010enactments, and comedies.", + "title": "Politics on Screen", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2256", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Drawing on the rich social science literature on the government and politics of contemporary Africa, the course will address a set of critical questions that will have important implications for the well\u2010being of the people of the continent and the world in the twentyfirst century. What have been the sources of political and economic crises in Africa? What has been the net impact of the international interventions in the continent in response to these crises? What explains the revival of democracy and economic growth in some parts of the continent? Will it last?", + "title": "Contemporary African Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2257", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Political theorizing considers basic questions about government, citizenship, equality, justice, rights, and the use of force. This module investigates these and related questions by reading and discussing classic and contemporary sources of different kinds, from letters, stories, and manifestos to systematic works of philosophy. By engaging with some of the most readable and interesting of these writings, one can learn how such questions have been answered in different times and places, as well as one\u2019s own.", + "title": "Introduction to Political Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS2258", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0603", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the rise, transformation, and sources of appeal of Islamist movements and organizations around the world. It is divided in two parts: the first part reviews the development of Islamic political thought from late nineteenth century to the present, covering the work of modernist, neo-revivalist and liberal Islamic thinkers. The second part examines Islamist ideas in practice in order to flesh out the ways in which Muslim ideologues have inspired forms of political mobilization and contestation. Primarily focusing on the Middle East, the second part investigates specific Islamist movements in historical and comparative perspective.", + "title": "Political Islam", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the core tenets of modern democratic theory in the context of real-world politics. Tracing democracy's historical evolution in the writings of Aristotle, Locke, Rousseau, Tocqueville, and Schumpeter among other prominent thinkers, this module examines the complex web of constitutional structures and institutions vital to its success. This module also examines various problems endemic to democracy as well as possible solutions to these problems by more recent democratic theorists such as Robert Dahl and Benjamin Barber. The course is intended for political science majors and students with a background in political science.", + "title": "Democratic Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the key concepts and problems associated with political ethics in the modern age. The first half of this module is a basic introduction to the major contemporary theories of distributive justice and political ethics. The second half of the module is an examination of just war theory and ethical problems in international relations. Drawing upon current events, this course will teach students how to make informed, ethical judgments about politics and war. This module is intended for students with a background in political science", + "title": "Political and International Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the main features of Asian politics and government is the complex nexus of ethnicity, religion, and the state. This module focuses on the colonial formation and postcolonial continuation of these ethno-religious features of politics, known as the politics of identity in Asia. It explains some major ethnic and religious conflicts in Asia; their impacts on national politics, party systems, state structures, and government policies; and the role of the state in this regard. The module is available to all year 1-3 students at NUS.", + "title": "Ethnicity and Religion in Asian Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines established political theories and ideologies in addressing gender equality and representation in politics. It also presents various traditions in feminist political thinking and evaluates their intellectual contributions to politics. The second part of the module examines the practical dimensions of gender politics such as women's movements and national and international conventions and institutions. It analyses the relationship among gender, class, and ethnicity, and examines the cultural and religious perceptions of these identities. The module is available to all year 1-3 students at NUS.", + "title": "Women and Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3237", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course presents a broad overview of international political economy (IPE). It introduces the student to main theoretical approaches, concepts and substantive issues in the IPE field, and help him/her better understand the relationship between power and wealth and the interplay of economics and politics in the world arena. After a critical evaluation of major theoretical perspectives on IPE, this course examines the politics in some core issue areas, such as economic interdependence, international division of labor, international trade, multinational corporations, regional cooperation, and North-South relations.", + "title": "International Political Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0205", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to provide a broad understanding of international conflict situations, conflict behaviour and attitudes. It deals with the nature, type and sources of conflict. Based on insights from general conflict studies it explains conflict pathologies and the debilitating effects of protracted social conflicts. It also analyses various conflict resolution strategies by focusing on negotiation techniques, third party mediation and intervention. Bearing in mind that conflicts are mostly transformed rather than eliminated the module assesses the experience of peace-promotion and peace-building in post-conflict societies. The module is meant for students keen on a multi-disciplinary approach to international conflict.", + "title": "International Conflict Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines key issues pertaining to international security including: the various approaches to studying international security, the nature of interaction among various levels (national, regional, international) of security, and the major security threats caused by the expansion of conventional arms, proliferation of nuclear arsenal and the spread of biological and chemical weapons. The rise of non-traditional security threats in world politics, especially Southeast Asia, and of Asia, particularly China, as a security concern internationally is also analysed.", + "title": "International Security", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3240", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module considers the foreign relations of the United States. It covers both the institutions and practices that shape the making of US foreign policy and the substantive policies that emerge from the policy process.", + "title": "US Foreign Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why organizations behave as they do? What explains the creation, change, and prosperity of organizations? Social scientists have risen to the challenge to address these questions. In this module, students will learn the fundamental perspectives in organizational theory and their application to and transformation over time. The discussion pays particular attention to organizational and human behaviors in public sector organizations. As such, it is ideal for students interested in public management and those who aspire to work in the public sector.", + "title": "Public Sector Organisational Behaviour", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers topics in public personnel administration, including personnel planning, job analysis, recruitment and promotion, performance appraisal, compensation, and training. It also examines some of the controversial issues like meritocracy, affirmative action, and comparable worth. The current trends of changes in these personnel functions and issues are also explored. In discussing these issues, the module uses selected country cases, including the US, the UK, Japan, and ASEAN countries. The module can be taken by all year 1-3 year students at NUS.", + "title": "Public Personnel Administration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the question of ethical standards governing the conduct of public\n\nofficials and the linkage between corruption and governance in Asia and other regions.\n\nAttention is given to the causes of corruption and the effectiveness of anti-corruption measures\n\nas well as to broader issues of public service ethics and administrative responsibility.", + "title": "Public Ethics and Corruption", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores a number of theoretical approaches in international relations to understand the rise of China as an example of the general phenomenon of hegemonic transition. In previous cases of hegemonic transition, there has been great power war. The various theoretical approaches covered will include: power transition theory, hegemonic stability theory, liberal interdependence, world-systems theory, democratic peace, neoliberal institutionalism, neorealism, balance of threat, neo-Gramscianism, and constructivism.", + "title": "The Rise of China and International Order", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses Singapore's outlook towards the world with particular reference to countries in the West and Asia. It examines the following key issues affecting Singapore's foreign policy problems of a small state, factors influencing the worldview, the key foreign policy principles and precepts, the operationalisation of relations towards different countries; and the key differences in outlook towards the world in the Cold War and post-Cold War periods. The course is mounted for students throughout NUS with interest in Singapore and particularly its foreign policy.", + "title": "Singapore's Foreign Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3249", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0311", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Monday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will study the international organisations that constitute a crucial part of the global institutional architecture. Based on an understanding of the literature on international relations and organisations, the module will seek to address a set of critical questions Why are international organisations created? What are their objectives, and how are these objectives achieved? What effects do international organisations have on the practices of international relations? Through the consideration of these questions, students will gain empirical and theoretical insights into global governance and international relations indispensable to any student of Political Science and International Relations.", + "title": "International Organisations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a module that examines theories of human rights since 1945, and the practice of promoting or rejecting these ideas as universal \"goods\" in international relations. Students will critically examine NGO issue advocacy, western states' \"ethical\" foreign policies; and the \"Asian values\" counter-challenge. This module relates the subject of human rights to political philosophy, international law, the UN system, morality, national interest, and values/ideology in foreign policy.", + "title": "Human Rights in International Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the theories of knowledge and methods of inquiry appropriate to studying politics. It introduces students to alternative understandings of the social sciences and to the empirical, critical, and analytical skills they imply. It pays particular attention to helping students understand the basics of good research and to acquire skills essential to conducting their own research.", + "title": "Political Inquiry", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3257", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0601", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a survey of different methodological approaches to the study of political science: single case studies, qualitative comparative analysis, and a variety of quantitative methods. The module focuses more on applications than theories, and explains how political questions can be investigated using different types of data and methods. All students are expected to have completed PS2102B (Political Inquiry) or an equivalent introductory research methodology module. Students are required to work on group research projects and present their findings at the end of the semester.", + "title": "Research Methods in Political Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the American political tradition,\n\nfocusing on the ideas that inform America\u2019s unique\n\nsystem of governance during the past two centuries -\n\nrevolution, self-determination, constitutional\n\ngovernment, the separation of powers, the legal\n\nprotection of basic moral rights, federalism, slavery,\n\nequality, and civil disobedience. Students will study the\n\nwritings of America\u2019s most important political thinkers\n\nincluding Madison, Hamilton, Jefferson, Lincoln,\n\nEmerson, Thoreau, and Martin Luther King.", + "title": "American Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the many forms of relationship between politics and visual culture. From the ancient world to the present, politics, whether formal or popular, has had a visual dimension. Politicians have been concerned to control their appearance; various media (from painting to theatre to television to the internet) have been used to both serve and defeat this goal. The module surveys the relationship between politics and visual culture and allows students to engage with contemporary issues surrounding politics, film, and digital culture.", + "title": "Politics and the Visual", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3260", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0106", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0205", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0115", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents a broad overview of non-profit organization management. Based on public administration and strategic management theory, it focuses on practical problem-solving ideas. Topics to be considered include 1) shaping an organisation\u2019s vision and mission, 2) SWOT analysis, 3) decision-making, 4) establishing strategic management capacity, 5) inter-organizational cooperation and partnership, and 6) other management techniques.", + "title": "Managing Non-Profit Organisations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3262", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the politics of economic development and underdevelopment. Students are introduced to major political issues in developing countries and to political science frameworks for understanding those issues. Themes covered include state-building, the relationship between development and democracy, the state\u2019s role in industrialisation, development problems and development policy. Specific countries are used as cases to illustrate \u2013 and criticise \u2013 arguments about politics and development, but the focus in this module is on common themes rather than the political histories of particular nations.", + "title": "Comparative Study of Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys major themes and debates in the study of civil\u2010military relations. The study of civil military relations addresses a simple puzzle: can we\nhave a military strong enough to protect civilians yet not so strong as to ignore or subvert civilian authority? A military strong enough to defend the state from external enemies is also strong enough to seize power. How can a state have a strong military capability without being dominated by it? How do political leaders and military organizations interact with each other and with the larger society, and how do their cultures overlap and diverge.", + "title": "Civil-Military Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3265", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS6-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Music\u2019s political importance was recognized long ago by theorists in both East and West. Plato, for example, wrote that \u2018when the mode of music changes, the walls\nof the city tremble\u2019, and Confucians and Legalists engaged in extended controversy over the social desirability of music. Students will be asked to read\ntheoretical writings on music and politics by these and other thinkers (including Rousseau, Nietzsche, and Adorno) and to consider how music has been exploited\nat the level of political practice for a wide variety of purposes from promoting nationalism to articulating popular protest.", + "title": "Politics, Music and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3266", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies German political thought since the Enlightenment. Reading selections in English translation from the political writings of nineteenthcentury\nluminaries such as Hegel, Marx and Nietzsche together with important twentieth\u2010century thinkers such as Weber, Heidegger and Habermas, it introduces\nstudents to the major thinkers, ideas and problems of the modern German political tradition. Among the topics covered are the intellectual origins of German\nidealism and communism, Weimar politics, Nazism, the Frankfurt School and Habermas\u2019s theory of deliberative democracy.", + "title": "German Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module interrogates major concepts and institutions of Latin Christendom in the 12th\u201015th centuries. The module begins by examining the Greek, Roman, and Biblical foundations of medieval thought, followed by a series of conceptual issues. Topics include the nature of temporal and spiritual power,\nand the relation between them; different kinds of law\u2014divine, natural, and human\u2014and their bearing on human relations; theories of medieval government; notions of community and representation, and the relation of state and individual. The module will conclude by reflecting on what the modern world has inherited from the Christian Middle Ages.", + "title": "Medieval Western Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the institutional and procedural dimensions of public policymaking. It introduces theories of policy\u2010making, such as rationality, incrementalism, and policy networks, and it explores how major political institutions\u2014including executives, legislatures, bureaucracies and interest groups\u2014affect the policy\u2010making process. The stages of policy\u2010making, such as agenda\u2010setting and policy formulation, implementation, evaluation and termination, are also considered. Case studies are used to illustrate these complex processes. The module is designed for students who are interested in governance and policy\u2010making and may be considering a career in the public sector.", + "title": "Public Policy-Making", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines the insertion of Sub-Saharan Africa into the world, and looks at both intra-African international relations, as well as how African states\nhave interacted with various external actors. Students will examine the implications of issues such as governance, security, and development aid for Africa\u2019s international relations. They will also learn about the international relations of key African states with countries outside Africa.", + "title": "The International Relations of Sub-Saharan Africa", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3272", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module connects Singapore politics to important themes in the study of comparative politics. It examines the relevance of political science concepts for\nunderstanding local politics, and investigates how the study of Singapore might inform debates in comparative politics. The issues to be considered may include: statebuilding, democratization, party politics, racial politics, civil rights, judicial politics, identity and citizenship, and the state\u2019s role in industrialization.", + "title": "Singapore Politics in Comparative Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3273", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to competing concepts and arguments in environmental politics. The module will enhance students\u2019 understanding of the ways in which political and economic institutions, regimes, culture, and norms interact with environmental outcomes at local, regional, and global levels. Students will also learn the roles different actors and institutions play in global environmental governance.", + "title": "Environmental Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3274", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Friday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Few things are more dramatic than the collapse of a political system, whether through violent conflict or peaceful negotiations. Explaining why regimes break down and why new ones emerge are among the most important questions in political science. This module looks at the conditions under which regimes unravel, focusing on the breakdown of democratic institutions, the rise of populism, and conversely, transitions away from various types of authoritarian regime, using case studies from Southeast Asia. PS2234, while not a pre-requisite, is strongly recommended.", + "title": "Regimes in Transition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3275", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Monday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This upper-level seminar surveys the literature on comparative political behaviour with cases drawn from South, Southeast, and East Asia. Given how broad the comparative political behaviour literature is, we will cover only some of the most studied topics. These topics include voting behaviour, political identities, and political participation. Since no individuals live in a vacuum, we also will cover how individuals and political behaviour are constrained by political system and political culture.", + "title": "Comparative Political Behaviour", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3276", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the ethical dimension of\ninternational relations. It takes as its point of\ndeparture the conviction that international relations,\nlike all realms of human conduct, is intelligible in\nquestions of obligation, right, good, and so forth. The\nmodule interrogates prominent ethical languages of\ninternational relations, including moral scepticism,\nsovereignty, war, international law, and human rights.\nIt then considers how these languages arise and\nconflict in a range of contemporary international\nissues. Particular emphasis is placed on excavating the\nground on which ethical choices are made, defended,\nand judged.", + "title": "International Ethics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3311", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ideas and concepts derived from European experience\u2014anarchy, sovereignty, balance of power, and so forth\u2014dominate thinking about world order. This module challenges this dominance by problematising European narratives and by examining extra-European approaches. Particular attention will be given to thematic issues, such as empire and race, as well as Asian, Islamic, and Pan-African understandings of world order. Consideration will also be given to the adequacy of European ideas and concepts, and to alternative vocabularies of world order. The module is historical and philosophical in orientation, with theoretical questions being at the centre of inquiry.", + "title": "World Orders", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3312", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within an organisation, are vetted and approved by the Department\u2019s internship advisor, have relevance to the major in Political Science, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships (if any) will be advertised at the beginning of each semester. In exceptional cases, internships proposed by students may be approved by the Department.", + "title": "Political Science Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3550", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project. UROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed. UROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP )", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP )", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3551R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics which may change from semester to semester. Students should check the topics on offer in a given semester before enrolling in the module.", + "title": "Topics in Political Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module considers important transitions in Chinese political thought from the late nineteenth to the early twentieth centuries. We will survey the growth of critical consciousness from 1890 to the May Fourth Movement, the rise of and reactions to Communism, and the revival of Confucianism in the 1970s and after. We will consider such questions as: what concerns preoccupy Chinese political thinkers of this period? What is the value of Chinese traditions for thinking critically about China's political future? How can Chinese political thought be understood to have global relevance?", + "title": "Modern Chinese Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the political dynamics entailed in and produced by the United Nations System. Using both traditional academic analysis and experiential\nlearning (an in\u2010class simulation) the module probes three of the most politicized aspects of the UN: its institutional design; its mandate to pursue collective\ninternational security; and the UN\u2019s efforts to globally advance human development.", + "title": "Politics of the United Nations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3880D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the politics of human trafficking in Southeast Asia. It critically examines questions such as the following: What are the causes and consequences of human trafficking in the region? What are the different forms of trafficking (e.g., sex trafficking, forced labour, child soldiers)? How does trafficking involve human rights and to what extent are these rights enforced? How do governments, the media, and others portray trafficked persons \u2013 and more importantly, how do they portray themselves? The module also provides students with educational exercises in the field, applying relevant theories and research methods.", + "title": "Topics in PS: Human Trafficking in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3880E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to quantitative approaches to the scientific study of international political and economic relations. It focuses on current quantitative research on such diverse topics as conflict and peace, international trade, investment, and monetary relations, and the design and effectiveness of international institutions in protecting human rights and the environment. In addition to studying and evaluating the contemporary academic literature, this\nmodules requires students to actively contribute to and improve on existing international relations research using advanced quantitative methods. The\nmodule provides students with the necessary statistical tools and skills to do so.", + "title": "Topics in PS: Quantitative Approaches to Intl Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3880F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides undergraduate students with intensive, focused, and hands-on training in specific research methods. It introduces students to and familiarizes them with such quantitative and qualitative methods as multiple regression, qualitative comparative analysis, and experimental methods.\n\nThe module is linked to the IPSA-NUS Methods School established in 2012 and aims to give students an intensive introduction to the research methods used by political scientists and researchers in neighbouring social science disciplines which they can apply immediately and which will also serve as a foundation for further study.", + "title": "Topics in PS: Research Design and Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3880G", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module considers European integration as an advanced experiment in supranational governance. It examines the main theories of European and\nregional integration, including neofunctionalism, liberal intergovernmentalism, and Europeanization theory, and applies these theories to understand debates about the EU\u2019s identity, its imagined \u2018end point\u2019, arrangements for sharing power between member states and central institutions, and possible futures.", + "title": "The Politics of European Integration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS3880H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will investigate political-theoretic responses to one or more of the following contemporary issues: economic, racial, and gender inequality; political and economic power; the environmental crisis; the rise of authoritarianism; and questions of rights and liberties. Course content will vary according to instructor expertise. The overall goal will be to connect critical and positive theorizing to our political world so that we deepen our political education.", + "title": "Contemporary Political Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers political parties and electoral systems in both established and new democracies. In the West, political party systems reflect highly institutionalised electoral systems and are relatively stable. In much of the world, however, political parties are less institutionalized and more responsive to volatile electorates than those in the West, and many new democracies have failed to develop even minimally stable party systems. The aim of the module is to provide students with a good grasp of the issues and current research on political parties and elections in the West, in Asia, and around the world.", + "title": "Political Parties & Elections", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines some major issues of contemporary Chinese politics, political economy, and policy processes as they affect Chinas relations with the rest of the world. It covers both the institutions and practices that shape the making of Chinese foreign policy and the substantive policies that emerge from the policy process.", + "title": "China's Foreign Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to highlight contemporary issues besetting countries in this part of the world with the goal of helping students to better understand the myriad problems and challenges confronting Southeast Asian states, as well as assess their relative effectiveness in dealing with these challenges. This module will discuss the politics of key nationbuilding issues such as ethnicity, religion, and class and examine how the governments manage other pressing challenges such as the forging of national identity, globalization and new security threats. This module is targetted at students in the advanced years, specifically the Honours Year.", + "title": "Contemporary Politics of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces the trends, approaches, and limitations of security studies in the Asia-Pacific. It explores major institutional arrangements of regional security and linkages between these regional arrangements and international security structures. It also analyses contemporary changes in the issues and priorities of security and the newly emerging security concerns in the Asia-Pacific. The implications of domestic political changes for regional security are also considered. The module can be read by honours and postgraduate students in Political Science.", + "title": "Regional Security in the Asia Pacific", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores major theoretical debates in international relations (IR). After discussing some of the standards by which we might evaluate theories, we will examine some realist, liberal, and 'alternative' theories of international relations, and the classic debates between these perspectives. Theories are applied to major aspects of international relations such as trade, war, alliances, and stability, for individual states, for particular groups of states, and in the international system as a whole. We will also explore the role of domestic politics in foreign policy. The module is designed for Political Science Honours students.", + "title": "Theories of International Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on public organisation. It analyses various concepts and theories of organisation and examines critical organisational issues in the public sector. The major theories discussed in the module include the classical, neoclassical, systems, contingency, and critical theories of organization. It also focuses on specific organisational issues such as decision making, motivation, leadership, administrative ethics, and organisational change with special reference to the public sector. The target students for this module include both honours and postgraduate students in Political Science.", + "title": "Public Organisation Theory and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Political theology is a mode of inquiry that interprets politics in the context of theological concepts and categories. This module focuses on Christian theological debates, in the late medieval and early modern periods, and considers their impact on the vocabulary of contemporary politics and international relations. Representative topics include: state sovereignty, political rule, extra-legal action, and international order. In recovering this theological inheritance this module dispels widely held myths about the origins of this vocabulary and reinterprets canonical figures in this light. In doing so, it challenges the narrative of progressive secularisation that dominates modern Western political and international thought.", + "title": "Political Theology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The issue of morality in international politics is frequently treated as marginal to the contemporary concerns of states in their international relations. Developments such as the Nuremberg Trials, the Cold War, the African Famines of the 1980s, the Genocides in ex-Yugoslavia and the emergence of wrangles over resource exploitation and environmental pollution call attention otherwise. This module equips the student with the conceptual tools and frameworks with which to comprehend and make informed decisions about these cross-boundary ethical complexities. Both Political Science majors and non-Political Science students will find this a useful supplement to studies of international politics and philosophy.", + "title": "International Political Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the intellectual foundations, rationale, relevance and practicality of non-violence in the political arena. Reading early arguments for non-violent direct action in the writings of early 19th century thinkers, such as Leo Tolstoy, John Ruskin and Henry David Thoreau, the module analyses the effectiveness of non-violence as a political strategy in Gandhi's campaign for India's independence, the American Civil Rights Movement, and Nelson Mandela's struggle to liberate South Africa from Apartheid. To prepare for this module, it is suggested that students have taken PS3233 Political and International Ethics.", + "title": "Politics of Non-Violence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Traditionally, as a discipline, International Relations has treated war as the use of the military instrument by states. This module aims to introduce students to an elementary comprehension of war as a form of politics. A philosophical approach will be taken towards an exposition of general theories of war, as well as land, air, sea, guerrilla and nuclear warfare. It will round off by inquiring whether war studies should necessarily encompass human security today. In this way, the field becomes open to Critical Theory and Postmodern perspectives as well. Students are strongly encouraged to read PS2237 Introduction to International Relations before signing up.", + "title": "The Study of War", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Major Political Thinkers series examines the writings and historical contexts of the most important political thinkers throughout the history of political thought. Each module focuses on one or two thinkers, such as Plato, Aristotle, Aquinas, Hobbes, Locke, Marx, Rousseau, Kant, Rawls, and others", + "title": "Major Political Thinkers", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The European Union is often viewed as an economic superpower but a military pygmy. This module aims to provide students with tools to evaluate whether the EU, as a non-state actor, can have a coherent and effective foreign policy. It considers theories and debates concerning the institutionalisation of the EU's Common Foreign and Security Policy (CFSP), and includes case studies of EU objectives and actions on selected issues (international trade, ethics, human security), in selected regions (Eastern Europe, the Middle East, Asia and Africa), and in relations with international organizations such as the UN.", + "title": "European Foreign Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the emerging field of comparative political theory by considering to what extent it stands as a coherent, independent subfield, and what if any are the questions it is specifically poised to answer. Our treatment will be both topical and methodological. We will begin by reading the work of contemporary scholars who explicitly situate themselves within \u201ccomparative\u201d as opposed to mainstream canonical political theory, and/or who use comparison as a tool for elucidating particular political problems. In the second part of the course, we will read primary sources that undertake comparative or synthetic perspectives on formulating theory in the modern world, but from selfconsciously \u201cindigenous\u201d perspectives.", + "title": "Comparative Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4219", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The art of persuasion is central to political activity.\n\nAristotle's treatise on rhetoric, which analysed legal\n\nand political discourse, set the agenda for\n\ndiscussion of the subject until the modern era and\n\nremains supremely relevant to politics today.\n\nPolitical theorists and historians of political thought\n\nhave recently rediscovered the subject of rhetoric\n\nand there is a wide array of fresh writing available\n\nfor students to study. This module will provide\n\ninvaluable insight into the nature of political speech\n\nfor all who opt for it and greatly enhance their\n\nability to dissect the language of politics.", + "title": "Rhetoric and Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to explain similarities and differences between the countries of Northeast Asia and to broaden and sharpen students\u2019 understanding of the various political, economic and social issues confronting this region. Focusing on China, Japan and Korea, the module will consider the principles and practices of democracy and the obstacles to democratic transition. It will also consider a selection of overlapping topics and issues such as political parties and elections, corruption, nationalism, civil-military relations, civil society, local politics, women and politics, economic reform, leadership and the media.", + "title": "Contemporary Politics of Northeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to some of the\n\nmajor themes of comparative political sociology\n\nthrough the lens of a clearly established literature\n\nthat draws from a variety of national and subnational\n\ncase studies. It focuses on the relationship\n\nbetween civil society and the state and on the\n\ninstitutions and processes that mediate that\n\nrelationship. Topics covered include contemporary\n\ntheories of the modern state; political culture and\n\ncivil society; revolutionary and non-revolutionary\n\npolitical regime change; clientelism; and corporatist\n\nand non-corporatist forms of interest group\n\nintermediation.", + "title": "State and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers a close study of emerging markets as rising powers that shape the governance of international economic exchange. The module is\norganized around two core questions: where are the emerging economies, and why are they important? The course emphasizes a dynamic definition of\nemerging markets that reflects the ongoing \u201cpower shift\u201d in the global economy, including but not limited to countries such as Brazil, Russia, India, China, and\nSouth Africa. The module takes an interdisciplinary approach, drawing on political science and economics scholarship to examine emerging markets in\ninternational trade and investment, global financial governance, and foreign aid.", + "title": "Emerging Markets and Economic Governance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Democratic politics are an integral part of Comparative Politics. This module addresses major issues of democratic politics since World War II. The module has three parts: contemporary democratic theory, patterns of democratic transition since the 1980s, and democratic consolidation. The module combines historical, theoretical, and comparative approaches to help students understand the democracy as a political system, the merits and demerits of democracy, and the driving forces behind democratization in the contemporary world.", + "title": "Comparative Democratic Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Ways of knowing have always been connected with particular forms of political organisation. For example, the idea of an ascending hierarchy of forms of knowledge culminating in the knowledge of the good found in Plato\u2019s Republic also implies a hierarchical social order capped by an elite of \u2018guardians\u2019 who have mastered this sequence; the government of Confucian China required a scholarly elite distinguished by its knowledge of correct ritual essential for preserving the social order. The course examines the changing ways in which knowledge and political power have been mutually implicated in traditional, classical, and modern societies.", + "title": "The Politics of Knowledge", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Chinese leaders in the reform era face a distinct governance challenge: economic transition requires major revamps in the ways China is managed while an overhaul of the political system is not a viable option. Against the backdrops, Chinese leaders have carried out substantial reforms in public sector organizations. This module examines the content, rationale, and outcomes of public sector reforms in China. Major topics include reforms on cadre personnel management, public finance, healthcare, education and enterprise systems. It helps students understand the significant role of public sector reforms in China\u2019s transition, and the new challenges caused by these reforms.", + "title": "Public Sector Reforms in China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Critical international relations theory argues that the social structures of the international system are the product of human interaction in specific historical circumstances. It also argues that these structures contribute to oppressing much of the world's population. How did these oppressive structures emerge, and why do they persist? Who gains from them and how do they maintain their privileged position? This module will explore such questions by examining major traditions in critical theory, including Marxism, constructivism, post\u2010modernism, and critical feminist theory and applying these theories to issues in international relations.", + "title": "Social Theory and International Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an in-depth study of Friedrich Nietzsche\u2019s, Jean-Paul Sartre\u2019s and Albert Camus\u2019s political ideas. Reading selections from Nietzsche\u2019s Genealogy of Morals, Thus Spoke Zarathustra and Sartre\u2019s Being and Nothingness, as well as Camus\u2019s The Rebel and Myth of Sisyphus, this module introduces students to the major political ideas, concepts and problems of existentialist philosophy. Among the topics covered will be Kafka and Kierkegaard\u2019s Nietzschean critique of democracy and Camus\u2019s famous break with Sartre over Stalinist-Leninism. This module is for students with a background in political philosophy and an interest in existentialism and democratic theory.", + "title": "Existentialist Political Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a course that explores the origins, reproduction, and effects of social identity from a variety of perspectives. The sources of identity that are investigated include the self, group, society, and state, as well as their more complicated combinations. The identities whose origins, maintenance, and effects we study are nation, ethnicity, gender, religion, sexuality, and race. The approaches we take to make sense of identity politics include writings in political science, social psychology, sociology, history, anthropology, and cultural and post-colonial studies.", + "title": "Identity Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4234", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines some of the issues and\nchallenges pertaining to the causes of, and the\nconditions associated with, conflict continuation and\ntermination. The course surveys some of the major\ntheoretical approaches to war termination and\nexamines how some of the major wars have ended in\nthe past century. In addition, this course also examines\nhow other forms of conflict in the international\nsystem, such as civil wars, insurgencies, international\nrivalries and terrorism, have terminated. Lastly, policy\nand operational challenges linked to war termination\nare also examined.", + "title": "War Termination and the Stability of Peace", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will discover how environmental\nproblems have exceeded their boundary as an \u201cissue\narea\u201d and have altered contemporary political\ntheorizing. This includes questions related to the roles\nof the state, the borders of the moral community, and\nmatters of justice. We will trace the transformation of\nliberal, republican, conservative, socialist, and feminist\npolitical thought in the wake of environmental politics.\nFinally, we will ask whether there is such a thing as a\ndistinctly \u201cgreen\u201d political theory.", + "title": "Environmental Political Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates the ways in which political\nphilosophers have legitimated, questioned, and\ncritiqued property, markets, money, wage labour, and\nprofit, as well as capitalism as a system. Students will\nbecome familiar with liberal, libertarian, Keynesian,\nPolanyian, and Marxist theories of capitalism and its\ninstitutions. In order to understand our contemporary\npolitical economy and how it came to be, the module\nwill place particular emphasis on philosophies that\njustify capitalism and how capitalism has been linked\nto freedom, equality, justice, and utility.", + "title": "Capitalism and Political Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4237", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines some of the major debates surrounding the \u201cstruggle for recognition\u201d and its relation to the politics of identity and difference. It explores why recognition is an essential human need and how it is foundational to the ways in which we conceive of ourselves and others. It also studies how recognition struggles are often seen as underwriting many contemporary political and social movements, and how they relate to concerns about justice, equality and freedom. Finally, it examines if recognition might, oddly enough, itself become a means of oppression and injustice.", + "title": "The Politics of Recognition and Identity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced seminar explores the international politics of Southeast Asia using new and innovative theories from International Relations (IR). Southeast Asia is at the crossroads of a range of contemporary dynamics: from US-China power-shifts, and South China Sea disputes, to democratic transitions (Burma) and populist authoritarian rollbacks (Philippines). The scholarly study of Southeast Asian IR has not kept pace with the region, however. This module draws on IR practice theory, international political sociology, feminist theory, emotions theory, and diplomatic history to examine how colonialism, class, ethnicity, gender, emotions, domestic politics, regime types (democracy/authoritarianisms) etc., shape Southeast Asian IR.", + "title": "Seminar in International Relations of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides an in-depth critical overview of the political science literature on vote choice in democratic elections, covering both some of the classics and some cutting-edge contributions. The frames of economic voting and of class politics are explored in detail, and their insights squared with perspectives that stress the importance of social identities like ethnicity and gender. We discuss also the general implications for democratic theory and for the prospects of democracy in the older democracies of north America, western Europe, and Asia-Pacific, and in younger democracies and emerging countries.", + "title": "Economic Interest, Identities, and Voting Behavior", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4308", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores topics of international relations\nas they are treated in classical political thought. Topics\ninclude: nature and purpose of political order; causes\nof war; sovereignty and self-determination; balance of\npower, diplomacy, international law, family of nations,\nand the transformation of international political\ncommunity. These topics are examined in the context\nof key international relations distinctions:\ninside/outside; universal/particular; and\nsystem/society. Particular attention will be given to\nidentifying patterns of continuity and change that\nexplain how these topics have been understood\nhistorically.", + "title": "International Relations in Political Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4311", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces significant questions of politics in Europe. It teaches students to analyse the ideas, institutions, actors, and interests that influence European politics. We explore the domestic politics of European states including Germany, France, and the U.K., and relations among European states after World War II, with particular attention to European integration. While most of our focus will be devoted to Western Europe, we will discuss political transitions in Eastern Europe and the process of EU expansion. We will critically assess debates in European politics on issues like migration and refugees, Brexit, the European economy, foreign and security policy.", + "title": "Seminar in European Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4312", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces theories of political economy in a comparative perspective \u2013 from classical liberalism to critical approaches. It covers institutional, interest- based and ideational analysis. It examines key topics in political economy including the causes of economic growth; state-market relations; markets for goods and services, finance and labour; macroeconomic management; debt, inequality, and redistribution; economic reform in industrial and developing states. This module is designed to help students critically assess the classic and current research literature on how states and markets are organised, justified, and transformed over time and across nations \u2013 with a particular focus on the varieties of capitalism.", + "title": "Seminar in Comparative Political Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4313", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data analytics is an increasingly essential skill for political science research. This module teaches a range of analytical tools in data analysis and statistics to understand important and interesting questions about politics, societies and human behaviour. It covers data analysis concepts such as causality, measurement, prediction, probability, and statistical tools. It provides hands-on instruction using R programming and datasets from leading quantitative social science research.", + "title": "Data Analytics in Political Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4314", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is basically a research and writing exercise to be supervised by a Department staff. Those who qualify are expected to select a research topic in any subfield of Political Science, conduct research on the topic, collect and analyse data, present arguments, complete the thesis, and submit it within the stipulated deadline. The length of the thesis should not exceed 10,000 words. Each thesis is assessed by two examiners (including the supervisor), and it is meant only for Honours Year students in Political Science.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "PS4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in comparative politics. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in Comparative Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines major issues in Malaysia\u2019s political landscape today and in recent times. It considers tensions and controversies over ethnicity, religion, party politics, money politics, governance, democracy and civil society, national identity and national integration, and globalization.", + "title": "Topics in CP: Malaysian Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4881B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar considers working class participation in the political economy, including labour market regulation, national labour administration, state-labour ties, labour-business relations, the structural conditions underpinning labour-capital relations and labour representation in the political arena. Attention is given to corporatist, neo-corporatist and pluralist forms of labour politics and to some of the ways labour enters the political system for example, as autonomous, state or party-dependent, nondependent party-affiliated, pressure group, social movement or unorganized activity. Issues of format, scope, and participation in collective bargaining will be addressed, as will principal-agent and other collective action logics.", + "title": "Topics in CP: Labour Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4881C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar examines the relationship between private\n\nwealth and political power. Most polities claim to\n\npursue public ends, yet many leaders have close links to\n\nprivate money. In democracies, elections are supposed\n\nto produce accountable officials, yet campaigns depend\n\non funding from corporations and individuals. This\n\nmodule addresses questions about the \u2018dirty\u2019 side of\n\npolitics and how private financing of political campaigns\n\ncould be regulated: Why does vote-buying occur in\n\nsome situations but not others? What is the role of\n\norganised crime in the business-politics nexus? How\n\nrepresentative are elected leaders if they are also\n\nindebted to campaign financiers? These themes have\n\nwide relevance and we will study them in a variety of\n\ncontexts, from local struggles in the developing world\n\nto American presidential elections.", + "title": "Topics in CP: Money and Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4881D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an introduction to key issues in Korean politics. We cover the politics of both regimes on the Korean Peninsula, as well as inter-Korean relations. Although the module focuses on the domestic politics of Korea, the peninsula's politics cannot be understood without reference to the broader regional and international context. The module therefore bridges comparative polticics and international relations.", + "title": "Topics in CP: Politics of the Korean Peninsula", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4881G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module addersses some of the major issues of contemporary Chinese politics. The issues to be discussed include the politics of economic privatisation, social stratification and emerging class conflicts, rural reforms, poltical corruption, new forms of representation and participation, social-political pluralism, central-local relations, Taiwanese democracy, and the prospects of China's politicial transition. To help the student better understand the dynamics, consequences, and implications of China's polticial, economic, and social developments since 1978, this module combines theoretical and comparative approaches that extend its scope beyond an empirical study of China.", + "title": "Topics in CP: Chinese Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4881H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in international relations. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in International Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar studies the effects of globalization on security. It considers the proliferation of weapons of mass destruction, terrorism, crime, environmental degradation, migration, public health, and other issues. How do states and non-state actors deal with transnational threats? What are the implications of these issues for traditional understandings of sovereignty and non-intervention? What is the role of international institutions and global civil society in responding to these threats?", + "title": "Topics in IR: Globalisation, Security and the State", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4882A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar examines the causes and consequences of\n\ntransnational migration, a complex and little\n\nunderstood aspect of globalisation. How have\n\ngovernments and international organizations\n\nresponded to mass population movements? How has\n\ntransnational migration been treated as a political,\n\neconomic, security, and human rights issue? What are\n\nthe gender aspects of migration? We will explore these\n\ntopics through historical and contemporary\n\nperspectives on migrants and refugees. We will\n\nconsider a wide range of sending and receiving\n\ncountries, focusing on states and movements in\n\nSoutheast Asia.", + "title": "Topics in IR: Politics of Global Migration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4882D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will provide an in-depth examination of\n\nissues related to Weapons of Mass Destruction\n\n(WMD) and the international institutions designed to\n\nreduce the threat of these weapons. It will examine\n\nthe technology behind WMD, analyze the\n\ndevelopment of international arms control\n\ninstitutions, and consider emerging arms control\n\nissues such as the threat of terrorists using WMD, the\n\nweaponization of space, nuclear smuggling and small\n\narms control.", + "title": "Topics in IR: Arms Control", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4882E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed as a research seminar for upper\u2010level Political Science majors. Students will survey the major areas of scholarship in international trade politics. Each student will also develop and complete a semester\u2010long research project on a topic to be decided in consultation with the instructor. This module strengthens the international relations program of the department.", + "title": "The Politics of International Trade", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4882F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What you eat can kill you. We all know that. Less well understood is that what you eat can kill many others, too. This module explores the politics of food from the local grocery store to the international trade in grain, sugar, and cacao. Topics to be covered include food production safety, labelling, and nutrition; environmental concerns relating to energy consumption and waste disposal; the politics of fast food; organic farming and sustainable agriculture; genetically modified foods; the ethics of animal care; vegetarianism, and the politics of hunger and malnutrition.", + "title": "Topics in IR: Food Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4882H", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "International society is classically defined as a group of states that are associated in respect of common norms, values, and institutions. This module explores the historical development of international society, from its Christian and European origins to its gradual expansion into a genuinely global political\narrangement. It also explores fundamental institutions, such as war, diplomacy, international law, great powers, and the balance of power. Particular attention will be given to the role of culture in international society (western and non\u2010western), theories of empire, the revolt against the west, and alternatives to a society of states.", + "title": "Topics in IR: International Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4882I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in political theory. Students should check the topics that are on offer in a given semester before enrolling in the appropriate\nsection of the module.", + "title": "Topics in Political Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the construction of an Oriental femininity in western scholarly, journalistic, and artistic production in the 19th and 20th century. It begins by examining colonial representations of Oriental women mapped onto an exotic fantasy of the harem. It then traces the imprint of the Orientalist cosmology upon 20th century portrayals of Muslim women within the context of a \u201cclash of civilizations\u201d and American intervention in Afghanistan. It also addresses the \u201cheadscarf controversy\u201d that has erupted in France in the 1980s, and the linkages between the \u201cveil\u201d, agency, Islam, and secular modernity.", + "title": "Topics in PT: Orientalism and Femininity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4883A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will offer special topics in public administration. Students should check the topics that are on offer in a given semester before enrolling in the appropriate section of the module.", + "title": "Topics in Public Administration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS4884", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to some of the research methods used in the empirical study of politics and public policy. The objective is to familiarise students with (1) concepts in research design, and (2) practices in analytical methods. Topics covered include the logic of \nempirical research, sampling methods, descriptive statistics, probability distributions, statistical estimation and inference, and hypothesis testing in group comparisons and regression analysis. Besides regular homework assignments, there will also be a mid-term test, a project, and a final examination.", + "title": "Research Design in Political Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5111", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Design in Political Science", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5111R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a core module in political theory designed for students in any subfield of political science. It selectively examines both the history of the subject and current ideas, theorists, and methodologies. Particular attention is given to alternative understandings of the activity of theorising (e.g. scientific explanation, historical explanation, cultural interpretation, moral prescription, and philosophical analysis of concepts and presuppositions) and to debates about the character and aims of political theorising.", + "title": "Seminar in Political Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a core module in political theory designed for students in any subfield of political science. It selectively examines both the history of the subject and current ideas, theorists, and methodologies. Particular attention is given to alternative understandings of the activity of theorising (e.g. scientific explanation, historical explanation, cultural interpretation, moral prescription, and philosophical analysis of concepts and presuppositions) and to debates about the character and aims of political theorising.", + "title": "Seminar in Political Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5201R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will survey the methodology, dominant approaches and theories in comparative politics. The seminar will place emphasis on methodological and theoretical issues that are common to the study of comparative politics. Classic works by leading comparativists will be used to illustrate the strengths and weaknesses of the existing methodological and theoretical approaches to the study of comparative politics.", + "title": "Seminar in Comparative Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5312", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Seminar in Comparative Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5312R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Every state tries to govern effectively and to win popular\ncompliance with its rule. Why are some states more\nsuccessful than others in achieving this paramount\nobjective? This seminar explores some answers to this\nquestion through intensive reading and discussion of some\nmajor works in comparative politics.", + "title": "Seminar On State and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5313", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Every state tries to govern effectively and to win popular compliance with its rule. Why are some states more successful than others in achieving this paramount\nobjective? This seminar explores some answers to this question through intensive reading and discussion of some major works in comparative politics.", + "title": "Seminar On State and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5313R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a core module in international relations which also challenges post-graduate students to begin original research in the subfield. Masters and Ph.D. students who specialise in international relations will be required to read this module. The module will introduce to students important and influential theories on international relations, including realism and liberalism, that attempt to explain cooperation and conflict among nations. Students will also be exposed to some of the important methods of analysis - such as case studies, formal modeling, and statistical analysis - that help distinguish the current study of international relations from that of previous eras. Important approaches, such as constructivism and rational choice, will also be discussed. Under the instructor's guidance, students will undertake an academic-quality presentation to the class and write a paper which proposes in detail an original research project in international relations.", + "title": "Seminar in International Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5314", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a core module in international relations which also challenges post-graduate students to begin original research in the subfield. Masters and Ph.D. students who specialise in international relations will be required to read this module. The module will introduce to students important and influential theories on international relations, including realism and liberalism, that attempt to explain cooperation and conflict among nations. Students will also be exposed to some of the important methods of analysis - such as case studies, formal modeling, and statistical analysis - that help distinguish the current study of international relations from that of previous eras. Important approaches, such as constructivism and rational choice, will also be discussed. Under the instructor's guidance, students will undertake an academic-quality presentation to the class and write a paper which proposes in detail an original research project in international relations", + "title": "Seminar in Int'l Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5314R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is seminar is designed for graduate students in any\nsubfield of political science. The module examines the\nintellectual history of public administration and the basic\nissues that confront it today. The seminar pays particular\nattention to administrative responsibility and ethics and to\nthe formulation and implementation of public policy. To this\nend, it will emphasize the nexus of public administration\nand politics.", + "title": "Seminar in Public Administration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5316", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is seminar is designed for graduate students in any subfield of political science. The module examines the intellectual history of public administration and the basic issues that confront it today. The seminar pays particular attention to administrative responsibility and ethics and to the formulation and implementation of public policy. To this end, it will emphasize the nexus of public administration\nand politics.", + "title": "Seminar in Public Administration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5316R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0335", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the politics of authoritarian rule. It begins by investigating conceptual and operational differences between authoritarian and democratic regimes. It then proceeds to examine the question of \u201cwho governs\u201d in authoritarian regimes, looking in particular at personalist, monarchical, military, and single party regimes. Further topics include: conditions that give rise to authoritarianism; strategies of maintaining power; authoritarianism and economic growth; and domestic and international sources of authoritarian demise. Readings will cover theoretical approaches to the study of authoritarian rule and in\u2010depth (mainly qualitative) case studies.", + "title": "The Politics of Authoritarian Rule", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5318R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys the foundations of American presidential authority and power, traces the historical development of the institution, and\nevaluates various scholarly approaches to understanding the American presidency. The American presidency was the first of its kind, the\ndistinguishing feature of one of two prototypical systems of government that has come to be known as presidentialism, in contrast to parliamentarism.", + "title": "The American Presidency", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5319", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module surveys the foundations of American presidential authority and power, traces the historical development of the institution, and\nevaluates various scholarly approaches to understanding the American presidency. The American presidency was the first of its kind, the\ndistinguishing feature of one of two prototypical systems of government that has come to be known as presidentialism, in contrast to parliamentarism.", + "title": "The American Presidency", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5319R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar addresses some major questions of politics in China in recent decades. These include leadership succession, economic privatization, new forms of social stratification, representation and elections, civil society, changing rural governance,\ncorruption, protest politics, the role of the Internet, and ethnic politics. The module will review current scholarship and provide a foundation for masters and doctoral students planning to undertake research on Chinese politics.", + "title": "Seminar in Chinese Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar addresses some major questions of politics in China in recent decades. These include leadership succession, economic privatization, new forms of social stratification, representation and elections, civil society, changing rural governance,\ncorruption, protest politics, the role of the Internet, and ethnic politics. The module will review current scholarship and provide a foundation for masters and doctoral students planning to undertake research on Chinese politics.", + "title": "Seminar in Chinese Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5321R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "There are various types of international institutions with implications for international politics, security, and economic affairs. In this regard, the module examines issues such as transnationalism, complex interdependence, regime theory, neo-functionalism, and neoliberalism. Apart from examining global\ninstitutions like the United Nations, the World Bank, the International Monetary Fund, and the World Trade Organisation, special emphasis is placed on institutions that have direct impacts on international relations in Asia, including ASEAN, APEC, ASEAN Regional Forum, ASEM, and SAARC. Students interested in International Relations are encouraged to read this module.", + "title": "International Institutions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5408", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "There are various types of international institutions with implications for international politics, security, and economic affairs. In this regard, the module examines issues such as transnationalism, complex interdependence, regime theory, neo-functionalism, and neoliberalism. Apart from examining global\ninstitutions like the United Nations, the World Bank, the International Monetary Fund, and the World Trade Organisation, special emphasis is placed on institutions that have direct impacts on international relations in Asia, including ASEAN, APEC, ASEAN Regional Forum, ASEM, and SAARC. Students interested in International Relations are encouraged to read this module.", + "title": "International Institutions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5408R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The last thirty years has seen a wave of enthusiasm for decentralization, with advocates suggesting its implementation as a remedy to some of the most intractable problems in governance. Yet the anticipated benefits of these reforms have since been distributed unevenly. By engaging cutting-edge empirical and theoretical research from economics and political science, this seminar will examine the promise and pitfalls of decentralization across diverse contexts. Looking across sectors, special attentions will be given to understanding the conditions under which decentralization achieves greater political accountability, improves service delivery, and boosts economic growth.", + "title": "Decentralization and Local Governance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5503", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The last thirty years has seen a wave of enthusiasm for decentralization, with advocates suggesting its implementation as a remedy to some of the most intractable problems in governance. Yet the anticipated benefits of these reforms have since been distributed unevenly. By engaging cutting-edge empirical and theoretical research from economics and political science, this seminar will examine the promise and pitfalls of decentralization across diverse contexts. Looking across sectors, special attentions will be given to understanding the conditions under which decentralization achieves greater political accountability, improves service delivery, and boosts economic growth.", + "title": "Decentralization and Local Governance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5503R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with theories, policies and institutions related to socioeconomic development. After introducing the major concepts and dimensions of development, it critically examines the major traditions of development theories (conservative, reformist, radical). It discusses major development policies practiced especially in the developing world.The module also covers alternative institutional choices \u2013 the state, local government, private sector and non\u2010government organization \u2013 in carrying out development plans and policies. It may also include recent debates on Asian models of development depending on the lecturer\u2019s interest or preference to cover such models.", + "title": "Development Theory, Policy and Institutions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5504", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The teaching and learning objectives of this module are to examine various administrative theories and their limitations; to explain recent theoretical developments in public administration; and to analyze these theories and issues in relation to practical administrative systems in various regions and countries. The topics covered in this module include theoretical approaches to public organization; new theories or models of public management; issues of administrative behaviour (e.g. decision making, leadership, ethics, accountability); limits of administrative theories; and relevance of western theoretical debates to non-western societies.", + "title": "Public Administration Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5505", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This graduate module explains how the powerful forces or actors of globalization led to pro\u2010market neoliberal reforms in the nature of state formation and introduced changes in public governance (policy and administration). In particular, it analyses the neoliberal mode of public management, known as the reinvention or new public management (NPM) model. The module examines major elements of NPM \u2010 type reforms (e.g.privatization, outsourcing, public\u2010private partnership, managerial autonomy, and financial decentralization) in East and Southeast Asia. It evaluates the impact of globalization\u2010led neoliberal reforms on democracy, citizen\u2010administration relations,and corruption by using a politic\u2010economic perspective on globalization, state formation, and governance.", + "title": "Globalization and Public Governance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5506", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate module explains how the powerful forces or actors of globalization led to pro\u2010market neoliberal reforms in the nature of state formation and introduced changes in public governance (policy and administration). In particular, it analyses the neoliberal mode of public management, known as the reinvention or new public management (NPM) model. The module examines major elements of NPM \u2010 type reforms (e.g.privatization, outsourcing, public\u2010private partnership, managerial autonomy, and financial decentralization) in East and Southeast Asia. It evaluates the impact of globalization\u2010led neoliberal reforms on democracy, citizen\u2010administration relations,and corruption by using a politic\u2010economic perspective on globalization, state formation, and governance.", + "title": "Globalization and Public Governance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5506R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0210", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers basic inferential statistics and its application to the systematic study of politics. Topics covered will include descriptive statistics, sampling\nand probability, simple and multiple regression, interpretation of regression coefficients, regression diagnostics, visualisation of data, and computation of\nquantities of substantive interest. The focus is on the statistical underpinnings of the ordinary least square regression model and on developing practical data\nanalysis skills.", + "title": "Introduction to Quantitative Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5602", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers basic inferential statistics and its application to the systematic study of politics. Topics covered will include descriptive statistics, sampling\nand probability, simple and multiple regression, interpretation of regression coefficients, regression diagnostics, visualisation of data, and computation of\nquantities of substantive interest. The focus is on the statistical underpinnings of the ordinary least square regression model and on developing practical data\nanalysis skills.", + "title": "Introduction to Quantitative Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5602R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to qualitative methods in political science. After a review of the main competing epistemological approaches we concentrate on the most prevalent qualitative method in political science: the comparative case-study. We then turn to interpretivism, ethnography, and discourse analysis, and their respective applications in political science.", + "title": "Introduction to Qualitative Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS5603", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates the logic and the practice of qualitative research. It covers qualitative research designs such as case studies, comparative historical\nanalysis, problems of interpretation, process tracing and systematic process analysis, analytic narratives, and \u201cfuzzy set\u201d analysis based on Boolean algebra.\nThe module also covers practical techniques that researchers frequently employ to collect data in the field such as interviews, participant observation and ethnography, textual analysis, focus groups, and archival research.", + "title": "Introduction to Qualitative Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "PS5603R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is meant to familiarise students with some of the more important domestic political issues in Northeast and Southeast Asia. It will examine a number of common themes that are relevant to both regions like political development and stability, state-society and civil-military relations and comparative democratisation. The module is ideal for students who would like to acquire a broader and deeper understanding of Asia and reflect on sub-regional differences.", + "title": "Advanced Studies in Asian Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS6314", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main emphasis of the module will be to explore major theoretical concerns in international conflict. The connection between basic theories about the nature, determinants and dynamics of international conflict will be analyzed. Protracted conflicts like the ones in the Middle East, South Asia and Northeast Asia will be studied in depth. Conflict termination strategies and the role of track two diplomacy and third party mediation will also be explained. The seminar will also discuss other non-traditional security issues, including environmental protection, terrorism, and migration, in light of theories on conflict resolution and cross-country cooperation. Students interested in International Relations are encouraged to take this module.", + "title": "International Conflict and Security", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS6402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Development Policy and Administration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS6505", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides graduate students with intensive, focused, and hands-on training in specific advanced research methods. It introduces students to and familiarizes them with such advanced quantitative and qualitative methods as\nmultiple regression, structural equation modeling, qualitative comparative analysis, experimental design, and interpretative methods. Unlike existing\nmethods modules, which aim to provide a general introduction to a wide variety of research methods, this module focuses on the development of highly specific methodological skills.", + "title": "Topics in Research Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS6603", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Political Science in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Political Science in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PS6660A", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and Ph.D. students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "PS6770", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Pathology involves both basic science and clinical medicine and is devoted to the study of structural and functional changes in cells, tissues and organs that underlie diseases. It attempts to explain the \"whys\" of the signs and symptoms manifested by patients while providing a sound foundation for rational clinical care and therapy.\n\nThe module includes some aspects of General Pathology, Haematology and Chemical Pathology. General Pathology is concerned with the basic reactions of cells and tissues to abnormal stimuli that cause disease. Haematology deals with diseases of the blood while Chemical Pathology deals with biochemical processes in disease states.", + "title": "Basic Human Pathology", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PX2108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module encompasses core material on aspects of human anantomy and physiology with reference to relevant clinical examples. Topics for the module include the following human systems: 1. gastrointestinal, 2. nervous, 3. renal and acid base 4. reproductive", + "title": "Human Anatomy & Physiology II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "PY1131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an overview of quantitative finance and introduces mathematical concepts and data analytic tools used in finance. The topics include interest rate mathematics, random walk theory and financial market modelling, quantitative measure of risks and risk management, risk diversification and hedging, correlation and tail risks, investment portfolio construction and optimization, the application of data science to finance.", + "title": "Introduction to Quantitative Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF1100", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 210, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 210, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces computer programming (e.g. Python) techniques and packages customized for quantitative finance. Students will learn how to apply the computer programming for performing interactive financial data analytics, deploying automated algorithmic trading strategies, and calibrating parameters used for financial derivatives pricing and risk management. Empirical research and code implementations will be demonstrated.", + "title": "Computing for Quantitative Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF2103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 1ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "QF2310", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "QF2312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "QF2313", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to present the student with the basic paradigms of modern financial investment theory, to provide a foundation for analysing risks in financial markets and to study the pricing of financial securities. Topics will include the pricing of forward and futures contracts, swaps, interest rate and currency derivatives, hedging of risk exposures using these instruments, option trading strategies and value-at-risk computation for core financial instruments. A programming project will provide students with hands-on experience with real market instruments and data. This module targets all students who have an interest in quantitative finance.", + "title": "Investment Instrument and Risk Management", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF3101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0611", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces advanced mathematical knowledge used in quantitative finance, including differential equations, numerical partial differential equations, optimization and dynamic programming, advanced probability, and neural network. Motivating examples in finance will be given as well.", + "title": "Advanced Mathematics in Quantitative Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF3103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to enable students to acquire the financial domain knowledge in quantitative finance. Through computer-based exercise and laboratory work, students will acquire the quantitative tools in derivatives and bonds used by the finance industry. \n\nTopics will include Derivative Instruments and their applications, Bonds, Bonds Analytics, Fixed Income Derivatives, Risk Management using Fixed Income Derivatives and Credit Derivatives. \n\nThis course targets all students who have an interest in quantitative finance.", + "title": "Basic Derivatives and Bonds", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "QF3310", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. Module is open to FoS undergraduate students from Cohorts AY2020/2021 and before, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "QF3311", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 16-20 weeks during regular semester. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "FOS Undergraduate Professional Internship Programme 3S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "QF3312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduates students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 3S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "QF3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to present students with the knowledge of modelling financial process for the purpose of pricing financial derivatives, hedging derivatives, and managing financial risks. The emphasis of this module will be on numerical methods and implementation of models. The course will have two basic elements. First, course work with topics includes: implied trinomial trees, finite difference lattices, Monte Carlo methods, model risk, discrete implementations of short rate models, credit risk and value-at-risk. The second element of the course will be a group project to develop a financial modelling tool. Project topics will be extensions of models contained in the course work. Projects will involve financial modelling as well as writing and presenting a project report. This module targets students in the Quantitative Finance programme.", + "title": "Financial Modelling and Computation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-043041", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will have two basic elements. First course work with topics includes: implied trinomial trees, finite difference lattices, Monte Carlo methods, model risk, discrete the module will be a group project to develop a financial modelling tool. Project tropics will be extensions of models contained in the course work. Projects will involve financial modelling as well as writing and presenting a project report. This module targets students in the Quantitative Finance programme.", + "title": "Financial Modelling and Computation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF4102A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module imparts to students in-depth knowledge of pricing and hedging of financial derivatives in equity, currency and fixed income markets. Major topics include fundamental of asset pricing, basic stochastic calculus, Ito\u2019s formula, Black-Scholes models for European, American, path-dependent options such as Barrier, Asian and Lookback options, as well as multi-asset options and American exchange options.", + "title": "Mathematical Models of Financial Derivatives", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Honours project is intended to give students the opportunity to work independently, to encourage students develop and exhibit aspects of their ability not revealed or tested by the usual written examination, and to foster skills that could be of continued usefulness in their subsequent careers. The project work duration is one year (including assessment).", + "title": "Honours Project in Quantitative Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "QF4199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces digital currencies, one of the most demanded digital technologies. We present practically relevant methods and technologies from data science, mathematical finance, neuroeconomics and time series and network analysis, and elaborate with examples in cryptocurrencies market analysis, crypto-assets and derivatives, stable coins and blockchain-based solutions for the digital economy (e.g., P2P lending). The use of GitHub and network techniques will be taught. Empirical research and code implementations will be demonstrated. Guest lecturers with rich working and research experience in the area will be invited to share their expertise in the module.", + "title": "Digital Currencies", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces several state-of-the-art data science methods and approaches in statistical modeling, machine learning and deep learning with data-driven applications in finance and FinTech such as derivative pricing, portfolio optimisation, robo-advising and risk management. Real-data analysis and code implementations will be demonstrated. Guest lecturers with rich working and research experience from academia and industry will be invited to share their latest research findings or their experience in and outlooks on data science techniques and implementations in the modern financial industry.", + "title": "Data Science in FinTech", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. It focuses on advanced topics in interest rate theory and credit risk modelling and emphasizes their analogies. The module covers the following major topics. Products of fixed-income markets, Short rate models, Heath-Jarrow-Morton framework, LIBOR market models. Financial instruments in credit risk management, Models of default: Firm value and first passage time models, intensity based models, models of credit rating migrations. The module also provides a discussion of advantages and shortcomings of synthetic credit-linked instruments; moreover, modeling dependence structure of default events and default contagion will be treated.", + "title": "Interest Rate Theory and Credit Risk", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5201", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-05-17", + "end": "2023-06-14" + }, + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-12", + "weeks": [ + 1, + 3, + 4, + 5 + ] + }, + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": { + "start": "2023-05-20", + "end": "2023-06-10" + }, + "venue": "LT33", + "day": "Saturday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-06-16T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. It focuses on advanced topics in interest rate theory and credit risk modelling and emphasizes their analogies. The module covers the following major topics. Products of fixed-income markets, Short rate models, Heath-Jarrow-Morton framework, LIBOR market models. Financial instruments in credit risk management, Models of default: Firm value and first passage time models, intensity based models, models of credit rating migrations. The module also provides a discussion of advantages and shortcomings of synthetic credit-linked instruments; moreover, modeling dependence structure of default events and default contagion will be treated.", + "title": "Interest Rate Theory and Credit Risk", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5201A", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. It covers the valuation of various structured products in the financial markets, including convertible bonds, mortgage backed securities, annuity products in insurance, real options, volatility swaps, collateralized debt obligations. Numerical methods and implementations will be discussed.", + "title": "Structured Products", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. It covers the valuation of various structured products in the financial markets, including convertible bonds, mortgage backed securities, annuity products in insurance, volatility swaps, passport options, accumulators, callable bull/ bear contracts, etc. Numerical methods and implementations will be discussed.", + "title": "Structured Products", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5202A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This graduate module on quantitative finance provides a study of the nature, measurement, analysis of, and management of different types of financial risks, including market risk, credit risk, operational risk, liquidity and model risks. It develops the mathematical fundamentals and models for risk management, including a general framework of risk and credit measures, dynamic analysis of financial derivative parameters (Greeks) and their changes in real-time for trading risk management. Examples from current and/or past developments in financial markets will be chosen to provide illustrations so that students may understand the various types of risk and learn the methods to handle the management of risks.", + "title": "Risk Management", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops the mathematical fundamentals and models for risk management, including a general framework of risk and credit measures, dynamic analysis of financial derivative parameters (Greeks) and their changes in real\u2010time for trading risk management. Examples from current and/or past developments in financial markets will be chosen to provide illustrations so that students may understand the various types of risk and learn the methods to handle the management of risks.", + "title": "Risk Management", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5203A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. It covers the programming methodology, techniques, data structures and algorithms used by practitioners in finance in the valuation of investment instruments. Numerical methods and implementations will be discussed.", + "title": "Numerical Methods in Quantitative Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. The 0bjective of this module is to introduce students to some selected topics in quantitative finance not covered by other modules in the quantitative finance programme. The lectures will demonstrate how various mathematical instruments, such as stochastic analysis, stochastic control, partial differential equations, numerical methods, etc, can be used to solve practical problems in quantitative finance. Modeling, numerical implementation and the interplay between theoretical and modeling approaches will be emphasized. In particular, examples from current and/or past developments in financial markets will be chosen for illustrations of applications of theory and modeling techniques introduced. The actual topics covered may vary from year to year, and will be decided by the lecturers.", + "title": "Topics in Quantitative Finance I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. The objective is to offer topics in quantitative finance that are of current interest and not covered by other modules in the quantitative finance programme, with the aim of providing students with the knowledge and skills that are of current demand in the finance industry. The module demonstrates how various mathematical concepts and methods in disciplines such as stochastic analysis, stochastic control, partial differential equations and numerical methods that the students have learned in the other modules are used to solve practical problems in quantitative finance, and emphasizes mathematical modeling, algorithms and numerical implementation. The topics covered may vary from year to year, and will be decided by the lecturer.", + "title": "Topics in Quantitative Finance I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5205A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. The objective is to offer topics in quantitative finance that are of current interest and not covered by other modules in the quantitative finance programme, with the aim of providing students with the knowledge and skills that are of current demand in the finance industry. The module demonstrates how various mathematical concepts and methods in disciplines such as stochastic analysis, stochastic control, partial differential equations and numerical methods that the students have learned in the other modules are used to solve practical problems in quantitative finance, and emphasizes mathematical modeling, algorithms and numerical implementation. The topics covered may vary from year to year, and will be decided by the lecturer.", + "title": "Topics in Quantitative Finance II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. The objective is to offer topics in quantitative finance that are of current interest and not covered by other modules in the quantitative finance programme, with the aim of providing students with the knowledge and skills that are of current demand in the finance industry. The module demonstrates how various mathematical concepts and methods in disciplines such as stochastic analysis, stochastic control, partial differential equations and numerical methods that the students have learned in the other modules are used to solve practical problems in quantitative finance, and emphasizes mathematical modeling, algorithms and numerical implementation. The topics covered may vary from year to year, and will be decided by the lecturer.", + "title": "Topics in Quantitative Finance II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5206A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. The topics include measuring risk and return the Markowitz\u2019s mean-variance analysis, the continuous time portfolio selection theory, the capital asset pricing model, and the arbitrage pricing theory. The module will also touch optimization theory and stochastic control.", + "title": "Investment and Portfolio Selection", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5207", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": { + "start": "2023-06-24", + "end": "2023-07-22" + }, + "venue": "LT33", + "day": "Saturday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": { + "start": "2023-06-26", + "end": "2023-07-10", + "weekInterval": 2 + }, + "venue": "LT33", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. The topics include measuring risk and return the Markowitz\u2019s mean-variance analysis, the continuous time portfolio selection theory, the capital asset pricing model, and the arbitrage pricing theory. The module will also touch optimization theory and stochastic control.", + "title": "Investment and Portfolio Selection", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5207A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Targeted at graduate students. The course introduces the state-of-the-art AI approaches with selected topics, from e.g. data analytics and visualization, statistical modeling, machine learning, DNN to text mining, as well as selected topics in FinTech, from e.g. asset allocation to sentiment analysis. Besides lecturers, academic researchers and industry professionals will be invited to come to share their latest research, their understandings and outlooks of data science techniques and knowledge and their applications in financial services.", + "title": "AI and FinTech", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5208", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to present students with the knowledge of modelling financial processes essential for the pricing and hedging of financial derivatives. The modelling of financial derivatives such as vanilla options, barrier options, lookback options and Asian options will be covered. The emphasis of the module will be on the use of various numerical methods commonly used for various pricing applications of financial derivatives. Numerical methods covered include binomial tree methods, finite difference methods and Monte-Carlo simulation methods. Assignments will involve the implementation of numerical methods for pricing derivatives, and the preparation of reports presenting the numerical results. This module targets students in the Master in Quantitative Finance programme.", + "title": "Financial Derivatives: Modelling and Computation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to present students with the knowledge of modelling financial processes essential for the pricing and hedging of financial derivatives. The modelling of financial derivatives such as vanilla options, barrier options, lookback options and Asian options will be covered. The emphasis of the module will be on the use of various numerical methods commonly used for various pricing applications of financial derivatives. Numerical methods covered include binomial tree methods, finite difference methods and Monte-Carlo simulation methods. Assignments will involve the implementation of numerical methods for pricing derivatives, and the preparation of reports presenting the numerical results. This module targets students in the Master in Quantitative Finance programme.", + "title": "Financial Derivatives: Modelling and Computation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5209A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to financial time series techniques, focusing primarily on Box-Jenkins (ARIMA) method, conditional volatility (ARCH/GARCGH models), stochastic volatility models, regime switching and nonlinear filtering, diverse non-linear state models, co-integration, and their applications on real-life financial problems. We provide both the relevant time series concepts and their financial applications. Potential application of financial time series models include modeling equity returns, volatility estimations, Value at Risk modelling and option valuation. This module targets honours students in the Quantitative Finance Programme and students in the Master of Science in Quantitative Finance Programme.", + "title": "Financial Time Series: Theory and Computation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides both the relevant time series concepts and their financial applications. Potential application of financial time series models include modelling equity returns, volatility estimations, Value at Risk modelling an option valuation. This module targetshonous students in the Quantitative Finance Programme and students in the Master of Science in Quantitative Finance Programme.", + "title": "Financial Time Series: Theory and Computation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5210A", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. It introduces the fundamentals of Monte Carlo methods and advanced variance reduction techniques, as well as applications to practical problems in financial markets. In addition, the course also introduces reinforcement learning methods and demonstrates how reinforcement learning, in conjunction with Monte Carlo methods, can be used to solve practical problems in quantitative finance. Major topics include: Review of probability; the basic Monte Carlo method; variance reduction techniques and importance sampling; simulation of stochastic differential equations; sensitivity analysis; reinforcement learning and applications to trading, option pricing, derivative hedging and portfolio allocation.", + "title": "Monte Carlo Methods in Quantitative Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for graduate students in quantitative finance. It introduces the fundamentals of Monte Carlo methods and advanced variance reduction techniques, as well as applications to practical problems in financial markets. In addition, the course also introduces reinforcement learning methods and demonstrates how reinforcement learning, in conjunction with Monte Carlo methods, can be used to solve practical problems in quantitative finance. Major topics include: Review of probability; the basic Monte Carlo method; variance reduction techniques and importance sampling; simulation of stochastic differential equations; sensitivity analysis; reinforcement learning and applications to trading, option pricing, derivative hedging and portfolio allocation.", + "title": "Monte Carlo Methods in Quantitative Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5211A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To equip students with solid mathematical sciences and problem solving skills in quantitative finance, students are to work on a real-world problem oriented project that requires the adoption and implementation of quantitative finance theory, methodology and approach. Students may also work on a project aiming to produce new financial products, modelling idea, or a detailed case study, under the supervision of a faculty member.", + "title": "Quantitative Finance Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5299", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to the tools and techniques of data analysis and machine learning, addressing to different problems of automated trading, dimension reduction and large data set exploration.", + "title": "Data Analysis and Machine Learning in Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the most advanced risk management methods following the regulatory rules of BASEL IV such as tail risk or systemic risk.", + "title": "Advanced Methods in Risk Management", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Provides the central bridge between the stochastic theory of financial markets and computational finance (risk management, pricing).", + "title": "Statistical Models and Methods in Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5312", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course addresses modern computational and programming methods with a focus on the special needs in finance.", + "title": "Advanced Computational & Programming Methods in Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5313", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is an elementary introduction to the basic \nmathematical theory of probability, stochastic calculus, \nPDEs and statistics with a focus on the special needs in \nfinance", + "title": "Basic Mathematics in Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5314", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Targeted at graduate students. The course introduces the \nemerging developments with selected topics in FinTech, \ne.g., applications of artificial intelligence in finance, block\nchain, cypto\u2010currencies, etc.", + "title": "Selected Topics in FinTech", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QF5315", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having academic foundation, students with good soft skills and industrial experience often stand a better chance when seeking for jobs upon their graduation. This module gives postgraduate Science students the opportunity to acquire work experience via internship/s during their candidature.\n\nThe module requires students to perform a minimum of 20hours per week structured internship in an approved company/institution for stipulated minimum period of 6 weeks.", + "title": "Graduate Internship in Quantitative Finance I", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "QF5401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having academic foundation, students with good soft skills and industrial experience often stand a better chance when seeking for jobs upon their graduation. This module gives postgraduate Science students the opportunity to acquire work experience via internship/s during their candidature.\n\nThe module requires students to perform a minimum of 20hours per week structured internship in an approved company/institution for stipulated minimum period of 12 weeks.", + "title": "Graduate Internship in Quantitative Finance II", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "QF5402", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with quantum measurement theory and the interpretation of the observed statistics. It covers advanced mathematical formalism of quantum measurement; Bell\u2019s inequalities; and the quantum-to- classical transition (notably decoherence). Emphasis is put on providing both the understanding of the concepts and the ability of using the mathematical tools.", + "title": "Quantum measurements and statistics", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces physics/engineering graduate students to the fundamentals of quantum cryptography technology, focusing on mature applications like quantum key distribution and quantum random number generation. The module covers the security definitions of quantum cryptography, security proofs in the finitekey regime, device modelling, side-channel attacks, and counter measures. Towards the end of the module, when most of the tools/concepts are in place, we will analyse the security of an actual quantum key distribution experiment, and discuss its strengths and weaknesses. This module requires some basic quantum information/optics knowledge.", + "title": "Security of Practical Quantum Cryptography", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Analysis of Boolean functions has over the years provided important tools that deepened our understanding and simplified the analysis of fundamental concepts in computer science. From the theory of voting to machine learning to pseudorandom generators, Boolean functions provide both technical tools and intuitive insight. In this classical module, we will give an introduction to these tools, and the corresponding applications.", + "title": "Boolean functions, and applications in computer science", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CQT/SR0315", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CQT/SR0315", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminar in Quantum Information", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "QT5198", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CQT/SR0315", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce graduate students in CQT to specialized areas of research in quantum information in great technical detail. The module will typically be taught by a visiting expert, providing a unique opportunity to learn advanced techniques from an active researcher in the field of interest.", + "title": "Special Topics in Quantum Information", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Quantum Information", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers 9 full days of lectures (approx 54 hours) presented by internationally renowned experts; some of the lecturers have visited CQT and are involved in research collaborations with CQT researchers", + "title": "Special Topics in Quantum Information", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers 12 full days of lectures (approx 60 hours) during special semester 1, presented by internationally renowned experts; some of the lecturers have visited CQT and are involved in research collaborations with CQT researchers. This lecture series will be held during the period May 30-June 11.\n\nUpon return to NUS, the students should select one topic of the lecture series and specialize in this area of disordered systems during special semester 2.\n\nNotes:\n\nProject: short written report on the special topic plus an oral presentation of chosen topic of the school. \n\nThe exam will take place at the end of special semester 2 at NUS on 29 Jul: The exam will be oral, covering any topic presented at the school.", + "title": "Special Topics in Quantum Information", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers the opportunity to attend the lectures by visitors Prof Serge Haroche (ENS, Paris) and Prof Iacopo Carusotto (Trento, Italy) for credit. Prof Haroche will deliver his prestigeous \u201cColl\u00e8ge de France abroad\u201d lectures on Cavity Quantum Electrodynamics; Prof Carusotto will lecture on Solid State Optics. Additional lectures will be conducted by Prof BG Englert (CQT, Physics) and possibly other NUS faculty members.", + "title": "Special Topics in Quantum Information", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Module consists of 4 fundamental courses (42h) on the conceptual tools to describe the physics of light-matter coupling in the quantum and in the classical regimes, in different physical systems covering topics like CQED in atomic physics, Strong coupling regimes in semiconducting systems, circuit QED, Quantum open Systems.", + "title": "Special Topics in Quantum Information (Strong Light Matter Coupling)", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce graduate students in CQT to specialized areas of research in quantum information in great technical detail. The module will typically be taught by a visiting expert, providing a unique opportunity to learn advanced techniques from an active researcher in the field of interest.", + "title": "Special Topics in Quantum Information", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce graduate students in CQT tospecialized areas of research in atomic and many-bodyphysics. The module will be taught by research fellows, providing a unique opportunity to learn advanced techniques from active researchers in the field of interest.", + "title": "Breakthrough techniques in atomic and many-body physics", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce graduate students in NUS to specialized techniques (semidefinite programming) used in the research of quantum information and computation. The module will be taught by research fellows, providing a unique opportunity to learn advanced techniques from active researchers in the field of interest.", + "title": "Semidefinite Programming and Quantum Information", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce modern concepts and methods Quantum Information Processing, which provides broad, solid foundations in modern topics of quantum information science. Subjects covered include \n- Entanglement, tensor networks, matrix product states\n- Topological quantum computation\n- Coding and error correction\n- Quantum algorithms\n- Physical implementations of quantum computation and information processing\n- Majorana physics.", + "title": "Quantum Information Processing", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce graduate students in NUS to\ntopics arising in quantum information, computation, and\ncryptography. The course will be taught by a research\nfellow, providing a unique opportunity to learn advanced\nmaterial from an active researcher in the field of interest.", + "title": "Quantum Information and Cryptography", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce graduate students in NUS to the concepts and methods of quantum state estimation, and thereby enable them to draw inference from data acquired in quantum experiments.", + "title": "Quantum State Estimation", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce graduate students in NUS to the use of techniques from convex optimization to study the foundations of quantum mechanics. The module will provide an unique opportunity to learn advanced techniques from active researchers in the field of interest.", + "title": "Convex optimization and quantum foundations", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduce the fundamental interacting mechanisms between an atom and the electromagnetic field.", + "title": "Atoms and photon", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will be devoted to in-depth study of quantum algorithms. The module will cover main research areas in this field, such as algorithms for number-theoretic problems, unstructured search and quantum walks, Hamiltonian simulation, query complexity lower bounds, and linear system solvers.", + "title": "Quantum Algorithms", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover density functional theory and its variants for many-particle\nsystems (electrons in atoms, molecules, solids; ultracold atoms in traps and optical\nlattices) from the perspective of theoretical and mathematical physics and will also\ndeal with applications and the intricacies of numerical implementations. A central\ncomponent of the module are the lectures given during the IMS Programme on\nDensity Functionals for Many-Particle Systems (2-27 September 2019).", + "title": "Density Functionals for Many-Particle Systems", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, basic electronic techniques related to quantum technologies are introduced at a level that allows students to analyze, design, build and modify electronics encountered in experimental work on quantum technologies. It covers basic circuit design, with a focus on techniques related to typical signal conditioning and processing tasks encountered in experiments and application engineering involving quantum systems like single photon detection and generation, atom and ion traps, laser spectroscopy, optical modulators and some radio-frequency techniques to drive atomic transitions, and electronic techniques at cryogenic temperatures.", + "title": "Quantum Electronics", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201S", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CQT/SR0315", + "day": "Monday", + "lessonType": "Lecture", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CQT/SR0315", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CQT/SR0315", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the theory of Bell nonlocality (a.k.a.\nviolation of Bell inequalities), its application to deviceindependent certification of quantum devices, and some\nfoundational aspects related to the topic.", + "title": "Bell nonlocality", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201T", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, various experimental techniques for manipulation of quantum systems will be explored, partly through introductory lectures ,partly through small handson projects. The topics tentatively covered are frequency control of laser systems, homodyne detection techniques, generation of pulse sequences, high voltage techniques, electro-optics, accousto-optics, and liquid crystals for light\nmodulation, basic optical fiber technology, optical cavities\nparaxial optics, and practical aspects of superconducting\nsystems.", + "title": "Quantum control technology", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201U", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will familiarize the students with Bohr\u2019s Principle of\nComplementarity (with a precise technical meaning) and with the\nquantitative aspects of Einstein\u2019s wave-particle duality, arguably\nthe most important consequence of complementarity. Thereby,\nthe students will acquire a solid understanding of the basic\ntenets of quantum theory.", + "title": "Complementarity and wave-particle duality", + "faculty": "NUS Graduate School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "QT5201V", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CQT/SR0315", + "day": "Monday", + "lessonType": "Lecture", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CQT/SR0315", + "day": "Thursday", + "lessonType": "Lecture", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CQT/SR0622", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Occlusion", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Pre-Clinical Operative Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD1210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dental Materials", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD2000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Preclinical Fixed Prosthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD2110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Occlusion", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD2111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Pre-Clinical Removable Prosthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD2120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Preclinical Operative Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD2210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Pre-Clinical Endodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD2220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Fixed Prosthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD3110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Preclinical Removable Prosthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD3120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Operative Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD3210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Endodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD3220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Prosthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD4100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Fixed Prosthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD4110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Occlusion", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD4111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Removable Prosthodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD4120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Operative Dentistry", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD4210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Endodontics", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RD4220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module providing students with theories, concepts and components of the urban built environment. Discussions will cover the urbanisation process, development of urban forms and structures, land policy and development constraints, national development and the land use planning\nprocess, the role of government in the planning process, the property development process, and the roles and functions of parties involved in real estate as well as urban development.", + "title": "Urban Land Use and Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE1701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Monday", + "lessonType": "Lecture", + "size": 125, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the first of three modules in the real estate quantitative methods track. It introduces students to the types of data typically used in real estate analyses. Students will learn how to access the data and understand their distributions. Then, they will learn how to process the data to support real estate decision-making. In the first half of the module, basic statistical concepts are taught through detailed applications in the real estate domain using REALIS transactions and spatial information. The second half of the module presents parametric and non-parametric analyses that demonstrate their functions in real estate data analytics.", + "title": "Real Estate Data Analytics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE1702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2022-08-01", + "end": "2022-10-31", + "weekInterval": 2, + "weeks": [ + 1, + 5, + 10, + 12, + 14 + ] + }, + "venue": "BIZ2-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding of fundamental principles relating to legal systems, contract and tort in Singapore. It also exposes students to legal reasoning and argumentation and provides a sound basis for students to\nprogress in later years to Modules with law content.", + "title": "Principles of Law for Real Estate", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE1703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0301", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0206", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0226", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module helps students build up the foundation for the economic analysis of cities and real estate markets. In addition to introducing basic micro- and macro- economic concepts, this module combines microeconomic theories\nwith application in urban topics and real estate markets. It also elaborates on relevant macroeconomics concepts to understand housing cycles, urban planning, and regional economic growth in the real estate market.", + "title": "Principles of Real Estate Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE1704", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0117", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0117", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0117", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Friday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0117", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the basic financial skills and knowledge necessary for further studies in real estate finance and investment track. The topics include an introduction to financial markets and financial institutions; understanding various interest rates; risks and returns; capital budgeting; accounting and financial statement analyses; financial securities; and shareholder and capital structures. Students will also have spreadsheet laboratory sessions to develop quantitative data processing skills.", + "title": "Real Estate Finance and Accounting", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE1705", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0117", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Friday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0117", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0117", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0117", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The first part covers the development of the building form in terms of the design, functionality, structural and construction issues including building materials and technology, and major building elements and services. The second part comprises the fundamental principles and practice of design and\nconstruction for real estate developments by examining the key building elements and technologies, how design and construction affect property value, maintainability, function and use. Students will acquire skills in the interpretation of building drawings and appreciation of construction methods and materials.", + "title": "Design and Construction", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE1706", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 160, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0117", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Real estate assets form the largest component of household wealth (and debt) in our nation. While the media tends to focus on the wealth created through real estate investment (speculation), there is much less discussion of the real estate wealth management (REWM) process. This module aims to provide a\ngeneral understanding of the REWM. Impact of economic, social and policy factors on household property wealth including a review of general economic principles such as market supply and demand, the impact of government financial and regulatory policies as well as demographic considerations such\nas an ageing population will be discussed.", + "title": "Real Estate Wealth Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE1901", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0229", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0229", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0229", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0229", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide students with a thorough understanding of urban planning principles and processes that influence the function and design of cities. It will include an introduction to the history of modern city planning, and contemporary planning concepts such as Garden Cities, City Beautiful\nmovement, Vertical Cities, etc. There will also be a discussion of New Town Planning, Urban Renewal and conservation. Singapore will be introduced as a case study, but selected cities elsewhere are discussed for comparison and better understanding.", + "title": "Urban Planning", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE2701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers basic concepts in Land Law, including the doctrine of estates and tenures, rights in land, transfer of title, strata law, landlord and tenant law and estate agency. Through content knowledge, students will gain an appreciation of legal analysis and reasoning, as well as the rationale\nfor the current state of real estate law.", + "title": "Land Law", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE2702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0226", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces students to theories that underpin real property valuation to develop an appreciation of fundamental concepts and principles of valuation. It includes a critical review of value theory, valuation theory and concepts of market value. Building from the fundamentals, various methods of real estate valuation are introduced. Topics include: nature and scope of valuation; concepts of value, particularly open market value and fair market value; foundations of valuation; role and functions of the valuer; characteristics of property and the property market; market study and valuation; the valuation process; professional standards and valuation report; and, the methods of\nvaluation.", + "title": "Introduction to Real Estate Valuation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE2704", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module employs tools from microeconomic analysis to explain the urbanization process and the operation of real estate markets. The topics include economic factors driving city formation; market forces shaping the urban spatial structure; determinants of metropolitan and regional growth; quality of life measurements; urban sprawl and skyscrapers; urban transportation; neighbourhoods and racial/income segregation; land-use regulations; and urban governance.", + "title": "Urban Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE2705", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines real estate and infrastructure finance institutions and instruments that focus on debt. It equips students with the essential skills to analyse and evaluate real estate and infrastructure financing decisions. The topics include: institutional landscape of real estate and infrastructure financing; mortgage mechanics; different mortgage instruments; residential financing analysis and borrower choices; residential underwriting and lending policies; development, project and infrastructure financing; and housing financing innovations.", + "title": "Real Estate and Infrastructure Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE2706", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0117", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0117", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discuses asset and property management concepts including aspects such as fire and risk management, maintenance management, lease management and investment management. It will also discuss the role and functions of facility management including design, benchmarking and space\nplanning, building services management, building conservation, etc in relation to the business goals of real estate firms. The management of high-rise private developments, including the Land Titles Strata Act, responsibilities of management corporations and managing agents are also discussed.", + "title": "Asset and Property Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE2707", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0303", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0202", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0202", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0202", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0202", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This new module introduces fundamental concepts in computational thinking and basic programming techniques (VBA and Python) to Real Estate (RE) students. It aims to strengthen students\u2019 quantitative skills and problem solving capability necessary to lead the future of the real estate and urban planning industry. Topics covered include problem solving by computing, basic problem formulation\nand problem solving, program development, coding, testing and debugging, fundamental programming constructs, fundamental data structures, simple file\nprocessing, basic recursion, and basic data visualization techniques. Students will apply their skills to solve practical problems in real estate and urban planning.", + "title": "Computational Thinking and Programming for Real Estate", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE2708", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Monday", + "lessonType": "Lecture", + "size": 190, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the skills needed for scientific research in real estate and urban studies. It focuses on the applied econometrics. Major topics includes multiple regressions, simultaneous equation models, discrete choice models, time series analysis, differences-in-differences, fixed verse random effects and panel data analysis. The issues of model selections, multicollinearity, heteroscedasticity, autocorrelation, instrumental variables and identification are introduced. \n\nIt also addresses the whole research process including identifying research problem; defining research questions, objectives and significance; conducting literature review; developing research framework and research design; collecting data and performing survey; conducting qualitative or quantitative analyses; reasoning research results and writing up.", + "title": "Research Methodology in Real Estate", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE2801", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Friday", + "lessonType": "Lecture", + "size": 90, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This internship module is open to full-time undergraduate students who have completed at least 60MCs and plan to proceed on an approved internship of at least 10 weeks in duration in the vacation period. This module recognizes\nwork experiences in fields that could lead to viable career pathways that may or may not be directly related to the student\u2019s major. It is accessible to students for academic credit even if they had previously completed internship stints\nfor academic credit not exceeding 12MC, and if the new workscope is substantially differentiated from previously completed ones.", + "title": "Work Experience Internship", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "RE3000", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines real estate and infrastructure as an asset class and equips students with the essential skills for analysing a real estate and infrastructure investment problems. The topics include: investment objectives; leasing structure and income analysis; characteristics of real estate and infrastructure returns and risks; capitalization rates; capital budgeting; financial leverage and after-tax returns; equity versus debt investment; and real estate and infrastructure equity investment strategies.", + "title": "Real Estate Investment Analysis", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Monday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0413B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0413B", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0413A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0511", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module applies valuation theory to various types of valuation problems in Singapore with a special focus on valuation for property tax and other statutory purposes. It is aimed at helping students to understand the application of various methods of valuation to different types of properties under the\nProperty Tax Act as well as various other statutory requirements for compulsory purchase and acquisition, stamp duty, GST, development charge, differential premium and upgrading premium. Other applied topics such as development appraisal and investment analysis will also be covered under this module.", + "title": "Property Tax and Statutory Valuation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0303", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers three major components related to real estate economics from both theoretical and practical perspectives. First, it introduces the broad linkages between real estate markets and the macro-economy, and the relevant theoretical frameworks for analysing the demand, supply, and\nmarket equilibrium of properties in different real estate sectors. Second, it discusses the availability and interpretations of real estate market data in practice. Third, it touches upon popular modelling techniques to evaluate real estate market conditions using statistical softwares.", + "title": "Advanced Real Estate Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0511", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module comprises two parts. Part 1 covers the theoretical principles and concepts relating to the marketing of real estate, including aspects such as marketing mix, market research and segmentation, product management and pricing, negotiation and selling techniques, distribution methods, etc. Part 2 focuses the practical applications of marketing theories to actual case studies in the real estate market, emphasizing on residential, commercial and industrial properties.", + "title": "Real Estate Marketing", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3704", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the legal aspects of conducting and participating in the business of investing in real estate. Topics covered include the formation, management and liability of business organisations as well as joint venture agreements. Students will also gain an understanding of the regulatory framework that governs real estate lending institutions and mortgages, real-estate backed securities and other forms of real estate financing. The original Trust concept and its adaptation to business trusts and real estate investment trusts (REITS) will also be discussed from the legal perspective.", + "title": "Real Estate Finance Law", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3802", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course examines the application of strategic asset management policies and strategies within the context of physical property, in particular, the various stages of asset lifecycle, such as planning and design, acquisition, operations and maintenance, rehabilitation as well as renewal and disposal. The course will feature lectures by industry leaders so that students are better to develop a\nlink between theory and current industry trends.", + "title": "Strategic Asset Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3803", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the legal issues that affect real estate development. It examines the regulatory framework for real estate development and taxation. It also deals with the regulations pertaining to the acquisition of land for public and private developments. Topics to be covered include: land use planning and zoning, development and building controls, betterment value and development charge, property tax, stamp duty, income tax, and goods and services tax.", + "title": "Real Estate Development Law", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3804", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0226", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines strategic dimensions of real estate in property companies and business firms. Topics include the business, financial and stock market perspectives of real estate as well as case studies. Students will learn basic theories, techniques and practices of corporate finance and asset\nmanagement applicable to property companies and business portfolios.", + "title": "Corporate Investment in Real Estate", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3805", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents theoretical and practical issues relating to the role of valuation in real estate investment and development decisions, especially in investment valuation and market valuation. It aims to help students understand how the various methods of valuation are applied to different types of\nproperties taking into consideration the purposes of valuation such as investment, divestiture, mortgage and insurance. Advanced topics include valuation of air and subterranean rights; specialised premises such as hospitals; recreational premises and hotels; and asset valuation for incorporation in financial statements. This module will be supported by relevant case studies and sharing sessions by practitioners.", + "title": "Advanced Real Estate Valuation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3806", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0202", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0510", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers principles and methods in real estate corporate finance for listed real estate development and investment firms. The module addresses key corporate finance issues such as the theory and practice of stock analysis, financial statement analysis, corporate growth analysis and valuation, financial leverage and capital, cost of capital determination, firm valuation, shareholder wealth maximization, dividend policy and signalling , corporate governance and information transparency, corporate control and option pricing. At the end of formal instructions, course participants are expected to work competently on a real estate company project that cover some issues.", + "title": "Corporate Finance for Real Estate", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3807", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-LT52", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will extend beyond planning theory to cover recent developments in planning and development in the global, regional and local contexts. The main aim is to equip students with contextual knowledge of how planning is practiced in contemporary markets, recognising the dynamic nature of the development environment and the socio-political imperatives that drive planning decisions. The topics cover fundamental knowledge on how plans are formulated and translated into development projects, in the context of challenging economic, social and political /institutional environments and focus on professional development using case studies.", + "title": "Advanced Urban Planning", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3901", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT17", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0301", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an in-depth understanding of how housing markets work and the roles of policy in housing production, consumption, investment and governance. The module introduces basic housing economic concepts that can help us understand housing markets, cycles and housing\nfinance. It examines the roles of housing policies in delivering and governing a housing provision system, for example, the policies to promote homeownership and the roles of town councils in housing estate management. Cases and examples are drawn from the housing markets in both Singapore and other countries to broaden students\u2019 horizon.", + "title": "Housing Markets and Policies", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3902", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction course to Geographic Information Systems (GIS) and its applications in the real estate field. Its primary goal is to help students understand the basic principles of GIS and gain expertise in data processing and visualization techniques, spatial analysis, and internet GIS.", + "title": "GIS for Real Estate", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE3903", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0201", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the development process for a range of property types. Discussions will cover a wide range of topics including the development cycle, land assembly, market & financial feasibility studies, planning and regulatory framework, design, construction management, and environmental concerns. Students will undertake a group project where different aspects of real estate studies will be brought to bear.", + "title": "Real Estate Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE4701", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Friday", + "lessonType": "Lecture", + "size": 180, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 34, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 34, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses the professional practice in the real estate field covering among others, valuation, property and facility management, marketing and property consultancy. It aims to provide students with an appreciation of the challenges and practical issues involved in professional practice. It highlights the ethical issues in professional practice, and deals with professional communication and interactions with clients and other professionals. Career planning and management including interview skills and business etiquette will be introduced.", + "title": "Professional Practice and Ethics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE4702", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Thursday", + "lessonType": "Lecture", + "size": 190, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 0, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at developing students\u2019 capability in conducting research. Students are expected to formulate a research problem, and to demonstrate the ability to pursue unaided investigations relevant to their research problem, in data collection, analysis, and interpretation of the results.", + "title": "FYP Dissertation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "RE4711", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at developing students\u2019 capability in analysing and evaluating case studies. Students are expected to select a real estate development as a case study, examine the pertinent issues involved,\ncollect relevant data relating to the case, analyse the case facts, and recommend appropriate solutions to problems.", + "title": "FYP Academic Exercise", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE4712", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide real-world learning experience to third year undergraduates at private and public real estate organisations. Industry specialisation areas include development, professional consultancy, fund management and policy exposure in governmental agencies. Suitable candidates are chosen to be interns and are matched with participating firms. They will undergo training for ten weeks in May to July of each year. The selection criteria include, but are not limited to, the following: Scholastic ability, positive attitude, superior presentation and communication skills, and entrepreneurial drive. Each candidate is also required to submit a proposal outlining his/her potential contribution(s) to the organisation.", + "title": "Real Estate Internship Programme", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "RE4801", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines country-specific issues in socioeconomic, demographic and political dimensions underlying the real estate processes. Students will attend lectures and seminars in both NUS and partner universities in the country of discussion. Site visits to projects and organisations are integral part of the module. Students will work on a project for in-depth study of selected aspects of the real estate industry in the country.", + "title": "Topics in Real Estate (Summer Programme)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE4802", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The emergence and rapid expansion of REIT and Business Trust (BTs) markets globally and in Asia have been an important development in real estate and infrastructure capital market. This module is designed to cover topics on REIT and BT concepts and models; REIT experience in the US and other Asia markets; asset characteristics and types of REIT; tax efficient model; growth and acquisition strategies; financing and dividend policies of REITs and BTs; crossborder REITs and BTs, stapled REITs and UPREIT; and institutional investment in REITs and BTs.", + "title": "REIT and Business Trust Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE4803", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UTSRC-LT50", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module represents the second part of the analysis of real estate capital markets. It covers the real estate debt capital markets. Topics include the economics of mortgage securitisation; the various mortgage-backed securitisation instruments, models and structures; the concepts of pooling and\ntranching; secondary mortgage institutions and the US experience in real estate debt securitisation; commercial and residential mortgage-backed securities; embedded pre-payment and default options; rating agencies and risk analyses; as well as the policy implications and relevant lessons for markets from the 2007-2009 Financial Crisis.", + "title": "Real Estate Securitisation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE4804", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT16", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students for real estate development and investment in international markets. It integrates earlier modules and extends them with additional considerations that inform strategy formulation and decision-making when seeking offshore real estate opportunities. Topics include originating ideas; cultural and institutional factors such as fiscal and land codes; sourcing land and capital; forming joint ventures and other vehicles; risk mitigation; repatriation of income; and exit strategies. The main pedagogical method will be problem-based learning with real life case studies of foreign real estate and township development projects; overseas investments by large corporates and\nfunds; project financing; land procurement.", + "title": "International Real Estate Development and Investment", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE4805", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0226", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0226", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Institutional investment into real estate has increased both in scale and sophistication in recent years. This module is designed to enable student to study flows of fund into real estate markets and different instruments in structured real estate financing. Topics include real estate capital market private real estate funds, real estate hedge funds, mutual and close-end funds, fund of funds, Islamic financing and issues in cross border real estate investment.", + "title": "Real Estate Finance Seminar", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE4806", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0413A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0413A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concepts, principles, theories, techniques and practices of risk analysis and management in real estate investments. Topics include concept of real estate market risks; real estate strategic risk management; Value-at-Risk (VaR); sensitivity and scenario analyses; Monte Carlo simulation; risk hedging and property derivatives; option pricing theory and real options.", + "title": "Real Estate Risk Analysis and Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE4807", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "BIZ2-0229", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ2-0229", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module exposes students to current urban challenges faced by Singapore and cities around the world. It provides economic perspectives to link these challenges to fundamental global trends of technological, demographic and climatic changes. Urban development goals of sustainability, liveability\nand social equity will be discussed, and so will be various urban solutions, from land use pattern, urban transportation system and infrastructure investment, to smart-city technologies. Students are challenged, through case studies, to think about necessary collective choices, including land use policies, taxation and allocation of public resources, and urban governance models, in order to achieve urban goals.", + "title": "Urban Challenges and Policies", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE4808", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT18", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "BIZ2-0224", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The dissertation offers the opportunity for candidates to individually conduct independent research work on a topic of interest and relevance to the program. The dissertation will be graded.", + "title": "Dissertation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "8", + "moduleCode": "RE5000", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental concepts and techniques involved in understanding and managing the real estate development process. It examines the entrepreneurial, legal & institutional elements, which include real estate laws governing development, in the transformation of existing real estate to its highest and best use. Modeling the sequential events in the real estate development process, the module covers a wide range of issues encountered in the different phases of development \u2013 from site evaluation and land procurement, development team assembly, real estate market studies, preparation of development schemes, construction & project management, project marketing and finally to the hand-over of completed projects.", + "title": "Real Estate Development", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-03" + }, + "venue": "BIZ1-0205", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-01" + }, + "venue": "BIZ1-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-02" + }, + "venue": "BIZ1-0205", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-04" + }, + "venue": "BIZ1-0205", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "BIZ1-0205", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops an understanding of the tools for assessing real estate investment opportunities at the micro-level paying attention to the characteristics that distinguish real estate from other assets. It covers the discounted cash flow models applied to evaluate financial feasibility for real estate investment. Specific techniques include developing cash flow proformas, ratio analyses and capitalization rate. The concept of leverage is also introduced in relation to cash flow projections.\n\nIt covers portfolio theory, risk analysis, WACC, CAPM, risk diversification roles of real estate, different asset classes, asset management, and international real estate investment strategies, performance measures and options.", + "title": "Real Estate Investment", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-01", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module applies contemporary economic thinking and research to explain real estate market fundamentals. It offers knowledge to appreciating demand and supply determinants of the property market. It analyses how this market interacts with other asset markets, capital markets, and the broader economy, using theory with empirical evidence. It also covers the workings of the urban economy vital to the vibrancy of real estate. The module provides an integrative framework for understanding and forecasting the forces that shape the price, rent, and return of space markets, investment asset markets, and real estate industries.", + "title": "Real Estate Economics", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines how real estate can be financed. Students will learn the theories, techniques and practices of corporate finance applicable to property company portfolios. Major topics covered include sources of finance, financial statement analysis, corporate growth and market valuation, net asset discount, the impact of leverage and dividend policy on capital structure decisions, corporate governance and transparency. In addition, the module deals with the implications of different arrangements such as partnerships, joint-venture structuring, sale-leaseback and other forms of development financing, both bridging and permanent, on deal viability.", + "title": "Real Estate Finance", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5005", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops an understanding of the tools for assessing real estate investment opportunities at the macro or portfolio level, as well as the micro or asset level. It covers modern portfolio theory before examining the role of property in an institutional investment portfolio with particular attention given to property portfolio performance analysis, diversification benefits and investment strategy. Real estate asset management involves optimizing the cash flows generated from real estate assets by a direct real estate owner, investor or an organization which incidentally heads, owns or leases real estate to support its corporate mission. This module examines how direct real estate should to be managed proactively to enhance property value or the worth of the business operations the property facilitates.", + "title": "Portfolio and Asset Management", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to develop an understanding of the theory and professional practice of real estate valuation. It aims to impart the foundational concepts of value and the significance of real estate valuation to the real estate market. The focus is on concepts, principles, process of market valuation and the contemporary approaches to the valuation of all types of property. It also covers more advanced appraisal issues and topics including the valuation of special properties & interests, business, equipment & intangible assets. It also examines the use of AVMs and the professional practice and standards of valuation as regulated by professional bodies in Singapore and globally.", + "title": "Real Estate Appraisal", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5009", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-03", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides exposure to the structure and organisation of real estate markets in emerging and developed markets in Asia. It will cover the institutional framework of the key Asian markets. The field study focuses on one of them with an in-depth appreciation of the institutional and market economy aspects of the subject country including real estate regulation, investment practices and development procedures. Students are expected to complete individual and group reports including recommendations for investment in real estate such as structuring a cross-border venture. However, in the event where actual field trips to another country/city is not possible, students will conduct virtual studies with online lectures.", + "title": "Asian Real Estate Markets and Field Study", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "8", + "moduleCode": "RE5011", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 12 + ], + "venue": "HSS-04-02", + "day": "Saturday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A distinctive characteristic of real estate is the extensive government regulation of both land and the built environment. Focusing on the development of urban and metropolitan areas and the dynamic forces that drive urban growth as well as shape urban spatial configurations, this module examines the impact of government regulations and public policies on real estate markets. Selected topics include planning and development controls, degeneration and urban renewal, private-public participation, leasehold policy, public versus private housing, and urban fiscal policy such as property taxation, local government finance and development and betterment levies. It also provides an overview of the incentives created by the legal and institutional framework on real estate development.", + "title": "Urban Policy & Real Estate Market", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5013", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "BIZ1-0307", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to provide a practice-oriented understanding of the evolution of the REIT and property funds as vehicles for real estate investment. It delves into the motivations for creating a REIT and the institutional regimes such as taxation and other regulations that influence how a REIT operates. In addition, it studies the formation of business trusts and property funds to determine the relative merits for sponsors and investors. Topics to be covered include practical issues in property fund management for institutional and high net worth clients; establishing and managing a property fund management; fees of REIT managers; role of sponsors; interested-party transactions; internal versus external management structure. It will also examine the growth strategies of REITs, i.e. organic growth and accretive acquisitions and capital management strategy to drive the development of investment vehicles such as trusts and funds.", + "title": "Real Estate Investment Trusts & Property Funds", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5014", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces geographic information systems (GIS) to students interested in real estate and urban planning. The module provides students with ample practical hands-on experience in geospatial and cartography basics with applications in geospatial information and technology across the domains of real estate and urban planning. The course consists of lectures and lab-based sessions. It explores both the theoretical and practical aspects of GIS, such as data entry, data manipulation, spatial analysis, and production of interpretable output (eg data visualisation and mapping). The module also introduces students to 3D GIS. The course is taught entirely using open-source software (mainly QGIS with plugins) and open data. Change of assessment to 100% CA.", + "title": "Geographic Information Systems (GIS) and Cartography", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5015", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE4-EXR1-2", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course covers innovations in debt capital markets, mainly the design of mortgage contracts and the development of real estate securitisation and structured financing products globally. Students will acquire a toolkit that allows them to understand mortgage mathematics, term structure models and the pricing of embedded options in real estate debt instruments. The module also covers credit analysis and the role of credit rating for real estate debt. Emphasis will be placed on the investment characteristics and pricing of secondary real estate instruments such as Mortgage-Backed Securities (MBS), Collateralised Mortgage Obligations (CMOs), asset-backed securitisation deals, as well as publicly traded debt paper.", + "title": "Real Estate Securitisation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5016", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at developing students\u2019 capability in analysing and evaluating case studies. Students are expected to select a real estate problems as a case study, examine the pertinent issues involved, collect relevant data relating to the case, analyse the case facts, and recommend appropriate solutions to problems.", + "title": "Real Estate Case Study", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5017", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip the participants with an understanding of the different statutory instruments adopted by tax jurisdictions and how they may be used to achieve fiscal, economic and social objectives. Participants will learn in-depth knowledge and techniques used in the valuation of real estate for a wide range of statutory purposes such as acquisition or disposal of properties, financial reporting, and taxation. The module focuses on the sharing and discussion of many past case examples and studies of statutory valuation assignments that valuation professionals in both private and public sectors had encountered. Students will gain insights into the various practical valuation issues and challenges.", + "title": "Real Estate Taxes and Statutory Valuation", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5018", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the knowledge and skills to engage with and actively respond to technological disruptions in the urban environment. The first part introduces basic computational skills for urban data analytics using the R language and other open source tools. The second part builds the conceptual foundations needed to understand data analytics, financial innovation and the process of digitalisation in a coherent framework. This is an applied module for students in real estate and related fields with little-or-no programming experience. Students are guided towards designing, constructing and deploying data-driven urban analytics and PropTech applications.", + "title": "Data & Analytics in Real Estate", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5019", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a seminar type module, designed for students who are interested in sustainability challenges in real estate development and investment and who want to gain the knowledge and insights to implement solutions to address the challenges. As the real estate industry needs to transform its products and services, practitioners and service providers must know how to deal with such sustainability challenges.", + "title": "Sustainable Real Estate Development & Investment", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "4", + "moduleCode": "RE5020", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "HSS-04-02", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The ageing population has a profound impact on the real estate market. The adequacy of our built environment in catering to the specific needs of older people will be explored based on an inter-disciplinary learning approach. We will evaluate the demand and study the different senior housing models ranging from independent co-housing to assisted care housing. The topics within this module will be analysed holistically taking into consideration behavioural science, economics, public policy, sociology, the built and natural environment.", + "title": "Real Estate for Ageing Society", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "RE5021", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s real estate market is a key pillar of China\u2019s economic growth, which is a major source of growth for other economies in the region and beyond. This module helps students to develop an understanding of China\u2019s real estate market and its future directions. Following an overview of the institutional background, the module discusses the market forces and policies that shape the development of China\u2019s real estate market, the current challenges, and the changes that need to take place to create a sustainable relationship between the real estate market and the wider economy in China.", + "title": "The Past & Future of China\u2019s Real Estate Market", + "faculty": "NUS Business School", + "gradingBasisDescription": "New Grading Basis", + "moduleCredit": "2", + "moduleCode": "RE5022", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Seminar", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "RE5770", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended to provide research students with necessary knowledge and skills on how to carry out real estate research. The module includes two parts. First, students will be taught the mechanics and process of research like reviewing literature, defining research questions, designing research methodology, analyzing research findings, and writing academic papers. It hopes to provide students with adequate knowledge to differentiate good research from a bad one. Statistical techniques will be introduced in the second half of the module. The emphasis, however, is on the application of the statistical tools to real estate research questions. As part of the module to get students to apply relevant statistical tools, instruction and hands-on practice on some sophisticated softwares will also be included. Students will be asked to read papers on selected applications of the tools, and they would also be given an assignment, which will require them to apply relevant tools to selected research questions. Student will also be required to do paper critiques.", + "title": "Research Methodology in Real Estate", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE6004", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of theoretical and empirical research focusing on real estate markets and urban economics. It is designed to provide research students with (1) an improved ability to read and criticize theoretical and empirical papers in the field, (2) enhanced skills needed to undertake and present theoretical and empirical research and (3) an appreciation of the main econometric tools and theoretical modeling strategies that have been applied in recent research. The topics covered are intended to expose students to some major contributions in real estate research as well as a consideration of the current trends and methodological advances in recent papers.", + "title": "Real Estate Economics Research Seminar", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE6005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is arranged primarily for research students to discuss advanced topics in real estate finance and review selected research papers. Students in this module will have to be active in the process of learning. The module will consists of paper critiques, topical and conceptual debates on contemporary issues in real estate finance research. Students are expected to carry out comprehensive review of literature and critical thinking. Guided contemporary research topics covered include corporate real estate, real estate securitisation, real options, asset pricing, capital structure, and real estate portfolio analysis.", + "title": "Real Estate Finance Seminar", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE6006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This self-study module is intended for research graduate students in their second semester. The content of this module will vary according to the research interests of the enrolling student and the supervising staff. Students are required to undertake an independent research project under the supervision of his/her supervisor. They are expected to participate actively in research seminars. Written assignments and seminar attendance and presentations constitute part of the evaluation in this module. Candidates will have to apply concepts learned to their research thesis. Topics that may be offered include Corporate & Securitised Real Estate, Institutional and Spatial Analyses of Real Estate, and Housing Studies. Students are expected to select a research topic, and conceptualise the research question and methodology. They are also required to present the paper in a seminar format.", + "title": "Research Topics in Real Estate", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE6007", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is primarily designed to enable research students to explore approved topics in urban planning and land development in depth. The topics include urban planning theories and methods, global cities, sustainable development of Asian cities and urban development literatures. Specific topics, readings and assignments will be worked out between the students and a lecturer.", + "title": "Urban Planning and Development Seminar", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE6008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Modules (ISMs) in an area of specialization are for students with the requisite background to work closely with an instructor on a welldefined project in the respective specialization areas. Students will conduct independent critical reading and research work on organizational behavior under the guidance of the instructor. Evaluation is based on 100% Continuous Assessment.", + "title": "Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RE6110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Phd Seminar", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "RE6770", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Urop", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RS4000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Our world is figuratively shrinking. We increasingly encounter people who are different from us, such as in the areas of cultural backgrounds, language, religion, and values. We have to navigate these differences in our communities and workplace, and doing so requires us to effectively connect with people and work across cultures. With a focus on Emotional Intelligence (EI) and Cultural Intelligence (CI), this module empowers one to gain greater appreciation of cultural diversity and enhanced agility in collaborating and communicating in cross-cultural\nsettings.", + "title": "How in the world do we get along?", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RVC1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G5", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1700", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G7", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G3", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G8", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G6", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G5", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G6", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G3", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Diverse cultural values and norms can enable or hinder meeting the UN Sustainable Development Goals (SDGs). In this module, students will learn how culture impacts social sustainability and reassess their understanding of socio-cultural issues in regional and global contexts. Through team-led seminars, fieldtrips, roleplay, interviews, and critical discussions, students will learn to navigate cultural differences and develop solutions that address socio-cultural challenges in moving towards social sustainability. By exploring the complex relationships between individuals, society, governments, and supranational institutions, this module will develop students into sensitive global citizens with a holistic understanding of culture and the social pillar of sustainability.", + "title": "The Rocky Road to SDGs", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RVC1001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "G2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G4", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G6", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G5", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary module takes a close look at how we consume resources in our daily activities and the resulting sustainability issues, through a holistic analysis of the underlying social, environmental and economic drivers. Through fieldtrips and direct engagement with local communities, we will contextualize these issues to highlight the ways in which planetary resource consumption impacts communities. We will work collaboratively with communities to combat sustainability issues. Synthesizing these learning experiences to evaluate current solutions, we will position ourselves on the issue of resource consumption with respect to the role of the industry, the community and the individual.", + "title": "Engaging Communities in Sustainability", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "RVN1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM02", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1530", + "endTime": "1830", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM02", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary module allows students to reassess their understanding of the natural world in a highly urbanised context. Through active participation in a community partner project, students will reassess their relationship with nature, and analyse the environmental, social, and economic consequences of current mass extinction and rapid biodiversity loss. Based on collaborative and outdoor learning, students will critically evaluate rewilding strategies and put them into action in service of the Singapore community. This module engages students in fieldtrips, surveys, peer-teaching, and participation in a community-based rewilding project, consolidating learnt skills in the proposal of a realistic local mini-rewilding project.", + "title": "The Great Extinction: rewilding and conservation", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "RVN1001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G4", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Environmental sustainability is a highly complex field that needs to take into consideration the natural world as well as a large set of social and economic factors. Invariably, the participation of local communities and the benefits to indigenous people determine the success of conservation efforts. By connecting classroom learning with an Overseas Fieldtrip in Southeast Asia, students develop an appreciation for the rich biodiversity of the region, while examining current threats to wildlife and biodiversity. In this context students explore and participate in a range of conservation strategies, which actively engage local communities in order to implement sustainable solutions.", + "title": "Wild Asia: Conservation Matters", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RVN2002", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How does our perception of space influence how we experience, interact with and value different places? This module adopts an interdisciplinary approach to consider the way that places themselves can reinforce ecological, historical, economic, political and other constructs, and how these in turn influence the way we relate to and ascribe meanings to places. Through analysis of case studies, field trips and digital tools, students will evaluate the contestations and shifting identities that arise when places undergo change and development in Singapore, and propose possibilities for the preservation, adaptation or transformation of a place of their choice.", + "title": "Exploring Sense of Place", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RVSS1000", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "G2", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The world stands at a pivotal time of intensifying urbanization and climate change. Grounded in the lived experience of Singapore\u2019s urban spaces, this module adopts a critical approach to understanding the impact of these factors on cities. Students will understand the makings of a city, particularly in meeting the United Nation\u2019s call of Sustainable Development Goal # 11 to \u201cmake cities and communities inclusive, safe, resilient and sustainable.\u201d With these insights, students will participate in envisaging liveable cities of the future as they become an increasingly important magnet for work, life, and play.", + "title": "Imagining Wakanda: Cities for work, life, and play", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RVSS1001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR02", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM02", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM02", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Singapore\u2019s present unique combination of cultures is a rich and diverse foodscape steeped in history. Our hawker culture listing to the UNESCO List of Intangible Cultural Heritage highlights the importance and value we place in our food heritage. This module opens the doors to rethinking the role food plays in our daily lives, in our culture, in society, and globally. The various topics covered over the course of this module provide opportunities for thinking about the materiality of food (food sustainability and security), the social construction of foodways and food heritages, and how Singapore\u2019s food future should or could progress towards.", + "title": "Feeding the belly of a nation", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RVSS1002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "G5", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR02", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G7", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR02", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G6", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM03", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "G6", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR02", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR02", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G4", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR02", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR02", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "G5", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-MPR01", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How do people engage with issues that matter to society? In this module, students will critically examine how citizens and their leaders use communicative resources to deal with issues pertaining to sustainability, processes of inclusion and exclusion, and public participation in various contexts, among others. What rhetorical strategies do they mobilize to encourage dialogue needed to create agreeable solutions to the burning issues of the day? What strategies hamper such a dialogue to take place? By pursuing these questions, the students will develop a critical disposition towards the role of civic discourse in shaping public issues.", + "title": "Citizen Speak: Persuasion and Polarization in Society", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RVX1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Science Fiction serves as a launch pad that inspires innovative ideas and a space to critically evaluate contemporary issues such as race, gender, technology, and climate change. This course engages students\u2019 thinking on one of the most important and influential popular media to develop broader insights and perspectives on current social trends that will help them both within and after university. Students will construct a thoughtful critique of science fiction topics found in media like film, television, short stories, or video games. Working collaboratively, they will present questions and reflections to peers to increase their critical expression skills.", + "title": "Science Fiction and Society", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RVX1001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM04", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines meaning and culture. It draws attention to issues in translation and intercultural communication, and advocates the use of a framework that facilitates effective communication with cultural others at work or elsewhere. As cultural beings, we express meaning in a cultural context, but do we understand the implications? We assume that English words have the same meaning across cultures, but how valid is this assumption? We learn Standard English but does it embody the cultural meanings we want to express? This module raises awareness of our cultural selves and helps students develop meaningful connections with cultural others.", + "title": "What do you mean? Meaning & Communication in Intercultural contexts", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RVX1002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will examine how various literary texts are adapted into films. They will do so by interrogating how directorial techniques, institutional constraints and related socio-cultural contexts inform adaptations. Specifically, students will watch and analyse cinematic adaptations of plays, short stories, and comics to bring to the surface how aesthetic elements ranging from mise-en-scene to socio-cultural factors influence filmmakers and studios\u2019 motivations. In the process, students will develop a systematic approach in carrying out a critique of adapted films they enjoy.", + "title": "Print to Screen: Analysing Film Adaptation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "RVX1003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RVR-SRM01", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Oral And Dental Radiology", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RY2000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dental Radiology", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RY3000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Dental Radiology", + "faculty": "Dentistry", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "RY4000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "- Fundamentals of Programming using C#\n- Object Oriented Programming using C#\n- User Interface Development with Visual Studio Net and C#\n- SQL Programming & DBMS\n- Enterprise System Development using .Net Framework", + "title": "Software Analysis and Design", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SA4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-08-29", + "end": "2022-09-26", + "weeks": [ + 1, + 4, + 5 + ] + }, + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-20", + "end": "2022-10-25", + "weeks": [ + 1, + 2, + 4, + 6 + ] + }, + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-08-26", + "end": "2022-10-28", + "weeks": [ + 1, + 2, + 3, + 5, + 10 + ] + }, + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4, + 6, + 8, + 9, + 11 + ], + "venue": "Beacon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Beacon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-01", + "end": "2022-10-27", + "weeks": [ + 1, + 2, + 4, + 8, + 9 + ] + }, + "venue": "Beacon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-17", + "end": "2023-04-28", + "weeks": [ + 1, + 2, + 3, + 10, + 11 + ] + }, + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-27", + "end": "2023-04-24", + "weeks": [ + 1, + 3, + 4, + 5, + 9 + ] + }, + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-22", + "end": "2023-04-26", + "weeks": [ + 1, + 2, + 10 + ] + }, + "venue": "Beacon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-23", + "end": "2023-04-27", + "weeks": [ + 1, + 2, + 9, + 10 + ] + }, + "venue": "Beacon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-07", + "end": "2023-04-25", + "weeks": [ + 1, + 4, + 6, + 7, + 8, + 12 + ] + }, + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "- Fundamentals of Programming using C#\n- Object Oriented Programming using C#\n- User Interface Development with Visual Studio Net and C#\n- SQL Programming & DBMS\n- Enterprise System Development using .Net Framework", + "title": "Software Analysis and Design", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SA4101C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "C1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "C1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-06-19", + "end": "2023-06-19" + }, + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "- Application Development Life Cycle I\n- Application Development Life Cycle II", + "title": "Enterprise Solutions Design and Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SA4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3, + 5, + 8 + ], + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 6, + 7, + 8, + 9 + ], + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-08-03", + "end": "2022-09-28", + "weeks": [ + 1, + 2, + 6, + 9 + ] + }, + "venue": "Beacon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 3, + 5, + 6, + 8, + 9, + 10 + ], + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Innovation_I", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-08-04", + "end": "2022-10-13", + "weeks": [ + 1, + 3, + 4, + 7, + 9, + 10, + 11 + ] + }, + "venue": "Beacon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "Innovation_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Ambition_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5, + 6, + 8, + 9, + 10, + 11 + ], + "venue": "Beacon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-06", + "end": "2023-04-17", + "weeks": [ + 1, + 2, + 3, + 5, + 9, + 10, + 11 + ] + }, + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-14", + "end": "2023-04-18", + "weeks": [ + 1, + 2, + 4, + 8, + 9, + 10 + ] + }, + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-15", + "end": "2023-04-19", + "weeks": [ + 1, + 8, + 9, + 10 + ] + }, + "venue": "Beacon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4, + 5, + 8, + 9, + 10, + 11 + ], + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Beacon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "- Application Development Life Cycle I\n- Application Development Life Cycle II", + "title": "Enterprise Solutions Design and Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SA4102C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "C1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "C1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-06-20", + "end": "2023-06-20" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "- Distributed Computing Infrastructure\n- Multimedia for Internet\n- Internet Programming using ASP.NET\n- Internet Project", + "title": "Internet Application Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SA4103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Planning, scheduling, resource allocation, execution, tracking and delivery of software projects.", + "title": "Digital Product Management", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SA4104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-28", + "end": "2022-12-05" + }, + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-30", + "end": "2022-11-30" + }, + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-12-01", + "end": "2022-12-01" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-12-02", + "end": "2022-12-02" + }, + "venue": "E-Learn_C", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-29", + "end": "2022-11-29" + }, + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "- Java Programming\n- Java Object Persistence\n- Web-based J2EE Applications\n- Wireless Technology\n- J2EE Project", + "title": "Web Application Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SA4105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-28", + "end": "2022-12-19" + }, + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-29", + "end": "2022-12-20" + }, + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-25", + "end": "2022-12-16" + }, + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-24", + "end": "2022-12-15" + }, + "venue": "Beacon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-30", + "end": "2023-06-20", + "weeks": [ + 1, + 3, + 4 + ] + }, + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-06-21", + "end": "2023-06-21" + }, + "venue": "Beacon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-29", + "end": "2023-06-19" + }, + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-26", + "end": "2023-06-23", + "weeks": [ + 1, + 3, + 4, + 5 + ] + }, + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-06-01", + "end": "2023-06-15" + }, + "venue": "Beacon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "- Java Programming\n- Java Object Persistence\n- Web-based J2EE Applications\n- Wireless Technology\n- J2EE Project", + "title": "Web Application Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SA4105C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "- Application Development Project\nThis is a pre-internship project where the students will work in a team to apply the project management, analysis, design, business communications and programming skills learnt earlier in the course. Based on a User Requirement Statement given to the students, they will go through a complete software development life cycle to develop and deliver the required system. The students will capture requirements through user interviews, produce a feasible design of the system, code, test and implement the solution in a distributed platform. This project provides a simulation of the real-life IT working environment, and tests their strengths in working closely as a project team.", + "title": "AD Project", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SA4106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-27", + "end": "2022-08-17" + }, + "venue": "Frontier", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-28", + "end": "2022-08-18" + }, + "venue": "Frontier", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-25", + "end": "2022-08-15" + }, + "venue": "Frontier", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-05" + }, + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-08-04", + "end": "2022-09-01" + }, + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-29", + "end": "2022-08-19", + "weeks": [ + 1, + 3, + 4 + ] + }, + "venue": "Frontier", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-26", + "end": "2022-08-16", + "weeks": [ + 1, + 2, + 4 + ] + }, + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "Frontier", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6 + ], + "venue": "Frontier", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6 + ], + "venue": "Frontier", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "Frontier", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6 + ], + "venue": "Frontier", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "- Application Development Project\nThis is a pre-internship project where the students will work in a team to apply the project management, analysis, design, business communications and programming skills learnt earlier in the course. Based on a User Requirement Statement given to the students, they will go through a complete software development life cycle to develop and deliver the required system. The students will capture requirements through user interviews, produce a feasible design of the system, code, test and implement the solution in a distributed platform. This project provides a simulation of the real-life IT working environment, and tests their strengths in working closely as a project team.", + "title": "Ad Project", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SA4106C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Industrial Attachment Project", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Not Computed in CAP/Marks", + "moduleCredit": "12", + "moduleCode": "SA4107", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Industrial Attachment Project", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Not Computed in CAP/Marks", + "moduleCredit": "12", + "moduleCode": "SA4107C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this elective course is to allow students of the Graduate Diploma in Systems Analysis (GDipSA) to specialise in mobile application development. Students will acquire the mobile-related skill-sets required by an increasing number of employers who need developers for their mobile-related projects. Students will learn to design and develop mobile applications using the Android and iOS platforms and the associated Java and Objective C programming languages. The course includes classroom teaching, lab exercises and hands-on design and development projects using both platforms.", + "title": "Mobile Application Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SA4108", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-12-07", + "end": "2023-01-04", + "weekInterval": 2 + }, + "venue": "Beacon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-09", + "end": "2023-01-09" + }, + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-12-23", + "end": "2023-01-06" + }, + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-03", + "end": "2023-01-10" + }, + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-12-29", + "end": "2022-12-29" + }, + "venue": "Beacon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "0910", + "weeks": { + "start": "2023-05-29", + "end": "2023-05-29" + }, + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this elective course is to allow students of the Graduate Diploma in Systems Analysis (GDipSA) to specialise in mobile application development. Students will acquire the mobile-related skill-sets required by an increasing number of employers who need developers for their mobile-related projects. Students will learn to design and develop mobile applications using the Android and iOS platforms and the associated Java and Objective C programming languages. The course includes classroom teaching, lab exercises and hands-on design and development projects using both platforms.", + "title": "Mobile Application Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SA4108C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this elective course is to allow students of the Graduate Diploma in Systems Analysis (GDipSA) to specialise in advanced web application design and development. Students will acquire the Web-related skillsets required by majority of local employers who need developers for their Web-related projects. Students will gain a robust foundation in web development techniques,\nfocusing on .NET and Java development skills, and will learn how to design, construct and test web applications on both platforms. The course includes classroom teaching, lab exercises and hands-on design and development projects using both platforms.", + "title": "Advanced Web Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SA4109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this elective course is to allow students of the Graduate Diploma in Systems Analysis (GDipSA) to specialise in advanced web application design and development. Students will acquire the Web-related skillsets required by majority of local employers who need developers for their Web-related projects. Students will gain a robust foundation in web development techniques,\nfocusing on .NET and Java development skills, and will learn how to design, construct and test web applications on both platforms. The course includes classroom teaching, lab exercises and hands-on design and development projects using both platforms.", + "title": "Advanced Web Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SA4109A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module includes machine learning concepts and implementation of machine learning features in software solution using Python.", + "title": "Machine Learning Application Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SA4110", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-17", + "end": "2022-11-17" + }, + "venue": "Beacon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-08", + "end": "2022-11-15" + }, + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-09", + "end": "2022-11-23" + }, + "venue": "Beacon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-11", + "end": "2022-11-18" + }, + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-11-14", + "end": "2022-11-21" + }, + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-09", + "end": "2023-05-23" + }, + "venue": "Beacon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-12", + "end": "2023-05-19" + }, + "venue": "Beacon", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-18", + "end": "2023-05-25" + }, + "venue": "Beacon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-10", + "end": "2023-05-10" + }, + "venue": "Beacon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-05-15", + "end": "2023-05-22" + }, + "venue": "Beacon", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module includes machine learning concepts and implementation of machine learning features in software solution using Python.", + "title": "Machine Learning Application Development", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SA4110C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students are introduced to the concepts used in Sociology and Anthropology. The main objective is to train students to use Sociology in analyzing social institutions and processes. For this reason, students are encouraged to relate their experiences in society to the discipline of Sociology and Anthropology. The topics covered in the module are the logic and methods of social investigation; family, work and organization; power and the state; social inequality (including gender and ethnicity); mass communication and popular culture; values and beliefs; and deviance and social control.", + "title": "Making Sense of Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Friday", + "lessonType": "Lecture", + "size": 140, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course to the basic concepts and tools of social research, covering the areas of research of problem definition, research design, measurement, and data collection, processing, and analysis. Students are given in-depth understanding of what qualitative, eg participant observation, in-depth interviewing, and quantitative, eg survey, data collection techniques involve. In addition, students are introduced to qualitative and quantitative data analysis techniques. Students are taught the important aspects of making a good presentation of research findings. This module is mounted for all students in NUS with interest in research methods.", + "title": "Methods of Social Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0405", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0405", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0405", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to help students develop a framework with which to analyse and understand the following: (1) key political issues and underlying social mechanisms relating to the dynamics of industrial society and the organisation of work; (2) various aspects of social relations at the workplace; (3) how different categories of workers respond to the organisation of work; and (4) the interconnections between (1), (2), and (3). The module is open to all students throughout NUS with an interest in analyzing work situations sociologically.", + "title": "Sociology of Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses a seemingly simple question: who gets ahead? It introduces students to some of the key theoretical approaches and methodological tools for finding answers to this question. More specifically, it aims at helping students acquire a good understanding of relevant theories, measurement issues, and class maps, structures, societies, and dynamics. The module is accessible to all students who want to understand the impact of class and stratification on contemporary societies.", + "title": "Social Inequalities : Who Gets Ahead?", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0116", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on theories of family and social change, by examining perspectives on families, drawing on literature from history, anthropology, sociology, and demography. Questions addressed include: What is a family? What is the relationship between family and household structure and economic, political, and cultural change both historically and in contemporary time? How do couples\nallocate their time and money in relationships? How do families vary by social class and race/ethnicity? How have attitudes, expectations, and behaviors surrounding childbearing and childrearing changed? Theoretical perspectives on the family are supplemented with case studies of change and variation in families and households.", + "title": "Sociology of Family", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0204", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We are living in a world marked by cultural diversity. We encounter different cultural norms and practices every day, which may enable us to become more reflexive, curious, and open\u2010minded or, in some cases, lead us to become defensive. This course provides an analytical lens to learn how cultures affect social behaviour and how different cultures interact with each other in the contemporary world. We shall discuss issues related to \"ethnocentrism\", \"cultural relativism\", \u201chybrid cultures\u201d, \u201csub cultures\u201d and \"multiculturalism\". This course will furthermore discuss how cultures are socially constructed. In this sphere, the module will explore such topics as travel and encounters, the construction of personal and collective identities, ethnic minorities and the state, gender relations and family systems, workspaces and hierarchy, and globalization.", + "title": "Culture & Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides, using an anthropological perspective, a general introduction to select peoples and cultures in Southeast Asia. The course examines, among others, issues of economic adaptation to the varied physical environments of SEA; the interaction between indigenous cultures and those cultures from outside the geographical context (which may include Chinese, Indian, European and other cultures); the organization of states; and the interrelationship between religious and political systems.", + "title": "Peoples & Cultures of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Why are Singaporeans having fewer babies? Why is Japan's population shrinking? Population dynamics affects our daily lives. This course aims to provide students with a critical overview of the key issues in demography with a focus on Asia. We adopt an international perspective to think about ways in which populations grow, shrink, and change over time, and uncover the linkages between seemingly distinct demographic processes. Fertility is a fundamental issue underlying many demographic processes - population growth, aging, migration and demographic dividend, and will be discussed in detail. This module also covers health and mortality, gender and marriage, and urbanization.", + "title": "Baby or No Baby: Population Dynamics at a Crossroads", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module adopts a practical approach to understanding the changing value of human life alongside changing meanings and uses of money over the past decades, and also how these have led to the emergence of dominant organizations and networks \u2013 in both the public and private sectors \u2013 whose operations have significantly shaped perceptions and practices of family, gender, leisure, the state, and work. Students will explore how money as a basis for the rationalization of social life presents varying contradictory processes that shape choices on education, employment, social relations, rationality and national identity, cultural heritage and self-identity.", + "title": "Money, Business and Social Networks", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the spread of consumption and its link to popular culture in the context of global capitalism. Emphasis will be given on the relationship between mass production and mass consumption, and the role of mass media in creating and widening the sphere of popular culture. Relationship between class and popular culture will be explored in this module. Issues such as changing leisure patterns, fashions, consumerism, role of advertisements and symbolic protests will also be examined in this module. The course is mounted for students throughout NUS with interest in the study of popular culture.", + "title": "Sociology of Popular Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the relationship between society and health-related issues. The differing notions of \"illness\" and \"wellness,\" and how societies influence the type, definition and distribution of disease and illness will be examined. The social organization of medicine, the social functions of health-care institutions in society will also be explored. Special emphasis will also be given to the role of the state in providing health-care as well as the relationship between the state and the health industry. This course is mounted for students throughout NUS with interest in society and health-related issues.", + "title": "Medical Sociology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "E8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "E6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "E7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "E5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 450, + "covidZone": "B" + }, + { + "classNo": "E9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0602", + "day": "Friday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "E10", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 21, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0115", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the sociological study of deviance and social control, distinguishing it as a field of research from biological and psychological explanations of deviance. It will trace the historical development of sociological theories on deviance and introduce students to contemporary approaches to deviance and crime. These perspectives will be utilized and illustrated through a study of the changing patterns of defining and controlling deviance in modern societies with reference to selected substantive issues. Students who have a keen interest in issues of social order, social control and conformity will find this course attractive.", + "title": "Sociology of Deviance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0311", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module begins with an understanding of age as a social variable and the life-cycle approach. It then examines the social construction of childhood from a historical and cross-cultural perspective. The central focus of this module is youth as a particular stage of the life-cycle. Topics such as the life cycle approach in Sociology; the social construction of childhood: children and the state; the social construction of adolescence: images of youth will be dealt with. This module is mounted for all students throughout NUS with interest in childhood and youth.", + "title": "Childhood and Youth", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Mass communications should be understood in the context of their production and consumption. In particular, we have to look at macro-structures like economy and politics as well as the legal framework in which mass media systems operate. This module analyses those relationships and looks at some key issues in media such as propaganda, media ethics, sociology of looking, celebrities and media stereotypes. This course is mounted for students throughout NUS with an interest in culture and politics, but some background in Sociology is important. It provides a good foundation for those who wish to read Ethnographic Analysis of Visual Media in the third year.", + "title": "Media and Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Food is a social phenomenon: what constitutes food and, therefore, what can be eaten; how it is to be prepared, presented, and consumed; with whom you eat and so forth express complex relationships to class, ethnicity and gender. This course will uncover the complexity behind an everyday life material that affects and effects multiple social networks, wherein food is both the material and symbol by which class, race/ethnicity, sex/gender are socially constructed. This module is mounted for all students throughout NUS with interest in food and society.", + "title": "The Sociology of Food", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2215", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the connections between emotions, social life and social identities. It will examine the prevalent sociological and anthropological literature on emotions, morality and consciousness. Attention will be given to the concept of personhood and the cultural meanings circulating through the expression of emotions. We will see how cultural practices serve to organize particular emotional responses to particular social and cultural environments; why collective emotional experiences are regularly mediated by the means of symbolic representations. This course is mounted for all students who are interested in studying the relationships between emotional responses and social experiences.", + "title": "Emotions and Social Life", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2216", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Travel is a popular activity, a major industry, and an important institution that plays a crucial role in shaping our contemporary society. By venturing out to investigate why people travel, how they travel, and what travellers obtain from their experiences, one will discover that travel is not merely a transitory experience or a recreational endeavour. It defines people\u2019s identities, shapes their interactions, and\ninfluences the economy, politics, and other social systems. Overall, this module will provide students with some valuable knowledge for applying travel as a toolkit in understanding the contradictions and complexities of our runaway world.", + "title": "Travel Matters", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the topic of gender by using basic concepts like biological sex, nature, nurture, roles, norms and culture. The meaning of gender categories is examined in relation to difference, exchange, reproduction, knowledge and social change. Although the main perspective is ethnographic, this course is intended to be an exercise in interdisciplinary thinking. Understanding gender provides a foundation to analyze social structures (power and inequality), social institutions (family, kinship, education, economy, the state, health) and cultural issues (science, food, emotions, popular culture).", + "title": "Gender Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0311", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Did nature make humans, or have humans made nature? Or are both continuously co-evolving, and changing in relation to one another? This module explores the practices and institutions through which contemporary societies understand and appropriate the natural world. We use concepts from environmental sociology and anthropology, to look at how different societies\u2019 engagements with nature reshape social thought. Students will learn research skills such as ethnographic fieldwork; critical analysis of environmental policies; and interpreting discourses on issues like energy and environmental crises. This will be useful in professional fields including conservation, urban planning, policy-making, infrastructural services, development and aid-work.", + "title": "Humans and Natures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Sports have developed into a pervasive social institution. From living rooms to stadiums, sports extend to a multitude of arenas to influence economies, politics, and cultures as well as the everyday lives of many individuals. This course is designed to provide students the ability to evaluate the relationship between sports and society. Students do not need a background in sociology nor knowledge about the technicalities of sports to benefit from the module. The approach is comparative and interdisciplinary; covering historical and contemporary issues, foreign and local sporting cultures, as well as theories and methods that cut across several academic boundaries.", + "title": "Sports and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Conducted as an apprenticeship in Visual Anthropology, this module provides practical training in the use of contemporary and emerging image and audio technology for qualitative social science research, data collection, and analysis.\nReadings and discussions will expose students to classic and contemporary applications of photographic, film, audio and video methods employed in the field of Visual Anthropology and related issues of visual research design, project\nplanning, proposal writing, data recording, data analysis, politics, ethics, project implementation, and collaborative research. Developing theoretical understandings through engagement in field research alongside Anthropologists, students will gain a hands\u2010on practical education in visual\nanthropology.", + "title": "Visual Anthropology Field-School", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Art and anthropology have had a long, if at times,\ncontentious history of exchanges, from selective\nappropriations to inventive collaborations. This\nmodule explores the vibrant relationship between art\nand anthropology to think about what each still can\nlearn from the other. We start with a historical\nexamination of the exchanges between two disciplines\nover the 20th century, from the use of ethnographic\ntropes by artists to avant-garde influences on\nanthropological practices of representation. We then\nturn to the deeper affinities with between the two as\nfound in the ethnographic turn in art,\nart/anthropology collaborations, and, more recently,\nthe social/participatory/relational turn.", + "title": "The Social Life of Art", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2225", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "UCC-0226", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UCC-0226", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the key issues in\nthe sociology of mental health. It emphasizes the social\ninfluences on mental disorders, especially factors\nassociated with the family-of-origin, while\nacknowledging the medical aspects of mental health.\nThe consequences of mental disorders on individuals\nand their ecological systems will also be discussed.\nStudents will be equipped with the knowledge to\nframe mental disorders from a biopsychosocial\nperspective, view mental disorders as social conditions\nand be able to attest to the social construction of\nmedical diagnosis of mental disorders.", + "title": "Sociology of Mental Health", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces theories, methods and important debates in the sociology of religion to students interested in understanding religion in society and the social dimensions of religious beliefs and practices. Students will be able to analyse the social origins and organisation of religion, as well as understand trends such as secularisation and the resurgence of religion. The module will also focus on\ntransnational issues related to religion in Asia.", + "title": "Sociology of Religion", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Digital technologies are transforming societies, economies, politics and cultures across the world. This module equips students with conceptual frameworks for analysing the socio-economic origins and impacts of these changes, and their ramifications for local and global politics and economics. Topics to be covered include the digital transformation of knowledge, work and expertise; the material economies and politics of digital infrastructure; the digitalization of money, markets and finance; and the intersections of race, class and Artificial Intelligence. Through these topics, students will learn how the sociological issues of identity, class, mobility and conflict are being remade by our rapidly evolving technologies.", + "title": "Sociological Perspectives on the Digital Era", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as a primer on Singapore society, covering its recent history and current issues. Students will get a good sense of what went into the construction of modern Singapore as a nation, an economy, and a home, as well as various policies and processes dealing with \u201cdeficits\u201d, such as low fertility rates, afflicting Singapore. Whenever possible, students will have the opportunity to go on field\u2010trips where they can get an immediate and better feel of the social changes taking place, through meeting the people \u2014 front\u2010line, back office or board room \u2014 who routinely work in keeping Singapore going.", + "title": "Singapore: The Social Experiment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC2880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a critical examination of central problems in classical social theory, with emphasis on the multifaceted analysis of the larger social processes in the making of modern society. The module will concentrate on the original contributions of major theorists such as Marx, Weber, and Durkheim and explore how their works continue to influence current Sociology. This course is mounted for all students throughout NUS with an interest in classical social theories.", + "title": "Social Thought & Social Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Monday", + "lessonType": "Lecture", + "size": 81, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Friday", + "lessonType": "Lecture", + "size": 76, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 19, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in macro-sociology. The module reviews the interdisciplinary literature on modernization, development and globalization in order to examine the formation and evolving dynamics of firms, regions, and markets within the global capitalist system. Ultimately, the course asks questions about Asia\u2019s place within the contemporary global economy and the role Asian political economies and industrial organization play within it. Students will learn about \u201cbig\u201d sociological\nquestions regarding the transition to capitalism, global development and inequality, global trade and industry. They will understand how Asia developed and what their iPhones and Nike sneakers have to do with this.", + "title": "From Modernization to Globalization", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Concepts of race and ethnicity and theories/models of inter-group relations provide the tools for understanding and analyzing race/ethnic relations and ethnicity in selected societies. This module will refer to Malaysia/Singapore, Southeast Asian, and other societies where relevant. The topics explored also include race/ethnicity and the nation-state; ethnicity and citizenship/multiculturalism; ethnic identity; gender and ethnicity; race/ethnicity and its representations; race/ethnicity and crime. This module will appeal to students who are interested in understanding how race/ethnicity influences our perceptions of and responses to other races/ethnic groups, and why it continues to be a source of tension and conflict in societies.", + "title": "Race and Ethnic Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0306", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main objective is to examine and understand the role of formal education - i.e., in school - and education outside of school within contemporary societies. Besides presenting the classic major sociological theories of education, an array of case studies that elaborate on extra-curriculum education will also be presented. We will examine the relationship between education and nation building, the impact of schooling on social stratification, the functions and effects of education, the teaching of discipline through extra-curriculum educational activities, and the relationship between the educational system and the workplace. This course is mounted for all students with interest in the sociology of education.", + "title": "Sociology of Education", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to political sociology which is broadly concerned with understanding such phenomena as power, state and society relations, and the nature and consequences of social conflict. The main concerns of this module are issues pertaining to modern society and capitalist development, referring to diverse cases from Western Europe to Southeast Asia. We will also be looking at the state, civil society and societal movements, including that of labour, and such contentious contemporary issues as economic globalization, US global hegemony, and terrorism.", + "title": "Sociology of Power:Who Gets to Rule?", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will look into the various external and internal forces shaping the development of cities. The following themes will be examined: the development and role of cities in Southeast Asia, cities and the new international division of labour (economic roles of cities in linking their respective countries to the global economy), and the social organization (culture, community, housing, social-economic opportunities) of cities. This course is mounted for all students throughout NUS with an interest in the development and social organization of cities.", + "title": "Urban Sociology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Kinship, a foundational concern of anthropology, is essentially about relationships. We investigate the forms, meanings and manipulations of relationships that people have constructed across various historical and cultural contexts. Comparing the diverse ways in which people live, labour and love, we examine the centrality of kinship to understandings of what it means to be a person. Concurrently, kinship is a medium for grappling with the interactions between intimate life and public culture, domestic production-reproduction and political economy, everyday practices and conceptual structures and affection and moral obligations. Our focus is on how kinship is a vital force in contemporary societies.", + "title": "Cultures of Kinship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3207", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course concerns the observable phenomena of religion as lived by ordinary people. Analysing religion as part of human knowledge, we grapple with the meanings of the universe, suffering, self, choice and ethics. Comparing systems of symbolic thought, ritual action and moral imagination, we understand societies in terms of their own knowledge, practices, values and interests. We draw from\nvaried religious traditions including world religions (Hinduism, Buddhism, Christianity, Islam), indigenous traditions (shamanism, animism, ancestor-worship, folk religion), new religious movements and secular humanism. We engage with the interactions between piety, power and productivity in constituting social structures and producing human agency.", + "title": "Religion in Society & Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3208", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with the basic tools for doing social research and data analysis. The module is divided in two parts. The first part focuses on data analysis, and introduces students to statistics which are best suited for different types and levels of data. During lab sessions, students will use SPSS to analyze both small and large data sets. The second part of the module focuses on methodology, and recaps the guiding principles of conducting and managing a large-scale survey. The module is mounted for NUS students with a keen interest in doing social research.", + "title": "Data Analysis in Social Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0405", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Science and technology shape our lives from the beginning to the end. Sociologists, being scientists themselves, observe the observations which scientists make about the world, look at the ways in which technologies change and shape that world, and try to make sense of processes which, as Weber claims, have divested the world of any meaning whatsoever. In this course, classical and contemporary approaches to the sociology of science, technology and society will be introduced, discussed and exemplified by several case studies. This course is mounted for students throughout NUS with an interest in the influence of science and technology on society.", + "title": "Science, Technology & Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main theme of this course is social transformation in Southeast Asia, especially in relation to the processes of modernisation, economic development, state formation, and globalization. It focuses on such topics as colonial legacies, civil society, social movements, ethnicity and religion, the role of values in development, the role of the state, and the emergence of social classes. The course focuses on Indonesia, Malaysia, Thailand, the Philippines and Singapore. It is designed for Sociology undergraduates and those from the Southeast Asia Programme.", + "title": "Southeast Asia in a Globalizing World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Explore how anthropologists and sociologists have used visual media such as photography, film and video to conduct ethnographic research and to produce and communicate knowledge about the lives and cultures of the other. We will study their works, both classic and contemporary, to see how they have experimented with the possibilities of visual media while trying to remain consistent with the intellectual demands of their disciplines. Armed with an understanding of the epistemological, methodological, ethical and practical issues involved, students are expected to try their hands at producing visual ethnographies.", + "title": "Visual Ethnography: Theory and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0402", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS6-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS6-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module adopts a life course perspective to examine various issues of human aging. Themes covered include physical and mental health, retirement and pension, marriage and family, community and social network, and policy and business. Throughout these topics, students and adult learners are expected to\ncomprehensively understand population aging and its implications, and develop analytical and practical skills of the life course perspective, especially in policy and business domains. The context of Singapore is highlighted with constant comparison with other countries.", + "title": "Sociology of Life Course and Ageing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3214", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module takes the idea and reality of law as a social phenomenon, drawing on classical and contemporary social theories and on empirical studies on the development of law in pre-modern, modern, and contemporary societies. Basic issues include the following: law versus custom; the idea of justice; types and processes of regulation, adjudication and punishment; law in relation to political power, social inequality and ideology; law as a mechanism for social change; the transformations of modern law; and the organization of modern legal systems. This module is mounted for students throughout NUS with interest in law and its implications on the society.", + "title": "Law and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is about the anthropology and sociology of understanding what it means to be a \u2018self\u2019 in \u2018society,\u2019 that is, to be a \u2018social self.\u2019 This course is NOT about a psychological study of the self. It analyses important theoretical debates about and ethnographic studies on the relationship between society and the self. Particular attention will be paid to examining how ideas about the self are socially constructed and re\u2010constructed by various processes, especially the roles played by the state and its institutions in shaping perceptions and practices the self in relation to ethnicity, the family, gender, marriage, work, leisure and friendship.", + "title": "Self and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sex, sexuality and sexual orientations are cultural forms rather than purely \"natural\" states. This course examines the variety of social dimensions that shape human sexuality. A range of theoretical perspectives and cross-cultural comparisons are drawn in order to unravel the complexities of sexualities and to see how sexualities are shaped by historical norms, social scripts, political structures, global forces and commodification. Students are required to read historical materials, anthropological research and be familiar with political economy and social constructionist paradigms.", + "title": "Sexuality in Comparative Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3219", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ritual, performance and symbolism have been core areas in social science analysis for some time. Initially studies of symbolism focussed on non-industrial peoples, whose ritual lives were very rich and visible. Increasingly social scientists have come to see that ritual is still an important activity in the contemporary world, and that analyzing performances can give us insights into nationalism, sports, tourism, media and other areas of life that deal with questions of identity. This course will offer students an overview of these important topics, in order to better understand communication, identity and community in the modern world.", + "title": "Ritual, Performance and Symbolic Action", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will give students an understanding of the value of qualitative research as well as a practical grasp of a variety of qualitative research strategies and techniques (participant observation, ethnographic fieldwork, in-depth interviews, life history interviews, oral history and other qualitative methods). It will introduce students to some key theoretical issues that structure the ongoing debates about qualitative methodology in the social sciences. It will provide the space for learning, experiencing and practising actual qualitative research. The course will involve discussions and presentations on the use of a variety of qualitative methods in relation to a particular study that the students will undertake.", + "title": "Qualitative Inquiry", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0205", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0205", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s transition from a command economy to a market economy has brought fundamental and rapid changes in its social structure and social relationships among members of different subgroups in society. The objective of this course is to offer an overview of emerging social issues in contemporary China, focusing on changes after 1949. This module offers sociological perspectives to examine topics such as changes and new challenges in Chinese families, gender roles, demographic structure and distribution, social safety net, and environment. The class will combine lectures, academic readings, films, sources from the mass media, and discussions.", + "title": "Social Transformations in Modern China", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0304", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introductory take on the importance of visual images and some of the key theoretical debates that concern making, seeing, and sharing images. It engages historical and contemporary practices of image making and image consumption, and covers a variety of visual media and application domains. This class also provides an opportunity to engage with visual media through experiential learning. At the end of the module, students will have gained familiarity with key repertoires for the study of visual culture, and increased their \u201cvisual literacy\u201d as image producers and consumers.", + "title": "Visual Culture: Seeing and Representing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The concept of social capital has gained popularity, both in sociology and outside the academia globally. The theoretical basis of social capital is that resources embedded in social relations affect the life chances of individuals and collectivities. It has also been argued that social capital has a significant impact on occupational mobility, civic engagement, social movement, and economic development. The module will explore (1) the theories of social capital, (2) the empirical work on social capital, (3) linkages between social capital and instrumental and expressive actions, (4) new directions for research extension of the theory of social capital.", + "title": "Social Capital", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0335", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers a survey of economic life from a macro-sociological and historical viewpoint, with a focus on industrialization, the rise of market society, employment systems, property rights, and the role of the state in economic development. The module will equip students with knowledge (1) regarding the complex macro-environment surrounding economic organizations, and (2) on how the success and failure of different economic organizations depend on the institutional and regulatory ecology in which economic organizations operate. Furthermore, the module will teach students relevant knowledge on the conditions under which markets fail and the disruptive dynamics in market economies.", + "title": "Markets and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3226", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theoretical and methodological approaches through which sociologists analyze major historical changes that have deeply shaped the modern world, ranging from the emergence of capitalism and nation\u2010state, revolutions and democracy, empires and colonization, to the formation of modern subjectivity and citizenship. The course will examine various challenges, strategies and reflections on making generalizable arguments based on historical cases and events. Central issues in comparative thinking, understanding of historical specificity and analysis of temporality will be explored.", + "title": "Modernity and Social Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0203", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0306", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is about how the senses organise different dimensions of social life. How are race, gender, and class identities related to sensory perceptions? How do the senses shape power relations and knowledge production? In order to address these queries, the module interrogates how sensory experience lies\nbeyond the realm of individual, physiological responses by analysing a range of sensory faculties through cross\u2010cultural comparative approaches. Students are introduced to key ideas in sensory scholarship and will be equipped with analytical tools to examine the senses in relation to selfhood and identity, urbanity, politics, religion, and heritage.", + "title": "Senses and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "While norm violations occur everywhere, the responses to them vary. This module is a comparative study of deviance with a focus on empirical case studies. \u201cNuts, sluts, perverts\u201d is Alexander Liazo\u2019s phrase to refer to deviants from below like mental patients, sex workers and sexual outlaws. \u201cScandals\u201d involve deviance from above, committed by authorities such as clergy abuse, official corruption and corporate malfeasance. Analyzing the range of underdog and elite forms of deviance in terms of disparities in their social constructions, criminal processing and dispensing of justice would enhance our understanding of structures of inequality and power.", + "title": "Comparing Deviance: Perverts & Scandalous Improprieties", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3229", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A flourishing modern society can be promoted by volunteerism and civic engagement. Considering that volunteerism is perceived as a crucial indicator of livable society, it has been a concern of many countries including Singapore to promote volunteering among citizens. Mainly through various non-profit voluntary organizations, volunteer workforce helps attain the goal of civic, livable, and harmonious society. This module thus pursues three main themes: (1) the relationship between civil society and civic engagement, (2) the precursors of volunteer workforce (i.e., what makes people volunteer?), and (3) the outcomes of volunteerism (e.g., life satisfaction, health, and status attainment).", + "title": "Volunteer Workforce", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3230", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We live an era in which humans have altered the atmospheric, oceanic, geological conditions of the planet. And yet, even as humans emerge as powerful agents, the contemporary moment is marked by extreme weather, pollution, and extinction. How do we rethink society, relations, economy, and history in order to live with the climate crisis? We will read recent scholarship in anthropology in combination with scholarship from history, STS, political theory, and feminist environmentalism, to think about more-than-human socialities, collective subjectivities, and long-term futures. The course combines critical reading with interactive exercises to think about climate change through the anthropological lens.", + "title": "Facing the Climate Crisis of the Anthropocene", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3231", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0213", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The internship provides students with an opportunity to apply sociological knowledge to the workplace. In particular, students learn about the challenges of\nworkplace situations, and reflect upon how practising sociology may provide clarity to problems encountered. Internships must take place in organizations or companies, be relevant to sociology, consist at least 120 hours for SC3550 (or 240 hours for ISC3550), and be approved by the Department to be considered for credit. This module is not compulsory and will be credited as a Major Elective or a\ncombination of Major Elective and Unrestricted Elective.", + "title": "Sociology Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3550", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC3551R", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide honours students with a final opportunity to recollect, summarize and reorganise the disparate modules in their four years of studying anthropology and sociology. The broad philosophical and pragmatic questions addressed in this course are: What is meant by thinking anthropologically and sociologically? How does one put anthropologically nuanced and sociologically framed analysis and subsequently knowledge derived to work at different scales in institutional activities. How does one practise anthropology and sociology in everyday life? In short, what does it meant to be an anthropologist or a sociologist?", + "title": "Practising Anthropology and Sociology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "D5", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0214", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "D9", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS5-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "D8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0207", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "D10", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "D6", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "D7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module maps out the main currents of contemporary social theories ranging from the legacy of the classical tradition, comparative-historical sociology, interpretative sociology, functionalism and neo-functionalism, rational choice, globalization theories and the macro-micro debates. In exploring the nature and status of social scientific theories we deal with the universalism/relativism debate and link it to the problems of globalized vs. indigenized social theories. This module is mounted for students with a keen interest in social theories.", + "title": "Contemporary Social Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ethnography involves doing fieldwork and writing about it. We examine the tensions between fieldwork, the crafting of the ethnographic text, and its reception within the discipline of anthropology. Following the \u2018writing culture' debate, we aim to understand how ethnographers \u2018construct' data, frame their analysis, and produce a text. We examine ethnographic \u2018realism' as a style, how styles have changed over time, and how differently some researchers have written about the same culture area. The course will heighten students' critical skills and their awareness of how any representation of social reality has been put together.", + "title": "Reading Ethnographies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with exciting theoretical and practical issues in the sociology of organizations. Some of the questions addressed are (1) What kind of 'animal' is this creature called organization? (2) What are its key characteristics: structure, culture, environment? (3) Who created this 'animal', or what goals, and with what strategies to achieve the goals set? (4)How does it influence the orientation and action of participants? (5) Is democracy possible within organizations? This module is mounted for students with interest in one of the most important social entities influencing key aspects of social, political, and economic life in modern societies.", + "title": "Sociology of Organizations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An analysis of approaches to social policy and social planning, with emphasis on the social context of planning and development; social indicators for development planning; the formulation and implementation of social policy; and strategies and experience of social planning in East and Southeast Asian countries. This module is mounted for students throughout NUS with interest in policies and planning.", + "title": "Social Policy & Social Planning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the linguistic and communicative elements of social interaction and their consequences. Topics covered include the nature of human communication, symbols and power, speech and social interaction, the politics of linguistic diversity, language and social structure, mass communication, and popular communication like family photography, gossip, rumour and oral culture. This module is mounted for all students throughout NUS with interest in language and communication as a means of social interaction.", + "title": "Sociology of Language & Communication", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4205", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the relevance and importance of anthropological approaches toward understanding urban life using the ethnographic field method. Issues to be critically examined include the construction and production of space and place in relation to the dynamic interplay of urban structures; the politics of gender, ethnicity, consumption, work and leisure; and processes that\n\u201cglobalise\u201d cities and the urban nightlife. This module is useful for students who are interested in enhancing their analytical skills, conducting field ethnography and applying anthropology to analysing urban life.", + "title": "Urban Anthropology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a methodology module which examines the various approaches to doing sociological interpretation. The methodological texts of major theorists form the reading material. The theorists studied include: Durkhiem, Weber, Foucault, Barthes, Freud and Habermas. The approaches to be examined include inter-subjective understanding, discursive analysis, semiotics, elements of psychoanalysis and Critical Theory. The aim of the module is to prepare students for the analysis of qualitative and textual data for their research projects, therefore, it will use students' research topics as substantive illustrations of the appropriateness of the different approaches.", + "title": "Interpretive Sociology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the main contemporary issues and problems that have their roots in migration and its consequences at the individual, societal, and global level. It will focus on the following issues and processes: the migratory process and the formation of ethnic groups; postwar migration patterns, the globalization of international migration; new migration in the Asia-Pacific; migrants and minorities in the labour force; the migratory process: Singapore, Malaysia and Brunei compared; new ethnic minorities and society; immigration policies and politics; and migration in the New World order. This module is mounted for students with interest in human migration and its implications.", + "title": "Sociology of Migration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a critical engagement with both anthropological and multi-angle analyses of tourism, culture and people. It examines diverse dimensions of tourism and its impact on host societies and local cultures. In particular, it probes interactions between tourists and local populations as well as locals\u2019 identity reformation, cultural adaptability and strategies with respect to the transformative power of tourism, among multiple local and extra-local socio-political forces at work. Major topics to be covered include tourism imaginaries, tourism display, tourism hospitality, heritage and museums, tourism and nature and tourism, modernity and risk.", + "title": "Tourism and Culture: A Global Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines new studies on memory as a social phenomenon. Not just for individuals, but for all kinds of social groups, memory is an indissoluble part of identity. Remembering is always a selective reconstruction, hence always political. 'Popular' (often oral) memory interacts with 'official' history, while itself containing differences relating to generation, class, gender and ethnicity. Memories of traumatic events of the C20th shape our moral universe and are driving developments in international human rights law. Our explorations of the politics of memory will be grounded in case studies of both regional and global relevance.", + "title": "Social Memory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a seminar and workshop course that provides an understanding of the value of qualitative research as well as a practical grasp of a variety of qualitative research strategies adopted by researchers in the social sciences. While the focus of the course is intended to allow the student to understand and appreciate key theoretical issues that confront qualitative research, it will also provide the space for learning, experiencing and practising actual research. The course is meant for students who are interested in the use of qualitative research methods in relation to the particular study they undertake.", + "title": "Qualitative Data Collection", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course focuses on developing a framework for constructing and rethinking factors (be they economic, political, cultural) that have led to the emergence, development, and maintenance of certain forms of collective behaviour. It will also examine these theories through various case studies of social movements such as historical revolutions, and the \"new\" social movements of Europe. Topics covered include the rationality of collective action; history of social movement theory; the role of individuals, social groups and institutions in social movements; and their impacts. This module is mounted for students with interest in social movements.", + "title": "Social Movements and Collective Action", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to develop a nuanced understanding of forms of religiosity in the present. One aim of the module is to explore connections between the realms of religion and politics, particularly within the framework of secular states. The module examines the notions of \u2018secularity\u2019 and \u2018post\u2010secularity\u2019 and queries their relevance for the contemporary moment, within a comparative, historical perspective. Is it useful to invoke the concept of \u2018secularism\u2019 to make sense of encounters between religious and political domains? Do the ideas\nof the \u2018separation of church and state\u2019 and \u2018state non-interference in religion\u2019 help in these efforts?", + "title": "Religions, Secularity, Post-Secularity", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a sociological and anthropological study of the neoliberal transformations of work that has been shaped by global financial crises in recent decades, which have in turn led to suggest changes to employment choices and work patterns. Examining the opportunities and challenges that affect how individuals could, would, and actually work would enable students to better understand and manage diverse aspects of career demands, educational pursuits, family life, social relations, employment, cultural heritage, leisure and public services in today\u2019s rapidly changing global economy.", + "title": "Social Origins and Consequences of Financial Crises", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the intersection of aging and health within social contexts. This course first introduces the theoretical orientations focusing on social construction of aging and health. It considers distribution of illness among older adults and its association with demographic characteristics and SES. Next, this module examines the role of social contexts, including marital and family relationships, social networks, and social participation, on health disparities in late life. Finally, it examines how demographic characteristics, social contexts, and health are dynamically associated across the life course, focusing on gender differences.", + "title": "Aging and Health", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Human rights are one of the most globalized, yet often vigorously contested, political values of our time. This course takes a critical and empirical approach and\nfocuses on the following human rights issues: the ontology of being human; relativist versus universalist positions on human rights issues; empirical case studies of human rights violations associated with ethnic conflict and civil war; minorities' rights; the rights of children; transnational capital, development and local community/ indigenous rights; and human rights, the state and the international system.", + "title": "Comparative Analysis of Human Rights", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a course that surveys the enormous intellectual growth of studies of the human body in sociology, anthropology and other social science disciplines. It\nwill focus on the diverse social meanings of the body situated within a range of social contexts. Sociocultural notions of the body are examined through analyses of corporeal experiences in relation to religion, the senses, health, spectacles,\ncommodification, technology, and other substantive dimensions.", + "title": "Body and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module explores interactions between a variety of social forces and the phenomenon of health/illness. First, an important goal of the module is to clarify the extent to which mental and physical health/illness have been socially constructed and unevenly distributed in society. The module further identifies\nthe effects of such social conditions as socioeconomic status, education, gender, and social networks on patterns of health inequality. Finally, it delves into\nspecific issues like social epidemiology, stress process, and health care where possible causal relationships between a variety of social forces and health/illness\nare explored.", + "title": "Health and Social Behaviour", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The term justice is used with many different meanings. Social justice concerns justice as it refers to the societal distribution of scarce goods and necessary burdens. One of the most important aspects of social justice is the way in which societies deal with the collective provision of welfare for their members. Following a brief introduction to influential theories of justice, this course will look at the historical roots of the welfare state and at the central features of various presently existing welfare regimes. Cases will be drawn from Europe, the United States, and East Asia.", + "title": "Welfare and Social Justice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the sociology of urban development planning in Asia at local, regional and global scales. We will assess the livability of cities which includes looking at social lifeworlds, poverty, and the environment. We will discuss rural\u2010urban linkages and transitions, uneven spatial development, peri\u2010urban development and transborder intercity networks. Additionally we will explore national experiences in East, Southeast Asia and South Asia. This course is designed as a gateway for professional careers in applied research for urban planning.", + "title": "The Sociology of Cities and Development Planning in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module considers cultural production as an arena of contestation for voice and visibility. It explores how creative performances and productions have been\nused to express, subvert, or redefine social realities and values, constitute publics, and initiate change. A variety of forms, such as street theatres, music,\ncartoons, community and online media, will be explored through an anthropological engagement with the everyday politics of recognition, narration,\nbelonging, and indeed the valuation of one\u2019s voice. Power, performance, agency, creativity, audiences, art worlds and aesthetics are among the key concepts explored.", + "title": "Cultural Production: Power, Voice, Policies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4226", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "All societies are organized around gender and sexuality. Everywhere, the sex/gender system has implications for the relative power of men and women in society. Human societies have a tendency toward patriarchy. Some societies are relatively gender\u2010egalitarian. Others are strongly patriarchal. But none are strongly matriarchal. This module examines the social, cultural, psychological and biological arguments, including feminist and non\u2010feminist theories for how and why sex and gender relate to the distribution of power in society. It examines these questions in terms of broad comparison across cultures, in evolutionary history, in modern state societies and in today\u2019s transnational, globalizing world.", + "title": "Gender, Sex and Power", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is violence? How is violence materialized, contested and reproduced? What can anthropology offer to understandings of violence? Exploring phenomena ranging from war, genocide and terrorism to domestic abuse, poverty and crime, this course examines violence as a domain of cultural understanding and a mode of social action. Involving both overt and\nspectacular expressions and implicit and everyday forms, our understandings of violence will span the intimacy of the family, the nationalisms of states and the economics of global corporations. Through the comparison of cross-cultural ethnographies, we look critically at the theoretical, empirical, methodological and ethical implications of analysing violence.", + "title": "Making Sense of Violence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module requires students to conduct an independent research project on an approved topic under the supervision of an academic staff. The research project, which usually includes some fieldwork, will be submitted as an Honours Thesis.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "SC4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module requires students to conduct an independent research project on an approved topic under the supervision of an academic staff. The research project, which usually includes some fieldwork, will be submitted as an Honours Thesis.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "SC4401HM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with specialized topics reflecting the expertise of staff members or emerging issues in the field of Sociology and/or Anthropology.", + "title": "Selected Topics in Socio'gy & Anthrop'gy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course analyzes the links between social structure and popular forms of communication like rumor, gossip and humor. How do group formation and social\nhierarchies facilitate rumor, gossip and humor? In turn, how do rumor, gossip and humor reflect social inequality, socio\u2010political values, dynamics of conflict,\nand organizational environments? How do cultural forms of communication (satire, parody, irony, camp) underscore gender, ethnic, religious, political and\nnational divisions? What constitutes the offensive, the derogatory, the taboo? What is the impact of hate humor on social life in regard to free speech, artistic\nexpression and social order?", + "title": "Communication and Social Structure", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The topic is an advanced sociological analysis of Singapore society. Throughout the undergraduate years, sociology students would have read and thought about Singapore society in almost all the substantive modules they have taken. This module provides an opportunity to bring further focus and reflection on students\u2019 knowledge of Singapore society. It aims to examine in depth the historical and ongoing developments of various social cultural institutions, public policies and everyday practices of contemporary Singapore society, including globalization, multiracialism, real estate speculation, family, NGOs and consumerism.", + "title": "Advanced Sociological Analysis of Singapore Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4880B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is cultural heritage and how it is defined today in various societies? Is heritage a human right? What are the relationships between conservation and sustainable development? What are the existing threats to cultural heritage and how does it relate to tourism? These are some of the questions that this course will tackle. After introducing students to the concept of cultural heritage and how it is\noperationalized on the ground, we will look at various theories and politics regarding cultural heritage from a comparative and multidisciplinary perspective.", + "title": "Cultural heritage: The Politics of Protecting the Past", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4880C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What are the different histories, institutions, logics, and experiences of security regimes globally? Who polices who, for whose sake, on what scales and sites? What is militarism? What ideas of national security have become normalized in our everyday lives? This course introduces the concept of security, broadly taken to be one of the fundamental logics underlying the governmental functions of the modern state. To explore these questions, students will read ethnographic studies of policing, national security, militarism, and surveillance.", + "title": "Policing and Security: Past, Present and Future", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4880D", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the linkages between health and society using sociological, demographic and epidemiological evidence on key social determinants of health. It adopts a historical and comparative perspective to understand health and mortality transitions in developed and developing countries as well as health disparities within and across countries. It explores the influence of educational attainment, income and income inequality, social capital, discrimination, marriage and gender among others on health to illustrate how the social \u201cget under our skin\u201d. It provides students with a strong theoretical foundation in medical sociology and exposes them to various quantitative approaches to study population health.", + "title": "Selected Topics in Health & Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4881", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with specialized topics focusing on the state as an actor, institution, and/or arena for politics as well as related issues pertaining to globalization, citizenship, nation-building, war, democracy, welfare and social justice.", + "title": "Issues in State and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4882", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is the impact of globalization on the state, and how can we come to terms with these two concepts? What is the future form of state-society relations, and do concepts such as democracy, civil society, national identity and rethinking as we move into a highly connected world? Using cases from around the globe, students will be exposed to the very broad perspective offered by comparative and historical analysis. The course will initiate thinking about social welfare options and citizenship in a globalized world. Through historical and comparative analyses, critical questions about the role of the state in welfare provisions, economic development, and democratic development will be examined. This module is mounted for students throughout NUS with interest in the state-society relationship.", + "title": "Perspectives on State & Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4882A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept of citizenship has been understood as the mechanisms through which the individual is linked to the nation, involving a variety of processes, such as rights, culture, or race. There are new claims that with globalization, there has been the re-definition of the idea of the citizenship and the nation, leading to new concepts such as flexible citizenship and de-territorialized nation-states. This course will examine how that movement of people, capital, and ideas are affecting citizenship, and how this affects the relation between state and society. This module is mounted for students throughout NUS with interest in the concept of citizenship.", + "title": "Citizenship, Nation and Globalization", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4882B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the relations between three lines of thought, respectively surrounding the concepts of state, governance and governmentality. Drawing on empirical examples from the global history with a focus on modern Asia, the module demonstrates how the different sets of theories may be integrated and further developed in addressing specific issues in modern social political life. Specific topics include paperwork, legality, market mimicry as a mode of governance, policy, rights, borders and boundary, intermediary.", + "title": "State, Governance and Governmentality", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4882C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to increase students' breadth of empirical knowledge and the depth of their theoretical understanding on issues of law, justice and society. With urbanization and industrialization, modern societies have increasingly depended upon law to regulate the behaviour of its members and the activities of its institutions. In contemporary Singapore society, law underpins social policies from housing to marriage, political behaviour and economic activities. Among the wide variety of significant topics are policing theories, state violence and social justice, crime and punishment to the legal profession. This module is mounted for students with interest in law and justice.", + "title": "Selected Topics in Law and Justice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC4883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed as an intermediate level of research methods in Sociology. The module covers the following key areas (a) theorising and conceptualization, (b) measurement (c) sampling approaches (d) quantitative research methods (including survey research, nonreactive research, \nand experimental research); (e) qualitative research methods (including interviewing andobservational techniques); (f) qualitative analysis (grounded theory); (g) quantitative analysis. Following the change in content, SC5101 will be retitled as \u201cGraduate Research Methods\u201d", + "title": "Graduate Research Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Graduate Research Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC5101R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a systematic exposition of general linear models in social science research.Topics include relative frequencies, probability distribution, model specification, estimation, hypothesis testing, and remedies for violations of statistical assumptions. The main emphasis is on the hands-on application of statistical techniques to social research. Research articles in sociology \nare used to illustrate the application of these models and techniques. Extensions to nonlinear models and panel data analysis are introduced in the latter part of the module. The course aims to help students to strengthen their understanding of statistical concepts and modelling techniques, and enrich their capacity to interpret statistical findings.", + "title": "Quantitative Data Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC5102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a systematic exposition of general linear models in social science research.Topics include relative frequencies, probability distribution, model specification, estimation, hypothesis testing, and remedies for violations of statistical assumptions. The main emphasis is on the hands-on application of statistical techniques to social research. Research articles in sociology \nare used to illustrate the application of these models and techniques. Extensions to nonlinear models and panel data analysis are introduced in the latter part of the module. The course aims to help students to strengthen their understanding of statistical concepts and modelling techniques, and enrich their capacity to interpret statistical findings.", + "title": "Quantitative Data Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC5102R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Increasingly, more qualitative research work is being under-taken in its own right rather than as preliminary research for subsequent quantitative surveys. This explains the broadening of the range of qualitative research techniques. In addition to dealing with the traditional fieldwork and participant observation methods, the module will examine a number of qualitative approaches. These include techniques of analyzing data generated by laypersons (as in life-documents: diaries, journals, travelogues) communications materials, material artifacts, and visual information. This course is open to postgraduate students with an interest in qualitative research methods.", + "title": "Qualitative Data Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Qualitative Data Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC5103R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module evaluates the objectives, implementation, and outcomes of the different types of policies and programmes at the organisational and societal levels. It analyses the rationale underlying major policies and programmes; the problems encountered during the implementation process; as well as the possible and probable discrepancies between objectives and outcomes, whether intended or unintended. Module participants will examine specific cases and be exposed to the methodology and range of methods in assessing the effectiveness of various types of policies, programmes and projects. This course is mounted for postgraduate students with an interest in policy issues.", + "title": "Social Policy Analysis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC5205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides sociological ways of looking at a multitude of patterns of everyday life, ranging from talking, touching, feeling, using space, waiting, relating to members of the opposite sex, choosing clothing, to presenting images of oneself to others. A large part of the module will focus on everyday life through the understanding of processes of interaction, as well as the mutually transformative connections between social structures and everyday face-to-face encounters. Using existing sociological frameworks and case studies, it analyses the form and character of everyday life experiences of Singaporeans.", + "title": "Sociology of Everyday Life", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC5209", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides sociological ways of looking at a multitude of patterns of everyday life, ranging from talking, touching, feeling, using space, waiting, relating to members of the opposite sex, choosing clothing, to presenting images of oneself to others. A large part of the module will focus on everyday life through the understanding of processes of interaction, as well as the mutually transformative connections between social structures and everyday face-to-face encounters. Using existing sociological frameworks and case studies, it analyses the form and character of everyday life experiences of Singaporeans.", + "title": "Sociology of Everyday Life", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC5209R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides practical training in the use of digital video cameras and film editing, as a research tool in the social sciences. This knowledge will be grounded in an understanding of how ethnographic documentary film has developed as a medium, its essential stylistic features and its ethical responsibilities to the participants in a film. Students work in small groups to learn basic techniques, then make a ten-minute film on a subject of sociological relevance. The aim is to equip students to be able to use video in future field research, and to instill an understanding of the ethnographic potentials of visual media.", + "title": "The Practice of Visual Ethnography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC5215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides practical training in the use of digital video cameras and film editing, as a research tool in the social sciences. This knowledge will be grounded in an understanding of how ethnographic documentary film has developed as a medium, its essential stylistic features and its ethical responsibilities to the participants in a film. Students work in small groups to learn basic techniques, then make a ten-minute film on a subject of sociological relevance. The aim is to equip students to be able to use video in future field research, and to instill an understanding of the ethnographic potentials of visual media.", + "title": "The Practice of Visual Ethnography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC5215R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents a social history of the development of criminological thinking and contemporary criminological models in explaining crime, particularly sketching the influence of social sciences, in the way criminals and crime, are being viewed in contemporary society. But the study of crime, criminality, victimization and social policy is not dispassionate; it is inextricably linked to notions of social order and social control. The course, thus, will attempt to show that it is difficult, if not impossible, to study crime without examining the underlying assumptions and perspectives which account for how we come to regard crime as a phenomenon.", + "title": "Crime, Criminal Behaviour and Criminal Justice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC5216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to teach students current methods and theories in population studies. Demographic methods for data collection and analysis will be covered,such as collection and application of census and survey data, cohort analysis, life table analysis, and population projection methods. The major themes in population study will be discussed in depth, including topics such as low fertility,populationaging,migration, population health, human capital and environment. For each theme, the current theories and related policy discussions will be introduced. The course has a strong international perspective, comparing population issues in Western countries with Singapore and other Asian countries.", + "title": "Population Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC5218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with topics in population and aging on a rotational basis. Issues covered include fertility, mortality, migration, and population ageing and health issues, depending on lecturer's expertise and availability during a particular semester. One of the aims of the module will be to provide students with an understanding of population issues relevant to Singapore's changing age structure. These include the impact of low fertility, increasing longevity, immigration, and ageing. Both the theoretical underpinnings and the policy implications of these demographic trends will be examined.", + "title": "Population Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC5218R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Tourism is an important part of culture, society and the environment in the modern world. How have social scientists theorized about the role of tourism and its influence in the contemporary world? We will explore the history of the rise of tourism in the contemporary world and its rise as a type of \u201cordering\u201d that is integrated with other social, political and economic changes of the modern world.\nWhat role does tourism have in the lives of people in industrial and post-industrial society? We will explore what it means to be a \u201ctourist\u201d, and what being a tourist means in the social and culture life of contemporary society. What is touristic culture? How does tourism shape culture and nature in the contemporary world? What is eco-tourism? Is tourism a way of solving ecological problems in\nmarginalized and degraded environments? What is tourism\u2019s relationship with power, inequality and morality? This course will explore tourism as an important lens through which to understand our contemporary global situation.", + "title": "Tourism: Culture, Society and the Environment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC5219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Tourism is an important part of culture, society and the environment in the modern world. How have social scientists theorized about the role of tourism and its influence in the contemporary world? We will explore the history of the rise of tourism in the contemporary world and its rise as a type of \u201cordering\u201d that is integrated with other social, political and economic changes of the modern world.\nWhat role does tourism have in the lives of people in industrial and post-industrial society? We will explore what it means to be a \u201ctourist\u201d, and what being a tourist means in the social and culture life of contemporary society. What is touristic culture? How does tourism shape culture and nature in the contemporary world? What is eco-tourism? Is tourism a way of solving ecological problems in\nmarginalized and degraded environments? What is tourism\u2019s relationship with power, inequality and morality? This course will explore tourism as an important lens through which to understand our contemporary global situation.", + "title": "Tourism: Culture, Society and the Environment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC5219R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We are living in a connected social world. The quest for a mechanism by which social connection is formed and dissolved and the pursuit of the impact of such mechanism on diverse areas such as economy, politics, culture, collective movement, technological development, or medicine have made social networks a popular topic in and beyond sociology. The module is a graduate course of social network theories and methods with three purposes: (1) introducing the theories of social networks, (2) teaching varied methods to measure social networks, and (3) providing practical opportunities to apply the methods to students\u2019 research projects.", + "title": "Social Networks", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC5223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We are living in a connected social world. The quest for a mechanism by which social connection is formed and dissolved and the pursuit of the impact of such mechanism on diverse areas such as economy, politics, culture, collective movement, technological development, or medicine have made social networks a popular topic in and beyond sociology. The module is a graduate course of social network theories and methods with three purposes: (1) introducing the theories of social networks, (2) teaching varied methods to measure social networks, and (3) providing practical opportunities to apply the methods to students\u2019 research projects.", + "title": "Social Networks", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SC5223R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters students admitted from AY2010/2011. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar for Masters students", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SC5770", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modern society is highly complex and differentiated. Sociological theories help us to make sense of this complexity, to understand and penetrate realities at all levels of social aggregation ? at the micro-level of individual interaction and of small collective units (such as the family), at the meso-level of organizations and intermediate institutions (such as business firms) and at the macro-level of society's basic structure. They enlighten us about hidden forces, principles and interests which shape our daily lives and the reproduction of social structures. This module aims to demonstrate the usefulness and limitations of different theories both as tools of analysis and as concrete guides to social practices.", + "title": "Sociological Theory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will examine the complexities and the challenges to global social order and peace. With global transformation and the emergence of an interdependent world society, there has been a proliferation of risks. From ecological crises to the intensification of poverty, social inequality and social exclusion to the conflicts and violence on ethnic and religious lines have made the world a risky place. Theories of globalization will be applied to examine the social contexts and consequences of these crises, risks and violence. Globalization will be viewed as a complex process of cultural clashes intersecting with modern economy and polity. Using an inter-disciplinary framework, the seminar will explore the possibilities of minimizing risks and violence in a new global social order.", + "title": "Global Transformations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This graduate seminar examines changes in family behaviour and household relationships from a global perspective. Class discussion will consider major theoretical perspectives and debates about changing family forms and family variation around the world. Literature will be drawn from multiple disciplines to explain these changes. This course will stress the dynamic interaction between macrosocietal forces and the microsocietal forces that affect family member\u2019s lives around the world. We will study how the forms, functions, and definitions of the family vary across historical and cultural contexts and how social class, gender, and racial inequalities affect family changes.", + "title": "Families in Transition", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a very advanced course which explores various societal domains in which gender plays a definitive role in structuring the way men and women interact, how it constrains or facilitates opportunities. The emphasis is on making sense of the production and reproduction of gender, gender inequalities and gender politics across a range of societal domains, its institutions and cultural practices ? using insights from micro-sociological and macro-sociological theoretical perspectives. It is crucial to adopt a critical approach towards the intellectual (including sociological) approach to theorizing gender, and the role of feminist theoretical positions in shifting the discourse and effecting concrete changes. The overall aim is to generate amongst students sophisticated and nuanced sociological understandings of how gender is understood in contemporary society, and how it intersects and interacts with race, class, political ideologies and sexuality.", + "title": "Gender, Culture and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6214", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course investigates the importance of religion in the contemporary world, cross-culturally, relying on the most recent conceptual and methodological frameworks. Despite a focus on the present, a historical perspective is nonetheless necessary to ground analyses of religious phenomena in the contemporary world. The course explores the variety of socio-cultural, political, economic and technological forces and processes that impact the manifold expressions and manifestations of religion and vice-versa. This is facilitated by scrutinizing the `secularisation-sacralisation-resecularisation? debates in the theoretical literature. The emphasis is not only empirical, but also theoretical in drawing together contributions on the subject from a variety of sociological and anthropological perspectives.", + "title": "Religion in the Contemporary World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine concepts that have been prominent in the development of anthropology as a distinctive discipline. Concepts such as culture, cultural relativism, ethnocentrism, ethnography, participant observation, and social structure, will be analyzed in the context of their development and use by anthropologists over the past century. Other themes will include the historical relationship between anthropology and colonialism, critiques that have been made of anthropology in recent decades over questions of ethnographic authority, and the construction of anthropological objects and subjects.", + "title": "The Anthropological Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the various forms of ethnicity, ethnic relations and the nation-state in Southeast Asia. Ethnic relations range from relatively peaceful, harmonious accommodation to armed (low-intensity) conflict. This module will survey conceptual and theoretical frameworks for understanding \u2018race\u2019, ethnicity and ethnic boundaries including: local-level communal interactions in a variety of socio-ecological contexts; social inclusion/exclusion and ethnic divisions of labour;\nindigenous-migrant relations; the relationship between migrant relations; the relationship between ethnicity, ethno-nationalism, nationalism and the nation-state. This course is offered to graduate students with an interest in cultural diversity and its social, economic and political consequences in relation to nation-state-making.", + "title": "Identities & Nation State", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Among the themes covered are state power and formation, ideology, political violence and terror, democracy/authoritarianism, and social movements. These are addressed in relation to issues of political economy transformations within societies as well as the changing international political economy. It asks a number of fundamental questions, including: What are some of the defining\nfeatures of social conflict and of the exercise of power in modern societies? What is the role of the state and of civil society-based organisations in defining social, political, and economic trajectories? Are major social transformations inevitably accompanied by conflict and violence? Has the nature of social conflict and power, domestic and international, been transformed in the post-Cold War and \npost-9/11 International Order? How has the recent world economic crisis affected the kinds of social conflicts that transpire in the developed and developing worlds? This module is comparative, providing case studies from the experiences of contemporary European, Latin American and Asian societies.", + "title": "Conflict/Power in Comparative Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on one of more of selected topics such as (a) travel flows, (b) migration and refugees, (c) diaspora, and (d) transnational networks, in order to examine broad questions. How does tourism intensify or transform local cultures? How does tourism affect nworking conditions, ideas of service, leisure and the culture industry? How does travel, migration and displacement create new identities in transnational spaces? What is the relationship between diaspora and\nglobal economics? How do diverse diasporic communities compare and relate to each other? What conditions shape the emergence of transnational networks and communities? What effects do transntioanl cultures have on governance at local and global levels? Topics may vary from year to year.", + "title": "Topics in Transnationalism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides graduate students with an opportunity to engage with current anthropological and sociological approaches to the government of life in contemporary capitalism. We will look at how researchers have employed concepts such as governmentality, biopolitics, neoliberalism and multi-culturalism to generate critical understandings of contemporary political\nconditions. More importantly, we wil situate these works within a broader history of efforts in the human sciences to understand the relation of power and truth, and its implications for human life.", + "title": "The Government of Life in Contemporary Capitalism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Ethnography is the central mode of documentation and representation in social and cultural anthropology. \u2018Ethnography\u2019, the detailed depiction of human social and cultural experiences and their focused analysis, can refer either to the process of conducting fieldwork and undertaking participant observation or the product of such research, in a written or a visual form. The module recognizes the diverse modes in which anthropologists represent their works \u2013 including in visual, oral and digital. The emphasis is on ethnographic writing/ representation in an effort to understand the various methodological, literary and conceptual choices made by authors in the process.", + "title": "Producing Ethnography", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The theorising of kinship relations has always had a central place in anthropological studies. This course will equip students with an understanding of kinship and personhood as essential aspects of human sociality, a knowledge of the key debates in kinship studies, and basic methods for the investigation of\nkinship and relatedness in field research.\n\nTopics covered will include current anthropological approaches to a wider field of \u2018relatedness\u2019 in a globalised world marked by new communicative \ntechnologies, voluntaristic friendships, changing family structures, the shifting significance of kin networks, the formation of transnational families, and the development of New Reproductive Technologies.", + "title": "Kinship, Relatedness and Personhood", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course proposes to look at the various \u201cculture areas\u201d or \u201cfields of ethnological study\u201d that anthropologists have traditionally identified in Asia,\nexamining specific ideas, theoretical and methodological issues that have emerged in these different regions; how have certain theoretical ideas shaped research in the different parts of the region? Have they facilitated exchanges of ideas and developments of theories within the broader discipline and in interdisciplinary research? How much does place, particularly our place in Asia, affect anthropological research and our understanding of theoretical issues that have become urgent in the contemporary world?", + "title": "Asia as an Area of Ethnographic Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers all aspects of work, employment, and unemployment and their connections with wider social processes and social structures. The changing nature of work under global restructuring will provide the background context to this module, while the intersection of work and the contemporary family will take the center stage. Understanding of the ongoing changes in work and family in industrial societies contributes to the effective management of change at both the national and individual levels. The module will also discuss the nature of time use in contemporary social life, including the changing patterns of work, leisure and consumption.", + "title": "Economy and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "All human societies classify their members into categories that carry significant social meaning. A primary interest in sociology is stratification, which considers hierarchical social structures that rank people with respect to access to resources, and how such structure varies with space and time and enables individuals to move through different ranks over time at varying speed. This module will examine the concepts, methods, and facts in major literature about: class structure, intergenerational transmission of socioeconomic status, factors that affect an individual\u2019s socioeconomic achievement and social inequality. Students will study in greater depth specific situations in some Asian countries.", + "title": "Social Stratification and Mobility", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores distinctive institutional arrangements in Asian capitalism(s). The module is composed of three parts. The first part reviews foundational studies in comparative capitalism and economic sociology. The second part covers institutional varieties of Asian capitalism such as developmental states, business groups, social networks, and value systems. The last part provides case studies of key capitalist economies in the region. Towards the end of the course, students will assess the relevance and the limitations of existing\ntheories, which have been established based primarily on Western experiences, in explaining the unique characteristics and the internal diversity of capitalisms in Asia.", + "title": "Institutional Varieties and Asian Capitalisms", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Sociology in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, number of contact hours, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The\nmodule may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SC6770", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0114", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced module offers intensive and practical training of postgraduate students in professional writing in the disciplines of sociology and anthropology. Students will learn the intricacies of writing to publish in different types of academic publication. They will learn the different types of research writing involving qualitative inquiry, quantitative argumentation, ethnographic understanding, and theoretical reasoning. Students will have the opportunity to critically reflect on their own writing in the midst of completing their dissertation. Students will also learn how to present their writing in professional settings such as conferences and seminars.", + "title": "Professional Writing in Sociology and Anthropology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6780", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with specialised topics in Sociology. The topics covered reflect the expertise of visiting academics on emerging issues in Sociology which have practical implications for social research and/or social policy. Such topics include Demographic Transition: Facts and Theory.\nMajor topics include:\n1. Education Research & Policy Issues\n2. Demographic Transition: Facts & Theory\n3. Family Structure & Change\n4. Civil Society & Governance\n5. Culture & Institutions\n6. Economic Change & Social Consequences", + "title": "Topics in Social Organization", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SC6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "External Institution Module 5", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SCI5750", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "External Institution Module 10", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "SCI5800", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "External Institution Module 12", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "SCI5820", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "External Institution Module 15", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "SCI5850", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Systems Architecture deals with principles of implementation and evaluation of complex systems. Developing architecture is the most abstract function in system/product development. The course examines various notions of systems architecting (including aspects of organizational and information architecture) and offers principles and tools for its development. A wide variety of real-world case studies (including examples of transportation, utility, electronic, mechanical, enterprise, traditional information and document management systems, etc.) will be drawn upon. The course addresses issues such as dealing with legacy and change, enterprise-wide interoperability as well as support for knowledge management.", + "title": "Systems Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SDM5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Systems Engineering is an interdisciplinary approach to realize the successful creation of systems that meet customer and stakeholders requirements with due consideration of the system\u2019s performance and impact over the entire life-cycle. The module covers the fundamental methods and concepts of this approach including those to surface system requirements; architect options and alternatives; model systems; evaluate performance; and analyze tradeoffs.", + "title": "Systems Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SDM5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As the knowledge economy and globalization intensifies, the field of knowledge management is becoming crucial to corporate competitiveness. Knowledge Management (KM) is a relatively new subject area which is in this course conceptualized as a strategy for improving organizational performance through a set of processes, tools and incentives designed to help people create, share, and integrate knowledge. The main idea is that knowledge can be purposefully managed in order to improve knowledge transfer, its re-use, adaptation to rapidly changing environments, and the creation of innovative new products and services. Module covers: (i) basic concepts of the nature of knowledge and its creation; (ii) organizational culture and learning organisations (iii) explicit and tacit knowledge as well as knowledge artifacts; (iv) technology and its role in knowledge creation, sharing, and management; (v) the information professional and ethical considerations.", + "title": "Knowledge Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SDM5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Systems engineering project management shows how generic project management concepts and methods are used in the context of the systems engineering process to realize techno-centric systems. The module also develops the need for plans to manage change in systems development projects.", + "title": "Systems Engineering Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SDM5004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Model-Based Systems Engineering (MBSE) is fast\nbecoming the industry standard for describing systems to\nsupport performance of key systems engineering tasks.\n\nThe module shows how a model-based view is fundamental to systems development. It describes the use of the four fundamental views of a system defined in SysML, for the purpose of performing SE tasks. It demonstrates how these views can be systematically developed using an MBSE methodology, and then used in requirements specification, architecting, trade-off analysis, testing and verification. The coverage also includes the transformation of SysML diagrams into executable models useful for systems-level analysis.", + "title": "Model-Based Systems Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SDM5010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Sdm Research Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SDM5990", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia is many things. Its past includes dinosaurs, ancient kingdoms and devastating wars, while its future is still being shaped. SE1101E explores this fascinating region in all its diversity historical, cultural, economic, aesthetic, political, religious, gendered, environmental, and more. The module focuses on human experiences in Southeast Asia and how Southeast Asians engage with global processes. Lectures cover topics that move between the region\u2019s murky past to the cyber spaces of a seemingly borderless future. It provides both an insightful introduction to the region and a foundation for future studies.", + "title": "The Lands Below the Winds: Southeast Asia in the World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0602", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0604", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Popular culture - in forms such as music, cinema and magazines - has been seen as a way for non-elite groups to make sense of their common experiences. In the modern era, these pop culture products have also been linked with mass-production and standardised, commercialised commodities which work to entertain and distract. However, more recent scholarship has seen popular culture as a possible means of contesting dominant ideologies. This module examines the debate by considering various forms of popular culture in Southeast Asia.", + "title": "Popular Culture in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the social and economic history of the Southeast Asian region. It introduces the study of social and economic change over 2,000 years, the academic perspectives useful in that study, and the value of that study in understanding modern Southeast Asia. It examines precolonial society and its relationship to art, political, and economic activity; Southeast Asians\u2019 responses to the challenges and opportunities of the region\u2019s exposure to external influences, including China, India, Islam and Europe; heritage preservation and rchaeological research; and current developments, particularly the growth of tourism as a major industry.", + "title": "Southeast Asian Social History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Are Southeast Asian urban models unique from those of the West? This module uses historical and emerging developments to re-evaluate debates on Southeast Asian urbanisation. The particularities of Southeast Asian urbanisation will be examined both in terms of its intertwined history with the rest of the world as well as the politics of time and space. The module aims at developing a critical understanding of the interaction between historical, political-economic, and cultural processes that constitute urbanization in Southeast Asia.", + "title": "Cities and Urban Life in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover a wide range of issues concerning the causes, processes, obstacles and consequences of democratic transition in the Philippines, Thailand and Indonesia - three of the largest and the most populous countries of Southeast Asia. The specific issues to be covered include economic growth and stagnation, the middle class, capitalist rule, rural politics, political parties, military coups, corruption, electoral violence, gangsters, social movements, street protests, the monarchy, communal conflicts and female politicians.", + "title": "Democratisation in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0311", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Does Southeast Asian art have its own aesthetic character? Southeast Asia has evolved many distinctive local art forms in such media as textiles, metal, and stone sculpture. For over 2,000 years Southeast Asian artists have explored numerous sources of inspiration: their local environments, their national culture and political situation, changes instigated by politics, technology and the economy, link to other parts of Asia, and the global art community. This module will explore both the unique features of the individual works of art and the influences of various external forces which the artists experience and express.", + "title": "Arts of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The recent strengthening of the U.S. military presence in Southeast Asia is better understood in comparative, historical perspective. This module identifies and compares a number of periods in the past when a powerful imperial force succeeded in dominating parts, if not all, of the region. This module seeks to identify the attributes of imperial domination in Southeast Asia, how it establishes itself and deals with resistance, how it maintains itself through attraction and coercion, and eventually declines. The choice of specific topics will vary in relation to available expertise.", + "title": "War and Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Southeast Asian economies and the region as a whole have experienced a significant change in their economic landscapes in terms of high growth rates, rising income levels, improvement in the. standards of living, and the changing structures of production and trade. What accounts for this\ntransformation? We seek to answer this question by examining the experiences and problems of the various Southeast Asian economies in the context of the leading development models and policies that they have pursued in promoting and developing their domestic sectors (agriculture, manufacturing and services) and external sectors (trade, foreign capital and regionalism).", + "title": "Changing Economic Landscape of SE Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2218", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How do we understand culture, power and society in Southeast Asia? This module introduces students to debates on culture and power in Southeast Asia with the aim of inculcating comparative and critical reflections on cultural formations in the region. Both classical and contemporary studies of Southeast Asian cultures will be examined in order to better identify central issues around Southeast Asian cultural transformations as well as newer theoretical understandings on the relationship between power, culture, and history.", + "title": "Culture and Power in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the variety of music in Southeast Asia, from traditional to pop, and contributes to students' understanding of the region. Lectures with audiovisual illustrations, which will emphasize cultural and contextual approaches, will be complemented by practical instruction in playing Javanese gamelan music. We will study the different musical aesthetics, changing cultural and social contexts and functions (from village and palace rituals to arts academies, the cassette industry, and concerts), musical and cultural interaction, and the changing musical ?landscape? of Southeast Asia. The course is appropriate both for students interested in Southeast Asian culture, and anyone who likes music.", + "title": "Old and New Music in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0201", + "day": "Monday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the transformations of ethnic, religious, national and regional identities in Southeast Asia across time as seen from a variety of perspectives. Students will have the opportunity to learn about:the region's archaeology, seafaring trade and the meanings of its ancient monuments; the major religions of Buddhism, Isam, Christianity and \"Animism\" and how they figured in movements for change since the 19th century, the modern manamgent of cultural resources and the impact of tourism; and recent anthropological studies with attention on new themes and the ways Southeast Asian societies are understood from the region itself.", + "title": "Southeast Asia in Context", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces different approaches to studying the region, with the aim of developing students\u2019 independent research skills. It covers issues such as identifying a research question, the role of theory in research, and selecting an appropriate research design. By looking at a range of exemplary works in Southeast Asian studies as well as explicit methodological discussions, students will gain understanding of theoretical debates and practical issues related to doing research in Southeast Asian\nStudies.", + "title": "Doing Research In Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to classical Southeast Asian dance with a particular emphasis on masked dance traditions. Drawing on an analysis of scholarly texts, videos and hands on sessions the module takes students on an exciting theatrical journey through Southeast Asia. Students enrolled in the class will be taught how to appreciate classical dance traditions in the region from a variety of angles, such as dramaturgical principles, music, aesthetics, ritual\nsignificance and change. They will also learn to perform and create compositions in a Southeast Asian dance form.", + "title": "Unmasked! An Introduction to Traditional Dance in SEA", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From the betel popular across the region for millenia, to colonial opium regimes, to Bangkok\u2019s Soi Cowboy, vice has always been a part of life in Southeast Asia. In this module, students investigate the economic, political, social, ecological, and cultural significance of a variety of substances and activities, from drugs like opium, alcohol and caffeine, to activities like paid sex and gambling. Students use a range of texts, including scholarly articles, memoirs, movies, and first\u2010hand observation to investigate the ways illicit substances and behaviors are deeply imbricated in everyday life in Southeast Asia.", + "title": "Forbidden Pleasures: Vice in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0302", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces undergraduates to the culture and history of the Muslim ethnic minority groups collectively known as the Moro peoples of the Philippines. The syllabus exposes students to a variety of perspectives on Moro peoples \u2013 including but not limited to history, culture, politics, economics, identity, literature, and religion. It explores insights of both indigenous writers and foreign observers, scrutinizing each of these writings against wider developments in the scholarship and politics of Moro identity and, to a\nlimited extent, Islam in the Philippines and Malay Studies. The module covers different aspects of Moro life in the past and the present.", + "title": "Moro Peoples of the Philippines", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide a historical introduction to Southeast Asian gardens, describe their situation and plan, and explore their aesthetic value (gardens as\nplaces of pleasure). Their philosophical significance (garden, microcosm, place of meditation) is equally important but less well known. Artificial gardens have existed in Southeast Asia (Sumatra, Java, Bali, Vietnam, Myanmar) since the seventh century. They contain Chinese and Indian influences, but exemplify a Southeast Asian view of the universe in microcosm. Gardens are a significant but overlooked medium of Southeast Asian symbolic representation. Persian,\nIndian, Chinese, and Japanese gardens will be invoked to provide context.", + "title": "Southeast Asian Gardens: History and Symbolism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to the rich intellectual heritage that has led to the development of Southeast Asian Studies as a distinct field of\nscholarly inquiry. We shall explore the critical debates, seminal texts and theoretical currents within the field in determining how different scholars have engaged with and conceptualized the region. We shall also consider the epistemological challenges of carrying out research in the region, and how Southeast Asians themselves have contributed new voices towards the\nevolution of the field.", + "title": "Southeast Asia as a Field of Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the making of modern Southeast Asia from the late colonial era through the Cold War through fiction and film. Fiction and films provide a means to access political history in an engaging way and for what they reveal about how outsiders as well as Southeast Asians themselves came to view the region. The module covers Southeast Asia integration into the global capitalist economy, national awakenings, colonial anxieties in the 1930s, World War II and the Japanese occupation, the Cold War and neocolonialism, the Vietnam War, and the promise of modernity.", + "title": "Modern Southeast Asia Through Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2230", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This Independent Study Module is specially designed for the Semester-in-SEA programme at the SEASP in order to enable the student to explore an approved topic in Southeast Asian Studies. \n\nWe seek to develop three skills that could only be most fruitfully realised in a fieldwork context away from the campus environment. These are namely: the ability to conduct fieldwork; utilising a Southeast Asian language for academic study; and first-hand engagement with research methodological issues. Beyond the ability of writing a logical essay learnt in campus, the student will develop in-depth academic research capabilities.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2660", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in Southeast Asian Studies. The topic to be covered will depend on the interest and expertise of regular or visiting staff member in the department.", + "title": "Topics in Southeast Asian Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia is characterised by great ethnolinguistic and cultural variation. How can we make sense of and appreciate this diversity? What is an insiders and outsiders perspective? This course will introduce students to the region from an anthropological perspective. Students will be equipped with the analytical tools for the comparative study of society and culture. Ethnographic materials will be used to discuss themes that include ethnicity, identity, family and kinship systems, gender, economy, and social change. The challenge is for students to explore, conceptualise, and understand differences and similarities between social systems and human relationships, and to ask, Why?", + "title": "Southeast Asia's Cultural Mosaic", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE2880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module explores in depth a particular Southeast Asian art (visual or performing arts, music, or literature).The specific focus of the module varies (to be announced). Students are introduced to theoretical approaches relevant to the topic, in the context of larger theoretical frameworks (historical, anthropological, etc.) of the study of Southeast Asian arts; and they have a chance to experience the art directly by studying the basics of the artistic practice (e.g., learning to paint, play music, dance). The module emphasizes both an in-depth study of the art and the relevance of such study for broader understanding of Southeast Asia.", + "title": "Studies in Southeast Asian Arts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Religion is a field of meanings that informs individual people's lives and also underpins social and political identities. While religions in Southeast Asia can be harnessed towards state construction or consolidation, they can also be embraced in ways that escape official control. In the past, religion has enabled people, through their local cults, religious schools, or social movements, to cope with daily existence or even voice their discontent. This module takes a comparative perspective and highlights the theoretical and practical problems related to this field of study.", + "title": "Religion, Society & Politics in SE Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0205", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides critical knowledge of the historical, natural, political and socio-cultural \u2018work\u2019 underlying the making, management and marketing of heritage(scapes) in Southeast Asia. It begins by focusing on relevant concepts, before considering the contemporary material, symbolic and social uses and impacts of heritage(scapes) within the region. It offers a broad overview of how (spatial) practices, ideas, policies and technologies have been mobilised for multiple purposes, and discusses issues that emerge when planning for, and promoting, this heritage for diverse populations. Ultimately, heritage(scapes) here are also conceptualised as veritable lens to understand and further enhance Southeast Asian societies today.", + "title": "Heritage and Heritagescapes in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to understand the complex trajectories, meanings, and outcomes of human mobility in Southeast Asia. The main topics of this module include migration patterns, now and in the past; diasporic, cosmopolitan, subaltern, and hybrid identities; the formation of racial and ethnic, political, and, cultural minorities; citizenship; refugee crises and large-scale human displacement. Readings and discussion will include both theoretical approaches to these topics as well as empirical case studies.", + "title": "Migration, Diaspora and Refugees in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Industrialisation involves the promotion and development of the industrial sector. Why have some countries industrialised faster than others? In particular, the manufacturing industries in some countries have remained backward and depended heavily on the use of labour while in other countries, they have become more advanced and relied more on the use of capital. This module discusses the theory and concepts that relate to industrialisation. It also investigates the industrial experiences of other countries and the lessons from them. Focus will be on Singapore, and how it compares with other SE Asian countries.", + "title": "Industrialising Singapore and SE Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main countries of island Southeast Asia are Indonesia, Malaysia, the Philippines and Singapore. This module examines one or two of these countries for indepth study, providing a multi-stranded approach to different facets of contemporary life in that country. The module will investigate a variety of themes, such as local democracy, military power, religion, ethnic identities and conflicts, justice and reconciliation, popular culture, music and food. Each theme is integrated, with the aim of developing a more comprehensive understanding of the country in question.", + "title": "Country Studies: Island Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The countries of Mainland Southeast Asia are Myanmar, Thailand, Laos, Vietnam and Cambodia. This module examines one or a group of these countries for an in-depth study, providing a multi-disciplinary approach to different facets of contemporary life in these countries. The module will place emphasis on a variety of themes, such as history of decolonization and the Cold War, military power, political change, peasantry, environment, economic reforms, ethnicity and nationalism, historiography, gender and religion. Each theme is integrated, with the aim of developing a more comprehensive understanding of these countries.", + "title": "Country Studies: Mainland Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will give you a chance to learn to play traditional music from one Southeast Asian country, to understand how the music works, and how music functions in society and reflects cultural values, specifically in the one country. While the first-hand experience of playing ensemble music is an important part of this module, no musical background is required all you need is a positive attitude. Discussions (with audiovisual illustrations) and readings will help you to understand the workings of the music and the historical, cultural and social setting, with an emphasis on understanding music in and as culture.", + "title": "Traditional Music in a SE Asian Country", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What are the experiences of men and women during the pre-colonial, colonial and contemporary eras in Southeast Asia? How are gender identities and roles constructed? How do the interplays between local cultures, class, ethnicity, economy, politics and religion affect power relations between men and women in both the private and public spheres? Using interdisciplinary approaches, this module will examine these questions via recent literature, ethnographic studies, life histories, films and other audio-visual documentaries concerning men and women in different parts of the Southeast Asian region.", + "title": "Gender in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0107", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the art of Thai painting and drawing through an analysis of both scholarly texts and hands\u2010on sessions. The module takes students on a visual journey through all the major periods of Thai classical art. Emphasis will also be placed on regional and folk styles of painting as well as with new forms of traditional art. The module focuses primarily on the Rama 3 style of Thai painting as developed in nineteenth century Bangkok and which has become the most common form of Thai classical art seen in the country today. Students enrolled in the class will be taught not only how to appreciate traditional Thai painting but also how to draw, create compositions and critique art works.", + "title": "Thai Drawing and Painting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this class, students are introduced to the history and ethnography of work in Southeast Asia. The class focuses on a particular country in the region depending on the instructor. Students read texts that explore the social, political, economic, cultural, and technological forces that have shaped work in the region since the 1800s. At the same time, students are introduced to the practices of ethnographic fieldwork, including observing, interviewing, writing, and editing. Students also read critically ethnographies of work from the region and the world. Students then apply these practices and insights through field research projects.", + "title": "Hard at work: the changing face of labour in SEA", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For 2000 years, Southeast Asia has been an important crossroad of world maritime trade, but the study of maritime history and culture have not been well\ndeveloped on a regional level. The study of maritime culture in Southeast Asia requires integration of data from numerous disciplines including archaeology,\nhistory, economics, engineering, and ecology, to name some of the most significant. Singapore\u2019s prosperity depends to a major extent on its port, yet students do not appreciate its importance. This module will explore commercial and cultural links between the Arabo\u2010Persian region, India, Southeast Asia, and China over the past two millennia.", + "title": "Maritime History and Culture of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module takes students from the origins of revolutionary anticolonial movements in Vietnam, Cambodia and Laos in the 1920s, through the years of\nwar in the 1940s, 50s, 60s and 70s to their legacies in today\u2019s diasporic communities. In addition to a core text, students will read a variety of first\u2010person\naccounts written by anyone from revolutionary leaders to foot soldiers to children to doctors to Buddhist monks.\u00a0\u00a0The objective is to see the wars from multiple\nperspectives and to investigate how first\u2010person accounts may complement, complicate, or even contest orthodox narratives of revolution and war.", + "title": "The Universe Unraveling: Narratives of War in Indochina", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This class introduces students to classical theatre in Bali, Indonesia. Bali is an island well\u2010known for its varied theatrical genres from sacred trance s\u00e9ances to masked dances that tell stories from Balinese history. In this class, students will learn not only the various theatrical forms on the island but also their history, ritual and social roles and transformations. Emphasis is placed on the classical genres of gambuh and topeng and students will learn how to stage a performance as Balinese actors do.", + "title": "Seen and Unseen: Explorations in Balinese Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through a critical reading of European fiction set in Southeast Asia, students will gain a richer understanding of the region in the colonial period, as\nwell as European experiences and images of Southeast Asia. The module will also reflect on the medium of fiction \u2013 is there something that one can express better through fiction than through academic writing? How do the conventions of academic writing limit what is thought and said? As part of the assessment, students will write short stories. In addition to fiction, we will examine paintings, photographs and watch movies.", + "title": "Colonial Southeast Asia Through European Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asians have been fascinated with the idea of death and dying for centuries. In fact, almost all Southeast Asian cultures and communities have developed highly intricate and complex ideas, ceremonies and rituals for all activities associated with death and dying. This module enables students to understand and demystify the topic of death and dying in Southeast Asia from a multidisciplinary perspective. It looks into how various communities, medical institutions, commercial enterprises and religious groups in the region cope and understand death and dying in order to further understand Southeast Asia, one of the most complex regions in the world.", + "title": "Death and Dying in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3232", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0119", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the study of martial arts in Southeast Asia from an academic and experiential perspective. Students analyse journal articles, books and materials from the social media in order to understand how various social, political, economic and historical forces impacted on the production and performance of martial arts in the region. Student\u2019s learning will be complemented with hands-on sessions that further their understanding of complex historical, sociological and cultural dimensions of various combat genres. Student assignments such as essays and group video projects will reveal new ways in how Southeast Asia can be understood from multi-disciplinary perspectives.", + "title": "Martial Arts in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "At the heart of this module is a sailing voyage. We will\nvisit coastal/island communities, explore marine\nenvironment, and experience life at sea and on remote\nislands. During that time, as well as at pre- and postvoyage\nseminars, we will reflect on diverse but interrelated\nissues in historical and contemporary\nperspectives: the roles of the sea and boats in\nSoutheast Asia; archipelagic spaces and nations; \u201csea\npeople\u201d and territory; colonialism; piracy; interrelation\nbetween people and natural environment; ships and\nthe sea in myths, narratives, and visual culture;\nseafaring as a method of understanding Southeast Asia,\nand so on.", + "title": "Sea, Islands, Vessels: A Voyage of Exploration", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does politics affect economic outcomes and how does the economy influence political outcomes in Southeast Asia? This module explores these questions from the height of the Cold War in the 1960s until the present. Students will be introduced to different approaches to the study of political economy. We will pay particular attention to regional differences within countries \u2013 including resource endowments, social structures, economic policies and investment, labor and migration.", + "title": "Southeast Asia Laboratory: Power and Markets", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length and take place within organisations or companies located in Singapore or Southeast Asian countries. Internships with organisations or companies in Southeast Asian countries will occur during the semester-in-SEA programme at the SEASP. \n\nAll internships are vetted and approved by the SEASP, have relevance to the major in Southeast Asian Studies, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the department.", + "title": "Southeast Asian Studies Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3550", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student\u2019s Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Southeast Asian Studies department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Southeast Asian Studies department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3551", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3551R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This Independent Study Module is specially designed for the Semester-in-SEA programme at the SEASP in order to enable the student to explore an approved topic in Southeast Asian Studies. \n\nWe seek to develop three skills that could only be most fruitfully realised in a fieldwork context away from the campus environment. These are: the ability to conduct fieldwork; utilising a Southeast Asian language for academic study; and first-hand engagement with research methodological issues. \n\nThe student is expected to develop more reflexive research capacity and present a seminar at the end of the course.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3660", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "SE3711", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Department exchange module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "SE3712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in Southeast Asian Studies. The topic to be covered will depend on the interest and expertise of regular or visiting staff member in the department.", + "title": "Topics in Southeast Asian Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the student to the study of martial arts in Southeast Asia. Southeast Asian martial arts are products of hundreds of years of cultural\nexchange and historical interaction with various civilizations. This module offers students an exciting opportunity to experience and learn a variety of forms of Southeast Asian martial arts. Students enrolled in the module will also experience the exciting physical and cultural practices that are essential in the learning of the martial arts through hands on sessions.", + "title": "Martial Arts in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE3880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module prepares Honours students for their thesis exercise, particularly in the choice of analytical framework and appropriate research design. Students are introduced to various ideas about 'theory' and 'practice' in research on Southeast Asia. Different disciplinary approaches are compared and evaluated in terms of the way they formulate research questions, conceptualise research design and measure evidence. Attention will also be paid to modes of writing and representation adopted in texts under study. Seminar discussions are aimed at helping students think critically about the suitability of various approaches to their own research interests.", + "title": "Southeast Asia Studies: Theory and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module enables students to use language as a research tool. They will learn about the importance of Southeast Asian languages as primary sources for\nresearch, explore issues in translation and reflect on research methodologies involved in using foreign languages. Students may use different languages they\nknow to explore issues studied in this module.", + "title": "Southeast Asian Languages as Research Tools", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Historical sources (writing) and archaeology (material culture) give very different perspectives on the development of civilisations. This module follows the development of classical civilisations in Southeast Asia from the first to the 16th centuries A.D. Data from archaeological excavations are utilised to create a picture of the achievements of early historic peoples of the region in such areas as the formation of kingdoms and cities; trade; architecture; and warfare. Relations with China and India are also analysed.", + "title": "Ancient Kingdoms of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Aristocrats, bureaucrats and tycoons are just some of the different players that have occupied elite positions in Southeast Asian societies. This module looks at these and other elite groups in terms of the roles they have played and how they have acquired, maintained or lost elite status. Why, for example, is the military an elite group in some countries but not others? Do wealthy people inevitably hold political power? The module also investigates the effects of various types of elite rule on politics, economic growth and social justice.", + "title": "Elites of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia has been linked to the rest of the world through various channels: historically through colonisation, geographically by land, water and air, economically through trade, financial capital, technology and foreign aid, politically through regional and international organisations, and culturally through human mobility. This module examines these linkages and the various factors that have influenced them particularly in terms of the national, regional and international policies.", + "title": "Southeast Asia in the Global Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the relations between majorities and minorities in Southeast Asia. It aims are to understand how the relationships between the state and its peoples of different ethnicity and between the majority and the minority have brought about historical development and change, politically and economically, in the region. Discussions include the historical background of these peoples, their legends and myths of origins, cultures, relationships among ethnic groups and their perceptions of themselves and others, economic life and trade, migration, colonialism, the rise of the nation-state and its impacts on multi-ethnic societies.", + "title": "Majorities and Minorities in SE Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended to enable students to pursue in-depth readings on a topic which is relevant to the mission of the Department of Southeast Asian Studies but is not covered in the normal curriculum. It enables students to delve into a particular highly-specialized topic and engage critically in the relevant theoretical concepts that inform it. The students are responsible for defining their own research topic and composing a detailed bibliography in relation to the selected topic. Assessment for this module is primarily through seminar participation and/or project work.", + "title": "Special Studies on Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module draws on insights from postcolonial criticism - a genre of writing that examines colonial practices, particularly, it exclusionary discourses and ambivalent interpretations - to rethink social categories and identities that constitute the political imaginings of postcolonial Southeast Asia. It explores how colonialist categories and knowledges on race, ethnicity, class, gender, culture/tradition and space return, in active forms, in the present, and how such \"\"survivals\"\" can be studied both historically and theoretically to reveal the connections between the political imaginings of the colonial and the postcolonial. It aims to: firstly, shed light on the politico-theoretical difficulties in the production of counter knowledges and counter histories in contemporary Southeast Asia; and secondly, unsettle conversations on the East-West divide by demonstrating the centrality of colonialism/postcolonialism in the making of the modern condition not only in the postcolonies but also in the metropole.", + "title": "Southeast Asian Postcolonialism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students of history usually mine Western accounts of Southeast Asia for the facts that they may contain, assuming that such texts are simply a means of accessing a vaguely apprehended reality \"out there\". This module examines the ways in which writers located themselves vis a vis the region; the kinds of images, themes and motifs they used to describe it; the ideas and doctrines that informed them; the institutions and other works they affiliated their writings with; and the power over the societies of the region that arose from their enterprise. Modern scholarship has largely inherited Orientalist ways of looking at Southeast Asia. What are the alternatives?", + "title": "Knowledge, Power and Colonialism in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As Southeast Asian states achieved independence, new pressures reached the region. Between the late 1940s and the early 1980s, Southeast Asia represented an arena of competition between the communist and capitalist worlds. This competition took many forms: diplomatic, political, military, economic, ideological, and cultural. Some Southeast Asians took sides, for reasons ranging from the idealistic to the mercenary. Some Southeast Asian states became battle-grounds. For all the region's societies, the political and diplomatic history, journalism and student life, social and intellectual change, and fiction and film of the Cold War era reflected a process of reconciling international and local forces.", + "title": "The Cold War in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with both methodological and theoretical guidance for doing critical ethnography in Southeast Asia. Students will systematically learn about the fundamentals of practising ethnography in Southeast Asia and consider philosophical\u2010theoretical, disciplinary and ethical issues underpinning each stage of the ethnographic process.Different forms of ethnographic texts on Southeast Asia (including films) will be introduced and students will learn how to critically evaluate ethnographies. Students will have the opportunity to directly apply what they learn to their own research projects.", + "title": "Doing Ethnography in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a critical study of various theories and practices of nationalism in Southeast Asia from an interdisciplinary perspective. What is the relationship between colonialism and the development of national attachments and nationalist politics? What roles have ethnicity and religion played in the emergence of national and state identities in Southeast Asia? Students\nwill address these questions and examine the rise of nationalism as a leading political principle and the fate of the nation\u2010state in an increasingly globalized and\nglobalizing world.", + "title": "Nationalism in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the study of protest and contentious politics in Southeast Asia. The module will cover different theoretical approaches\n(behavioralism, Marxism, resource mobilization, political process, new social movements) as well as key analytical concepts (political opportunity structure, framing, social movement organizations, and transnational contention).\nCase studies, drawn from the late colonial and postcolonial periods, will examine individual social groups/sectors and major cycles of protest in the region\n(the Philippines in 1986 and 2001, Burma in 1988 and 2007, Indonesia and Malaysia in 1998, and Thailand in 1973, 1992, and 2006\u20108).", + "title": "Contentious Politics in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students are required to conduct research on a Southeast Asian topic under the supervision of a member of staff. Topics will be chosen by students in consultation with staff. The length of the honours thesis should not exceed 12,000 words. The honours thesis is equivalent to three modules.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "SE4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Important contributions to the study of Southeast Asia in fields as diverse as archaeology and history, ethnography and anthropology, economics and political economy, and sociology and geography are surveyed in this module. It seeks both to familiarize students with the contributions of these disciplines to various contemporary and historical understandings of the region and with the assumptions and interests inherent in those understandings. The module is required of all Master's (coursework and research) students in their first year of enrolment.", + "title": "Approaches to the Study of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5151", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Important contributions to the study of Southeast Asia in fields as diverse as archaeology and history, ethnography and anthropology, economics and political economy, and sociology and geography are surveyed in this module. It seeks both to familiarize students with the contributions of these disciplines to various contemporary and historical understandings of the region and with the assumptions and interests inherent in those understandings. The module is required of all Master's (coursework and research) students in their first year of enrolment.", + "title": "Approaches to the Study of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5151R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a dedicated research module for MA coursework students designed to enable them to complete a research\u2010based thesis.", + "title": "Supervised Research Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SE5201", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Adopting a regional perspective, this module will focus on economic and social developments within Southeast Asia between 1750 and 1950. In addition to examining topics such as the production of export commodities and trade, the module will assess the social and cultural impact of economic changes that have taken place during the 19th and 20th centuries.", + "title": "Socio Economic History of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Adopting a regional perspective, this module will focus on economic and social developments within Southeast Asia between 1750 and 1950. In addition to examining topics such as the production of export commodities and trade, the module will assess the social and cultural impact of economic changes that have taken place during the 19th and 20th centuries.", + "title": "Socio Economic History of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5211R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the causes, processes and outcomes of the conflicts that have occurred in Southeast Asia. Consideration will also be given to the role of ideology and leadership. The module will attempt to cover as much ground as possible but emphasis will be placed on the major attempts at revolt and revolution.", + "title": "Revolt and Revolution in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the causes, processes and outcomes of the conflicts that have occurred in Southeast Asia. Consideration will also be given to the role of ideology and leadership. The module will attempt to cover as much ground as possible but emphasis will be placed on the major attempts at revolt and revolution.", + "title": "Revolt and Revolution in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5213R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Technopolitics refers to the strategic practice of designing or using technology for political goals. However, even as the design of technological artifacts and systems may reflect a variety of interests, the material and cultural power of artifacts and systems often exceeds or escapes those intentions making for a complex and \nuncertain social landscape. This module offers an overview of technopolitical interactions in Southeast Asia and a vision of Southeast Asia as a technological society. Issues to be covered include technological nationalism, development as technique, infrastructure, risk, climate change, the digital revolution, and bio-security.", + "title": "Technopolitics in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Technopolitics refers to the strategic practice of designing or using technology for political goals. However, even as the design of technological artifacts and systems may reflect a variety of interests, the material and cultural power of artifacts and systems often exceeds or escapes those intentions making for a complex and uncertain social landscape. This module offers an overview of technopolitical interactions in Southeast Asia and a vision of Southeast Asia as a technological society. Issues to be covered include technological nationalism, development as technique, infrastructure, risk, climate change, the digital revolution, and bio-security.", + "title": "Technopolitics in Southeast As", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5219R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an overview of the diversity of peoples and places in Southeast Asia, with the aim of examining its regional identity. It is grounded conceptually in the notion of \u201clandscape\u201d, situated across multiple scales of reality from the local to the global. Empirically, aspects of material and on-material cultures and dimensions of Southeast Asia will be discussed, including the economy, religion, environment and politics. The potential and limits of \u201clandscape geography\u201d in critically understanding Southeast Asia will also be assessed.", + "title": "Landscapes of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an overview of the diversity of peoples and places in Southeast Asia, with the aim of examining its regional identity. It is grounded conceptually in the notion of \u201clandscape\u201d, situated across multiple scales of reality from the local to the global. Empirically, aspects of material and non-material cultures and dimensions of Southeast Asia will be discussed, including the economy, religion, environment and politics. The potential and limits of \u201clandscape geography\u201d in critically understanding Southeast Asia will also be assessed.", + "title": "Landscapes of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5221R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the various forms of visual and performing arts in contemporary Southeast Asia in their contexts. While the different art practices, notions, institutions, and art worlds discussed in the module may be labelled traditional, tribal, modern, or contemporary, none of these terms fully expresses how each artistic phenomenon continues the artistic/cultural history of the region and at the same time is part of the contemporary artistic, cultural, and social landscape. The module explores these and other issues through studying specific cases. The focus is on the present, but historical background will important to understanding the current situation.", + "title": "The Arts in Contemporary Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the various forms of visual and performing arts in contemporary Southeast Asia in their contexts. While the different art practices, notions, institutions, and art worlds discussed in the module may be labelled traditional, tribal, modern, or contemporary, none of these terms fully expresses how each artistic phenomenon continues the artistic/cultural history of the region and at the same time is part of the contemporary artistic, cultural, and social landscape. The module explores these and other issues through studying specific cases. The focus is on the present, but historical background will important to understanding the current situation.", + "title": "The Arts in Contemporary Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5222R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia is located at the historical crossroads of world religious traditions. From its premodern and modern colonial pasts to postcolonial and \u2018globalization\u2019 times, various religions have continued to shape the region\u2019s cultural, economic, and political outlooks. The module explores religion - especially major world religions such as Buddhism, Christianity, Hinduism, and Islam- as a major venue to understand past and present of Southeast Asian societies. Its coverage deals with how and why religious traditions have persisted and continued to interact with changing societies across the region. It will focus on major religious traditions or a combination of many religions or common religious characteristics found across Southeast Asian countries.", + "title": "Religion and Society in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia is located at the historical crossroads of world religious traditions. From its premodern and modern colonial pasts to postcolonial and \u2018globalization\u2019 times, various religions have continued to shape the region\u2019s cultural, economic, and political outlooks. The module explores religion - especially major world religions such as Buddhism, Christianity, Hinduism, and Islam- as a major venue to understand past and present of Southeast Asian societies. Its coverage deals with how and why religious traditions have persisted and continued to interact with changing societies across the region. It will focus on major religious traditions or a combination of many religions or common religious characteristics found across Southeast Asian countries.", + "title": "Religion and Society in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5224R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Race and Ethnicity in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Race and Ethnicity in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5226R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks at the relationship between culture, society and politics in Southeast Asia from an anthropological perspective. It highlights the main shifts in anthropological approaches to culture and society that have emerged with the newer understandings about power and history in social sciences. In particular, it examines changes within the interpretive perspective - a perspective most closely associated with Clifford Geertz, a celebratory figure in Southeast Asian anthropology ? to bring out the problems in the anthropological construction, interpretation and representation of culture to enable a more critical conceptualization of culture and society in Southeast Asia.", + "title": "Anthropological Approaches to Se Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Anthropological Approaches to SE Asia", + "title": "Anthropological Approaches to SE Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5229R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Southeast Asia and Regionalism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Southeast Asia and Regionalism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5232R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module reviews the economic development experiences of Southeast Asian economies in the post-second World War years in order to provide a broad picture of the transformation that have characterised these economies from low-income to medium- and high-income levels, and from agricultural, agrarian-based societies to manufacturing- and/or services-oriented economies. This module focuses on three aspects; namely, (a) the growth and development of Southeast Asian economies including their determinants, (b) an analysis of the different models of development including their relevance to Southeast Asian economies, with special attention paid to the importance of policy reforms, and (c) the various economic crises that have affected the Southeast Asian economies including their causes, consequences, policy responses and implications.", + "title": "Economies of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Economies of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5233R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Infrastructures enable and constrain the movement\nof people, goods, information and values across wide\nswaths of space and time. This module examines the\ndynamic interplay between infrastructures and\nmobilities across shifting historical and geographic\nsettings in Southeast Asia. First, we survey influential\napproaches to the study of infrastructures, examining\nhow they mediate and shape movement, mobilities\nand everyday modes of communication. We then\nexplore these issues with reference to historical and\ncontemporary case studies throughout Southeast\nAsia.", + "title": "Infrastructures and Mobilities in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides detailed studies of Cambodia, Laos, Myanmar and/or Vietnam, including their societies, history, politics, relations with each other and the rest of the world. The focus will vary, depending on staff expertise, student interest and contemporary developments.", + "title": "Country Studies: Mainland Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Country Studies: Mainland Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5241R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to study contemporary and recent economic, social and political trends in Thailand. In doing so, it will draw upon models and interpretations of Thai socio-economic and power structures which have been developed by political scientists and anthropologists. Topics for study will include the role of key institutions and interest groups - the monarchy, Buddhist Sangha, bureaucracy and military, political parties and the new middle class.", + "title": "Country Studies: Thailand", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Country Studies: Thailand", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5242R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines political and social life in modern Indonesia. The first section, covering the period from 1900 until 1965, examines the nature of the colonial state and the rise of nationalism, societal divisions and revolution, the reasons for the failure of parliamentary democracy and the horrific violence\nagainst the Communist Party in 1965-1968. The second section explores the nature of Suharto\u2019s New Order (1965-1998), the role of the military, regional rebellions, gender relations, and civil society. The third section considers the transition from authoritarian rule, electoral politics and decentralization,\nethnic and religious violence, and current struggles over the past.", + "title": "Country Studies: Indonesia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines political and social life in modern Indonesia. The first section, covering the period from 1900 until 1965, examines the nature of the colonial state and the rise of nationalism, societal divisions and revolution, the reasons for the failure of parliamentary democracy and the horrific violence\nagainst the Communist Party in 1965-1968. The second section explores the nature of Suharto\u2019s New Order (1965-1998), the role of the military, regional rebellions, gender relations, and civil society. The third section considers the transition from authoritarian rule, electoral politics and decentralization,\nethnic and religious violence, and current struggles over the past.", + "title": "Country Studies: Indonesia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5243R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Country Studies: The Philippines", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Country Studies: The Philippines", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5244R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a multi-stranded approach to understand major political, economic and sociocultural transformations in contemporary Malaysia. The module will investigate into issues relevant to Malaysian societal transformations such as ethnoreligious politicisation, consociational politics, developmentalism, money-politics, Islamism, cultural fragmentation, political feminism, \u201ccaptured\u201d civil society, and so on. Each them will be explored with the aim of developing\n\nintegrated and comprehensive understanding of modern Malaysia.", + "title": "Country Studies: Malaysia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Country Studies: Malaysia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5245R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers and in-depth and focused study of the socio-economic, political and cultural life of Burma- Myanmar. It will facilitate understanding of how historical, political and socio-cultural transformations in Myanmar, normally studied in disciplinary terms, are interconnected. Issues will be explored with the aim of developing integrated and critical perspectives on the various problems faced by the Myanmar state and its people.", + "title": "Country Studies: Myanmar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers and in-depth and focused study of the socio-economic, political and cultural life of Burma- Myanmar. It will facilitate understanding of how historical, political and socio-cultural transformations in Myanmar, normally studied in disciplinary terms, are interconnected. Issues will be explored with the aim of developing integrated and critical perspectives on the various problems faced by the Myanmar state and its people.", + "title": "Country Studies: Myanmar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5246R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Vietnam is a country of apparent contradictions, where a ruling Communist party espouses freemarket economics, a young and optimistic population traces its origins back more than 4000 years, and a sustained engagement with China coexists with a fierce commitment to national independence. This module makes sense of some of these contradictions by exploring key issues in Vietnam\u2019s past and present such as imperialism, nationalism, regionalism, Confucianism, colonial rule, war, Communism, economic reform, and the environment.", + "title": "Country Studies: Vietnam", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Vietnam is a country of apparent contradictions, where a ruling Communist party espouses freemarket economics, a young and optimistic population traces its origins back more than 4000 years, and a sustained engagement with China coexists with a fierce commitment to national independence. This module makes sense of some of these contradictions by exploring key issues in Vietnam\u2019s past and present such as imperialism, nationalism, regionalism, Confucianism, colonial rule, war, Communism, economic reform, and the environment.", + "title": "Country Studies: Vietnam", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5247R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Rapidly changing political and economic factors are creating a number of different sets of problems and opportunities for the preservation and protection of cultural resources in Southeast Asia. In this module, students will compare the policies of different Southeast Asian countries as well as relevant neighbouring regions. The varying emphases placed on different components of the policy mix (museums, historic preservation, development and marketing) in different countries will be compared. Students will be required to devise suggested strategic plans for integrating heritage tourism into long-term preservation policies.", + "title": "Cultural Resource Management in Se Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5263", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Rapidly changing political and economic factors are creating a number of different sets of problems and opportunities for the preservation and protection of cultural resources in Southeast Asia. In this module, students will compare the policies of different Southeast Asian countries as well as relevant neighbouring regions. The varying emphases placed on different components of the policy mix (museums, historic preservation, development and marketing) in different countries will be compared. Students will be required to devise suggested strategic plans for integrating heritage tourism into long-term preservation policies.", + "title": "Cultural Resource Management in Se Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5263R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "New techniques of research and analysis regularly yield important new insights on the forebears of modern Southeast Asia. Research projects currently in progress focus on such topics as prehistoric human demography, relationships between humans and the environment, early urbanization, the development of monumental architecture, and maritime trade with neighbouring regions. This module surveys the most important recent discoveries of sites and artifacts, and the new perspectives on Southeast Asian cultures and societies which these finds have already revealed or are likely to open up in the near future.", + "title": "Archaeology and Art of Ancient Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "New techniques of research and analysis regularly yield important new insights on the forebears of modern Southeast Asia. Research projects currently in progress focus on such topics as prehistoric human demography, relationships between humans and the environment, early urbanization, the development of monumental architecture, and maritime trade with neighbouring regions. This module surveys the most important recent discoveries of sites and artifacts, and the new perspectives on Southeast Asian cultures and societies which these finds have already revealed or are likely to open up in the near future.", + "title": "Archaeology and Art of Ancient Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5264R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The growth and development that has taken place not only in the Southeast Asian region but also in the rest of the world is commonly viewed to have a negative impact on the environment in the region. Is it necessarily true? Are there positive effects as well? This module will evaluate the link between the developmental process and the environment including an analysis of the problems, the proposed solutions, and the actual policies implemented.The module provides not only a Southeast Asian perspective on the environmental and the developmental issues facing the region, but also a geographical outlook.", + "title": "The Politics of Environment in Se Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5294", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The growth and development that has taken place not only in the Southeast Asian region but also in the rest of the world is commonly viewed to have a negative impact on the environment in the region. Is it necessarily true? Are there positive effects as well? This module will evaluate the link between the developmental process and the environment including an analysis of the problems, the proposed solutions, and the actual policies implemented.The module provides not only a Southeast Asian perspective on the environmental and the developmental\nissues facing the region, but also a geographical outlook. This emphasises the sharing of natural areas and resources among nation-states and their peoples in Southeast Asia given the historical background of the region with its impact on national borders and the composition of both the population and society. The outcome on nature and society relations seen in Southeast Asia reflect conditions specific to the region and its geography. This module is aimed at understanding both these specific conditions and the wider as well as external factors that have an impact on environment in Southeast Asia.", + "title": "The Politics of Environment in Se Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SE5294R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Southeast Asian Studies in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. Head's and/or Graduate Coordinator's approval is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover specialized topics in Southeast Asian Studies. The topic(s) to be covered will depend on the interest and expertise of regular or visiting staff members.", + "title": "Topics in Southeast Asian Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers theoretical and comparative perspectives on contemporary Southeast Asian politics. It explores the specificities as well as transformations of government institutions, political parties, military institutions, electoral systems, interest groups, and civil society in Southeast Asia in the light of domestic, regional, and international forces and examines some of the theoretical and comparative challenges in analyzing contemporary political dynamics and configurations in the region.", + "title": "Studies in Southeast Asian Politics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE6214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What forms has the state taken in the Southeast Asian region? The module considers pre-colonial states and their ideological and material bases, the construction of colonial-style states in the nineteenth century, and the reshaping of those states during the late colonial era. It addresses efforts at nation-building and post-independence regime\ntypes in their Southeast variants. It introduces students to major works on Southeast Asian politics in critical perspective. The approach the module is comparative rather than chronological.", + "title": "Varieties of the State in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE6219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Approaches to Southeast Asian Arts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE6220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module examines issues of gender and sexuality in historical and contemporary Southeast Asia, and considers how key texts and theories in the field of gender and\nsexuality studies might be applied in the Southeast Asian context. It shows that categories of gender and sexuality have long been implicated in the formation of such\ndichotomous cultural paradigms as \u2018East\u2019 and \u2018West,\u2019 modern and traditional, and religious and secular that continues to serve as constitutive sources of power,\nidentity, and knowledge.", + "title": "Gender and Sexuality in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE6221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores ways of understanding the specificities and social realities of thought, action, and cultural subjectivities in Southeast Asia and how postcolonial approaches offer some answers but also pose further questions to the project of understanding local difference in Southeast Asia. It offers an introduction to major controversies in the study of local difference in Southeast Asia and explores their linkages as well as challenges to postcolonial premises, analytical concepts, and critical procedures.", + "title": "Postcolonialism in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE6227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for Ph.D students who seek to understand the similarities and differences between the economies of the Southeast Asian states. Emphasis is placed on the analysis of their growth and development experiences. The various domestic and external factors affecting the growth and development performances of these economies, non-economic factors included, are also covered. The module also examines the contemporary political and social issues affecting the economies of the region. An interdisciplinary attitude towards the study of economic development issues is encouraged.", + "title": "Economic Development Issues in Se Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE6233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This Independent Study Module offers an opportunity for students to develop and design their own special topics/contents pertinent to Southeast Asia\u2019s history, politics, economics, and culture. The emphasis is on critical reading and discussion of scholarship written and published in Southeast Asia\u2019s vernacular languages, e.g., Bahasa Indonesia, Burmese, Khmer, Laos, Malay, Tagalog,\nThai, and Vietnamese. It encourages students with advanced training or fieldwork experience to further engage critical and comparative scholarship from different perspectives.", + "title": "Special Readings in a SE Asian Language", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE6251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To understand the origin of Southeast Asian traditions requires a multidisciplinary approach including history, art history, and archaeology. This module will equip students to transcend gaps between various fields which share the goal of understanding the origins of modern Southeast Asian cultures and to make use of data from all of these fields in order to solve specific problems. Major topics covered include research priorities and methods of these fields, and exploration of methods to combine various kinds of data to create a holistic image of this region.", + "title": "Studies on Early Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE6265", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Southeast Asian Studies in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. Head's and/or Graduate Coordinator's approval is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SE6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover specialized topics in Southeast Asian Studies. The topic(s) to be covered will depend on the interest and expertise of regular or visiting staff members.", + "title": "Topics in Southeast Asian Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SE6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an overview of major events/dynamics in the politics and economics of modern Southeast Asia, with a focus on the period from 1900 to the present. The first set of topics covers colonial rule, the rise of national consciousness, rebellion, and pathways to independence. The second section covers democratic breakdown in island Southeast Asia and war and the rise of communist states in Indochina. The third section examines the long economic boom and 1997 financial crisis. The final section covers democratization, environmental issues, populism, and markets. Each week one or two countries will be featured.", + "title": "History, Politics and Economics of Modern Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia is a region that has been deeply shaped by flows of ideas, peoples, and technologies, while retaining a cultural distinctiveness of its own. This module is an introduction to the complexity of Southeast Asian cultures and societies: ethnic and gendered identities that are often fluid and diverse; religious beliefs being reinterpreted and adapted to local needs; popular culture welcoming outside influences and cultivating local flavours. In this module, Southeast Asia is discussed as peoples, cultures and societies on the move, experiencing transformations and ever adapting to changes.", + "title": "Societies and Cultures of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the complexities of environmental issues in Southeast Asia. There is a need to unpack what really lies behind all sides of environmental problems. A political ecology approach will be used to examine the multiple layers of politics, money, power and neglect that lie behind these issues. We will travel across Southeast Asia, dive deep into its rich biodiversity and explore the extent of the environmental threats the region faces, as well as the plight of the people whose identity, lives and livelihoods depend wholly on the health of these highly endangered ecosystems.", + "title": "Politics of Environment in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will garner an alternative view of Southeast Asia, where land is pushed to the periphery and water becomes the central element that unites, not divides. Student will examine this maritime region with a line of sight that begins at sea, before traveling upriver to the hinterlands. From an understanding of both fresh and saltwater to an examination of connected people, fauna, cultures and histories, students will explore myriad areas of marine amalgamation; from the Moluccas to Makassar and Madura, through the Tebrau and Melaka Straits, then northwards towards the Mergui Archipelago and into the Mekong.", + "title": "Southeast Asia by Sea", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an overview of the diversity of peoples and places in Southeast Asia, with the aim of examining its regional identity. It is grounded conceptually in the notion of \u201clandscape\u201d, situated across multiple scales of reality from the local to the global. Empirically, aspects of material and non-material cultures and dimensions of Southeast Asia will be discussed, including the economy, religion, environment and politics. The potential and limits of \u201clandscape geography\u201d in critically understanding Southeast Asia will also be assessed.", + "title": "Landscapes of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5211", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asian images, objects and events lead us to rethink art-historical methods and dominant modern ideas about what is art. We will study particular kinds of objects, architecture, institutions, performances and events with attention to how they exist(ed) and function(ed) in their world, to continuities and change, and to the methodological issues involved. This will involve a critical reading of selected studies of Southeast Asian arts and reflection on artistic phenomena in their world. Topics include: art-historical preconceptions about art; temples and landscape; palaces and museums; collecting; textiles; masks and puppets; music and theatre; and modern and contemporary art.", + "title": "Arts in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a systematic introduction to eating practices and associated ideologies in Southeast Asia from the early modern period until the present. Central to this module is the story of how the worldchanging phenomenon of modern middling cuisines translated within Southeast Asia, and the phenomenon\u2019s impacts on social inequality. The module will trace the transformation of the region\u2019s cuisines through the historical workings of societies, politics, empires, businesses, technologies, and environments in Southeast Asia. One core aim is to critically evaluate contemporary Southeast Asian food practices, using perspectives informed by both history and the social sciences.", + "title": "Food History of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the causes, processes and outcomes of the conflicts that have occurred in Southeast Asia. Consideration will also be given to the role of ideology and leadership. The module will attempt to cover as much ground as possible but emphasis will be placed on the major attempts at revolt and revolution.", + "title": "Revolt and Revolution in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Technopolitics refers to the strategic practice of designing or using technology for political ends as well as to intersections of technology and politics that lead to new modes of power. This module offers an overview of technopolitics in Southeast Asia and beyond with particular attention to contemporary digital platforms, innovation and industry, and developments in medicine, genomics and public health, among other topics. No prior knowledge is necessary; there are no pre-requisites other than a desire to understand better how technology shapes us and the world around us.", + "title": "Technopolitics in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module focuses on ASEAN regional integration, its linkages within the region (intra-ASEAN) and with the rest of the world (extra-ASEAN). It discusses its historical, social/cultural, political and regional security, and economic dimensions. It examines the trends, patterns, determinants, challenges and prospects of ASEAN.", + "title": "Southeast Asia and Regionalism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0305", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module traces the history of development in modern Southeast Asia by focusing on capitalism and its interplay with political, technological, environmental, and cultural factors. This module takes a transnational approach, seeing development both as embedded in local political economies and as integral to regional and global processes of political and economic change. Through the use of case studies, we will explore the various roles states have played in processes of development and the ways that state, capitalism, society, and environment are co-produced.", + "title": "Political Economy of Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0303", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Geographically, the countries of Mainland Southeast Asia are Burma, Thailand, Laos, Vietnam and Cambodia. The module first aims to examine the space of Mainland Southeast Asia and to explore its many names and forms, such as \u2018Indochina\u2019 and \u2018the Golden Peninsula.\u2019 Designed as an introduction to these countries and reflecting the lecturer's areas of expertise, this module has the dual objective of exploring not only these countries' unique traits but also their key commonalities, through the study of transversal themes such as revolution and nationalism, ethnic and religious identities, rural and urban change, and mobility and migration.", + "title": "Country Studies: Mainland Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to study contemporary and recent economic, social and political trends in Thailand. In doing so, it will draw upon models and interpretations of Thai socio-economic and power structures which have been developed by political scientists and anthropologists. Topics for study will include the role of key institutions and interest groups - the monarchy, Buddhist Sangha, bureaucracy and military, political parties and the new middle class.", + "title": "Country Studies: Thailand", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5232", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines political and social life in modern Indonesia. The first section, covering the period from 1900 until 1965, examines the nature of the colonial state and the rise of nationalism, societal divisions and revolution, the reasons for the failure of parliamentary democracy and the horrific violence against the Communist Party in 1965-1968. The second section explores the nature of Suharto\u2019s New Order (1965-1998), the role of the military, regional rebellions, gender relations, and civil society. The third section considers the transition from authoritarian rule, electoral politics and decentralization, ethnic and religious violence, and current struggles over the past.", + "title": "Country Studies: Indonesia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the foundations and tools to know and understand the problems and challenges the Philippines faces today. Using a multi- and inter-disciplinary framework, it aims to discuss the various dimensions of the Philippines: its geography, politics and history, religion and culture, media and society, uneven development, international migration, and its trading and investment relations.", + "title": "Country Studies: The Philippines", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a multi-stranded approach towards understanding major political, economic and socio-cultural transformations in Malaysia. Topics such as ethno-religious conflicts, electoral politics, developmentalism, Islamism, arts and cultural activism, feminism and gender politics, and civil society mobilisation will be among those covered. The module aims to provide students with a critical, sensitive and perceptive understanding and appreciation of a uniquely \u2018Malaysian\u2019 process of nation-making and contestation.", + "title": "Country Studies: Malaysia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers an in-depth and focused study of the socio-economic, political and cultural life of Burma- Myanmar. It will facilitate understanding of how historical, political and socio-cultural transformations in Myanmar, normally studied in disciplinary terms, are interconnected. Issues will be explored with the aim of developing integrated and critical perspectives on the various problems faced by the Myanmar state and its people.", + "title": "Country Studies: Myanmar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Vietnam is a country of apparent contradictions, where a ruling Communist party espouses free-market economics, a young and optimistic population traces its origins back more than 4000 years, and a sustained engagement with China coexists with a fierce commitment to national independence. This module makes sense of some of these contradictions by exploring key issues in Vietnam\u2019s past and present such as imperialism, nationalism, regionalism, Confucianism, colonial rule, war, Communism, economic reform, and the environment.", + "title": "Country Studies: Vietnam", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The MA in Contemporary Southeast Asia proposes to include masterclasses on topics of particular interest or importance to students. Each masterclass will be taught by a specialist instructor and will be conducted over 3-5 sessions of between 2-3 hours each, depending on the topic being covered. They will include pre-event preparatory materials and appropriate evaluation mechanisms (e.g., test or term paper) at the conclusion.", + "title": "Masterclass", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "SEA5301A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The MA in Contemporary Southeast Asia proposes to include masterclasses on topics of particular interest or importance to students. Each masterclass will be taught by a specialist instructor and will be conducted over 3-5 sessions of between 2-3 hours each, depending on the topic being covered. They will include pre-event preparatory materials and appropriate evaluation mechanisms (e.g., test or term paper) at the conclusion.", + "title": "Masterclass", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "SEA5301B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The MA in Contemporary Southeast Asia proposes to include field trips within and beyond Singapore as a novel elective component of the degree course. Each fieldtrip will be led by at least one specialist instructor and will be conducted over a day, weekend or as long as a week, depending on the place being visited and the distance from Singapore. Field trips will include preevent preparatory materials and appropriate evaluation mechanisms (e.g., diary entry, photo essay, group project, or term paper) at the conclusion.", + "title": "Field Trip", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "SEA5302A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The MA in Contemporary Southeast Asia proposes to include field trips within and beyond Singapore as a novel elective component of the degree course. Each fieldtrip will be led by at least one specialist instructor and will be conducted over a day, weekend or as long as a week, depending on the place being visited and the distance from Singapore. Field trips will include preevent preparatory materials and appropriate evaluation mechanisms (e.g., diary entry, photo essay, group project, or term paper) at the conclusion.", + "title": "Field Trip", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "SEA5302B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The MA in Contemporary Southeast Asia proposes to include field trips within and beyond Singapore as a novel elective component of the degree course. Each fieldtrip will be led by at least one specialist instructor and will be conducted over a day, weekend or as long as a week, depending on the place being visited and the distance from Singapore. Field trips will include preevent preparatory materials and appropriate evaluation mechanisms (e.g., diary entry, photo essay, group project, or term paper) at the conclusion.", + "title": "Field Trip", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SEA5302C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The MA in Contemporary Southeast Asia proposes to include short term (1-2 days) specialised workshops on topics of particular interest or importance to students. Each workshop will last for one or two days, depending on the topic being covered and will include pre-event preparatory materials and an evaluation mechanism (e.g., test or term paper) at the conclusion.", + "title": "Southeast Asian Studies Specialised Workshop", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "SEA5303A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The MA in Contemporary Southeast Asia proposes to include short term (1-2 days) specialised workshops on topics of particular interest or importance to students. Each workshop will last for one or two days, depending on the topic being covered and will include pre-event preparatory materials and an evaluation mechanism (e.g., test or term paper) at the conclusion.", + "title": "Southeast Asian Studies Specialised Workshop", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "SEA5303B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a dedicated research module for MA coursework students designed to enable them to complete a research\u2010based thesis.", + "title": "Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SEA5401", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic in Southeast Asian Studies in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, study programme, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% CA and must be worked out between the student and the lecturer before seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover specialised topics in Southeast Asian Studies. The topic(s) to be covered will depend on the interest and expertise of regular or visiting staff.", + "title": "Topics in Southeast Asian Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SEA5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines contemporary socio-political dynamics in Indonesia, its position within the ASEAN region and its future prospects. Surveying the culture and politics of the country while analysing globally resonant themes, the course asks: How did diverse peoples with various languages and beliefs system come to form a nation? How can state and society work together towards a just and sustainable political economy in local, national and regional scales? Through lectures, tutorials and experiential learning, this course facilitates a collective, cross-cultural discussion on social diversity and sustainable development that is centred on a particular place but holds wider lessons.", + "title": "Introducing Indonesia", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "SFI2012", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-12", + "end": "2023-05-12" + }, + "venue": "AS7-0102", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-10", + "end": "2023-05-10" + }, + "venue": "AS7-0102", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To many Singaporeans, Thailand is a known for its food, temples, beaches, shopping and exhilarating nightlife. However, few tourists know about the country\u2019s history or culture and how what one experiences in Thailand is a result of the interplay of these two forces. This class explores Thailand from a cultural perspective. It moves the study of Thailand away from the lens of politics and economics to look at the complexity and multivocality of local interpretations of culture. Using a multidisciplinary approach, this course explores Thailand\u2019s complex history and culture with the objective of providing a helpful introduction to the country.", + "title": "Introducing Thailand", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "SFI2032", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "03", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-12", + "end": "2023-05-12" + }, + "venue": "AS7-0106", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-10", + "end": "2023-05-10" + }, + "venue": "AS7-0106", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1000", + "endTime": "1200", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "AS7-0106", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cambodia is a culturally and historically significant country in Southeast Asia. However, it is under appreciated by many Southeast Asians especially Singaporeans. Recent developments have led to significant improvements to its economy and this change is led by a new generation of Cambodians who, deeply inspired by its ancient past, greatly desires to transform the country to be among the most successful in Southeast Asia. Using a multidisciplinary approach, this course will explore Cambodia\u2019s ancient history and culture with the objective of providing a helpful introduction to the country.", + "title": "Introducing Cambodia", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "SFI2072", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Laos is one of the least well-known nation-states in Southeast Asia. Yet its rich culture and history reflect a turbulent past, including centuries-old relationships between lowland and upland societies. Marked by the conflicts of the twentieth century, Laos emerged devastated but resilient. Like Communist China and Vietnam, it has opened its economy, driven by the ambition to regain its place at the crossroads of trade routes in mainland Southeast Asia. Using a multidisciplinary approach, this course will explore Laos' key features and challenges with the objective of providing a helpful introduction to the country.", + "title": "Introducing Laos", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "SFI2082", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-05-12", + "end": "2023-05-12" + }, + "venue": "AS7-0119", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-05-10", + "end": "2023-05-10" + }, + "venue": "AS7-0119", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "1400", + "endTime": "1600", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide the participants with the foundational knowledge in chemical process safety, covering the key tenets of risk-based process safety to prevent potential process safety incidents. Participants will be exposed to industry, local and international standards and practices for effective process safety management.", + "title": "Fundamentals in Process Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-07", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide the participants with the foundational knowledge in chemical process safety, covering the key tenets of risk-based process safety to prevent potential process safety incidents. Participants will be exposed to industry, local and international standards and practices for effective process safety management.", + "title": "Fundamentals in Process Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5001C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides basic industrial and process safety knowledge for safety practitioners. It covers the life-cycle (birth-to-death principle) approach in preventing safety problems in industry. Introductory techniques to risk management such as hazard identification, risk assessment, risk evaluation and risk treatment will be covered. Concepts on system safety, inherently safe design, equipment/process reliability, redundancy and common cause failures in the prevention of industrial accidents will also be taught.", + "title": "Fundamentals in Industrial Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course provides basic industrial and process safety knowledge for safety practitioners. It covers the life-cycle (birth-to-death principle) approach in preventing safety problems in industry. Introductory techniques to risk management such as hazard identification, risk assessment, risk evaluation and risk treatment will be covered. Concepts on system safety, inherently safe design, equipment/process reliability, redundancy and common cause failures in the prevention of industrial accidents will also be taught.", + "title": "Fundamentals in Industrial Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5002C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides knowledge in the fundamentals in environmental protection, for practitioners in the safety, health and environment technology industry. It deals with a range of concepts including pollution prevention, properties and fate of pollutants, air pollution and water pollution control, GHG emissions and solid waste management. Residuals management will also be covered. Emphasis is placed on industrial activities and the environment.", + "title": "Fundamentals in Environmental Protection", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course provides basic environment protection knowledge for safety, health and environment protection practitioners. It will cover air emission control and assessment, water emission control and assessment, waste minimization, energy conservation, product stewardship, trade effluent, toxic industrial waste, theories behind current thinking on the effects of pollution on the environment to include ozone destroying CFCs, volatile organic compounds, particulates, oxides of sulphur and nitrogen etc. Other topics will include waste disposal techniques including incinerators, environmental impact assessments and the dispersion effects of pollutants on ecosystems and the public at large.", + "title": "Fundamentals in Environmental Protection", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5003C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course provides basic industrial hygiene knowledge for safety, health and environment protection practitioners. It will review the chemical, physical and biological and ergonomic hazards found in the workplace and their potential effect on human health, including an introduction to toxicology. The mechanism for exposure to the hazards and methods of estimation of employee exposures will be outlined. Employee exposure monitoring, sample analysis and data analysis will be discussed. The control of hazards and exposure in the workplace by inherently health analysis, engineering, personnel controls and personal protective clothing will be discussed.", + "title": "Fundamentals in Industrial Hygiene", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course provides basic industrial hygiene knowledge for safety, health and environment protection practitioners. It will review the chemical, physical and biological and ergonomic hazards found in the workplace and their potential effect on human health, including an introduction to toxicology. The mechanism for exposure to the hazards and methods of estimation of employee exposures will be outlined. Employee exposure monitoring, sample analysis and data analysis will be discussed. The control of hazards and exposure in the workplace by inherently health analysis, engineering, personnel controls and personal protective clothing will be discussed.", + "title": "Fundamentals in Industrial Hygiene", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5004C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with a holistic view of risk and the management of occupational safety and health risk as part of enterprise risk management. Students will learn essential theoretical knowledge in risk analysis with a particular focus on SHE risk. Various risk analysis methodologies, from traditional event-chain approaches to more recent system\u2019s approach will be shared. Students will also be taught on the application of analytics to better manage SHE risks. Principles and methods of data analytics will be taught, along with application examples.", + "title": "Risk Analysis & Safety Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5005", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with a holistic view of risk and the management of occupational safety and health risk as part of enterprise risk management. Students will learn essential theoretical knowledge in risk analysis with a particular focus on SHE risk. Various risk analysis methodologies, from traditional event-chain approaches to more recent system\u2019s approach will be shared. Students will also be taught on the application of analytics to better manage SHE risks. Principles and methods of data analytics will be taught, along with application examples.", + "title": "Risk Analysis & Safety Analytics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5005C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course covers the absorption of chemicals into human bodies, their bio-transformation, excretion and adverse effects on the target organs. Other topics cover including toxicological studies and the application of toxicological information in the prevention of occupational diseases in the workplace. Students must have a chemistry background or basic understanding of chemical safety measures at the workplace.", + "title": "Industrial Toxicology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course covers the absorption of chemicals into human bodies, their bio-transformation, excretion and adverse effects on the target organs. Other topics cover including toxicological studies and the application of toxicological information in the prevention of occupational diseases in the workplace.", + "title": "Industrial Toxicology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5101C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course covers human capability and job demands. The principles of job design and analysis, and their application in the prevention of occupational disorders arising from the mismatch worker and job will be covered. Other topics cover including anthropometry, biomechanics, work physiology and work psychology, job factors and environmental factors in occupational disorders.", + "title": "Occupational Ergonomics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course covers human capability and job demands. The principles of job design and analysis, and their application in the prevention of occupational disorders arising from the mismatch worker and job will be covered. Other topics cover including anthropometry, biomechanics, work physiology and work psychology, job factors and environmental factors in occupational disorders.", + "title": "Occupational Ergonomics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5102C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with the\na) knowledge to understand the underlying principles and regulatory requirements related to biological safety and security;\nb) skill to analyse the risks associated with the use and activities involving hazardous biological materials; and\nc) method to design and implement effective measures to manage the biological risks.", + "title": "Biosafety and Biosecurity", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with the\na) knowledge to understand the underlying principles and regulatory requirements related to biological safety and security;\nb) skill to analyse the risks associated with the use and activities involving hazardous biological materials; and\nc) method to design and implement effective measures to manage the biological risks.", + "title": "Biosafety and Biosecurity", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5103C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to familiarise the non-medical practitioners in safety, health and environment protection with a working knowledge of how to identify, manage and prevent occupational issues arising from the workplace, enabling the practitioners to make knowledgeable and informed decisions with respect to the provision of occupational health services in the workplace. Topics cover including occupational health in general, occupational diseases, assessment and management of occupational health issues in workplace, shift work, occupational stress management, occupational lung diseases, occupational cancer, occupational dermatology.", + "title": "Occupational Health", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to familiarise the non-medical practitioners in safety, health and environment protection with a working knowledge of how to identify, manage and prevent occupational issues arising from the workplace, enabling the practitioners to make knowledgeable and informed decisions with respect to the provision of occupational health services in the workplace. Topics cover including occupational health in general, occupational diseases, assessment and management of occupational health issues in workplace, shift work, occupational stress management, occupational lung diseases, occupational cancer, occupational dermatology.", + "title": "Occupational Health", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5104C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover the health effects, measurements methods, regulations, and control technologies related to common physical health hazards encountered in occupational settings. The emphasis of the course will be placed on the identification, evaluation and management of the hazards of noise, temperature extremes, extreme pressures, vibration and lighting in the industry. The hierarch of control will be used to demonstrate the strategy of reducing the risk to the level of as low as reasonably practice.", + "title": "Noise and Other Physical Hazards", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5105", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover the health effects, measurements methods, regulations, and control technologies related to common physical health hazards encountered in occupational settings. The emphasis of the course will be placed on the identification, evaluation and management of the hazards of noise, temperature extremes, extreme pressures, vibration and lighting in the industry. The hierarchy of control will be used to demonstrate the strategy of reducing the risk to the level of as low as reasonably practice.", + "title": "Noise and Other Physical Hazards", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5105C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides knowledge in the safety aspects of the application of both ionising and non-ionising radiation. The students will be equipped with the skills and knowledge necessary to comprehend the potential adverse health effects, type of exposure monitoring, engineering controls and personnel controls, to improve radiation safety. Essential topics include radiation physics, radiation detection, radiation units and radiobiology, specific applications used in medical/healthcare sector (Diagnostic, Nuclear Medicine and Radiotherapy) and industrial sector (Radiography, Nuclear Gauging, Analytical, Inspection/Screening and Sterilization); covering radiation protection in radioactive waste management, transportation and emergency response.", + "title": "Radiation Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides knowledge in the safety aspects of the application of both ionising and non-ionising radiation. The students will be equipped with the skills and knowledge necessary to comprehend the potential adverse health effects, type of exposure monitoring, engineering controls and personnel controls, to improve radiation safety. Essential topics include radiation physics, radiation detection, radiation units and radiobiology, specific applications used in medical/healthcare sector (Diagnostic, Nuclear Medicine and Radiotherapy) and industrial sector (Radiography, Nuclear Gauging, Analytical, Inspection/Screening and Sterilization); covering radiation protection in radioactive waste management, transportation and emergency response.", + "title": "Radiation Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5106C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Ventilation systems used for the protection of the employee health will be studied. The design of effective ventilation systems from the capture hood, ducting, air cleaning equipment, fans and exhausts will be studied. The testing and maintenance of existing ventilation systems will be reviewed.", + "title": "Industrial Ventilation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ventilation systems used for the protection of the employee health will be studied. The design of effective ventilation systems from the capture hood, ducting, air cleaning equipment, fans and exhausts will be studied. The testing and maintenance of existing ventilation systems will be reviewed.", + "title": "Industrial Ventilation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5107C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides essential knowledge in toxic industrial chemicals (TIC) management, chemical hazards mitigation, control and management principles on chemicals usage, storage, handling, hazard and risk communication, administrative measures, transportation and disposal. Topics covered include implementation of engineering controls, administrative controls, selection, use and limitations of chemical protective emsembles such as respirators, chemical gloves and chemical protective clothings.", + "title": "Chemical Hazard Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides essential knowledge in toxic industrial chemicals (TIC) management, chemical hazards mitigation, control and management principles on chemicals usage, storage, handling, hazard and risk communication, administrative measures, transportation and disposal. Topics covered include implementation of engineering controls, administrative controls, selection, use and limitations of chemical protective emsembles such as respirators, chemical gloves and chemical protective clothings.", + "title": "Chemical Hazard Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5108C", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers principles, methods, and quantitative techniques building on basic concepts of epidemiology. It prepares students to research in and interpret published reports from the specialized areas of occupational induced diseases and physiological conditions in the workplace as well as the use of statistical methods in the analysis of outcome studies and quality improvement.", + "title": "Biostatistics and Epidemiology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5109", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers principles, methods, and quantitative techniques building on basic concepts of epidemiology. It prepares students to research in and interpret published reports from the specialized areas of occupational induced diseases and physiological conditions in the workplace as well as the use of statistical methods in the analysis of outcome studies and quality improvement.", + "title": "Biostatistics and Epidemiology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5109C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides essential concepts and techniques related to the evaluation of occupational exposure to gases, vapors, and aerosols. Topics covered include air flow measurements, aerosol science, particulate sampling with and without size separation, optical microscopy, active and passive sampling of gases and vapors, direct reading instruments, sampling strategy and statistical evaluation of exposure data, Singapore legislative and international guidelines on occupational exposure limits and threshold limit values.", + "title": "Chemical Hazard Evaluation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5110", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides essential concepts and techniques related to the evaluation of occupational exposure to gases, vapors, and aerosols. Topics covered include air flow measurements, aerosol science, particulate sampling with and without size separation, optical microscopy, active and passive sampling of gases and vapors, direct reading instruments, sampling strategy and statistical evaluation of exposure data, Singapore legislative and international guidelines on occupational exposure limits and threshold limit values.", + "title": "Chemical Hazard Evaluation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5110C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the essential concepts, methodologies, tools and techniques for effective process hazard analysis. Topics covered include the various approaches to conducting process hazard analysis and the use of hazard identification tools and and evaluation techniques such as Hazard and Operability (HAZOP) Analysis, What-if Analysis (WIA), Failure Modes and Effects Analysis (FMEA), Fault Tree Analysis (FTA), Event Tree Analysis (ETA), Bowtie Analysis and the Layer of Protection Analysis (LOPA) methodology.", + "title": "Process Hazard Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the essential concepts, methodologies, tools and techniques for effective process hazard analysis. Topics covered include the various approaches to conducting process hazard analysis and the use of hazard identification tools and and evaluation techniques such as Hazard and Operability (HAZOP) Analysis, What-if Analysis (WIA), Failure Modes and Effects Analysis (FMEA), Fault Tree Analysis (FTA), Event Tree Analysis (ETA), Bowtie Analysis and the Layer of Protection Analysis (LOPA) methodology.", + "title": "Process Hazard Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5201C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover: Hazard evaluation, frequency and probability, probit concept, logic diagrams, failure rate data, FAR concept and criteria of acceptability, assessment of individual and societal risk. Source term estimation. Fire and explosion. Vapour, liquid and two phase release rate models. Hazard analysis case study, hazard control and mitigation. Atmospheric dispersion modelling, puff, plume and dense gas models. Consequence assessment of release, flammable and toxic releases, vapour cloud explosion, BLEVE. Radiant heat flux, blast and missile.", + "title": "Quantified Risk Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will cover: Hazard evaluation, frequency and probability, probit concept, logic diagrams, failure rate data, FAR concept and criteria of acceptability, assessment of individual and societal risk. Source term estimation. Fire and explosion. Vapour, liquid and two phase release rate models. Hazard analysis case study, hazard control and mitigation. Atmospheric dispersion modelling, puff, plume and dense gas models. Consequence assessment of release, flammable and toxic releases, vapour cloud explosion, BLEVE. Radiant heat flux, blast and missile.", + "title": "Quantified Risk Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5202C", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the fundamentals of resilience and emergency planning, essential for capacity planning to build organizational resilience and emergency preparedness. Key aspects covered include enterprise resilience management framework, crisis and business continuity planning considerations, scenario and pre-incident planning approaches, and emergency response planning parameters to manage potential emergency incidents from the complex process industry (chemical and petrochemical plants) to the conventional built environment (malls, schools, hospitals, and hotels).", + "title": "Resilience and Emergency Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the fundamentals of resilience and emergency planning, essential for capacity planning to build organizational resilience and emergency preparedness. Key aspects covered include enterprise resilience management framework, crisis and business continuity planning considerations, scenario and pre-incident planning approaches, and emergency response planning parameters to manage potential emergency incidents from the complex process industry (chemical and petrochemical plants) to the conventional built environment (malls, schools, hospitals, and hotels).", + "title": "Resilience and Emergency Planning", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5203C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the essentials of engineered systems and hazard controls from the early conceptual-design and construction stages, to managing and maintenance of conventional built environment (malls, schools, hospitals, and hotels), to safe operation of complex process industry (chemical and petrochemical plants). Key aspects covered include construction design for safety (DfS), design for maintainability (DfM), fall prevention and protection, lifting and material handling, inherent safer plant design, engineered mitigation and life-safety critical systems, equipment influence assessment and maintenance, alarms and safety-interlocks, safety-critical control points and safe work procedures, hazardous area and electrical equipment classifications, electrical, electrostatic and lightning protection.", + "title": "Industrial Safety Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the essentials of engineered systems and hazard controls from the early conceptual-design and construction stages, to managing and maintenance of conventional built environment (malls, schools, hospitals, and hotels), to safe operation of complex process industry (chemical and petrochemical plants). Key aspects covered include construction design for safety (DfS), design for maintainability (DfM), fall prevention and protection, lifting and material handling, inherent safer plant design, engineered mitigation and life-safety critical systems, equipment influence assessment and maintenance, alarms and safety-interlocks, safety-critical control points and safe work procedures, hazardous area and electrical equipment classifications, electrical, electrostatic and lightning protection.", + "title": "Industrial Safety Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5204C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the fundamentals of crisis and incident management, essential for capacity planning to build organizational crisis and incident management capability. Key aspects covered include enterprise incident management architecture; incident command and management framework; emergency operations, mutual aid and joint operations concept; crisis response functions and incident management priorities; business continuity and recovery management considerations to manage potential incidents from the complex process industry (chemical and petrochemical plants) to the conventional built environment (malls, schools, hospitals, and hotels).", + "title": "Crisis and Incident Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-05", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the fundamentals of crisis and incident management, essential for capacity planning to build organizational crisis and incident management capability. Key aspects covered include enterprise incident management architecture; incident command and management framework; emergency operations, mutual aid and joint operations concept; crisis response functions and incident management priorities; business continuity and recovery management considerations to manage potential incidents from the complex process industry (chemical and petrochemical plants) to the conventional built environment (malls, schools, hospitals, and hotels).", + "title": "Crisis and Incident Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5205C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the human factors that arise from the interaction of the characteristics in the operators, organizations and facilities or equipment. Human factors influence the performance of the operators and the risk of the operators to commit human error in the industry. The course covers the identification and evaluation of these characteristics in the operators, organizations and facilities, as well as methods for preventing the human error in process safety.", + "title": "Human Factors in Process Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the human factors that arise from the interaction of the characteristics in the operators, organizations and facilities or equipment. Human factors influence the performance of the operators and the risk of the operators to commit human error in the industry. The course covers the identification and evaluation of these characteristics in the operators, organizations and facilities, as well as methods for preventing the human error in process safety.", + "title": "Human Factors in Process Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5206C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide the participants with the knowledge\nto identify Major Accident Scenarios that can give rise to\nconsequences such as Fires, Explosions and Toxic\nreleases. Participants will also be exposed to engineering\nand design guidelines based on industry, local and\ninternational standards and practices to demonstrate risk\nmanagement to ALARP and prevent Major Accident\nScenarios", + "title": "Process Safety Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5207", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide the participants with the knowledge\nto identify Major Accident Scenarios that can give rise to\nconsequences such as Fires, Explosions and Toxic\nreleases. Participants will also be exposed to engineering\nand design guidelines based on industry, local and\ninternational standards and practices to demonstrate risk\nmanagement to ALARP and prevent Major Accident\nScenarios", + "title": "Process Safety Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5207C", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip process industry professionals to understand the detailed requirements for design, realization, validation, operations, maintenance, modifications and de-commissioning of Safety Instrumented Systems (SIS) for the process industry in accordance with the requirements of Functional Safety Standards (viz. IEC 61508/ 61511).", + "title": "Functional Safety for Process Industries", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip process industry professionals to understand the detailed requirements for design, realization, validation, operations, maintenance, modifications and de-commissioning of Safety Instrumented Systems (SIS) for the process industry in accordance with the requirements of Functional Safety Standards (viz. IEC 61508/ 61511).", + "title": "Functional Safety for Process Industries", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5208C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide the participants with essential knowledge on the development and impact of digitalization on chemical process operation and safety. Process digitalization presents opportunities for better process efficiency. However, the use and dependence on data utilization and automated instrumentation can have implications on process safety. Industry, local and international standards and practices for effective process digitalization will be shared. Participants will be exposed to low-code development platform to identify Safety use cases and develop customised solution on their own to address their business needs. This module is for students pursuing MSc (SHE) Degree with specialisation in Process Safety.", + "title": "Process Safety Digitalization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5209", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide the participants with essential knowledge on the development and impact of digitalization on chemical process operation and safety. Process digitalization presents opportunities for better process efficiency. However, the use and dependence on data utilization and automated instrumentation can have implications on process safety. Industry, local and international standards and practices for effective process digitalization will be shared. Participants will be exposed to low-code development platform to identify Safety use cases and develop customised solution on their own to address their business needs. This module is for students pursuing MSc (SHE) Degree with specialisation in Process Safety.", + "title": "Process Safety Digitalization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5209C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an assessment of all the elements covered in current worldwide codes, standards, and legislature. The different models will be compared to determine overlaps and omissions. Models that will be covered in details include ISO 9001, ISO 14001, ISO 45001, OSHA Process Safety Management Rules, CCPS Technical Safety Management of Chemical Process Safety, API 750, Singapore Legislations on Safety & Health Management Systems related to the shipyard, construction, and COMAH-type chemical process industries and installations. In addition, the course will cover auditing techniques and skillsets needed to plan, lead and undertake management system auditing based on ISO 19011.", + "title": "Safety, Health, Environment & Quality Management System", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-09", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an assessment of all the elements covered in current worldwide codes, standards, and legislature. The different models will be compared to determine overlaps and omissions. Models that will be covered in details include ISO 9001, ISO 14001, ISO 45001, OSHA Process Safety Management Rules, CCPS Technical Safety Management of Chemical Process Safety, API 750, Singapore Legislations on Safety & Health Management Systems related to the shipyard, construction, and COMAH-type chemical process industries and installations. In addition, the course will cover auditing techniques and skillsets needed to plan, lead and undertake management system auditing based on ISO 19011.", + "title": "Safety, Health, Environment & Quality Management System", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5401C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course provides professional management knowledge for safety, health and environment protection practitioners. It covers the analysis of human behaviour in safety, health and environment protection and their application in the prevention of safety, health and environment protection issues in the industry. Topics include cognitive theory, behaviour theory, social learning theory and organisational learning theory. Other topics cover including, individual, group and organisational behaviour, motivation and leadership in safety, health and environment protection.", + "title": "Advanced Safety, Health & Environment Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5402", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course provides professional management knowledge for safety, health and environment protection practitioners. It covers the analysis of human behaviour in safety, health and environment protection and their application in the prevention of safety, health and environment protection issues in the industry. Topics include cognitive theory, behaviour theory, social learning theory and organisational learning theory. Other topics cover including, individual, group and organisational behaviour, motivation and leadership in safety, health and environment protection.", + "title": "Advanced Safety, Health & Environment Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5402C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves supervised self study over one semester on a topic approved by the Department. The work may relate to a comprehensive literature survey and critical evaluation, safety, health or environmental engineering study, industrial field study, or a combination of these. The study area is to be finalised, after consultation with the supervisor. The student has to find a suitable supervisor. The student must acquire interpret, evaluate relevant information in the area of study, and formulate a practical solution. Approval will be granted by the Program Manager. Students shall carry out the study within the semester.", + "title": "Independent Study", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5403", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves supervised self study over one semester on a topic approved by the Department. The work may relate to a comprehensive literature survey and critical evaluation, safety, health or environmental engineering study, industrial field study, or a combination of these. The study area is to be finalised, after consultation with the supervisor. The student has to find a suitable supervisor. The student must acquire interpret, evaluate relevant information in the area of study, and formulate a practical solution. Approval will be granted by the Program Manager. Students shall carry out the study within the semester.", + "title": "Independent Study", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5403C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves a supervised project over two semesters, on a topic approved by the Department. The work may relate to safety design and analysis, safety engineering case study, field study, or a combination of these. The study area is to be finalised, after consultation with the supervisor. The student has to find a suitable supervisor. The student must acquire interpret, evaluate relevant information in the area of study, and formulate a practical solution. Approval will be granted by the Program Manager. Student shall carry out the project within the period of his/her candidature.", + "title": "Safety Health and Environmental Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SH5404", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves a supervised project over two semesters, on a topic approved by the Department. The work may relate to safety design and analysis, safety engineering case study, field study, or a combination of these. The study area is to be finalised, after consultation with the supervisor. The student has to find a suitable supervisor. The student must acquire interpret, evaluate relevant information in the area of study, and formulate a practical solution. Approval will be granted by the Program Manager. Student shall carry out the project within the period of his/her candidature.", + "title": "Safety Health and Environmental Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SH5404C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide the participants with the essential\nknowledge to manage fire and explosion hazards in\nworkplaces. Participants will be exposed to local legislative\nrequirements, approaches in fire safety design, protection\ntechnologies, industry good practices, and key elements of\nan effective fire and explosion safety management\nprogram.", + "title": "Fire and Explosion Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide the participants with the essential\nknowledge to manage fire and explosion hazards in\nworkplaces. Participants will be exposed to local legislative\nrequirements, approaches in fire safety design, protection\ntechnologies, industry good practices, and key elements of\nan effective fire and explosion safety management\nprogram.", + "title": "Fire and Explosion Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5405C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip safety, health and environment\npractitioners with essential knowledge and skillset to\nconduct qualitative and quantitative research studies, using\ntools and techniques relevant to the practice.", + "title": "Research Methodology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5406", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip safety, health and environment\npractitioners with essential knowledge and skillset to\nconduct qualitative and quantitative research studies, using\ntools and techniques relevant to the practice.", + "title": "Research Methodology", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5406C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with:\n(a) an understanding of the effect of climate change and energy on sustainable development, as the world transit from fossil fuels to low carbon energy and renewable energy;\n(b) Insights on the challenges and opportunities in achieving affordable, reliable and clean energy in major industry and transportation sectors; and \n(c) strategic thinking and skill-set to explore and evaluate the environmental impacts, hazards and risks associated with energy, across its value chain, from production to consumption.", + "title": "Sustainable Energy and Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5407", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide students with:\n(a) an understanding of the effect of climate change and energy on sustainable development, as the world transit from fossil fuels to low carbon energy and renewable energy;\n(b) Insights on the challenges and opportunities in achieving affordable, reliable and clean energy in major industry and transportation sectors; and \n(c) strategic thinking and skill-set to explore and evaluate the environmental impacts, hazards and risks associated with energy, across its value chain, from production to consumption.", + "title": "Sustainable Energy and Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5407C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide the participants with the essential knowledge in electrical safety associated with electrical power supply and electrical installation; including understanding of power supply & quality, basic electrical design, earthing, safety hazards in Electrical installations, and equipment handling, overcurrent and earth fault protection for all occupancy types (residential, commercial and industrial). Covering LV, HV, since-phase (230V) and 3-phase (400V) power supplies, back-up Generator power supply, and renewable energy. Participants will be exposed to local power authority's requirement (Energy Market Authority, PowerGrid etc), local and international standards and practices for effective management of electrical safety.", + "title": "Electrical Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5408", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide the participants with the essential knowledge in electrical safety associated with electrical power supply and electrical installation; including understanding of power supply & quality, basic electrical design, earthing, safety hazards in Electrical installations, and equipment handling, overcurrent and earth fault protection for all occupancy types (residential, commercial and industrial). Covering LV, HV, since-phase (230V) and 3-phase (400V) power supplies, back-up Generator power supply, and renewable energy. Participants will be exposed to local power authority's requirement (Energy Market Authority, Power Grid etc), local and international standards and practices for effective management of electrical safety.", + "title": "Electrical Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5408C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an industrial attachment module that provides students with work attachment experience in the field of safety, health and environmental management in a company", + "title": "Industrial Safety, Health and Environment Practices", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "SH5666", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced topic in Industrial Hygiene that is of current interest. The course will be conducted by NUS staff and/or visitors.", + "title": "Topics in Industrial Hygiene", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced topic in Industrial Hygiene that is of current interest. The course will be conducted by NUS staff and/or visitors.", + "title": "Topics in Industrial Hygiene", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced topic in Process Safety that is of current interest. The course will be conducted by NUS staff and/or visitors.", + "title": "Topics in Process Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced topic in Process Safety that is of current interest. The course will be conducted by NUS staff and/or visitors.", + "title": "Topics in Process Safety", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5881C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced topic in Environment Protection that is of current interest. The course will be conducted by NUS staff and/or visitors.", + "title": "Topics in Environment Protection", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Advanced topic in Environment Protection that is of current interest. The course will be conducted by NUS staff and/or visitors.", + "title": "Topics in Environment Protection", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SH5882C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Normal Functioning 1 (Biosciences Foundation)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SLP5101", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Normal Functioning 2 (Linguistics Foundation)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SLP5102", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to professional practice in a community or hospital clinic setting. This first clinical placement will involve guided and structured observation of experienced clinicians delivering speech pathology services to adult and/or paediatric clients who have communication and/or swallowing impairments. Students will have opportunities to interact with and conduct hands-on assessment of clients under supervision. Students will be encouraged to reflect on normal communication processes through interaction with children in community educational settings and the elderly in residential/day-care and other healthcare settings.", + "title": "Professional Practice 1", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5103", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This compulsory module introduces the hierarchy of research evidence underpinning clinical practice (i.e., single-case, matched pairs, group designs, systematic reviews, and meta-analyses), psycholinguistic and biomedical variables relevant to evidence-based Practice (EBP), principles of psychometric testing including reliability and validity, and basic parametric and non-parametric statistics. Workshops will focus on developing the ability to critically analyse and evaluate the contribution of published research on assessment and treatment of speech, language, swallowing, fluency, and voice disorders. Reference will be made to SLP5101 and SLP5102 PBL cases, and any assessment data collected during SLP5103, in order to facilitate integration of theoretical models and clinical practice", + "title": "Research Design and Statistics", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5104", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an understanding of how speech and language development can be impaired in children. A range of language-based learning difficulties will be covered, focusing on the cause(s) and effect(s) of developmental language disorder (DLD) and related developmental disorders of perception, attention and memory. The administration and interpretation of language tests will be discussed in the context of local linguistic diversity and colloquial forms, notably Singapore Colloquial English (SCE). PBL seminars, lectures, and workshops, and skill classes will also include a review of cognitive assessment tools; reading and spelling disorders; assessment of dysfluency and voice problems; counselling families; working in multi-disciplinary teams in mainstream and special education settings.", + "title": "Impaired Functioning - Children 1", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Impaired Functioning - Adults 1", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Impaired Functioning - Children 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5107", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Impaired Functioning - Adults 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Professional Practice 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "SLP5109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intervention and Management - Children 1", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5110", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intervention and Management - Adults 1", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students for submission of an APA-style report in semester 4. In consultation with an Academic and a Clinical Supervisor, they will be directed to conduct a project based either on primary data or on secondary data relevant to evidence based practice in Speech-Language Pathology (SLP). Students will make an oral presentation, complete ethics training, submit a written proposal, and present a poster to the SLP community. For primary data projects, the scope of the research, participants, and variables will be discussed with supervisors. For secondary data projects, students will conduct a comprehensive electronic database search, critically review identified publications, consider cultural and/or linguistic differences, and the developmental stage of the participants.", + "title": "Research Project 1", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SLP5112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides professional practice experience related to the theoretical foundations of intervention and management covered in SLP 5110 and SLP 5111 and previous modules. Students will undertake an intensive block (5-6 weeks) of direct clinical experience in one clinic, either in a hospital or a community setting, under the supervision of an experienced speech and language pathologist. The focus of this third placement will be on the continued development of clinical skills in planning and carrying out intervention with adult and/or paediatric clients with communication and/or swallowing impairment. If considered appropriate by\ntheir supervising clinician, students may progress to independent management of one client at entry level by end of placement.In addition, students will participate in a 30-hour direct clinical experience involving assessment and clinical management of clients, from one of a range of specific client groups over an approximately 6 week period.", + "title": "Professional Practice 3", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "SLP5113", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intervention and Management - Children 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5114", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Intervention and Management - Adults 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5115", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module supports students preparation of the final draft of the research project that is submitted in Semester 4. Following consultation with the MSc(SLP) Research Coordinator and two supervisors (one Academic and one Clinical), students will complete the research projects developed in SLP5112, based on either (1) primary data requiring access to participants, or (2) secondary data involving published research, and then submit a written report (<10,000 words) in APA style.", + "title": "Research Project 2", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SLP5116", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module prepares students for professional practice problems and issues beyond single case clinical work. It will include discussion of caseload and resource management, waiting lists and consumer issues; client-centred and/or family-centred practice; importance of support, post-qualification mentorship, and continuing professional development; avoiding burn-out; working with groups of clients and organisations; making referrals and working with other professions; cultural differences and expectations; working through interpreters; advanced ethical and legal principles, pertinent regulatory and ethical standards, and ethical decision frameworks for professional practice; promoting the profession through evidence-based practice and outcome research.", + "title": "Professional Practice Issues", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SLP5117", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "management of majority of caseload at entry-level competence by\nend of placement", + "title": "Professional Practice 4", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "SLP5118", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to contemporary South Asia in terms of the significant features of social, cultural and economic life. It will discuss the physical and human resources of the region and give an overview of developments at the outset of the new century. The films, the literature and the arts of the region will be introduced throughout the module to provide a wealth of illustration of the changing patterns of life of the people of the seven nations of South Asia.", + "title": "Discover South Asia: People, Culture, Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0114", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS7-0107", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0328", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is about the politics of democratization in South Asia, a region with a long history of interstate and intra-state conflict. The post-colonial separation of India into India, Pakistan, and Bangladesh has caused cross border tensions and paved the way for military intervention in the domestic politics of Pakistan and Bangladesh. The diverse interests of ethnic and religious communities are testing the legitimacy of majoritarian democracy and the limits of claims for autonomous government. This module examines the institutional structures, State-citizen relations, and identity politics in South Asia\u2019s democratic experiments to find hope for democracy in a polarized world.", + "title": "South Asian Democracies - Violence, Conflict, and Hope", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS1-0303", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores linkages between economic and political structures in South Asia, the social organization of production in village and town, and the impacts of technological and demographic change. The focus is on poverty, inequality and social exclusion, as well as relationships of power and the exercise of force and violence. Topics covered include: peasant societies, migration, urbanization, industrialization, environmental degradation, ethnic conflict, women and gender disparity, working children, the state and the black economy. It is taught from basics without requiring any prior knowledge of economics, politics or South Asia, and is open to students of all disciplines.", + "title": "South Asia:Poverty, Inequality, Power", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "India is a large, poverty stricken, rapidly growing economy, which has witnessed substantial changes in its economic orientation and institutions since independence in 1947. This module focuses on economic change from import substitution to globalization, and from the command economy to economic deregulation. It engages with the political economy of India's industrialization, globalization and welfare. Relatively greater emphasis will be placed on the post-cold-war globalized world, which is the period when India embraced globalization and economic deregulation to a much greater extent than in the past.", + "title": "Globalizing India: The Politics of Economic Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to expose students to women's position and gender discrimination in South Asia, relating these to broader aspects of society, economy and culture. Comparisons with the students' own experiences, leading to appreciation of cross-cultural perspectives on women and gender, are part of the envisaged learning outcomes. Topics covered include women's position in the family and the kin-group, the market, social and political institutions, violence and trafficking, feminist critiques, activism and resistance, cinematic and literary expressions. The module would be of general interest to all students concerned about women's position and gender, as well those interested in South Asia.", + "title": "Gender and Society in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2234", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0302", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to global health governance, maps the emergent landscape and institutions, covers the diseases and conditions tackled by international organizations and initiatives across Asia and how Asian countries like India, China and Japan have contributed to these interventions before unpacking how this fluid institutional architecture might change after the coronavirus pandemic. The module will also explore how globalization has intensified health challenges, like infectious and chronic diseases Asian countries have to address while reducing their capacity to deal with them.", + "title": "Disease Diplomacy: Global Health in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at giving students an understanding of the political developments that have shaped contemporary South Asia. It provides an awareness of the political geography of the region and explains the historical processes by which the political map of South Asia has been constructed. The emergence of the South Asian nations from colonial rule, their different conceptions of 'nationhood' and their search for identity in the post-colonial world are discussed, together with an analysis of the current challenges which the region faces.", + "title": "The Emergence of Contemporary South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2261", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0308", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the student to the scientific and comparative study of religion in general and to South Asian religions in particular. After an introduction into the discipline of Comparative Study of Religion, the history of this discipline, and the different approaches it offers, the great variety of South Asian religions will be described chronologically and studied from a comparative perspective. For each tradition a survey of the relevant original literature will be given. Further themes to be covered are the co-existence of different religious traditions, and the social and psychological implications of religious values, beliefs and rituals.", + "title": "Religion and Society in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2271", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0119", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to survey the history of Indian philosophy both classical and modern. The course will begin with lectures on the Rig Veda and the Upanishads. It will proceed with the presentation of the main metaphysical and epistemological doctrines of some of the major schools of classical Indian philosophy such as Vedanta, Samkhya, Nyaya, Jainism and Buddhism. The course will conclude by considering the philosophical contributions of some of the architects of modern India such as Rammohan Ray, Rabindrananth Tagore and Mohandas Gandhi.", + "title": "Introduction to Indian Thought", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2273", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 3, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0309", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Popular culture as an academic subject provides a compelling lens to analyse a vast range of topics from family life and urbanisation to leisure and ethics. This module focuses on the different patterns of culture and their mutual exchange in South Asia, through study of a variety of media like art, theatre, TV, advertising, and cinema, in order to arrive at a general understanding of the cultural situation in contemporary South Asia, and to gain deeper insight into emerging trends and fashions.", + "title": "South Asian Cultures: An Introduction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Tamil literary landscape has experienced seismic shifts since the beginning of the twentieth century. New literary forms have emerged while existing ones have changed to reflect concomitant sociocultural realities. From its moorings in the classics, Tamil literature currently comprises a dizzyingly diverse, ever-burgeoning collection of texts, several of which have provoked a volley of resistance on the grounds of their being irreverent, and even, anti-cultural. The module examines\nthis corpus of contemporary writings with an abiding focus on controversy, its meanings and implications, specific to Tamil contexts. Why is it that some words become wicked?", + "title": "Wicked Words: Contemporary Tamil Literature", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2275", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the student to South Asian Islamic society, culture and religious thought. Especially in Pakistan, Bangladesh and the Maldives, the three South Asian countries with a Muslim majority, Islam forms an important cultural element. The focus of this module will be on the period from c. 1750-1950, during which important developments took place in South Asian Islam. The course will outline the role of Islam in pre-colonial society as well as the movements for religious and political reform of the nineteenth and twentieth centuries. Questions of language and literature will also be addressed.", + "title": "Islam: Society and Culture in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2276", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Indian presence has had considerable influence\n\non the development of Southeast Asian societies: in\n\nterms of its economic, commercial and political\n\ninfluence; and its role in the everyday life of Southeast\n\nAsian multicultural societies. Adopting a multidisciplinary\n\napproach, this module seeks to examine\n\nthe historical, political, social and economic\n\ndevelopment of the people from the Indian\n\nsubcontinent who have come to settle in Southeast\n\nAsia. \n\n\n\nThe module will provide students with the\n\nnecessary framework to analyse the historical\n\nand socio-economic development of these\n\ncommunities and their identity concerns. The\n\nmodule will develop critical and analytical skills\n\nguiding students in the process of social scientific\n\nenquiry.", + "title": "Indian Communities in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2277", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Sikhism is one of the most interesting religious traditions of India on account of rich history and unique practices. In this module, students will be introduced to the foundational tenets of Sikhism through an overview of its major texts, practices and\npractitioners, as well as its historical development in pre-colonial and colonial India. With an appreciation both of the unique history of the Sikh tradition and its place among the world religions, students will acquire a strong foundation in the study of religion and of Indian religions in particular.", + "title": "Introduction to Sikhism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2278", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers a broad survey of the key issues\n\nand ideas that have contributed to the making of\n\nmodern India in the late nineteenth and early\n\ntwentieth centuries. Using a combination of\n\nthematic and chronological approaches, it will\n\nfocus on the themes of colonialism and resistance.\n\nSome of the key issues to be discussed would\n\ninclude the way the British constructed knowledge\n\nabout India, Indian responses to colonial rule, the\n\ncoming of mass nationalism, the communal divide\n\nand events leading to decolonization and partition.\n\nNo prior background in Indian History is required\n\nfor students to study this module.", + "title": "The Making of Modern India, 1856-1947", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2279", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In South Asia, marriage is classically understood as an alliance between families or social groups for economic, social and political reasons. However, as recent studies show, the notions of love, marriage and sex intersect with political, and legal structures, on the one hand, and notions of gender, morality, and modernity on the other. Through this course, we critically analyse such regnant claims and examine how love and sex are shaped politically, culturally, legally and ideologically. Moreover, by studying the intersecting fields of \u2018marriage, love, and sex,\u2019 we unpack such dualities as \u2018private/public,\u2019 \n\u2018individual/community, and \u2018modern/ traditional\u2019 in South Asia.", + "title": "Marriage, Sex, Love in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2280", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course looks broadly at the evolution of sport and play, especially those that enjoy mass popularity in South Asia, and what it says about the region\u2019s society, economy and politics. Cricket, the emblematic sport of South Asia, is of course given particular attention but hockey, football and wrestling are also looked at in some detail. The course examines the story of sport in South Asia through its evolution from an elite, kingly pastime and its encounter in successive stages with colonialism, nationalism, the state and globalization.", + "title": "Nations at Play: History of Sport in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2281", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the way music shapes social, political and cultural identities in South Asia. Using an interdisciplinary approach, this course will serve as an introduction to current trends in the fields of ethnomusicology, critical musicology, and popular music studies.", + "title": "Music in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2282", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is structured keeping in view the different understanding of Sino-Indian relations and competing economic and political policy discourses in the new millennium. In the light of the above, the module re-examines the connections and interactions in India-China relations through historical and contemporary contexts to enhance the awareness of difference in perspectives and raise the level of mutual understanding, particularly from South Asian\nperspectives. It will enable students to critically analyse the \u2018realist\u2019 and \u2018neo-liberal\u2019 debates in view of a more holistic analysis and better understanding of\nthe bilateral relations between China and India.", + "title": "China-India Interactions: Changing Perspectives", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2283", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module interrogates the concept of the \u2018region\u2019\nand considers processes which have shaped regionmaking.\nThe ways in which regions contribute to the\ndiversity of South Asia are discussed. The role of\nlanguage, culture and cuisine in shaping regional\nidentities is also explored. Finally, the complex\nrelationship between region and nation is examined\nusing specific case-studies across South Asia.", + "title": "Making Sense of Regions in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2284", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the centrality of food, drink and dining practices in Tamil and other South Asian cultures. The module probes a fascinating facet of South Asian gastro politics by exploring such themes as the relationship between taste and nourishment, food and gender roles, the politics of commensality, and representations of eating and drinking across various visual media. The thematically organised lectures and tutorials incorporate perspectives from history, literature, sociology, anthropology and cultural studies.", + "title": "What\u2019s Cooking: Food and Drink in South Asian Cultures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN2285", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS1-0207", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-0328", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS2-0311", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the International Relations of the South Asian region. It looks at intra-regional relations, the impact of domestic politics on foreign policy, issues of conflict and cooperation and the role of external powers in the region. The foreign policy behaviour of India and Pakistan in particular will be considered. Key issues like the Kashmir conflict, nuclearization of South Asia and terrorism will be explored. The increasing significance of the South Asian region in the emerging global order, regional integration and inter-regional relations will also be analysed.", + "title": "International Relations of South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0303", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the role of South Asia in the world economy. The analysis will be conducted at two levels. The first is how the region as a whole interacts with other regional organizations such as the Association of Southeast Asian Nations (ASEAN), and multilateral institutions such as the Asian Development Bank, The World Bank, and the World Trade Organization. The second level concerns external economic linkages and relations of selected individual South Asian countries.", + "title": "South Asia and the World Economy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with understanding and assessing the development experiences of the South Asian countries. Students are expected to grapple with concrete case studies of development programmes in their work. The coursework covers issues pertaining to rural, agricultural, urban, industrial and human development, as well as their impact upon people and the environment. Particular attention is given to the situation of the poor and the weak, including disadvantaged children, women, and ethnic minorities. The module is taught from basics without requiring any prior knowledge of development theory, economics or South Asia, and is open to students of all disciplines.", + "title": "South Asia : Development, Issues, Debates", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the background leading to the mass migration of the South Asians to Southeast Asia in the nineteenth century, and examines their economic, political and cultural contributions towards the development of the Southeast Asian countries in the twentieth century. It will also examine the roles played by South Asian communities living outside the region in the globalisation of South Asian economies.", + "title": "Exile, Indenture, IT: Global South Asians", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the political evolution of the Indian nation in two of its most formative periods the late nationalist struggle from 1920-47 that led to the withdrawal of the colonial power; and the years of Jawaharlal Nehru's prime ministership, 1947-64. The module looks at both decolonisation and nation-building as processes characterised by debate and contestation in relation to (a) social, regional and group identity and (b) political rights and power. The module will study the impact of that debate and contestation on the character, institutions and political life of the nation.", + "title": "The Struggle for India, 1920-1964", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3262", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS2-0311", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to survey developments in Indian Philosophy in post-independence India. Figures may include, among others, Radhakrishnan, K. C. Bhattacharya, Kalidas Bhattacharya, J. N. Mohanty, Bimal Krishna Matilal, J. L. Mehta and Daya Krishna. Two broad topics will be considered first, the contemporary re-evaluation of the classical Indian tradition; and secondly, the efforts at situating the Indian tradition within the global philosophical discourse.", + "title": "Issues in Indian Philosophy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module begins with a historical overview of cinema in South Asia. It then focuses on the regional production centres and their specific specialisations. Other topics covered are 'Genres of SA Cinema' and their stylistic elements, and 'Cinema and Local Politics in South Asia'. Important films will be viewed and discussed as case studies.", + "title": "South Asian Cinema", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is designed to study the Tamil society and culture through various texts and visual media about Tamil world(s) such as films, documentaries, scholarly articles and books. The module is designed to incorporate students who both want to follow Tamil studies as a language course and students who want to learn about Tamil culture and society through the English language. The students will be assessed in either Tamil or English. At the end of the course, all students would have learned and gained advanced knowledge about Tamil culture and society.", + "title": "Subtle Tamil Traits? Tamil Culture and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3275", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0335", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar-style module provides an introduction to the foundations of classical Indian literature through a survey of traditional texts from the Dharmasutras and the Kamasutra to the Upanishads and the Bhagavadgita. The religious, cultural and literary influence and the changing interpretations of the texts will be discussed. All primary texts will be studied in English translation and supplemented with secondary source readings. This module is recognised towards the requirements of the Minor in Religious Studies.", + "title": "Introduction to Classical Indian Texts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3276", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at providing students with a first-hand experience of the South Asian region in general, and with a deep insight and understanding of selected aspects/problems of South-Asia in particular. The topics of the tours are different and formulated in accordance to the region chosen for the visit. Possible topics are : (A) Tamil History and Culture (Tamil Nadu Tour), (B) India and IT development (Bangalore etc. Tour), (C) Struggle for Independence; Partition (Tour around Delhi), etc. The overall structure of the module would be as follows: 1 week of lectures (in situ in South Asia, so that 'hands-on' sessions are possible), 4 weeks of guided travel, 1 week for students' report-and-essay-writing (in South Asia) = 6 weeks.", + "title": "South Asia:Field Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3277", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Most major rivers of South Asia are major pilgrimage centres for Hindus and are often considered as manifestations of female divinities. In this seminar\u2010style module, students will develop a unique appreciation of the confluence between geography, environment and divinity in South Asia through study of the\nregion\u2019s major river systems. No prior knowledge of South Asian religion is required and will be introduced in the context of weekly study topics.", + "title": "Rivers of India: Divinity & Sacred Space", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3278", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the relationship\n\nbetween language, culture and identity in India.\n\nIt looks at the roles that languages, cultures, and\n\nliteratures play in regional identities in India.\n\nThrough case studies of Hindi, Urdu, Gujarati,\n\nPunjabi, Marathi and Bengali it investigates the\n\nsignificance of language in regional identities. It\n\nalso addresses the issue of how language and\n\nculture have been arenas in which contending\n\nnotions of Indian identity have been developed.\n\nThe module introduces students to the\n\nimportance of understanding cultural diversity in\n\nIndia in relation to the rise of India as a\n\ncontemporary world power.", + "title": "Language, Culture and Identity in India", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3279", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is about the history of business in India and its significance in the contemporary context. The lectures will be based on historical analysis and effects of the colonial enterprise, different business communities and their networks, post\u2010colonial approaches and changes in the socio\u2010political and\neconomic trajectories. It gives students opportunities to look into the traditional big business houses and corporations and the subsequent changes in the present generations, and also into the emerging paradigms of new production networks and their relevance in the South Asian economies as well as in Asia and the world.", + "title": "The Story of Indian Business", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3281", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine how conflict and violence in contemporary South Asia have been understood and represented in different visual cultures such as popular film, photography, documentaries and online spaces. This module will interrogate the role of representations of violence within the societies at conflict in India, Sri Lanka, Burma and Nepal and how these are received abroad. It will provide tools for an increased visual awareness and understanding of ethical dialogues that shape violence in South Asia. This interdisciplinary course onsiders the relationship between images and disciplines such as history, politics, philosophy and anthropology.", + "title": "Violence and Visual Cultures in South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3282", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the South Asian Studies Programe, have relevance to the major in South Asian Studies, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the department.", + "title": "Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3550", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3551", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in South Asian Studies. The topics to be covered will depend on the interest and expertise of regular or visiting faculty in the Programme.", + "title": "Topics in South Asian Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the South Asian visual culture. It looks at this material not in isolation but in a global context. It will cover the history of South Asian art, that is, the art of India, Pakistan, Bangladesh and Sri Lanka, from the time of the Indus Valley Civilization to the present day.", + "title": "Art of India", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN3880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide a basis for a close study of the foundations of the study of South Asia, particularly in the three areas around which the Programme operates: historical and political; cultural and religious; and social and economic. It will look closely at the work of major figures in order to provide an understanding of important shifts in the study of the region. These studies will include work on historical writing in colonial and postcolonial times, the rise of village studies, the development of the significant scholarly work on South Asian religions and caste, and the nature of the colonial and postcolonial economies of the region. Thus, the module will provide a basis for understanding the literature in the three areas of study and the major advances that have taken place in the study of South Asia.", + "title": "Approaches to the Study of South Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will be an interdisciplinary seminar which is intended as a continuation of the study commenced in `Approaches to the Study of South Asia?. It will familiarise students with major issues in the interpretation of South Asia within the three areas of historical and political studies, cultural and religious studies and social and economic studies. It will raise major issues that have a bearing on the ways in which developments in South Asia are currently studied and understood. Some issues will relate to major trends in re-interpretation of South Asia, others will be new approaches to key problems or controversial theories in disputed areas.", + "title": "Critical Debates in South Asian Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will provide a comparative understanding of the problems and challenges that are faced in promoting regional cooperation and development in South and Southeast Asia. It will look at regional conflict and cooperation in a comparative perspective. It will examine issues in conflict in South Asia and the factors that have impeded regional cooperation. It will then contrast the dynamics of regionalism in Southeast Asia. It will also look at intra-regional and inter-regional ties that have been evolving between South and Southeast Asia in the context of multilateral trading arrangements.", + "title": "Regional Conflict & Cooperation in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim is to provide a comparative perspective on capitalist development and socio-cultural change in peasant societies of South and Southeast Asia, as well as the underlying factors of change. Students are expected to appreciate the contrast between peasant and capitalist societies, and identify factors explaining the different experiences of these two regions of Asia. Major topics include the analytical and empirical features of the peasantry and capitalist development, and the range of factors explaining resilience and change.", + "title": "Peasants and Capitalism in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will discuss the emerging pattern of inter-regional tourism flows between South and Southeast Asia. One of the facets of increasing globalisation is the expansion of the tourism industry. For the South Asian region, in particular India, higher incomes and the emergence of an expanding middle class have created a new market for the outbound tourism industry. The trappings of the new middle class in India would include holidays abroad and Southeast Asian region has become more widely known in India. The long historical, religious and cultural linkages between South and Southeast Asia would add to the tourism flows between the two regions. Recent developments that will spur tourism included the Open Skies policy being negotiated between India and ASEAN plus the upgrading and modernisation of infrastructure in India.", + "title": "South Asian Interregional Tourism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "India is in the throes of substantial social, political and economic change. This module deals with social structures such as caste and class; political developments such as the political empowerment of backward caste groups and the relationship between the state and society captured in phenomena such as social movements; and economic change such as the movement from state control to regulation, from\nautarky to globalization, and the rise of sub national federal economies at the state level.", + "title": "Social, Political and Economic Change in India", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus on contemporary social movements in India. They are deeply connected to its contested trajectories of development and democracy. Issues of displacement, environment, patriarchy, indignities and everyday tyranny are strongly\nconnected to the contemporary social movements. By focusing on movements\u2019 ideology, social base, modes of mobilization, leadership and nature of engagement with the state and social power, the module will advance understanding of a significant reality in contemporary India.", + "title": "Mapping Social Movements in India", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cultural contacts between South Asia and Southeast Asia started around the 3rd c AD. Especially several South-Indian dynasties (as, e.g. the Pallavas and the Cholas), under which trade and the setting up of diplomatic ties flourished, were the main responsible forces for an early spread of Indian cultural and social concepts and values beyond South Asia \u2013 and especially to Southeast Asia. The module aims at looking at those early forms of contact between the two regions, and at providing an understanding of the concepts of \u201ckingship\u201d, society, religion and culture, that became shared as a consequence. We will explore how much about \u201ceveryday life\u201d in old times can be learned from inscriptions, and how temple-constructions and other pieces of Art can give insights into these concepts. We will also look into early trade-connections between South India and Southeast Asia (trading guilds) and into the impact of cultural influence \u2013 especially of the Chola dynasty \u2013 in the region.", + "title": "South and Southeast Asia: Early Contacts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module looks closely at Hindutva ideology, and considers the formation and development of Hindutvaorientated political parties and organisations in India and also, where applicable, the diaspora. The course will consider the key challenges to the development of Hindutva nationalism and the threat that the growth of the movement poses to the position of religious minorities in the Indian context.", + "title": "Hindutva Nationalism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4262", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore historical sources relating to Contemporary India and encourage students to examine archival evidence and develop critical narratives focused around key themes. The focus will be on India after 1947. Key themes will include: the Aftermath of Partition, National Integration; Leadership and Ideologies; Economic Development and Reconstruction; Political Parties and Organizations; Crises and Transitions; India\u2019s External Relations with its Neighbours. Students will work with on\u2010line archival sources now available due to declassification and digitisation, together with secondary materials.", + "title": "Themes in Contemporary Indian History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module has four broad aims: 1) introducing linguistic theories of \u201cLanguage Families\u201d, 2) giving an overview of the Language Families found in South Asia, 3) briefly exposing regional conflicts that have their root in language-based formations of identities, and 4) giving a historical overview of the most important regional literatures in different South-Asian Languages.", + "title": "South Asian Languages and Literatures", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4275", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The two Indian epics, the Ramayana and the Mahabharata, - are mainly known through their classical representatives in Sanskrit language. They also exist, however, in many regional vernacular forms, some being \u201cclassics\u201d in their own right (e.g. Kamban\u2019s Iramavataram in Tamil, 11th c; Tulsidas\u2019 Ramcaritmanas in Hindi, 16th c). Folkloristic renderings are available, too, besides Jain-, Buddhist-, and even Muslim-versions. The two texts have had a great impact on Southeast Asia, as is evident from literary traditions, performing arts and sculpture and painting. This module introduces the different epic traditions in India and looks into their spread to Southeast Asia.", + "title": "Epic Traditions in South- and SE-Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4276", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Honours Thesis will normally be done in the second semester of the student\u2019s final year. A qualified student intending to undertake the Honours Thesis will be expected to consult a prospective supervisor in the preceding semester for guidance on the selection of a topic and the preparation of a research proposal. The research proposal will be in an area of South Asian Studies in which the student has the necessary background and will be discussed with the supervisor. The supervisor will provide guidance to the student in conducting researching and writing the thesis of 10,000 to 12,000 words.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "SN4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in-depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head\u2019s and/or Honours Coordinator\u2019s approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to allow faculty members or visiting staff to the South Asian Studies Programme to teach specific topics in their areas of interest and expertise.", + "title": "Topics in South Asian Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to present an overview of the most important research methodologies applied in the multidisciplinary field of South Asian Studies (covering, e.g. historical, economic, geographical, sociological, anthropological, or philological approaches). The material will be presented mainly in the form of case-studies which are to be interpreted. Students are expected to develop a knowledge of different possible disciplinary approaches, but they will make an in-depth study of those methodologies which are most relevant to their own field of research.", + "title": "South Asian Research Methodologies I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce graduate students to the historical context of contemporary India after 1947 in terms of key milestone and conjunctures. Using a range of sources available digitally such as newspapers, private papers, oral history and visual material, students will have the opportunity to explore in depth specific episodes, individuals and themes. The module will engage with problems of evidence in terms of objectivity and bias, the challenges involved in framing historical narratives about the recent past and the ways in which these could be subjected to critical interpretation.", + "title": "Contemporary India: Contexts & Narratives", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce graduate students to the historical context of contemporary India after 1947 in terms of key milestone and conjunctures. Using a range of sources available digitally such as newspapers, private papers, oral history and visual material, students will have the opportunity to explore in depth specific episodes, individuals and themes. The module will engage with problems of evidence in terms of objectivity and bias, the challenges involved in framing historical narratives about the recent past and the ways in which these could be subjected to critical interpretation.", + "title": "Contemporary India: Contexts & Narratives", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SN5103R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in South Asian Studies in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will take up subjects currently being researched or developed in the multidisciplinary field of South Asian Studies by faculty in the Programme and/or by visiting scholars. The module will be in the form of an on-going seminar covering a range of critical readings in different disciplines of the field. Students will select a particular topic which is appropriate and relevant to their own research interests and complete an extended essay on that topic.", + "title": "Topics in South Asian Studies I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will take up subjects currently being researched or developed in the multidisciplinary field of South Asian Studies by faculty in the Programme and/or by visiting scholars. The module will be in the form of an on-going seminar covering a range of critical readings in different disciplines of the field. Students will select a particular topic which is appropriate and relevant to their own research interests and complete an extended essay on that topic.", + "title": "South Asian Studies: Selected Topics I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN6003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will take up subjects currently being researched or developed in the multidisciplinary field of South Asian Studies by faculty in the Programme and/or by visiting scholars. The module will be in the form of an on-going seminar covering a range of critical readings in different disciplines of the field. Students will select a particular topic which is appropriate and relevant to their own research interests and complete an extended essay on that topic.", + "title": "South Asian Studies : Selected Topics Ii", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN6004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims at further enhancing the understanding of the most important research methodologies available in the multidisciplinary field of South Asian Studies. The material on different disciplinary methods (covering, e.g. historical, economic, geographical, sociological, anthropological, or philological approaches) will be presented in the form of theoretical descriptions and relevant case-studies. Student will be expected to develop a knowledge of different approaches, and they will make an in-depth study of the methodologies most relevant to their own field of research.", + "title": "South Asian Research Methodologies Ii", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN6102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in South Asian Studies in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "South Asia Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SN6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will take up subjects currently being researched or developed in the multidisciplinary field of South Asian Studies by faculty in the Programme and/or by visiting scholars. The module will be in the form of an on-going seminar covering a range of critical readings in different disciplines of the field. Students will select a particular topic which is appropriate and relevant to their own research interests and complete an extended essay on that topic.", + "title": "Topics in South Asian Studies Ii", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SN6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The SRP is a talent development programme. It is meant for very capable students who aspire to a higher level of challenge than that offered through the mere application of scientific and mathematical concepts in the classroom. Highly motivated students are involved in concentrated research and are mentored by practising mathematicians, scientists, medical researchers and engineers from the Faculties of Science, Medicine and Engineering of the National University of Singapore (NUS) and participating Research Centres/Institutes such as the Institute of Molecular and Cell Biology, the Tropical Marine Science Institute, the Defence Science & Technology Agency, and the Singapore Botanic Gardens.", + "title": "NUS H3 Science Research Programme", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP1230", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The SP1541 module aims to equip students with critical thinking, reading, and writing skills that underlie effective communication of complex scientific content for a non-specialist audience. The module focuses on critical analysis and evaluation of science communication strategies to develop and consolidate students\u2019 understanding of the differences between scientific academic texts such as research reports and popular science texts such as science news articles. Students will be exposed to popular science texts in various scientific disciplines, which will serve as the basis for group discussions, individual presentations, and the writing of science news articles targeted at an educated non-specialist audience.", + "title": "Exploring Science Communication through Popular Science", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP1541", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR7", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR6", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR7", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "34", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR7", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR6", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "28", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "31", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "03", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "30", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "31", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "29", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR6", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "21", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR6", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "11", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR6", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "28", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR6", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "27", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "32", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "26", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR6", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR6", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "06", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR6", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "29", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-03-06", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR6", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "04", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "33", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-TR7", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "22", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "23", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "02", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "07", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "06", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "04", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "03", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "05", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "25", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "01", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "24", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1B", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "08", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "09", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "21", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CELC-SR1A", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Science Research Programme Advanced Placement", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP1630", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a four-week joint summer program offered by NUS and\nHokkaido University (HU) of Japan. The module introduces\ncomparative study of crops production in natural and controlled\nenvironment going from farmland to farm factories. Selected areas\nin the use of agri-science, agri-technology and agronomy in\nimproving field crop selection and production, and soil improvement\nand management will be discussed,including case studies of\nmarketing systems for agricultural products,introduction to\nagricultural farming,business going from upstream to downstream\nprocessing to post-harvest progress. Learning is complemented with\nstudent-centric case-study projects on assessment of agri-science\ntechnology and/or products in the market.", + "title": "Agri-Science in Japan and Singapore", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Many topics debated in nanoscience are frontier and futuristic, although some have immediate technological applications. The fundamental scientific principles of all nanotechnology applications, however, are grounded in basic physics and chemistry. This module thus aims to illustrate and discuss the physics and chemistry that are operative at the nanoscale. \n\n\n\nStudents will be introduced to some fundamental principles of physics and chemistry important to the nanoscale and learn to appreciate what the world is like when things are shrunk to this scale. They will also learn about some basic physical tools that can be used to explore structures at this length scale. On completion of this module, students will learn to appreciate the linkages between the fundamental sciences and practical applications in nanotechnology.", + "title": "Science at the Nanoscale", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP2251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to build essential skills for effective scientific reading and writing. The goal of the module is to empower students to (1) acquire science information strategically; (2) assess this information critically, (3) summarise scientific findings comprehensively and (4) sharing the information appropriately, coherently, accurately and responsibly. Students will critically read scientific publications, discuss scientific concepts, and report findings through coherent writing. Working in teams guided by mentors/TAs, students collaboratively develop and enhance skills of scientific information literacy, writing, and communication.", + "title": "Introduction to the Scientific Literature", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP2271", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Computing plays a crucial role in how science understands our world. It is often considered the 'third pillar' of science, alongside theory and experiments. This course will allow you to experience how computers can be used to solve fun and interesting problems (e.g. climate models, real-time measurements), in interdisciplinary science. You will also learn how to approach tackling complex problems by breaking them into smaller ones, noting similarities, identifying what data is essential and devising steps that will lead to a solution. We will then learn to use the Python programming language to implement some of these solutions.", + "title": "Working on Interdisciplinary Science, Pythonically", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP2273", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0620", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the possibility of constructing the smallest unit of life, the cell. Using the central question, what are the minimum components and processes required to build an artificial living cell from scratch, students will explore how the fundamental chemical and physical principles underlying several biological processes which cells can integrate and function as an autonomous machine to self-replicate, self-assembly, self-repair and reprogram can respond to changes in the environment.", + "title": "Engineering a Life-like Cell", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP2274", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SPSWETLAB", + "day": "Friday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SPSWETLAB", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SPSWETLAB", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SPSWETLAB", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This series of topical seminars introduce students to the latest innovations and developments in a range of industries and the career pathways they could undertake. Leading industry experts will be brought in to share their insights and advise students on the knowledge, skills and attributes that are needed to enter and succeed in each field. Complementary field trips will allow students to see how theory is applied in the industrial context. Workshop will provide the opportunity to develop and apply industry-valued transferrable skills, such as the ability to network and plan for their careers, culminating in an actionable career plan.", + "title": "Science & Technology Industry Insights I", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "SP2401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module serves to initiate students into the arena of scientific investigation using project based learning. The students get to design and to conduct laboratory experiments for their project under the supervision of mentors and PI. Here, students are strongly encouraged to undertake projects that integrates different discipline of science together. With the inter-disciplinary flavour, this module provides an avenue for students from several disciplines to work together and it also lays the foundation for further work in experimental science.", + "title": "Integrated Science Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP3172", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is the fourth module of an interdisciplinary program covering nature at different scales from \u2018Atoms to Molecules, \u2018The Cells\u2019, \u2018The Earth\u2019 and \u2018The Universe\u2019. This module traces the developments in theoretical and observational cosmology, starting from Newtonian cosmology, Hubble\u2019s observations, the Big Bang, formation of stars and black holes to recent ideas in the origin and fate of the Universe.", + "title": "The Universe", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP3176", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Monday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 49, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of the module is to provide students with hands-on research experience in aquatic ecology; the design, execution and analysis of surveys and experiments. Emphasis is placed on how quantitative scientific methods are applied to study aquatic ecosystems incorporating both theory and practice. The theory is primarily in the form of ecological survey planning and aquatic experimental design. The practical component provides the skills necessary to conduct real aquatic ecology research and present findings. The module covers hypothesis formulation, analytical methods and procedures specific to aquatic systems, as well as the use of statistical information for making ecological inferences.", + "title": "Aquatic Ecology Research", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP3203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0431", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, using the United Nations Sustainable Development Goals (UN SDGs) framework, students will develop critical and inventive thinking, communication, collaboration, and information skills. A system thinking approach will be used to analyse and understand the complex interconnections between the planet and life. Topics will cover climate, environment, oceans, biodiversity, energy, and social challenges. Projects and activities will include computational modelling, the measurements and analysis of scientific data, and the communication and discussion of global problems. Fieldwork projects will focus on gathering scientific data in local settings and collaborations with local and international organizations.", + "title": "Science for a Sustainable Earth", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP3275", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 13, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module exposes senior students to nanoscience research and nanotechnology-based industry. This is done through a series of weekly seminars by principal investigators and industrial experts in the field, laboratory and industrial visits, and by completion of nanosynthesis/nanocharacterization-related mini projects. The course culminates in an intensive one-week study tour to Japan, organised in collaboration with La Trobe University and Tokyo University", + "title": "Nano: from Research Bench to Industrial Applications", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SP3277", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SEP exchange module", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH1871", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SEP exchange module", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH1872", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SEP exchange module", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH1873", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SEP exchange module", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH1874", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SEP exchange module", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH1875", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SEP exchange module", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH1876", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SEP exchange module", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH1877", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SEP exchange module", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH1878", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "SEP exchange module", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH1879", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When we think about the things that impact health and illness we often think about health care professionals, treatments, hospitals and other aspects related to clinical care.\n\nHowever, health is fundamentally impacted by many factors and things that are situated outside of health care settings. In this module, we will explore social and ecological determinants of health, health behaviours, and examine health and social care systems.\n\nThis module aims to equip students with a holistic overview of the myriad factors that shape individual\u2019s health and illness, enabling them to take a person-centred approach.", + "title": "Social and Behavioural Determinants of Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SPH1901", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 800, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an overview of research methods, quantitative and qualitative approaches, commonly used in Public Health research and practice. Students will be equipped with the basic knowledge and practical skills to understand the breath of public health research methods. The module aims to train students in the fundamentals in communication of public health information in both oral and written forms.", + "title": "Fundamental Public Health Methods", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Epidemiology is the study of the patterns, causes, and effects of health and disease conditions in defined human populations. It is the cornerstone of public health, and provides evidence that impact on both personal decisions about our lives and public policy for preventing and controlling diseases in the population. In this module, we will cover key concepts in epidemiology, including how we measure disease burden, how we study risk factors for disease, how we evaluate interventions like new vaccines and therapies, and how to critically appraise research evidence to inform public health policy.", + "title": "Public Health and Epidemiology", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD1-09-01A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-09-01A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD1-09-01A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Monday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-09-01A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-09-01A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD1-09-01A", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Monday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD1-09-01A", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD1-09-01A", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In terms of health systems, Singapore consistently tops rankings for its efficiency and efficacy. What exactly is a health system? Why is it important that we know how health systems operate? This module aims to provide students with an introductory overview of health systems and policies, that have the ability to shape an individual's and the population's wellbeing. Singapore's healthcare system is used as case study to explain the organization of health systems and the policy responses to public health challenges that arise within the context of these systems.", + "title": "Systems and Policies to improve Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Lifestyle factors have a dramatic impact on health of individuals and health of populations. This module will provide an overview of important behavioural lifestyle factors (i.e. Smoking, Diet, Physical Activity, Alcohol, and Sexual Behaviour) and their impact on individual and population health. It introduces principles of behavioural change and health promotion and how they apply to behavioural lifestyle factors and disease prevention. Examples of past and present public health approaches to target these lifestyle factors will be discussed. Students participating in this module will develop a theoretical understanding of health behaviour and its application to behaviour change approaches.", + "title": "Lifestyle, Behaviour and Public Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2004", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What are the social and economic determinants of health? How do meanings of \u2018health\u2019 differ across populations and communities? This module adopts a multi-disciplinary approach in examining the different understandings of \u2018health\u2019 in society, via thinking critically about real-world health issues and their management. Drawing from disciplines such as medical anthropology, urban sociology and human geography, students will investigate how \u2018health\u2019 implicates \u2013 and is implicated by \u2013 the lives of individuals and societies. This module explores contemporary technological, ethical, political and cultural debates in health, healing and well-being.", + "title": "Health, Society and the Social Determinants", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0903EF", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Over the past decade global health has evolved from buzzword to discipline, attracting interest from governments, academic institutions and funding organizations. But, what is \u201cglobal health\u201d?\n\nAlthough we have made enormous progress in improving health status over the past 50 years, the progress has been uneven. Why?\n\nBy examining major global health challenges, programs and policies, students will analyze current and emerging global health priorities, including communicable and noncommunicable diseases, health inequity, health systems, and major global initiatives for disease prevention.", + "title": "Introduction to Global Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2105A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Public Health Nutrition lies at the intersection of public health and nutritional sciences and is concerned with the \u201cpromotion and maintenance of nutrition-related health and wellbeing of populations through the organized efforts and informed choices of society\u201d. Such approaches are required to solve many of the complex nutritional challenges, such as obesity, type-2 diabetes, micronutrient deficiencies, and hunger, which we face today. In this class we will study fundamental concepts related to nutrition, understand frameworks used to examine public health issues, and examine key historical and current public health nutrition challenges and policies.", + "title": "Public Health Nutrition", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Transforming our food systems is a vital challenge of our times. Poor diets are one of the leading causes of loss of health. Epidemics of diseases related to dietary excesses are increasing and 30% of foods produced is wasted. At the same time over 800 million people have insufficient food. While food choice is often conceived as a personal decision, these are made in the context of environments.\nIn this module, we will examine the key actors, processes and drivers of modern food environments. We will also examine potential solutions to address the systemic drivers of poor food environments.", + "title": "Food Environments and Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Work is often seen as the means to create wealth but there is more to that. More than two thirds of Singapore\u2019s population are in formal employment, excluding one million foreign workers in Singapore. However, work can have both positive and negative impacts on our physical and mental health, impacting the economy, health system and the fabric of society. We will explore the positive and negative impacts of work at the personal and population level. The student will develop a broad knowledge and understanding of the theories, principles, and concepts relevant to work and health of the working population.", + "title": "Health of the Working Population", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Over the past decade global health has evolved from buzzword to discipline, attracting interest from governments, academic institutions and funding organizations. But, what is \u201cglobal health\u201d? Although we have made enormous progress in improving health status over the past 50 years, the progress has been uneven. Why? By examining major global health challenges, programs and policies, students will analyze current and emerging global health priorities, including communicable and noncommunicable diseases, health inequity, health systems, and major global initiatives for disease prevention.", + "title": "Introduction to Global Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2401", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Singapore has one of the fastest ageing population in Asia and ageing populations are an international phenomenon. To prepare for an aged society, there is a need to understand the wide breadth and complex nature of ageing which impacts the health, physical, functional, social, psychological and economic aspects of older persons. This module introduces ageing population and its increasing relevance for health, social and economic planning and policy, in Singapore and internationally. Demographgy of ageing, normal and abnormal ageing, common ageing-related diseases, health and social services and policies, and medico-legal and ethical issues of care for older persons are included.", + "title": "Health in the Later Years", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with an introduction to health among the poor, from a public health standpoint. It takes a global perspective, with special emphasis on Asia.\nSome of the key areas covered include: What is the health of the poor like? What are the reasons for this? What are the potential interventions and challenges to improving the health of the poor?", + "title": "Health of the Poor in Asia", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH2801", + "semesterData": [ + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-06-19", + "end": "2023-07-24" + }, + "venue": "MD1-0903EF", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-06-21", + "end": "2023-07-26" + }, + "venue": "MD1-0903EF", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the public health infrastructure and functions in Singapore, as well as provide hands-on exposure to work by way of attachments\nat selected public health agencies. It allows students to explore career opportunities in public health, develop related essential skills, specifically soft skills such as management of resources, time, money and human, interpersonal relationships, communication and advocacy and provides practical exposure to selected public health careers.", + "title": "Public Health Practice", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SPH3001", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce the entire biostatistical data analysis workflow in public health, from data management to data analysis and the interpretation of results, translating data into reliable and consumable information for knowledge discovery in public health. Particular emphasis on the application of regression models in public health without the mathematical details and the proficiency in using statistical software to perform data analysis, integrating biostatistics, computer applications and public health for improving the health of mankind.", + "title": "Biostatistics for Public Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0801AB", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advances in genomics particularly from high-throughput molecular technologies, coupled with novel efficient management and processing of big data are transforming public health practice. This includes the use of human genomics in the prevention and treatment of disease, as well as the use of pathogen genomics for outbreak monitoring and surveillance. This module will introduce the use of genetics and genomics in public health practice, illustrate commonly used data analysis tools and workflows in pathogen genomics, providing concepts and practical skills in the analysis and interpretation of results.", + "title": "Data Analysis for Pathogen Genomics", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH3106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0801AB", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0801AB", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Mathematical modelling is increasingly being used to support public health decision-making in the control of infectious diseases. This module will cover mathematical modelling of infectious diseases and how these models are used for understanding disease transmission and intervention effectiveness.", + "title": "Infectious Disease Modelling for Public Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH3107", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an overview of the epidemiology of infectious diseases and its relevance to public health. It outlines fundamental concepts governing the interaction between microbes and host populations, and how such interactions affect the distribution of disease and the options for surveillance, prevention and control. Epidemiology and principles of prevention and control for several types of infectious diseases will be described, and applied to key diseases of global and local importance including vaccine preventable diseases, food-borne diseases, zoonotic and environment-related infectious diseases, vector-borne diseases, healthcare associated infections and drug resistant organisms, tuberculosis, and HIV and other sexually transmitted infections.", + "title": "Infectious disease epidemiology and public health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an overview of the public health approach to non-communicable diseases across the continuum of identification of risk factors, surveillance and implementation of measures to prevent and manage disease to reduce mortality and improve quality of life. Epidemiology and principles of prevention and control for non-communicable diseases will be described, and applied to key diseases of global and local importance.", + "title": "Prevention and Control of Non-Communicable Diseases", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH3203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The concept of \"One Health\" recognises the health of people is intertwined with the health of animals and their shared environment. Understanding this concept allows the designing and implementing programmes, policies, legislation and research in which multiple sectors communicate and work together to achieve better public health outcomes. Students will learn to apply this approach to address public health issues with a focus on infectious diseases. Current major public health concerns will be examined and One Health interventions contrasted to a traditional approach for students to better appreciate the differences.", + "title": "One Health: People, Animals and the Environment", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH3204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This skill-based module introduces students to the planning and designing of health interventions and public health programmes. It provides the theoretical constructs that underpin the development of public health programmes, as well as provides students the opportunity to design a real programme for a specific identified health issue for implementation by a local organisation. The theoretical knowledge and practical skills developed in this module include being able to analyse any given health situation or problem, perform a baseline (via real field exercise), identify and prioritise possible interventions, and develop plans for implementation.", + "title": "Designing Public Health Programmes", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH3401", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0903EF", + "day": "Friday", + "lessonType": "Lecture", + "size": 28, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will discuss key concepts that economists use to analyze the production and consumption of health and health care and apply these concepts to selected issues in health policy. We will first cover the microeconomic fundamentals that drive patient choices, provider and behavior, health insurance and medical innovation. The second part of the semester will shift to a macroeconomic perspective on systems and policy, and the third will conclude with a discussion the economic evaluation of health technologies and public health interventions.", + "title": "Public Health Economics", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH3403", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0903EF", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Being active and less sedentary are cornerstones of health promotion as these behaviours are strongly linked to health. Unfortunately, physical inactivity and too much sitting are the norm in our modern world. In this module we will examine the relationship between physical activity/sedentary behaviour and health, look into various approaches to measuring physical activity/sedentary behaviour and highlight multiple ways to change these behaviours. This will include looking at various levels of influence. Students will also be exposed to technology-driven approaches in various domains of physical activity/sedentary behaviour research and practice.", + "title": "Physical Activity For Better Population Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH3404", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0903EF", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the principles and skills to design health communication messages and activities/projects e.g. talks, skills development, telehealth in a variety of settings such as the school, workplace, internet and the community. It emphasizes the critical analysis and application of health communication theory and social marketing principles in the design of messages and communication projects to promote health in the community.", + "title": "Introduction to Public Health Communication", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH3501", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module motivates and introduces topics, issues and approaches that will be further developed in the MPH programme. It will focus on the origins, history and present state of public health in Singapore and globally and its underpinning ideals. Public health ethics, social-ecological determinants of health, and numeracy skills to make sense of risk and assess disease burden will be covered. Public health evidence-based and systems approach to solving complex public health problems with appropriate research methods will also be introduced.", + "title": "Foundations of Public Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "SPH5001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the foundational knowledge of epidemiology and biostatistics, and introduces students to the key principles of qualitative research methods. Students will learn how to quantify the burden of disease in populations, identify potential risk factors, develop and test hypotheses. Key considerations for the design of observational, interventional, and screening studies, and basic skills related to the analyses and interpretation of data from such studies will be emphasised. Students will gain an appreciation of the complementary nature of qualitative and quantitative research methodologies in answering public health questions.", + "title": "Public Health Research Methods", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SPH5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 135 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module applies concepts and methods in social and behavioural sciences to evaluate and inform development of health promotion policies, programmes and services. It provides students with the principles and skills to address the social, psychological and environmental factors influencing behaviour and behaviour change. Upon completion of this module, students will be able to apply commonly used behavioural theories and models to change and evaluate behaviour at the individual, group and community level for the development of effective public health promotion interventions.", + "title": "Health Behaviour and Communication", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 85, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is both a practice as well as a seminar course. Module requirements are fulfilled by planning and conducting a project in cooperation with an advisor over the course of 6 - 12 months. The project should involve collection of primary data, or an in-depth analysis of secondary data, and should be in the student\u2019s selected focus area, if they\u2019ve chosen one.", + "title": "Practicum", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SPH5005", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this module is to equip students with an analytical tool for analysing data using STATA statistical software. The module is designed for students with basic knowledge of statistics who would like to acquire skills for analysing and interpreting data using STATA.", + "title": "STATA Primer for Public Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "SPH5006", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 7, + 8, + 9, + 10, + 11 + ], + "venue": "MD1-0801AB", + "day": "Saturday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will enable you to develop the skills required to investigate, analyse and influence the policy-making processes that shape the health of the population. Implementation strategies are meant to improve the health of population through the adoption and integration of evidence-based health interventions into routine policies and practices within specific settings. Multiple strategies are used to ensure and improve the effective implementation of these programmes and policies. The relationship between programmes, policies and the wider policy environment will be discussed.", + "title": "Implementing Public Health Programmes and Policies", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5007", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to ethical principles relevant to policies, systems and interventions intended to protect and promote the health of populations. Students will become familiar with ethical theories and frameworks used in public health, and will consider the role of culture, values and context in applying these in practice.", + "title": "Ethics in Public Health Practice", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "SPH5008", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "MD1-0903EF", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "MD1-0903EF", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1630", + "weeks": [ + 2, + 4, + 5, + 6, + 7 + ], + "venue": "MD1-09-01A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the principles of statistical modelling will be introduced, and statistical models such as multiple linear regression, logistic regression and Cox proportional hazards model will be applied to a variety of practical medical problems. Methods for analysing repeated measures data, assessment of model fit, statistical handling of confounding and statistical evaluation of effect modification will also be discussed.", + "title": "Advanced Quantitative Methods I", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "MD1-0801AB", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6 + ], + "venue": "MD1-0903EF", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, issues in clinical trials, including blinding randomisation, sample size, power, ethical, regulatory, and quality-of-life issues will be addressed. Interim and sequential analyses, analysis of multiple treatments and endpoints, stratification and subgroup analyses, as well as meta-analysis of randomised controlled trials will also be discussed. Although particular emphasis is given to the evaluation of treatment in Phase III clinical trials, early phase trials will also be covered.", + "title": "Design, Conduct and Analysis of Clinical Trials", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1730", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1730", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Saturday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1730", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1730", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1730", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "MD1-0901AB", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to collection, management and data analysis of quantitative surveys in public health research, with strong emphasis on acquiring hands-on experience for handling public health data. It will cover essential concepts, such as, sampling and design of questionnaires; as well as practical components, such as, data management, statistical analysis of questionnaire data, and research involvement and engagement.", + "title": "Collection, Management & Analysis of Quantitative Data", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover major topics in healthcare analytics, including clinical related analytics (e.g., diseases, medication, laboratory test, etc.) and healthcare operations related analytics (e.g., resource planning, care process analytics and improvement, etc.). Students will learn about the different healthcare analytics areas, and select and apply the appropriate analytical techniques to address healthcare related questions.", + "title": "Analytics for Better Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01A", + "day": "Friday", + "lessonType": "Lecture", + "size": 62, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on infectious diseases of public health concern in Singapore and internationally. The course will cover concepts in the prevention, surveillance and control of infectious diseases, including vector-borne diseases, foodborne diseases, HIV/AIDS and sexually transmitted diseases, tuberculosis, acute respiratory illnesses, and nosocomial infections. In addition, students will be exposed to concepts in the evaluation of vaccines and vaccination programmes, and will obtain hands-on experience in outbreak investigation through a simulated outbreak exercise. Students will learn to critically appraise and discuss the application of current control strategies.", + "title": "Control of Communicable Diseases", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module showcases the application of epidemiology to the study of non-communicable diseases. We will cover how epidemiological principles and methods inform our understanding of the burden and determinants of some major non-communicable diseases as well as the choice of the most appropriate strategies at each level of prevention, with an emphasis on primary prevention.", + "title": "Control of Non-Communicable Diseases", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers advanced methods for the design, conduct, analysis and interpretation of epidemiologic studies. The main focus is on analytical studies that aim to identify risk factors for diseases particularly case-control and cohort studies. Topics include causal inference, study design, methods of handling confounding and identifying effect modification, measurement error and information bias, selection bias, lifestyle and molecular epidemiology, and meta-analysis.", + "title": "Advanced Epidemiology I", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01A", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concepts and principles underlying nutrition in relation to health and diseases, so as to better understand and address population nutrition challenges. Content areas include an overview of nutrition as a major determinant of health and disease; methods to assess nutritional status; maternal and child health through the lens of a life course perspective; nutrition during ageing and evaluation of effective nutritional interventions. This class will include discussion of nutrition policies and strategies, multi-sectoral approaches and the importance of public- partnerships aimed at preventing chronic diseases.\n\nThere will be a strong emphasis on gaining practical skills in dietary assessments, critical appraisal of scientific literature and media articles relating to diet and nutrition and communication of nutritional science to the public. The teaching approach involves class interaction and provides opportunities for self-reflection.", + "title": "Nutrition and Health - Fundamentals and Applications", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An effective outbreak management system is core to safeguarding public health and reducing morbidity and mortality. Outbreak investigation, when properly managed, fosters cooperation between stakeholders in rapid mobilization, community engagement, communications, and business continuity. By introducing a combination of hard and soft skills, as well as knowledge and tools related to field epidemiology, environmental health, microbiology, communication and social sciences, it is designed for application of knowledge and skills to manage, foresee and solve outbreak problems efficiently and effectively.", + "title": "Urban Outbreak Management", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-03F", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We live in a densely populated modern city state that earns its living as an international trade and travel hub. Students will learn about constraints and vulnerabilities in our physico-social ecology, and how to balance the natural tropical biosphere and man-made technosphere in the face of climate, economic and lifestyle changes. Risk assessment and management form the basis for health protection, safeguarding against emergent threats, and skills-building in risk communications promotes right attitudes and behaviours for community wellbeing. This module provides a combination of hard and soft science approaches that will guide field epidemiologists in urban health security.", + "title": "Urban Field Epidemiology", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5206", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-10", + "end": "2023-05-10" + }, + "venue": "MD1-0901AB", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-09", + "end": "2023-05-09" + }, + "venue": "MD1-0901AB", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1300", + "weeks": { + "start": "2023-05-11", + "end": "2023-05-11" + }, + "venue": "MD1-0901AB", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1300", + "weeks": { + "start": "2023-05-09", + "end": "2023-05-09" + }, + "venue": "MD1-0901AB", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "MD1-0901AB", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1300", + "weeks": { + "start": "2023-05-12", + "end": "2023-05-12" + }, + "venue": "MD1-0901AB", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1300", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "MD1-0901AB", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-11", + "end": "2023-05-11" + }, + "venue": "MD1-0901AB", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": { + "start": "2023-05-12", + "end": "2023-05-12" + }, + "venue": "MD1-0901AB", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1300", + "weeks": { + "start": "2023-05-10", + "end": "2023-05-10" + }, + "venue": "MD1-0901AB", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Workplace health is an intergral part of Public Health. This module provides an overview on Workplace Safety and Health (WSH) and focus on principles of risk control and the prevention of work-related diseases and accidents at the workplace. Students are expected to evaluate and critique approaches/ programmes to promoting workplace safety and health within relevant legislation.", + "title": "Workplace Safety and Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5311", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2023-01-03", + "end": "2023-01-03" + }, + "venue": "MD1-09-01B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1400", + "weeks": { + "start": "2023-01-06", + "end": "2023-01-06" + }, + "venue": "MD1-10-01A", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1400", + "weeks": { + "start": "2023-01-04", + "end": "2023-01-04" + }, + "venue": "MD1-09-01B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1400", + "weeks": { + "start": "2023-01-03", + "end": "2023-01-03" + }, + "venue": "MD1-09-01B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-07" + }, + "venue": "MD1-09-01B", + "day": "Saturday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2023-01-06", + "end": "2023-01-06" + }, + "venue": "MD1-10-01A", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1400", + "weeks": { + "start": "2023-01-05", + "end": "2023-01-05" + }, + "venue": "MD1-09-01B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2023-01-04", + "end": "2023-01-04" + }, + "venue": "MD1-09-01B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": { + "start": "2023-01-05", + "end": "2023-01-05" + }, + "venue": "MD1-09-01B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Occupational hazards are the principal threats to workers\u2019 health at the workplace. This module presents the important chemical, biological, safety, physical, ergonomic and psychosocial occupational hazards at the workplace. It focuses on exposure routes, toxicological mechanisms, the health impact on the worker, and critically, to allow the practitioner to design and implement effective programmes to mitigate or prevent the adverse effects of these hazards to workers at the workplace.", + "title": "Assessment and Control of Occupational Hazards", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SPH5312", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01B", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to apply the principles of prevention of occupational diseases in real-world settings. Students will learn the approach to preventing and managing both occupational diseases and other health conditions or injuries in the workplace setting, as well as the elements of an occupational disease prevention programme.", + "title": "Principles of Occupational Medicine", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5313", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the enterprise considerations of occupational health. It includes key topics such as Occupational Health and Safety management systems, workplace health promotion, error prevention, safety culture and incident investigation. It integrates the various concepts and frameworks and contextualises it with industry practices, guidelines and legislation as practically applicable to an ongoing commercial enterprise.", + "title": "Enterprise Occupational Health Practice", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5314", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01B", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module addresses the economic and financing aspects of the production, distribution, and organisation of health care services and delivery. This includes the structure of health care delivery and insurance markets, demand for and supply of health services, pricing of services, cost of care, financing mechanisms, and their impact on the relevant markets. A special emphasis will be given to market failures and the role of government in the market for health services. Through textbook readings and discussions of seminal articles and more recent empirical applications in health economics, students will learn the economic way of thinking. They will be given the opportunity to showcase these skills through a series of research papers written throughout the semester that will culminate with a final manuscript that provides an in-depth analysis of a critical health issue.", + "title": "Health Economics and Financing", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This practitioner-led module is targeted at participants with a basic background in management (either through academic study or practice) and equips participants to work with and manage care delivery services. Teaching will be through interactive lectures, group activities and panel discussions. Participants will be expected to actively share their experiences and learn collectively.", + "title": "Management of Healthcare Organisations", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5402", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Saturday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a practical introduction to disaster preparedness and management, from a public health perspective. Participants will gain core knowledge and skills to understand how disasters are conceptualized; how disaster risk is managed; and how disaster response is planned and executed. Key topics include understanding disaster terminology, risk, and types; the international humanitarian system; assessment to identify assistance and resources required; specific sectors in the disaster context such as environmental health, food, nutrition, and health action; relevant ethical and legal frameworks such as International Human Rights Law (IHRL); and practical considerations on safety and security, and operations in disasters.", + "title": "Medical & Humanitarian Emergencies", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5403", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-05-25", + "end": "2023-05-25" + }, + "venue": "MD1-0903EF", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-05-24", + "end": "2023-05-24" + }, + "venue": "MD1-0903EF", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-05-22", + "end": "2023-05-22" + }, + "venue": "MD1-0903EF", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-05-24", + "end": "2023-05-24" + }, + "venue": "MD1-0903EF", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-05-26", + "end": "2023-05-26" + }, + "venue": "MD1-0903EF", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-05-26", + "end": "2023-05-26" + }, + "venue": "MD1-0903EF", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-05-22", + "end": "2023-05-22" + }, + "venue": "MD1-0903EF", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-05-23", + "end": "2023-05-23" + }, + "venue": "MD1-0903EF", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-05-23", + "end": "2023-05-23" + }, + "venue": "MD1-0903EF", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-05-25", + "end": "2023-05-25" + }, + "venue": "MD1-0903EF", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the concepts and techniques used to measure and improve the quality of healthcare. It will address current concerns with patient safety and medical errors, and explore systemic approaches to harm reduction. Participants will understand the methodologies and instruments for the measurement of quality in healthcare, including clinical outcome indicators, healthcare professionals\u2019 performance measurement and patient satisfaction surveys. Strategies for managing quality, including the tools for continuous quality improvement in healthcare organisations, will be presented.", + "title": "Measuring and Managing Quality of Care", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5404", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-03F", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introduction to the various domains of and methods for health services research. It is designed to provide students with a panorama of health services research and its applications and the information for further learning. The module integrates elements of statistics, psychometrics, health economics, and incorporates a diverse range of subjects including patient-reported outcomes, decision analytic modelling, and cost-effectiveness analysis.", + "title": "Introduction to Health Services Research", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5405", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-03F", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students a panoramic overview of the evolving global health landscape in today\u2019s globalised society which is characterised by unprecedented interconnectedness. Public health problems and consequences are now easily trans-national, if not global. We will focus on key cross-cutting thematic areas linking Health with the Sustainable Development Goals (SDGs)", + "title": "Contemporary Global Health Issues", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5406", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will equip the students in skills to conduct different forms of programme evaluations (formative/summative, process/outcome/impact, cost effectiveness analysis etc) in different contexts (as an internal or external evaluator of a programme). The students will acquire practical skills on how to prepare for an evaluation, conduct an evaluation and appropriately disseminate the evaluation results to the relevant stakeholders.", + "title": "Programme Evaluation", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5407", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0903EF", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, an overview of the ageing population and its increasing relevance for public health planning and policy, both in Singapore and internationally. Major topics include demography of ageing, normal (physiological and biological) and abnormal (physical and mental) ageing, prevention of ageing-related diseases and compression of morbidity, health and social services and policies for older persons, and medico-legal and ethical issues of care for the older persons. Students will learn how to apply their knowledge to critically appraise health and social programmes and policies for older persons and apply medico-legal and ethical principles in the care for older persons.", + "title": "Public Health and Ageing", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5408", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-03F", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will familiarize students with various data collection and analytic methods in qualitative research, allowing them to apply appropriate methods with relevant ethical considerations. Students will be guided through each step of the qualitative research process starting with the underlying principles of qualitative approaches and moving on to study design, sampling, data collection and analysis. Students will have hands-on practical experience applying the various data collection methods; as well as learning practical techniques on how to conduct and write the analysis.", + "title": "Qualitative Methods in Public Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5409", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0901AB", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0903EF", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Two of the most important skills that public health practitioners need to develop are programme design and proposal writing. These two skills are inseparably linked. A good programme design in a good proposal can lead to better implementation and management, and sets the stage for good monitoring and evaluation. In turn, a project executed well has better chances for re-funding and expansion by donors. This skills-building design, implementation monitoring and evaluation (DIME) course is designed to introduce students to the working environment that one will confront repeatedly.", + "title": "Developing health proposals using DIME skills & tools", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5410", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-01-03", + "end": "2023-01-03" + }, + "venue": "MD1-0903EF", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-01-06", + "end": "2023-01-06" + }, + "venue": "MD1-0901AB", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-01-03", + "end": "2023-01-03" + }, + "venue": "MD1-0903EF", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-01-05", + "end": "2023-01-05" + }, + "venue": "MD1-0903EF", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-01-04", + "end": "2023-01-04" + }, + "venue": "MD1-0903EF", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-01-05", + "end": "2023-01-05" + }, + "venue": "MD1-0903EF", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-01-06", + "end": "2023-01-06" + }, + "venue": "MD1-0903EF", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1200", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-07" + }, + "venue": "MD1-0903EF", + "day": "Saturday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-01-04", + "end": "2023-01-04" + }, + "venue": "MD1-0903EF", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-07" + }, + "venue": "MD1-0903EF", + "day": "Saturday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn about use of Information Technology in Singapore healthcare. They will gain knowledge and skills on managing IT projects in their workplace, learn about key considerations for IT project success, and be able to conduct a basic evaluation of healthcare IT products.", + "title": "Information Technology in Healthcare", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5411", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": { + "start": "2023-01-06", + "end": "2023-01-06" + }, + "venue": "MD1-08-03E", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": { + "start": "2023-01-03", + "end": "2023-01-03" + }, + "venue": "MD1-08-03E", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": { + "start": "2023-01-05", + "end": "2023-01-05" + }, + "venue": "MD1-08-03E", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-01-03", + "end": "2023-01-03" + }, + "venue": "MD1-08-03E", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 1 + ], + "venue": "MD1-08-03E", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-01-04", + "end": "2023-01-04" + }, + "venue": "MD1-08-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-01-05", + "end": "2023-01-05" + }, + "venue": "MD1-08-03E", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-01-06", + "end": "2023-01-06" + }, + "venue": "MD1-08-03E", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1 + ], + "venue": "MD1-08-03E", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": { + "start": "2023-01-04", + "end": "2023-01-04" + }, + "venue": "MD1-08-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide an applied introduction to Health Technology Assessment (HTA) research in order to enable students to begin conducting their own research and/or to understand research conducted by others. Health econometrics, cost-effectiveness and economic evaluation in healthcare, and conjoint analysis will be covered. Examples of economic analyses that have been used in all stages of HTA research, starting with quantifying economic burden of illness studies, to cost-effectiveness of particular health technologies, to budget impact and pricing will be included. Prior knowledge of basic statistics is recommended.", + "title": "Economic Methods in Health Technology Assessment", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5412", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01B", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 47, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Investing in the health of women, children and adolescents is critical for every nation\u2019s development. The course applies a life-course perspective to critically explore the issues affecting the health of mothers, young children and adolescents. We will examine the socioeconomic, behavioural and political determinants of maternal, child and adolescent health, as well as policies, programs and services to reach them. The challenges, strategies and potential innovations to more effectively improve their health and wellbeing will be a major focus. These will be linked to global efforts towards achieving the Sustainable Development Goals (SDGs) related to health and well-being, education, gender equity, and poverty reduction.", + "title": "Women\u2019s, Children\u2019s and Adolescents\u2019 Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5413", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Health informatics transforms health care by analyzing, designing, implementing, and evaluating information and communication systems that enhance individual and population health outcomes, improve care, and strengthen the clinician-patient relationship.", + "title": "Informatics for Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5414", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-05-16", + "end": "2023-05-23" + }, + "venue": "MD1-08-03E", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2023-05-15", + "end": "2023-05-29" + }, + "venue": "MD1-08-03E", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": { + "start": "2023-05-15", + "end": "2023-05-29" + }, + "venue": "MD1-08-03E", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2023-05-16", + "end": "2023-05-23" + }, + "venue": "MD1-08-03E", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the functional operations and performance of organisations engaged in the delivery of clinical care to patients and their caregivers. Participants will examine the models, structures, departments, personnel and processes in healthcare delivery networks and quality improvements efforts therein. The components and essentials of the planning, organisation, leading and control of such facilities and their operations will be discussed, that participants can better design, operationalise, monitor, analyse, evaluate and optimise healthcare delivery in their organisations for better patient and societal outcomes.", + "title": "Healthcare Operations & Performance", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5415", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-03E", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To meet the challenge of an ageing population, increasing chronic diseases and escalating healthcare costs, there is an opportunity for healthcare delivery to be better integrated. However, integrated care is a complex knowledge domain, with macro, meso and micro levels of theory and practice. This course provides students with the theoretical foundation and methodological enablers of integrated care. It introduces students to systematic methods to evaluate integrated care services, systems, pilots and interventions, including methods to enable large scale integration of care. Students will be able to apply learning to strengthen their own integrated care practice or research.", + "title": "Introduction to Integrated Care", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5416", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-03F", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Population Health is a distinguishing domain within the field of public health, which focuses on the greater social determinants and drivers of health. In understanding Population Health, one takes a systems-approach in examining the socioeconomic factors and the physical environment that influence the health and wellness for the whole of population, going beyond individualised medical healthcare for the sick. Population Health takes a broader societal view and more of a multi-disciplinary approach than the other public health domains. This module will build up the fundamental theoretical concepts and knowledge base for how to improve the health of the population.", + "title": "Fundamentals of Population Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5417", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Research growth and the related exponential rate of accumulation of publications have escalated the need for effective and efficient methods to synthesize the evidence base for evaluating health technologies. This module is designed to provide students with the skills to generate good quality evidence for conducting health technology assessments (HTA) that meet the needs of decision makers.", + "title": "Evidence Synthesis for HTA", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5420", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-0901AB", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the skills and knowledge to design mathematical and simulation models of disease employed in health technology assessment (HTA). It will include techniques such as dynamic transmission modelling and simulation. As the field is constantly evolving, new modelling techniques may be introduced over time.", + "title": "Modelling Techniques in HTA", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5421", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Health technology assessment (HTA) is a key healthcare decision making tool in informing allocation of scarce healthcare resources. HTA uses data from randomized controlled trials, observational studies and retrospective data sets to generate estimates of the cost and effectiveness of a new technology relative to the current standard of care. This module is designed to equip students with critical econometric and statistical analysis skills to generate reliable effectiveness and cost estimates for HTA.", + "title": "Applied Health Econometrics for HTA", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5422", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1830", + "weeks": [ + 1, + 3, + 4, + 5, + 6 + ], + "venue": "MD1-08-01A", + "day": "Saturday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to equip students with the conceptual understanding and technical skills to design and construct simulations relevant to health technology assessment (HTA). After reviewing the fundamentals of modelling for HTA, the implementation of stochastic individual-level models will be addressed, including the specification and use of distributions, the structuring of these models using the DICE methodology, and the approach to analyses, interpretation and presentation.", + "title": "Simulation for Health Technology Assessment", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5423", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 13 + ], + "venue": "MD1-0801AB", + "day": "Saturday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the design, implementation, and evaluation of communication programmes designed to change or reinforce health behaviour. Emphasis will be on the step-by-step process of (1) formative research and analysis (including use of conceptual frameworks, audience research, and assessment of the media, policy and service environment), (2) theory-based and evidence-based strategic design, (3) message development, pretesting, and materials production, (4) implementation and monitoring, and (5) theory-based evaluation and dissemination of findings. Upon completion of this module, students will be able to develop a work plan for a health communication project.", + "title": "Public Health Communication", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5501", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2023-05-18", + "end": "2023-05-25" + }, + "venue": "MD1-08-03E", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2023-05-17", + "end": "2023-05-24" + }, + "venue": "MD1-08-03E", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": { + "start": "2023-06-05", + "end": "2023-06-05" + }, + "venue": "E-Learn_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1800", + "weeks": { + "start": "2023-05-19", + "end": "2023-05-26" + }, + "venue": "MD1-08-03E", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows student to apply theories and concepts taught in various modules to a project within a public health organisation.", + "title": "Field Practice", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SPH5801", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an opportunity for students to learn about current and emerging topics in one of seven key areas in public health (a) Epidemiology and Disease Control, (b) Quantitative Methods, (c) Environmental / Occupational Health, (d) Health Policy and Systems, (e) Health Services Research, (f) Health Promotion and (g) Global Health. Specific topics will be selected and offered according to learning needs and relevance, and will be taught by faculty members or visiting experts. Modules on topics within the relevant specialisations [(c) and (g)] may be considered as fulfilment of requirements for that specialisation.", + "title": "Special Topics in Epidemiology and Disease Control", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an opportunity for students to learn about current and emerging topics in one of seven key areas in public health (a) Epidemiology and Disease Control, (b) Quantitative Methods, (c) Environmental / Occupational Health, (d) Health Policy and Systems, (e) Health Services Research, (f) Health Promotion and (g) Global Health. Specific topics will be selected and offered according to learning needs and relevance, and will be taught by faculty members or visiting experts. Modules on topics within the relevant specialisations [(c) and (g)] may be considered as fulfilment of requirements for that specialisation.", + "title": "Special Topics in Quantitative Methods", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an opportunity for students to learn about current and emerging topics in one of seven key areas in public health (a) Epidemiology and Disease Control, (b) Quantitative Methods, (c) Environmental / Occupational Health, (d) Health Policy and Systems, (e) Health Services Research, (f) Health Promotion and (g) Global Health. Specific topics will be selected and offered according to learning needs and relevance, and will be taught by faculty members or visiting experts. Modules on topics within the relevant specialisations [(c) and (g)] may be considered as fulfilment of requirements for that specialisation.", + "title": "Special Topics in Environmental/Occupational Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an opportunity for students to learn about current and emerging topics in one of seven key areas in public health (a) Epidemiology and Disease Control, (b) Quantitative Methods, (c) Environmental / Occupational Health, (d) Health Policy and Systems, (e) Health Services Research, (f) Health Promotion and (g) Global Health. Specific topics will be selected and offered according to learning needs and relevance, and will be taught by faculty members or visiting experts. Modules on topics within the relevant specialisations [(c) and (g)] may be considered as fulfilment of requirements for that specialisation.", + "title": "Special Topics in Health Policy and Systems", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5880D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an opportunity for students to learn about current and emerging topics in one of seven key areas in public health (a) Epidemiology and Disease Control, (b) Quantitative Methods, (c) Environmental / Occupational Health, (d) Health Policy and Systems, (e) Health Services Research, (f) Health Promotion and (g) Global Health. Specific topics will be selected and offered according to learning needs and relevance, and will be taught by faculty members or visiting experts. Modules on topics within the relevant specialisations [(c) and (g)] may be considered as fulfilment of requirements for that specialisation.", + "title": "Special Topics in Health Services Research", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5880E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an opportunity for students to learn about current and emerging topics in one of seven key areas in public health (a) Epidemiology and Disease Control, (b) Quantitative Methods, (c) Environmental / Occupational Health, (d) Health Policy and Systems, (e) Health Services Research, (f) Health Promotion and (g) Global Health. Specific topics will be selected and offered according to learning needs and relevance, and will be taught by faculty members or visiting experts. Modules on topics within the relevant specialisations [(c) and (g)] may be considered as fulfilment of requirements for that specialisation.", + "title": "Special Topics in Health Promotion", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5880F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an opportunity for students to learn about current and emerging topics in one of seven key areas in public health (a) Epidemiology and Disease Control, (b) Quantitative Methods, (c) Environmental / Occupational Health, (d) Health Policy and Systems, (e) Health Services Research, (f) Health Promotion and (g) Global Health. Specific topics will be selected and offered according to learning needs and relevance, and will be taught by faculty members or visiting experts. Modules on topics within the relevant specialisations [(c) and (g)] may be considered as fulfilment of requirements for that specialisation.", + "title": "Special Topics in Global Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5880G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The student, in consultation with the lecturer, will work out\na programme of study which will include topics, readings,\nfieldwork if relevant, and assignments for the module. A\nformal, written agreement is to be drawn up, giving a clear\naccount of the learning objectives and programme of study\nand other pertinent details. Head of Department, Program\nDirector\u2019s and Academic Advisor\u2019s approval of the written\nagreement is required. Regular meetings and reports are\nexpected. Evaluation criteria may comprise both\ncontinuous and/or and final assessment, the % distribution\nof which will be worked out between the student and the\nlecturer prior to seeking departmental approval.", + "title": "Independent Study in Epidemiology and Disease Control", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5890A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student, in consultation with the lecturer, will work out\na programme of study which will include topics, readings,\nfieldwork if relevant, and assignments for the module. A\nformal, written agreement is to be drawn up, giving a clear\naccount of the learning objectives and programme of study\nand other pertinent details. Head of Department, Program\nDirector\u2019s and Academic Advisor\u2019s approval of the written\nagreement is required. Regular meetings and reports are\nexpected. Evaluation criteria may comprise both\ncontinuous and/or and final assessment, the % distribution\nof which will be worked out between the student and the\nlecturer prior to seeking departmental approval.", + "title": "Independent Study in Quantitative Methods", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5890B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student, in consultation with the lecturer, will work out\na programme of study which will include topics, readings,\nfieldwork if relevant, and assignments for the module. A\nformal, written agreement is to be drawn up, giving a clear\naccount of the learning objectives and programme of study\nand other pertinent details. Head of Department, Program\nDirector\u2019s and Academic Advisor\u2019s approval of the written\nagreement is required. Regular meetings and reports are\nexpected. Evaluation criteria may comprise both\ncontinuous and/or and final assessment, the % distribution\nof which will be worked out between the student and the\nlecturer prior to seeking departmental approval.", + "title": "Independent Study in Environmental / Occupational Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5890C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student, in consultation with the lecturer, will work out\na programme of study which will include topics, readings,\nfieldwork if relevant, and assignments for the module. A\nformal, written agreement is to be drawn up, giving a clear\naccount of the learning objectives and programme of study\nand other pertinent details. Head of Department, Program\nDirector\u2019s and Academic Advisor\u2019s approval of the written\nagreement is required. Regular meetings and reports are\nexpected. Evaluation criteria may comprise both\ncontinuous and/or and final assessment, the % distribution\nof which will be worked out between the student and the\nlecturer prior to seeking departmental approval.", + "title": "Independent Study in Health Policy and Systems", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5890D", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student, in consultation with the lecturer, will work out\na programme of study which will include topics, readings,\nfieldwork if relevant, and assignments for the module. A\nformal, written agreement is to be drawn up, giving a clear\naccount of the learning objectives and programme of study\nand other pertinent details. Head of Department, Program\nDirector\u2019s and Academic Advisor\u2019s approval of the written\nagreement is required. Regular meetings and reports are\nexpected. Evaluation criteria may comprise both\ncontinuous and/or and final assessment, the % distribution\nof which will be worked out between the student and the\nlecturer prior to seeking departmental approval.", + "title": "Independent Study in Health Services Research", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5890E", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student, in consultation with the lecturer, will work out\na programme of study which will include topics, readings,\nfieldwork if relevant, and assignments for the module. A\nformal, written agreement is to be drawn up, giving a clear\naccount of the learning objectives and programme of study\nand other pertinent details. Head of Department, Program\nDirector\u2019s and Academic Advisor\u2019s approval of the written\nagreement is required. Regular meetings and reports are\nexpected. Evaluation criteria may comprise both\ncontinuous and/or and final assessment, the % distribution\nof which will be worked out between the student and the\nlecturer prior to seeking departmental approval.", + "title": "Independent Study in Health Promotion", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5890F", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The student, in consultation with the lecturer, will work out\na programme of study which will include topics, readings,\nfieldwork if relevant, and assignments for the module. A\nformal, written agreement is to be drawn up, giving a clear\naccount of the learning objectives and programme of study\nand other pertinent details. Head of Department, Program\nDirector\u2019s and Academic Advisor\u2019s approval of the written\nagreement is required. Regular meetings and reports are\nexpected. Evaluation criteria may comprise both\ncontinuous and/or and final assessment, the % distribution\nof which will be worked out between the student and the\nlecturer prior to seeking departmental approval.", + "title": "Independent Study in Global Health Programs: Planning and Evaluation", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH5890G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers advanced methods for the design, conduct, analysis and interpretation of epidemiologic studies. Students will apply these methods to the interpretation of published research and the design of a new research project. The main focus is on analytical studies that aim to identify risk factors for diseases particularly case-control and cohort studies. Topics include causal inference, study design, methods of handling confounding and identifying effect modification, measurement error and information bias, selection bias, lifestyle and molecular epidemiology, and meta-analysis. Students will be expected to critique research articles and participate in facilitated group discussions.", + "title": "Advanced Epidemiology II", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01A", + "day": "Monday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 7, + 9, + 11 + ], + "venue": "MD1-09-01A", + "day": "Thursday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the principles of advanced statistical modelling will be introduced, and statistical models such as multiple linear regression, logistic regression and Cox proportional hazards model will be applied to a variety of practical medical or public health problems. For time-to-event data analysis involving the Cox proportional hazards model, the proportional hazards assumption will be discussed, and strategies for handling non-proportional hazards, such as via stratification or modelling using time-dependent covariates will be introduced. We also consider the situation where several competing event types define the event of interest in a time-to-event study. Methods for analysing repeated measures data, assessment of model fit, statistical handling of confounding and statistical evaluation of effect modification will also be discussed. The statistical models introduced will be applied to real life clinical or public health data.", + "title": "Advanced Quantitative Methods II", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD1-0903EF", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1800", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "venue": "MD1-0801AB", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Dietary exposures have an important impact on health, but are highly complex and difficult to assess. This module covers methods for the assessment of diet and nutritional status including specific topical areas such as the use of dietary patterns, and application of nutritional epidemiology in birth-cohort studies. It also covers the design, conduct, analysis, and interpretation of epidemiological studies on diet and health. Students will be trained in the interpretation of published studies, the design of studies, and the analysis of data on diet and health. The emphasis of this course will be on the application of methods to provide skills that can be applied by students to their own research projects.", + "title": "Nutritional Epidemiology", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce advanced topics for analyzing large or complex datasets, with a particular emphasis on various biomedical data. We will cover fundamental techniques in machine learning with emphasis on both computing and data analysis. The topics will include regression and classification, resampling-based techniques to evaluate performance, variable selection, tree-based methods for regression and classification, support vector machines, unsupervised data clustering methods and factor analysis, neural networks, neural network-based deep learnings, etc.", + "title": "Advanced Statistical Learning", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-01A", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the understanding, familiarization and development of skills related to the use of common software (STATA and TreeAge) and data used in the international health microeconomics literature. Students are required to work on household survey data and decision modelling projects. Student participation will emphasize both research findings as well as ongoing reflections on experiences and lessons for future research practice.", + "title": "Applied Health Economics", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an in-depth understanding of the principles and skills to address the social, psychological and environmental factors influencing behaviour and behavioural change. Upon completion of this module, students will be able to interpret published research on behavioural interventions and apply commonly used behavioural theories and models to change and evaluate behaviour at the individual, group and community level for the development of effective public health promotion interventions and policies.", + "title": "Advanced Health Behaviour and Communication", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6006", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to provide students with an in-depth examination of health systems and policies as well as an understanding of health systems reforms around the world. Various frameworks and tools will be introduced to critique and evaluate health systems and policies. Students will also be required to formulate a health policy and craft a policy paper.", + "title": "Health Systems and Policy Analysis", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6007", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-03F", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students an in-depth introduction to social theory and opportunities to practice its potential application in public health. The module will introduce key ontological and epistemological concepts, related theoretical perspectives, and useful social science methodologies which students will learn to recognise and use in public health research and practice.", + "title": "Applying Social Theory in Public Health Research", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6008", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_B", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This Independent Study Module (ISM) is designed to enable the student to explore an approved topic in one of the following areas of public health: a) Epidemiology and Disease Control b) Biostatistics c) Environmental and Occupational Health, d) Health Policy and Systems e) Health Services Research f) Health Promotion and g) Global Health. The student should approach a lecturer to work out an agreed topic, readings and assignments for the module. Students who are interested in the ISM must submit a proposal, giving a clear account of the topic, number of contact hours, assignments, mode of assessment, and other pertinent details. The proposal must be reviewed and approved by the School before the student is allowed to undertake the ISM.", + "title": "Independent Study", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study (Epidemiology and Disease Control)", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6201A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study (Biostatistics)", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6201B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study (Environmental / Occupational Health)", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6201C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study (Health Policy and Systems)", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6201D", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study (Health Services Research)", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6201E", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study (Health Promotion)", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6201F", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study (Global Health)", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6201G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Being active and less sedentary are cornerstones of\npopulation health. In this module we will examine\nfundamental concepts of physical activity and sedentary\nbehaviour, their relationship with health and highlight\nmultiple ways to change these behaviours. Students will\ngain advanced knowledge and skills in measuring physical\nactivity and sedentary behaviour, determining contextual\nfactors influencing these behaviours, and in the design of\nbehavioural interventions. Concepts related to scale-up\nwill also be discussed. The module has an emphasis on\nmodern digital technologies, including wearables and\nsmartphones. We will explore ways to utilize these\ntechnologies in the context of the stated objectives.", + "title": "Advanced approaches in physical activity research", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip public health research students with practical research skills, expose them to the breadth of public health research topics and provide students with opportunities to develop their presentation and communication skills.", + "title": "Graduate Research Seminar in Public Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SPH6770", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-09-01A", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "MD1-08-03E", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide an opportunity for PhD students to learn about current and emerging topics and the latest research trends in one of following areas of public health: (a) Epidemiology and Disease Control, (b) Biostatistics, (c) Environmental / Occupational Health, (d) Health Policy and Systems, (e) Health Services Research, (f) Health Promotion and (g) Global Health.\n\nSpecific topics will be selected and offered according to learning needs and relevance, and will be taught by faculty members or visiting experts.", + "title": "Special Topics in Public Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Epidemiology and Disease Control", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Biostatistics", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Environmental / Occupational Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Health Policy and Systems", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6880D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Health Services Research", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6880E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Health Promotion", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6880F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Special Topics in Global Health", + "faculty": "SSH School of Public Health", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SPH6880G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we seek to reflect on some taken-for-granted understandings of \u201cSingapore society\u201d and to dialogue with the readings, lectures and tutorial materials. We hope you will be able to appreciate the diverse social, political, historical processes and legacies, problems and contradictions that have constructed Singapore society. Ultimately, we aim to equip you with varied viewpoints that will enable you to think critically about Singapore society, its past, its present and its future.", + "title": "Singapore Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA1201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia is many things. Its past includes dinosaurs, ancient kingdoms and devastating wars, while its future is still being shaped. SE1101E explores this fascinating region in all its diversity historical, cultural, economic, aesthetic, political, religious, gendered, environmental, and more. The module focuses on human experiences in Southeast Asia and how Southeast Asians engage with global processes. Lectures cover topics that move between the region\u2019s murky past to the cyber spaces of a seemingly borderless future. It provides both an insightful introduction to the region and a foundation for future studies.", + "title": "The Lands Below the Winds: Southeast Asia in the World", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA1202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "While drawing on methodologies and approaches used in literary studies, this module moves beyond the traditional confines of Singapore Literature. We will thus examine the representation of Singapore, and of contemporary issues of importance in Singapore, in a variety of different popular media. After an initial introduction to the critical reading of cultural representation, we will explore traditional genres such as poetry and drama, as well as more popular ones such as television, film, and popular autobiography. The module is open to all students.", + "title": "Representing Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA1206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on Singapore literature in English. It will deal with selected texts in the three main genres: poetry, fiction and drama. There will also be opportunities to discuss the works with the writers. One of its main aims is to show how literature will help us gain a more comprehensive insight into our understanding of Singapore.", + "title": "Singapore Literature in English: Selected Texts", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA1207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Studies on the everyday life of ordinary people offer an important perspective for understanding human history. This module examines the daily life of Chinese\nSingaporeans during the late 19th to 20th centuries, focusing on their cultural expressions and social actions, revolving around eight geo\u2010cultural sites, namely, Singapore River, Chinatown, Chinese temples, clan associations, opera stages, amusement parks, hawker centres, and streets/roads. Students are asked to compare the past and present of these sites through oral history and fieldwork observation.", + "title": "Everyday Life of Chinese Singaporeans: Past & Present (taught in English)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA1208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The status and legitimacy of Singlish is a hotly debated topic in Singapore society. Supporters of Singlish claim it contributes to the Singaporean identity and helps Singaporeans establish a connection with each other overseas. Detractors claim it jeopardizes Singaporeans\u2019 ability to learn Standard English and conveys a poor image of Singapore society on the global stage. This module introduces students to the various arguments and assumptions surrounding the Singlish controversy. It provides students with the conceptual tools needed to better understand the complexity behind an issue that is often presented in simplistic and emotional terms.", + "title": "The Singlish Controversy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA1209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module attempts to understand the rationale of changes in Singapore's urban landscape. It places these changes within a framework that considers Singapore's efforts to globalise and examines how policies are formulated with the idea of sustaining an economy that has integral links sub-regionally with Southeast Asia while developing new spatial linkages that will strengthen its position in the global network. Emphasis is also given to recent discussions about how diversity and difference in the perception and use of space pose a challenge to the utilitarian and functional definition adopted by the state.", + "title": "Changing Landscapes of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module traces the business history of Singapore from its origins as an East India Company outpost, as an entrepot for regional and international trade routes to its current status as a global city and center for international finance and business. This module offers an introduction to business history and explores different case studies in the local context. These care studies range from 'rags to riches' stories of early migrant communities, popular local brands, and present day entrepreneurs. Major topics include: trading communities, commodities, networks and migration, entrepreneurship, business culture, heritage, globalization, state, politics and business.", + "title": "Singapore\u2019s Business History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is about Singapore's emergence from British colonial rule and merger with Malaysia to independence and nation-building. It covers political events, the economy, education, national service, ethnic relations, and culture and national identity. Students are encouraged to think through issues central to these topics. The module is tailored for students in all Faculties at all levels.", + "title": "Nation-Building in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to promote a better understanding of Singapore-Japan relations, combining historical, political, economic, social and cultural perspectives. Besides an examination of the history of interactions between people in Singapore and Japan from the late 19th century to the present, the module also helps students grasp issues affecting Singapore\u2018s position and perception in a wider geographical and cultural context by considering its relations with Japan. Students are actively encouraged to use oral history, fieldwork and internet for their projects.", + "title": "Singapore and Japan: Historical and Contemporary Relationships", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines competing religious orientations that had evolved among the Malays of Singapore and socio-historical factors that had shaped such orientations. The ways in which these orientations condition their responses to the modern world are then discussed. The module analyses the contributions of Muslim religious thinkers to socio-economic reform of the community. A critical \nanalysis of the phenomenon of Islamic resurgence and its impact on the community\u2019s progress will also be examined. A theme underlying the module is the relevance of Islamic values in facilitating Malays adaptation to the demands of social change and pluralistic society.", + "title": "Islam and Contemporary Malay Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover a wide range of issues concerning the causes, processes, obstacles and consequences of democratic transition in the Philippines, Thailand and Indonesia - three of the largest and the most populous countries of Southeast Asia. The specific issues to be covered include economic growth and stagnation, the middle class, capitalist rule, rural politics, political parties, military coups, corruption, electoral violence, gangsters, social movements, street protests, the monarchy, communal conflicts and female politicians.", + "title": "Democratisation in Southeast Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Singapore is a sovereign nation\u2010state with formidable armed forces but its military situation is still very much governed by its place in the Malay world and its fluctuating strategic value to great powers. This module showcases the value of a 700\u2010year approach to the island\u2019s military history and examines the relative impact of its distant and recent past on its present situation. This module has no pre\u2010requisites and is suitable for any student with an interest in Singapore\u2019s history or military history in general.", + "title": "Singapore's Military History", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines a number of areas in Singapore's domestic politics with the following objectives identify the key determinants of Singapore's politics; understand the key structural-functional aspects of Singapore's domestic politics; examine the extent to which nation building has taken place in Singapore; and analyse the key challenges facing Singapore and its future as far as domestic politics is concerned. The course examines both the structural-functional aspects of domestic politics as well as issues related to nation building, state-society relations and the likely nature of future developments and challenges.", + "title": "Government and Politics of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Histories of Singapore have conventionally been narrated along internal lines, framed by administrative, political and national trajectories. Yet, the evolution of Singapore, from regional emporium to imperial port and strategic naval base, has all along been defined by much larger regional and transoceanic forces. Even after political independence in 1965, Singapore continues to project itself as a 'global city-state'. This module seeks to examine the historical evolution of Singapore against the contexts of global changes and developments from the 14th to the 21st century. This module is open to all students interested in Singapore studies.", + "title": "The Evolution of a Global City-State", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to examine the evolving economic linkages between Singapore and India in a post-Cold War setting and attempts to explain the factors that have led to their enhanced economic collaboration based on areas of complementarity. The module will use concepts like economic regionalism, Singapore's regionalization policy and India's \"Look East\" policies to explain the confluence of national interests that has enhanced bilateral economic ties between both countries. The target audiences are students from various Faculties who would like to have a better understanding of Singapore's evolving foreign policy in South Asia and the socio-cultural impact of the same.", + "title": "Singapore and India: Emerging Relations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus on the functions of the biophysical environment of the city state of Singapore. The topics include geology, soils, river systems, water supply, natural reserves, green areas, land reclamation and coastal environments. The environmental problems that arise from the development of a large tropical city within a limited area, and the possible solutions for such problems will be examined. The module does not require an extensive science or mathematics background.", + "title": "The Biophysical Environment of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The South Asian presence in Singapore is an important part of Singapore's multicultural society in terms of the 'Indian' community and its economic and commercial influence; its religious and artistic impact; and its role in the everyday life of the nation (eg. cuisine, sport and entertainment). Students will be provided the opportunity to understand the nature of South Asian migration to Singapore, the significance of the South Asian community and its contributions to Singapore's development. Students will be provided with the necessary framework to study and analyse the historical and socio-economic development of the community and South Asian identity and concerns. The module will develop critical and analytical skills guiding students in the process of social scientific enquiry. The target students are undergraduates from all Faculties.", + "title": "South Asia in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the dynamics of the world economy and the impact on Singapore in the last two centuries. It will demonstrate how Singapore grew through continual dependence on the rest of the world in different ways by focusing on major labour, capital and technological factors, in which threats are also seen as\nopportunities.", + "title": "Global Economic Dimensions of Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Popular Culture in Singapore is designed for both History and non-History students to look at the development of popular culture in Singapore from the colonial period to the present day. By learning about street theatre, local films, and theme parks among others, students will explore thematic issues like diasporic, immigrant and cosmopolitan communities; colonial impact; stratification of society by class, race and religion; surveillance; gender and the body; family and social spaces (theme parks, social clubs, sports fields). Students are expected to gain a sensitivity to historical contexts, and to better understand Singapores rich cultural heritage what has been lost, what has been recovered, the politics of heritage as well as the political, social and economic realities in Singapores historical trajectory.", + "title": "Popular Culture in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with major themed and issues in public administration with specific reference to Singapore. It covers relevant domains of the city-state government and explores issues such as the relationship between politics and administration, meritocracy and performance, combating corruption, grassroots administration, and e-governance. It also discusses administrative trends and challenges in contemporary Singapore.", + "title": "Public Administration in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA2222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a grand overview of Singapore English Language Theatre as well as an in-depth analysis of its canonical texts. It traces the development of Singapore's cultural identity through her theatre's shifting strategies of representation. Apart from contextualizing the key texts within an awareness of Singapore cultural policy and social rubric, this module also focuses on an understanding of theoretical paradigms from postcolonialism, feminism, interculturalism and postmodernism.", + "title": "Singapore English-Language Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Who are the Malays of Singapore? How are they perceived and how do they perceive themselves? These and other related questions will be raised in this module. To answer these questions we will discuss the Malays in the socio-economic and political context they live in. The module is divided into five topics: Topic 1 looks at the socio-history of the Malays. Topic 2 introduces approaches in studying Malays of Singapore. Topics 3, 4 and 5 look at different dimensions of their life in Singapore i.e. as Singapore citizens, as part of the Malay \"community\" and as members of \"Malay families\".", + "title": "Being Malays in Singapore", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses Singapore's outlook towards the world with particular reference to countries in the West and Asia. It examines the following key issues affecting Singapore's foreign policy problems of a small state, factors influencing the worldview, the key foreign policy principles and precepts, the operationalisation of relations towards different countries; and the key differences in outlook towards the world in the Cold War and post-Cold War periods. The course is mounted for students throughout NUS with interest in Singapore and particularly its foreign policy.", + "title": "Singapore's Foreign Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSA3205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the development of industrial relations and labour laws in Singapore. Students can thus understand why labour relations are the way they are in Singapore. In addition, the course is not purely historical. A substantial part of the course is also aimed at looking at the current legal problems faced by employees and employers in Singapore. This course will be of general relevance to all as students are in all likelihood going to be employees or employers some day.", + "title": "Singapore Employment Law", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSB1204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the rationale for, and process of, the emergence and growth of Singapore?s built environment from a third world country to a world class city. It enables students to have an understanding and appreciation of the economic and social aspects and implications of how properties and infrastructure are developed and managed, given the constraints that Singapore faces. It also encourages them to develop alternative views on how the built environment can help Singapore continue to prosper and remain relevant in the region. This module is open to all undergraduates who are interested in Singapore's physical development.", + "title": "Managing Singapore's Built Environment", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSD2210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the urban history and architecture of Singapore from an inter-disciplinary perspective. It will cover the period from the ancient market and settlement of Tanma-hsi or Singapura, to the formation and development of a colonial town, and to the recent post-independence period, until the contemporary debates in Architecture and Urbanism in Singapore. The module, which is targeted at general audiences of undergraduate students, aims to stimulate intellectual discourse and critical thinking by using inter-disciplinary approaches to understanding the city and architecture.", + "title": "Singapore Urban History & Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SSD2213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to basic concepts and methods of statistics that will enable them to perform appropriate data analyses to uncover meaningful insights. The statistical software R is taught alongside the material to introduce statistical computing. Students will learn to load raw data, make numerical and graphical summaries of data, and conduct various estimation and testing procedures. Topics include programming in R, descriptive statistics, concepts of probability, random variables and probability distributions, sampling distribution, statistical estimation, hypothesis testing, linear regression, and applications to real-world problems.", + "title": "Introduction to Statistics and Statistical Computing", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST1131", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "0901", + "endTime": "1001", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0304", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 278, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0435", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 278, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0598", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0598", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0598", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces life science students to the basic principles and methods of biostatistics, and their applications and interpretation. A computer package is used to enhance learning and to enable students to analyze real life data sets. \n\nTopics include probability, probability distributions, sampling distributions, statistical inference for one and two sample problems, nonparametric tests, categorical data analysis, correlation and regression analysis, multi-sample inference. This module is essential to students of the Life Sciences.", + "title": "Statistics for Life Sciences", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST1232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an elementary introduction to probability theory for students with knowledge of elementary calculus. It will cover not only the mathematics of probability theory but will work through diverse examples to illustrate the wide scope of applicability of probability, such as in engineering and computing, social and management sciences. Topics covered are counting methods, sample space and events, axioms of probability, conditional probability, independence, random variables, discrete and continuous distributions, joint and marginal distributions, conditional distribution, independence of random variables, expectation, conditional expectation, moment generating function, central limit theorem, and weak law of large numbers.", + "title": "Probability", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST2131", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0512", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Friday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S17-0404", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 170, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theoretical underpinnings of statistical methodology and concentrates on inferential procedures within the framework of parametric models. Topic include random sample and statistics, method of moments, maximum likelihood estimate, Fisher information, sufficiency and completeness, consistency and unbiasedness, sampling distributions, x2-, t- and Fdistributions, confidence intervals, exact and asymptotic pivotal method, concepts of hypothesis testing, likelihood ratio test, Neyman-Pearson lemma. This module is targeted at students who are interested in Statistic and are able to meet the prerequisite.", + "title": "Mathematical Statistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST2132", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 315, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Friday", + "lessonType": "Lecture", + "size": 315, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 36, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "8", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Monday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Thursday", + "lessonType": "Lecture", + "size": 315, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Monday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Monday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Monday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Monday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 315, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the statistical computing and programming, with the main focus on R, Python, and SAS. Students will learn basic computing and programming concepts including scripting, variables, expressions, assignments, control structures, and data structures. On the statistical side, they will learn to load raw data, make numerical and graphical summaries of data, and conduct various estimation and testing procedures. Topics include descriptive statistics, statistical estimation, robust estimation, categorical data analysis, testing hypotheses, ANOVA, regression analysis, performing resampling methods and simulations. Some basic knowledge of R is assumed.", + "title": "Statistical Computing and Programming", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST2137", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Friday", + "lessonType": "Lecture", + "size": 225, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Monday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 29, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Basic UROPS in Statistics and Applied Probability I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST2288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Statistics and Applied Probability I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST2288R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Basic UROPS in Statistics and Applied Probability II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST2289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Basic UROPS in Statistics and Applied Probability II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST2289R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 1ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ST2310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "ST2312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "ST2313", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to basic probability theory and statistical inference. Topics include basic concepts of probability, conditional probability, independence, random variables, joint and marginal distributions, mean and variance, some common probability distributions, sampling distributions, estimation and hypothesis testing based on a normal population.", + "title": "Probability and Statistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST2334", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "19", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 628, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 628, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "16", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0437", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Friday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "17", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "19", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "20", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Thursday", + "lessonType": "Lecture", + "size": 628, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Thursday", + "lessonType": "Lecture", + "size": 628, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-06118", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "18", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0440", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Descriptive statistics, conditional expectation, correlation coefficient, bivariate normal distribution, simple linear regression, analysis of variance, nonparametric methods. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Statistical Methods", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST2335", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on data analysis using multiple regression models. Topics include simple linear regression, multiple regression, model building and regression diagnostics. One and two factor analysis of variance, analysis of covariance, linear model as special case of generalized linear model. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Regression Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3131", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 278, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Monday", + "lessonType": "Lecture", + "size": 278, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 278, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Friday", + "lessonType": "Lecture", + "size": 280, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05102", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers common designs of experiments and their analysis. Topics include basic experimental designs, analysis of one-way and two way layout data, multiple comparisons, factorial designs, 2k-factorial designs, blocking and confounding, fractional factorial design and nested designs. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Design & Analysis of Experiments", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3232", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 153, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 153, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Thursday", + "lessonType": "Lecture", + "size": 153, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on life contingencies and theory of risk. Topics include survival models and life tables, life annuities, assurances and premiums, reserves, joint life and last survivor statuses, multiple decrement tables, expenses, individual and collective risk theory. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Actuarial Statistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the use of modern statistical methods for quality control and improvement. The objective is to give students a sound understanding of the principles and the basis for applying them in a variety of situations. Topics include properties, designs and application of control charts, Shewhart charts, straight moving average chart, cumulative sum chart, exponentially weighted moving average chart, basic concepts of acceptance sampling, single, multiple and sequential sampling by attributes, variable sampling. This module is targeted at students who are interested in Statistics and are able to meet the prerequisite.", + "title": "Statistical Quality Control", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concept of modelling dependence and focuses on discrete-time Markov chains. Topics include discrete-time Markov chains, examples of discrete-time Markov chains, classification of states, irreducibility, periodicity, first passage times, recurrence and transience, convergence theorems and stationary distributions. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Stochastic Processes I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-05101", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Monday", + "lessonType": "Lecture", + "size": 218, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Friday", + "lessonType": "Lecture", + "size": 218, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an introduction to the design of sample surveys and estimation procedures, with emphasis on practical applications in survey sampling. Topics include planning of surveys, questionnaire construction, methods of data collection, fieldwork procedures, sources of errors, basic ideas of sampling, simple random sampling, stratified, systematic, replicated, cluster and quota sampling, sample size determination and cost. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Survey Methodology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3239", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 153, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 153, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 153, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an introduction to the key concepts and principles of epidemiology. It emphasizes a quantitative approach to clinical and public health problems through the statistical analysis of epidemiologic data. The students will be equipped with the skills needed to understand critically the epidemiologic literature. Principles and methods are illustrated with examples. Topics include incidence prevalence and risk, mortality and morbidity rates, types of study designs prospective, retrospective and cross-sectional study, association and causation, confounding and standardization, precision and validity of epidemiologic studies, matching, screening, contingency tables, stratified analysis, logistic regression.", + "title": "Statistical Methods in Epidemiology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an introduction to the fundamental principles and methods of demography. The role of demographic data in describing the health status of a population, spotting trend and making projection will be highlighted. Topics include sources and interpretation of demographic data, rates, proportions and ratios, standardization, complete and abridged life tables, estimation and projection of fertility, mortality and migration, Interrelations among demographic variables, population dynamics, demographic models. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Demographic Methods", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3244", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module focuses on how statistics has been used successfully in solving important problems in molecular biology. Major topics covered are Genetics, basic molecular biology, discrete probability, stochastic processes, design of experiments, parameter estimation, the bootstrap, testing hypotheses, Markov Chain Monte Carlo. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisite.", + "title": "Statistics in Molecular Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to introduce students how statistical methods are used to construct actuarial loss models in order to manage the financial risks in this uncertain world. Major topics includes a model-based approach to Actuarial Science, loss distributions, frequency distributions, aggregate loss models, parametric models, effects of policy modifications, statistical inference for loss models, credibility theory.", + "title": "Statistical Models for Actuarial Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3246", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0430", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The advent of fast and inexpensive computational power has facilitated the description of real phenomenon using realistic stochastic models which can be analysed using simulation studies. This module teaches students how to analyse a model by use of a simulation study and the topics include pseudorandom number generation, generating discrete and continuous random variables, simulating discrete events, statistical analysis of simulated data, variance reduction, Markov Chain Monte Carlo methods. It also covers topics in stochastic optimisation such as simulated annealing. This module is targeted at students who are interested in Statistics and are able to meet the prerequisites.", + "title": "Simulation", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3247", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 148, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 148, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 148, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Statistical learning is a large collection of computer-based modelling and prediction tools with applications in diverse fields including business, medicine, astrophysics, and public policy. This series of two modules covers many of the popular approaches for a variety of statistical problems. There is heavy emphasis on the implementation of these methods on real-world data sets in the popular statistical software package R. Part I gives a broad overview of the common problems as well as their most popular approaches. Topics include linear regression model and its extensions, classification methods, resampling methods, regularisation and model selection, principal components and clustering methods.", + "title": "Statistical Learning I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3248", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 250, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-29T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Please see section 4.4.3.", + "title": "Advanced UROPS in Statistics & Applied Probability I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Please see section 4.4.3. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Statistics & Applied Probability I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3288R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced UROPS in Statistics & Applied Probability II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Statistics & Applied Probability II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST3289R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 2ST", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ST3310", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduate students from Cohorts AY2020/2021 and before, requiring them to perform a structured internship in a company/institution for a minimum 10 weeks period, during Special Term within their student candidature.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ST3311", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 16-20 weeks during regular semester. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "FOS Undergraduate Professional Internship Programme 3S1", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "ST3312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduates students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "FOS Undergraduate Professional Internship Programme 3S2", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "ST3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of the course are to develop the basic skills for independent scientific research, and to promote an appreciation of the application of problem solving strategies in science. On completion of the course, students will be able to demonstrate an appreciation of the current state of knowledge in a particular field of research, to master of the basic techniques required for the study of a research question, and to communicate scientific information clearly and concisely in written and spoken English.", + "title": "Honours Project in Statistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ST4199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The availability of high-speed computation has led to the development of \u201cmodern\u201d statistical methods which are implemented in the form of well-understood computer algorithms. This module introduces students to several computer intensive statistical methods and the topics include empirical distribution and plug-in principle, general algorithm of bootstrap method, bootstrap estimates of standard deviation and bias, jack-knife method, bootstrap confidence intervals, the empirical likelihood for the mean and parameters defined by simple estimating function, Wilks theorem, and EL confidence intervals, missing data, EM algorithm, Markov Chain Monte Carlo methods. This module is targeted at students who are interested in Statistics and are able to meet the prerequisite.", + "title": "Computer Intensive Statistical Methods", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 250, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 250, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the theory and methods of making statistical inference based on nonparametric techniques. Students will see the analyses of real data from various areas of applications. Topics include properties of order statistics, statistics based on ranks, distribution-free statistics, inference concerning location and scale parameters for one and two samples, Hajek's projection. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Nonparametric Statistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Linear statistical models are used to study the way a response variable depends on an unknown, linear combination of explanatory and/or classification variables. This module focuses on the theory of linear models and the topics include linear regression model, general linear model, prediction problems, sensitivity analysis, analysis of incomplete data, robust regression, multiple comparisons, introduction to generalised linear models. This module is targeted at students who are interested in Statistics and are able to meet the prerequisite.", + "title": "Linear Models", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 95, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 95, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bayesian principles: Bayes' theorem, estimation, hypothesis testing, prior distributions, likelihood, predictive distributions. Bayesian computation: numerical approximation, posterior simulation and integration, Markov chain simulation, models and applications: hierarchical linear models, generalized linear models, multivariate models, mixture models, models for missing data, case studies. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Bayesian Statistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4234", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 162, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Probability space, weak and strong laws of large numbers, convergence of random series, zero-one laws, weak convergence of probability measures, characteristic function, central limit theorem. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Probability Theory I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on ST3236 and introduces an array of stochastic models with biomedical and other real world applications. Topics include Poisson process, compound Poisson process, marked Poisson process, point process, epidemic models, continuous time Markov chain, birth and death processes, martingale. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Stochastic Processes II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 145, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Lecture", + "size": 145, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers statistical techniques and tools such as kernel methods for estimating the density and regression functions, machine learning, hidden Markov Chain, EM algorithm, classification, cluster analysis and support vector machines for analyzing large data sets and for searching for unexpected relationships in the data. It also covers model selection for searching through a large collection of potential local models that describe some aspect of the data in an easily understandable way. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Data Mining", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide an introduction to the design and analysis of clinical trials. Emphasis is on the statistical aspects. Topics include introduction to clinical trials, phases of clinical trials, objectives and endpoints, the study cohort, controls, randomization and blinding, sample size determination, treatment allocation, monitoring trial progress: compliance, dropouts and interim analyses, monitoring for evidence of adverse or beneficial treatment effects, ethical issues, quality of life assessment, data analysis involving multiple treatment groups and endpoints, stratification and subgroup analysis, intent to treat analysis, analysis of compliance data, surrogate endpoints, multi-centre trials and good practice versus misconduct. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Design & Analysis of Clinical Trials", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers modern methods for the analysis of repeated measures, clustered data, correlated outcomes and longitudinal data, with a strong emphasis on applications in the biological and health sciences. Both continuous and discrete response variables will be considered. The use of generalized estimating equations (GEE) will be emphasized. Topics include introduction to longitudinal studies, exploring longitudinal data, analysis of variance for repeated measures, general linear models for longitudinal data, growth curves, models for covariance structure, estimation of individual trajectories, generalized linear models for longitudinal discrete data, marginal models, generalized estimating equations, random effects models and transition models. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Analysis of Longitudinal Data", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a level 4000 advance course on the statistical design and analysis of genetic experiments with concentration in DNA microarray experiments. The course covers a variety of statistical methods including basic array designs, statistical models and hypothesis testing, cluster analysis and other multivariate analysis methods that play a role in the analysis of DNA microarray experiments. The students will be required to have the knowledge of statistics and of statistical genetics that is provided by the Pre-requisite(s) or equivalent. The students will have access to real data from microarray experiments and will practice with specialized software. Since this is a new expanding area and the experiments are constantly evolving, emphasis will be palced on gaining the basic knowledge abd software expertise for designing new experiments and analyzing the results. The students will gain the knowledge and the practice to be able to analyze data from genetic experiments involving DNA microarrays and similar experiments. Topics inlcude introduction to experimental genetics and DNA microarray techniques, basic design of experiments for microarrays, statistical models, modelling and testing for gene upregulation, principal components analysis and cluster analysis and gene clustering. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Statistical Methods for DNA Microarray Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to equip students with a repertoire of statistical analysis and modelling methods that are commonly used in the finance industry. Major topics include statistical properties of returns, regression analysis with applications to single and multi-factor pricing models, multivariate analysis with applications in Markowitz's portfolio management, modelling and estimation of volatilities, calculation of value-at-risk, nonparametric methods with applications to option pricing and interest rate markets. Students are assumed to have had no background in finance or economics and will be acquainted with the foundations of finance such as portfolio optimizing and the Capital Asset Pricing Model. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisite.", + "title": "Statistical Methods for Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4245", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Monday", + "lessonType": "Lecture", + "size": 145, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 145, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 145, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Statistical Learning is a large collection of computer-based modelling and prediction tools with applications in diverse fields including business, medicine, astrophysics, and public policy. This series of two modules covers many of the popular approaches for a variety of statistical problems. There is heavy emphasis on the implementation of these methods on real-world data sets in the popular statistical software package R.\n\nPart II builds on the knowledge in Part I, introducing more tools as well as generalising and extending some of the tools covered in Part I using entirely different approaches. Topics include non-parametric smoothing methods, tree-based methods, support vector machines, neural networks and ensemble learning.", + "title": "Statistical Learning II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4248", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 155, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 155, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 155, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the classical theory and methods of multivariate statistical analysis. Topics include distribution theory multivariate normal distribution, Hotelling's T2 and Wishart distributions, inference on the mean and covariance, principal components and canonical correlation, factor analysis, discrimination and classification. This module is targeted at students who are interested in Statistics, are able to meet the pre-requisites and are matriculated in or after 2002.", + "title": "Multivariate Statistical Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4250", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 145, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 145, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "0900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 145, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces methods for analysing response data that are categorical, rather than continuous. Topics include: categorical response data and contingency tables, loglinear and logit models, Poisson regression, framework of generalised linear models, model diagnostics, ordinal data. This module is targeted at students who are interested in Statistics and are able to meet the prerequisite.", + "title": "Categorical Data Analysis I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the analysis of survival data or \u201cfailure times\u201d, which measure the length of time until the occurrence of an event, with the objective of modelling the underlying distribution of the failure time variable and to assess the dependence of the failure time variable on the independent variables. Topics include: examples of survival data, concepts and techniques used in the analysis of time to event data, including censoring, hazard rates, estimation of survival curves, parametric and nonparametric models, regression techniques, regression diagnostics. This module is targeted at students who are interested in Statistics and are able to meet the prerequisite.", + "title": "Applied Survival Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the modelling and analysis of time series data. A computer package will be used to analyse real data sets. Topics include stationary time series, ARIMA models, estimation and forecasting with ARIMA models This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Applied Time Series Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4253", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 153, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Tutorial", + "size": 153, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT31", + "day": "Friday", + "lessonType": "Lecture", + "size": 153, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of selected topics, which may vary from year to year depending on the interests and availability of staff.", + "title": "Special Topics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of selected topics, which may vary from year to year depending on the interests and availability of staff.", + "title": "Special Topics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST4262", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students must be reading the Bachelor of Science degree. Student must have met Honours eligibility requirements for specific major and passed SP1001 Career Planning & Preparation or NCC1001 Headstart Module (A Career Development Programme) or NCC1000 Stepup Module (A Career Development Programme) or CFG1001 Headstart Module or CFG1000 StepUp Module.", + "title": "Applied Project in Statistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ST4299", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will have an opportunity to conduct basic research activities on a topic of interest. The topics are either self-proposed, proposed by a faculty member, or real-world problems from companies, research institutes, etc. Students will work on projects in groups of three students (default). For real-world problems sponsored by companies, research institutes, etc. smaller group sizes (including individual projects) are permitted, but subject to approval. A student will normally take this module in the final semester. Throughout the semester, project groups will have the opportunity to get direct feedback on their project progression via consultation sessions.", + "title": "Statistical Research Project", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ST5188", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 3 + ], + "venue": "LT26", + "day": "Saturday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1 + ], + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 300, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a compulsory module for research students matriculated from August 04 onwards. The objectives are to encourage research students to participate in seminars and help to improve their presentation skills. It is made up of 2 components, seminar attendance and presentation", + "title": "Graduate Seminar Module", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ST5198", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of the course are to develop the basic skills for independent scientific research, and to promote an appreciation of the application of problem solving strategies in science. On completion of the course, students will be able to demonstrate an appreciation of the current state of knowledge in a particular field of research, to master of the basic techniques required for the study of a research question, and to communicate scientific information clearly and concisely in written and spoken English.", + "title": "Coursework Track Ii Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "ST5199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces basic theories and methods in Statistics that are relevant for understanding data science. Exploratory data analysis including heat map and concentration map. Random variables. Joint distributions. Expected values. Limit theorems. Estimation of parameters including maximum likelihood estimation, Bayesian approach to parameter estimation. Testing hypotheses and confidence intervals, bootstrap method of finding confidence interval, generalized likelihood ratio statistics. Summarizing data: measures of location and dispersion, estimating variability using Bootstrap method, empirical cumulative distribution function, survival function, kernel probability density estimate. Basic ideas of predictive analytics using multiple linear and logistic regressions.", + "title": "Statistical Foundations of Data Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces theories and methods in Statistics that are relevant for understanding data science. Estimation of parameters including maximum likelihood estimation, Bayesian approach, bootstrap and delta method. Sufficient statistics, minimal sufficient statistics, ancillary statistics. Testing hypotheses and confidence intervals, bootstrap method of finding confidence interval. Summarizing data using empirical cumulative distribution function, survival function, kernel probability density estimate. Predictive analytics using multiple linear and logistic regressions. Markov chain Monte Carlo methods.", + "title": "Statistical Foundations of Data Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5201X", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Multiple regression, model diagnostics, remedial measures, variable selection techniques, non-leastsquares estimation, nonlinear models, one and two factor analysis of variance, analysis of covariance, linear model as special case of generalized linear model. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Applied Regression Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Multiple regression, asymptotic theory, robust variance estimation, ridge regression, generalized linear regression model, maximum least squares estimate, numeric algorithms, mixed-effect models, nonlinear regression, experimental designs for regression. This module targets students who have taken introductory linear regression in their undergraduate studies.", + "title": "Applied Regression Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5202X", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Monday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module introduces designed experiment as a tool for process improvements and designing products that are robust to environmental variability. Inferences about the effect of factors on a product or process can be drawn using designed experiment. Topics include analysis of variance of fixed-effect models, randomized block design, factorial designs, fractional factorial designs, blocking and confounding, response surface methodology, random effects models, nested and split-plot designs. Predictive analytics using designed experiments. This module is targeted at students who are interested in designing robust products and process improvements, and are able to meet the pre-requisites.", + "title": "Design of Experiments for Product Design and Process Improvements", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "General linear model approach to the analysis of experimental designs, means model and effects model, unbalanced designs and missing values, split-plot, strip-plot, repeated measures, nested and crossover designs, response surface methodology. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Experimental Design 2", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Conditional expectation given a sigma algebra, Martingale, stopping time, Martingale convergence theorems, Doob\u2019s Stopping Theorem and applications, Brownian motion, construction and sample path properties. This module is targeted at students who are interested in Statistics and are able to meet the prerequisites.", + "title": "Probability Theory 2", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Model fitting and selection, models for continuous and discrete data, models for polytomous data, log-linear models, conditional and quasi-likelihoods, diagnostics. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Generalized Linear Models", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modular Credits: Various smoothing methods, including kernel, spline, nearest neighbour, orthogonal series and penalized likelihood. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Nonparametric Regression", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers modern procedures for quality monitoring and productivity improvements. Quality control charting procedures: Shewhart, cumulative sum, straight moving average and exponentially weighted moving average charts. Run length distributions. Optimal charting procedures. Risk-adjusted charting procedures. Multivariate charting procedures. Process capability analysis. Design of experiments and process optimization. Predictive analytics of processes. Acceptance sampling procedures. This module is targeted at students who are interested in quality control and productivity improvements, and are able to meet the pre-requisites.", + "title": "Analytics for Quality Control and Productivity Improvements", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Stationary processes, ARIMA processes, forecasting, parameter estimation, spectral analysis, non-stationary and seasonal models. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Analysis of Time Series Data", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5209", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Stationary processes, ARIMA processes, forecasting,\nparameter estimation, spectral analysis, non-stationary\nand seasonal models. This module is targeted at students\nwho are interested in Statistics and are able to meet the\npre-requisites.", + "title": "Analysis Of Time Series Data", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5209X", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 145, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Lecture", + "size": 145, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers most of the important topics for multivariate data analysis and their extension to high dimensional data. These include multivariate data and its graphical display; measures of central tendency, covariance matrix; multivariate normal distribution; mean vector and correlation; Hotelling's T-square in various multivariate settings; principal component analysis; factor analysis; canonical correlation analysis; cluster analysis; discriminant analysis and MANOVA. This module is targeted at students who are interested in the applications of multivariate data analysis.", + "title": "Multivariate Data Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT27", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT21", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Survey data, basic sampling, stratified sampling, cluster sampling, double sampling, systematic sampling, non-response and missing values, multiple imputations, bootstrap of sampling error. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Sampling from Finite Populations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 37, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 38, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Survey data, basic sampling, stratified sampling, cluster\nsampling, double sampling, systematic sampling, nonresponse and missing values, multiple imputations,\nbootstrap of sampling error. This module is targeted at\nstudents who are interested in Statistics and are able to\nmeet the pre-requisites.", + "title": "Sampling from Finite Populations", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5211X", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 113, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Thursday", + "lessonType": "Lecture", + "size": 112, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Survival analysis uses time-to-event data to make inferences about survival, default and attrition. It can be used to evaluate the survival time of patients who have undergone treatment, the default risk of individuals or firms and the likelihood of failure in engineering systems or of employee turnover. This approach is also referred to as reliability theory in engineering and duration analysis in economics. Students will learn key concepts such as censoring and hazard, probability models for discrete and continuous survival times, and inferential procedures including parametric and semiparametric models. Further topics include competing risks, current status, and the frailty model.", + "title": "Survival Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Categorical response data and contingency tables, loglinear models, building and applying loglinear models, loglinear and logit models for ordinal variables, multinomial response models. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Categorical Data Analysis Ii", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Probability measures and their distribution functions. Random variable properties of mathematical expectation, independence, conditional probability and expectation. Convergence concepts various modes of convergence of sequence of random variables; almost sure convergence, Borel-Cantelli Lemma, uniform integrability, convergence of moments. Weak and strong law of large numbers. Convergence in distribution, characteristic function general properties, convolution, uniqueness and inversion, Lindeberg conditions and central limit theorem. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Advanced Probability Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0436", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Review Weak Law of large numbers, central limit theorem, Slutsky theorem, delta method and variance stabilizing transformation. Statistical models. Sufficiency and Neyman's Factorization criterion. Scores. Exponential families. Estimation methods moment, maximum likelihood, least squares. Optimality of estimates. Unbiasedness, minimum variance, completeness, UMVU estimates. Theorems of Rao-Blackwell, Cramer-Rao, Lehmann-Scheffe. Consistency. Large sample theory of MLE's, Bayes, minimax. Confidence intervals, P-values, classical (Neyman-Pearson) tests, UMP tests, Likelihood ratio test, Power, Wald's test, Rao's Score test, Application of likelihood ratio tests to regression. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Advanced Statistical Theory", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT29", + "day": "Friday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT34", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a level 5000 course on genetic data analysis focusing on human and population genetics. The emphasis will be in understanding the role of statistics and data analysis in modern genetics research and its applications. Numerical and computational methods will be discussed with applications to real data sets. To equip the students with the tools to conduct genetic data analysis. Topics include introduction to genetics,gene mapping,sequence data, population genetics and coalescent theory,phylogeny reconstruction,pedigree analysis,genetic epidemiology,role of genetic factors in human diseases,familial aggregation,segregation and linkage analysis, analysis of complex and quantitative traits. This module is targeted at students who are interested in Statistics and are able to meet the pre-requisites.", + "title": "Statistical Methods For Genetic Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is to familiarize the students with selected advanced methods in quantitative finance. The major topics to be covered are:\n- Realized volatility and high frequency data\n- Risk management under heavy-tailed distributional assumptions\n- Independent component analysis and its applications\n- Local parametric estimation of violatility", + "title": "Advanced Statistical Methods in Finance", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Friday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is to familiarize the students with\nadvanced strategies for Bayesian modelling. The major topics to\nbe covered are:\n\u2022 Bayesian treatment of non-hierarchical regression\nmodels.\n\u2022 Simulation based computation for inference and\nposterior predictive model checking.\n\u2022 Multilevel structures in Bayesian regression.\n\u2022 Multilevel models and analysis of variance.\n\u2022 Prior sensitivity analysis\n\u2022 Advanced modelling and computation using statistical\nsoftware packages.", + "title": "Bayesian hierarchical modelling", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to develop the skills needed by a statistical consultant. Emphasized topics include data analysis, problem solving, report writing, oral communication with clients, issues in planning experiments and collecting data, and practical aspects of consulting management.", + "title": "Statistical Consulting", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide graduate students in the PhD Biostatistics program a solid background and a good understanding of basic results and methods in probability theory and stochastic models. These skills are relevant for\nthem to take advanced modules in biostatistics, and to apply state-of-the-art Biostatistics research methodologies.", + "title": "Probability and Stochastic Processes", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Topics requiring a high level of statistical computing and some optimization can be covered here, for example, discriminant analysis, machine learning, highdimensionality and false discovery rates, stochastic search, MCMC, Monte Carlo integration, kernel smoothing and EM optimization methods.", + "title": "Advanced Topics in Applied Statistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT26", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Univariate and multivariate regression, graphical displays, normal equations, Gramm-Schmidt orthogonalization and singular value decomposition, model selection and prediction, collinearity and variable selection, diagnostics: residuals, influence, symptoms and remedies, ANOVA, fixed and random effects, nonlinear models including logistic regression, loglinear models and generalized linear\nmodels, computations with datasets using statistical computer package.", + "title": "Statistical Models:Theory/Applications", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Confidence intervals, P-values, classical (Neyman- Pearson) tests, UMP tests, Likelihood ratio test, Power, Wald\u2019s test, Rao\u2019s Score test, Application of likelihood ratio tests to regression. Additional topics that can be covered in this module includes resampling methods, Bayes procedures, robustness, times series, empirical and point processes, optimal experimental design, parametric, semiparametric and non-parametric modelling, survival analysis and sequential analysis.", + "title": "Advanced Statistical Theory II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0307", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Network data has become increasingly important in both academia and industry. Many interesting questions can be understood and analysed through networks. Applications are found in areas such as sociology (Facebook and Twitter networks), computer science (World Wide Web), and biology (gene and protein interaction networks). With the availability of large network data sets, be it in corporate, governmental or scientific contexts, comes the necessity to work with such data in an appropriate manner. This course gives a practical introduction to the theory of network analysis; topics include statistical network models, descriptive and inferential network analysis, network visualisation.", + "title": "Statistical Analysis of Networks", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "At present, almost all data that is collected is stamped with a location. This spatial information can help us in our understanding of the patterns in the data. The course is designed to introduce students to methods for handling and analysing such data. Topics covered include basic concepts of spatial data, prediction (kriging) for stationary data, and modeling the three main types of spatial data \u2013 geostatisical, areal and point pattern. R will be extensively used to demonstrate and implement the techniques.", + "title": "Spatial Statistics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT32", + "day": "Monday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data mining is an interdisciplinary science to discover useful structure, to extract information from large data sets, and to make predictions. This module will focus on the most recent but well accepted methods, especially those in investigating big and complicated data, including Lasso regression, nonparametric smoothing, Neural Networks and machine learning. This module is targeted at students who are interested in handling large and complicated data sets and are able to meet the prerequisites.", + "title": "Applied Data Mining", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5227", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT28", + "day": "Thursday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Functional data analysis refers to a set of statistical machine learning methods that extract useful information and structure from curves, surfaces or quantities varying over a continuum. This module will focus on statistical and computational fundamentals of functional data analysis, including mean and covariance estimation, functional principal component analysis, regression and classification models for functions, hypothesis testing for functional data. This module is targeted at students who are interested in handling functional data and are able to meet the pre-requisites.", + "title": "Functional Data Analysis", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of selected topics which may vary from year to year depending on the interests and availability of staff.", + "title": "Topics I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For the NUS Bulletin\nThis module consists of selected topics which may vary from year to year depending on the interests and availability of staff.\n\nFor Sem 2 16/17\nThe module is titled \u201cData-driven Decision Science I\u201d and is based on topics from a book with the same title, and subtitle \u201cwith Financial, Healthcare, IT and Other Applications,\u201d currently being written by Anna L Choi (Harvard and NUS), Alex S Deng (Microsoft), TL Lai (Stanford and NUS) and KW Tsang (Chinese University of Hong Kong at Shenzhen). The topics chosen will cover both methodology and applications, with healthcare being the focus of applications.", + "title": "Topics IA", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ST5241A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced statistics module. Possible topics include data analytics, time-series, empirical processes and functional data analysis. The exact topic to be covered will depend on the expertise of the lecturer.", + "title": "Topics 1B", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "ST5241B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of selected topics which may vary from year to year depending on the interests and availability of staff.", + "title": "Topics II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of selected topics which may vary from year to year depending on the interests and availability of staff.", + "title": "Topics III", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module gives an introduction to data science and data-driven decisions. It shows how statistical models and decision theory, coupled with high-performance computing and advanced programming, can lead to better end-user experience in industry applications and policy decisions, for which we focus in particular on A/B testing and applications to finance, healthcare, and manufacturing.", + "title": "Topics in Data Science and Analytics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to equip the students with a repertoire of statistical methods that they will find useful in their research. Major topics include multiple regression, experimental designs, categorical data analysis, analysis of repeated measures, logistic regression, discriminant and classification analysis, unified approach for correlated data analysis, survival data analysis.", + "title": "Statistical Methods For Health Science", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ST5318", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Starter Workshops are part of the Career Creation suite of training programmes designed to impart year 1 undergraduates with the core skills needed to prepare for their careers. The workshops take students through early and in-depth career planning and train them in the concrete skills necessary for their eventual internship and job search.\n\nThe Starter Workshops comprise of the following:\n1. Career Planning \u2013 How to Create Your Future\n2. Personal Branding \u2013 How the World Knows You\n3. Networking \u2013 How to Build Your Tribe\n4. Resume Crafting \u2013 How to Impress on Paper\n5. Interviewing \u2013 How to Showcase Yourself", + "title": "Career Creation Starter Workshops", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "STR1000", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 4 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 4 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "A2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 4 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "A4", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 2, + 4 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "A3", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Sectional Teaching", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "A1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 2, + 4 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Starter Clinics are part of the Career Creation suite of training programmes designed to impart year 2 undergraduates in NUS Business School with the core skills needed to plan and prepare for their careers. The workshops will take students through early and in-depth career planning and train them in the concrete skills necessary for their eventual internship and job search. The Starter Clinics are conducted in year 2 and serve as practicums for their learning from year 1. The clinics are 1. Group Resume Critique 2. Group Mock Interview", + "title": "Career Creation Starter Clinics", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "STR2000", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the enriching experience of being in social work education. Learning includes both cognitive and experiential knowledge on the needs of individuals, families and society, and the social work response in meeting these needs. Included are the mission, values and principles of the social work profession and its roles and functions in contributing to human well-being. As an integral and compulsory part of this module, students will visit social service organization. The module is open to all NUS students.", + "title": "Social Work: A Heart-Head-Hand Connection", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 150, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B110", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Department Exchange Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW1841", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents the generalist model of social work intervention with individuals, families, groups and communities. Basic knowledge and skills of the problem-solving process, including engagement, assessment, formulation of objectives, intervention, evaluation of outcome, and termination are examined. Using an ecological-systems perspective, the module will emphasize the integration of social science knowledge and social work practice theory in facilitating the bio-psychosocial development of people. The module is for students who major in Social Work.", + "title": "Working with Individuals and Families", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS3-0215", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to human development from a lifespan perspective. Major developmental theories and contributions to the field from cross-disciplinary perspectives will be discussed. More specifically, students will look at physical, cognitive, social, psycho-emotional and moral development and gain some understanding of how each developmental domain may be shaped by the forces of nature or nurture. Tutorial assignments provide students with the opportunity to integrate classroom learning with practical concerns.", + "title": "Human Development over the Lifespan", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW2104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Friday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B110", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module concentrates on developing foundational skills for professional helping relationships in direct social work practice. It focuses on values and skills for interpersonal communication, relationship building, problem solving and intervention at the various stages of the helping relationship. Experiential learning involving role playing, case studies and the development of self-awareness are employed.", + "title": "Values & Skills for Helping Relationships", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW2105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B110", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B110", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B110", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B110", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will focus on the generalist and specialized methods of group intervention within the context of specific populations and settings. The phases of group work development, group processes, therapeutic factors and role of the leader in facilitating these will be critically examined. Contemporary group work approaches in organisational, residential and community settings are compared and contrasted. Assessment methods of social group work practice are included.", + "title": "Social Group Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW2106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0101", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B110", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an overview of the research process with specific emphasis on social work research. It deals with the development of scientific inquiry as the basis of social work practice. It covers different elements involved in the research process from problem formulation to designing the research, data collection, data analysis, and interpretation and presentation of the research findings. The module assists students with first-hand experience in writing a research proposal and conducting basic research. It also assists students in understanding and appreciating published research reports.", + "title": "Social Work Research Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS8-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS8-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS8-0405", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "SW3103A is applicable to Cohort 2019 and before. It consists of 400 hours of field practice in an organisation where students work under the professional supervision of field educators. Students are taught knowledge/skills in direct and/or indirect social work practice, depending on the placement context. They also attend compulsory fieldwork seminars to link classroom theory to professional practice and to discuss social work methods and professional development. Students are assessed on their field performance, seminar participation and presentation and a written assignment that relates theory to practice.", + "title": "Social Work Field Practice (I)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SW3103A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B110", + "day": "Monday", + "lessonType": "Lecture", + "size": 3, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "SW3103B is applicable to cohort 2020. It consists of 400 hours of field practice in an organisation where students work under the professional supervision of field educators. Students are taught knowledge/skills in direct and/or indirect social work practice, depending on the placement context. They also attend compulsory fieldwork seminars to link classroom theory to professional practice and to discuss social work methods and professional development. Students are assessed on their field performance, seminar participation and presentation and a written assignment that relates theory to practice.", + "title": "Social Work Field Practice (I)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "6", + "moduleCode": "SW3103B", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B110", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "SW3103C is applicable to cohort 2021 onwards. Students have to complete 340 hours placement in an organisation where they are supervised by qualified field educators. Field placement offers the opportunity for students to appreciate professional values and ethics, as well as apply knowledge/skills in a direct/ indirect social work practice context. In addition, students will extend their understanding of professional roles and sense of professional identity through discussion with field educators and seminar tutors during placement. Students are required to attend pre-placement Integrative Lab and Fieldwork Seminars to facilitate the link classroom theory and to professional practice.", + "title": "Social Work Field Practice (I)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SW3103C", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "SW3104 is applicable to Cohort 2019 and before. Students will be expected to gain knowledge and develop professional skills for specific contexts, such as palliative care, community work and policy/research work. It consists of 400 hours of field practice where students work under the professional supervision of field educators. They also attend compulsory fieldwork seminars to link classroom theory to professional practice and to discuss social work methods and professional development. Students are assessed on their field performance, seminar participation and presentation and a written assignment that relates theory to practice.", + "title": "Social Work Field Practice (II)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SW3104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B110", + "day": "Monday", + "lessonType": "Lecture", + "size": 3, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "SW3104A is applicable to Cohort 2020. Students will be expected to gain knowledge and develop professional skills for specific contexts, such as palliative care, community work and policy/research work. It consists of 400 hours of field practice where students work under the professional supervision of field educators. They also attend compulsory fieldwork seminars to link classroom theory to professional practice and to discuss social work methods and professional development. Students are assessed on their field performance, seminar participation and presentation and a written assignment that relates theory to practice.", + "title": "Social Work Field Practice (II)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SW3104A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B110", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "SW3104B is applicable to cohort 2021 onwards. Students have to complete 340 hours placement in an organisation where they are supervised by qualified field educators. Field placement offers the opportunity for students to appreciate professional values and ethics, as well as apply knowledge/skills in a direct/ indirect social work practice context. In addition, students would extend their understanding of professional roles and sense of professional identity through discussion with field educators and seminar tutors during placement. Students are required to attend pre-placement Reflective Lab and Fieldwork Seminars to facilitate the link classroom theory and to professional practice.", + "title": "Social Work Field Practice (II)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3104B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with an understanding of the theories and practice of community work as a method of social work. Strategies, techniques and skills in community work practice will be examined. The dynamics and challenges of community work in urban societies, particularly in the Singapore context, will be explored.", + "title": "Community Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT9", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores social and psychological thoughts and theories relevant to social work practice. Major concepts, principles, ideas and research are discussed utilizing an interdisciplinary perspective.", + "title": "Practicing Theories in Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines interpersonal conflict from a transactional perspective. Theories of conflict, conflict styles, and methods of conflict resolution, within a specific cultural context, are explored. Both general and specific intervention models and methods of conflict resolution between people, in groups, and in families, e.g., marital and other interpersonal situations, are examined. Specific skills for intervention are taught and practiced in seminar groups.", + "title": "Interpersonal Conflict Resolution", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module uses a life course approach to studying gender issues and their implications for social work practice. Three broad phases of the life course are examined: childhood and adolescence, mid-life, and old age. For each phase, the major issues affecting women that have implications for micro-level and macro-level social work practice will be examined. As there are some issues (e.g. role stereotypes) that recur over different phases of life, they will be examined over the life course.", + "title": "Gender Issues in Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theory and practice of conflict management and negotiation. It emphasises experiential learning and personal negotiation and conflict resolution skills. Through a series of case studies, simulations and role plays, students will discover and explore issues in negotiation and conflict management. Students will also be able to develop their interpersonal skills in relationship building and resolving disputes through an active exchange of views.", + "title": "Negotiation & Conflict Resolution", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents the basic assumptions, strategies, and techniques of selected counselling approaches. Students are trained in counseling methods used by psychosocial, cognitive-behavioural, humanistic, and problem and solution-focussed approaches to the treatment of problems in living. In addition, discussion on the application of counseling in specialized areas such as educational and vocational counseling, rehabilitation counselling, pre-marital and marital counselling, and counselling of specific groups will be included.", + "title": "Counselling Theories & Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will use an ecological approach to introduce the principles of community-based social work practice, focusing specifically on the family. Within the framework of family needs at different stages, the module will examine variations in intervention methods and strategies implemented at different levels. The levels will include individual, family, group, programme, organization, and policy. A comparative approach of the different models of family services will also be adopted. The module will cover the principles and processes of networking, needs assessment, programme planning and development, utilising volunteers, and management of resources. An additional purpose of the course is to prepare social work students in community-based social services such as family service centres.", + "title": "Community-Based Family Services", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents the generalist approach to social work practice in the workplace. It explores the role of social work in attending to both the social welfare needs of the workforce, and the organizational goals of employers. Models of intervention, including Employee Assistance Programmes, training and education, consultation, research, assistance to unions, and corporate social responsibility are examined.", + "title": "Occupational Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents the fundamental helping skills that are generic to current methods of personal counselling. The skills of attending, listening, and influencing are explored in the context of helping people to solve their problems. Important ethical and legal issues pertinent to counselling are examined as are issues concerning spirituality and cultural beliefs in a multi-ethnic context. A number of theoretical approaches in counselling and psychotherapy are introduced with a view to helping students develop an inclusive framework in their early exploration into counselling.", + "title": "Counselling Process & Skills", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the purpose, values and contexts of social work practice. The development of the professional self will also be included. In addition, the module will review the characteristics of potential client populations and the socio-cultural contexts for intervention. General social science themes will be discussed. The nature of local social work practice and professional issues relevant to Singapore will be examined.", + "title": "Socio-Cultural Theories in Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the nature of mental health and human dysfunction throughout the lifespan. Within an ecological-systems framework, a model of stress-coping-adaptation to modern living is examined. Theories of etiology and treatment of common human disorders in children and adults are also examined.", + "title": "Mental Health and Illness", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3217", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables students to acquire the knowledge base and intervention skills to work with children and their parents. They will understand the factors that lead to childhood vulnerability, neglect and abuse in the family and community contexts. They will learn about the history of child welfare and rights, and the social intervention approaches to protect and promote childrens well-being. They will also review the role of the state and relevant parties in this regard. The module will include experiential learning in using individual and group work skills in helping children, as well as counselling skills in working with parents.", + "title": "Child-centric Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the various policies social workers should be familiar with in order to work with different population groups, particularly those who are vulnerable. By understanding how and why particular policies develop, students learn to analyze policy and think critically about the use of policy for intervention in the social work profession.\n\nStudents intending to move on to the Honours year are strongly encouraged to take this module, as it will be helpful for SW4102 Advanced Social Policy and Planning.", + "title": "Introduction to Social Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover legislation, policy, practice and research matters relating to protection of vulnerable clients in Singapore. Students will acquire knowledge on both theories and skills required for the field of child and adult protection. Concepts of prevention, safety, preservation, reunification, risk management will be discussed. Students will learn about the complexities of protection work, evidence-informed approaches to guide their clinical work with families and emerging issues in protection work. The module will conclude with a focus on the critical role and the resilience of social workers working in protection settings.", + "title": "Protection of Vulnerable Clients", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for students who have keen interests in healthcare issues and how policies are shaped to address them in Singapore. \nThis module will prepare and equip students to understand the current healthcare trends and the various factors that affects it. The module strives to provide the breadth and depth, heighten the student's awareness on the macro issues that impact health. Topics include disease management, social determinants of health, ethical and legal issues and macro-level policies will be taught in class.", + "title": "Healthcare Issues And Policies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the unique social aspects of old age and aging, and on the social policies and programs, which most directly affect older persons and their families. This module is designed to particularly integrate conceptual and empirical knowledge in the areas of demography, epidemiology, human development, sociology of the family, age stratification, social service provision, and social policy.", + "title": "Social Gerontology", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-B110", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the use of technology and digitisation in social work practice and administration. Students will examine the extent and impact of technology and digitalisation on social services in the areas of i) Social and client development, ii) Social service administration, iii) Social work practice methods. Ethics involved in the use of technology in each area will be examined. In addition, students will respond to a gap or need in the social services and consider how that need may be met through technology. Teaching methods for this module include a combination of classroom activities, fieldwork, individual and group projects.", + "title": "Social Work & Technology Of The Future", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0202", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the basics of strategic planning for human service agencies and to the specifics of developing programmes. It considers the development of agency mission and goals, how programmes fit into those goals, how these goals and programmes interact with the environment of the agency and how planners work towards their initial acceptance by stakeholders and significant parts of that environment. Included is an analysis of how planners subsequently evaluate and present their outcomes. Bidding for grants and the presentation of information required to gain the support of funding bodies is an essential focus of the module. Processes within the agency to ensure the success of programmes are considered. Local agency examples are used to illustrate the ideas presented.", + "title": "Agency Planning and Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a disability specific knowledge for students to support and facilitate participation for people living with disabilities and their caregivers. Students will be encouraged to develop a critical understanding of the needs of people living with disabilities; and consider innovative strategies that will enable them to live with dignity and independence.", + "title": "Social Work Practice in the Field of Disability", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Internships vary in length but all take place within organisations or companies, are vetted and approved by the Department of Social Work, have relevance to the major in Social Work, involve the application of subject knowledge and theory in reflection upon the work, and are assessed. Available credited internships will be advertised at the beginning of each semester. Internships proposed by students will require the approval of the department.", + "title": "Social Work Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3550", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a UROP module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3551R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Special topics current in social work practice and research such as sexual violence, infertility, substance abuse , problem gambling, cyber gaming addiction, and trauma may be offered in this module.", + "title": "Special Topics in Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW3880", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers general theories and issues of social policy, planning and implementation relevant to social work. It examines the roles and processes in public policy and the translation of policy to social service delivery in bringing about social welfare. It analyzes the socio-political contexts and implications of policy development at national and agency levels. Students are expected to carry out small-scale planning or analysis exercises.", + "title": "Social Policy and Planning", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "Unknown" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B110", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B110", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the knowledge and skills necessary to perform research and evaluation in human services. The emphasis is on the learning of practical skills in conducting research in social work settings. These skills are in Scientific reasoning - the logic of ideas; research designs - the structuring of research activities; statistical techniques - quantitative approaches to data; data processing - utilisation of computer technology. Where appropriate, learning is through group or individual projects. This module also deals with advanced techniques of programme evaluation. Various research designs are reviewed, and their relative merits discussed. The use of evaluative techniques in interpersonal practice and professional intervention are also included.", + "title": "Advanced Research and Evaluation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT12", + "day": "Friday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the analysis of direct and indirect professional practice in Singapore and includes the study of cross-cultural variations and applications of social work theory. An examination of the process of theory building and the study of different theoretical models for indigenous practice will be made. Students are required to identify and develop a specific knowledge base for local social work practice.", + "title": "Theory Building in Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides for the advanced study of the conceptual bases for social work contribution and the application of skills in special areas of social work practice. In any given semester, a selected area of emphasis will be studied such as public education, domestic violence, rehabilitation of offenders, occupational social work, working with AIDS patients, human sexuality, social aspects of public housing, special education, pastoral care, social gerontology, community participation and organisation. Where appropriate, emphasis is given to policy factors influencing the provision of services and the implications of these for individuals, families and the community.", + "title": "Special Areas of Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the self in professional development and integrates cognition, affect and skills for different levels of social work intervention. It seeks to enable students to understand the influence of social structures on individual events and to develop an integrated framework for social work practice.", + "title": "Integrative Seminar for Profn'l Devpt", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW4203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module deals with the rationale and issues of laws associated with various aspects of social work practice, e.g., family social work including marriage, divorce, child custody, property, women's rights and protection, child protection; and industrial welfare such as protection of employees, and industrial relations. A case situation approach will be incorporated.", + "title": "Law & Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW4209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module takes as a given fact that resources are scarce and subject to competing demands. As such, social workers must or should know the relationship between economics and social welfare, and how social services operate in an economic context. The module will deal with the background, principles, methods and techniques for the rational and efficient allocation of limited resources among competing social programmes and services.", + "title": "Welfare Economics", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "There is increasing interest in social networks and social support among human service professionals and lay people for intervention purposes. The module covers the various meanings, structures, and processes of these two terms. It will analyse the different aspects of network analysis and their relevance to social work practice. The scope and limits of social support will also be examined. In addition, the module includes a review of how social support is used in selected settings.", + "title": "Social Networks & Social Support", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW4213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses how social issues are defined, social policies formulated, and value choices and theoretical models of society are adopted that govern the use of one set of policies over another. The module also examines the nexus between social policies and social services from a cross-national perspective with particular reference to selected countries in Southeast Asia. Students will be helped to analyse the challenges and constraints of a given system in the light of the socio-political and economic circumstances of specific countries. Analysis of selected social policy issues of contemporary interest to industrial and industrialising societies of Southeast Asia will be integral to the module.", + "title": "Comparative Social Service Systems in SEA", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Social workers have a role in responding to crisis situations, emergencies and natural disasters, both nationally and within the region. This module covers the theoretical and skills base to intervene effectively at the individual, family, group and community level, as well as the principles of international recovery management. The values and principles of recovery management are effectively that of community development principles and examples of specific projects will also be explored. The module also addresses issues of project management, evaluation, staff supervision and debriefing, and emergency funds management.", + "title": "Crisis and Disaster Recovery Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module (a) provides the theoretical and conceptual underpinnings to understand issues about crime and juvenile delinquency in the local context, and (b) examines social intervention choices in various correctional and rehabilitation settings. Students will learn about, and critique, existing approaches in working with offenders, as well as examine alternative social work perspectives in their care and rehabilitation.", + "title": "Social Work and Rehabilitation of Offenders", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module enables the students to acquire the knowledge base and basic intervention skills to work with children and their families. The students will understand the factors that lead to childhood vulnerabilities \u2013 personal, familial and the social environment. The students will learn about the ecological developmental framework for helping children, the process of helping, different intervention methods of helping and working with children in different circumstances.", + "title": "Child-Centric Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW4223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Helping financially vulnerable individuals and families break out of the cycle of disadvantage can be challenging. It requires social workers to be competent in supporting these families to improve their financial capability and build assets to achieve better life outcomes. Financial stability and security are essential for all individuals and families, even the most vulnerable. Thus, this module integrates the knowledge and skills covered in the Singapore Financial Capability and Asset Building (FCAB) Curriculum with case management, with the aim to support financially vulnerable individuals and families achieve sustainable life outcomes.", + "title": "Financial Capability and Asset Building", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ethical challenges and conflicts are characteristic of social work practice and demands ethics competency of the practitioner. This course aims to prepare students for ethically-guided social work practice, with an emphasis on knowledge of ethical principles and reasoning to guide case management and ethical decision-making. Students will learn to determine any presence of ethical problem and the ethical principles involved. The course introduces key ethical theories and frameworks for decision making. Students will develop awareness of their personal values influencing their practice and ethical decision-making. The course also refers to the profession\u2019s Code of Ethics to clarify professional behaviour.", + "title": "Ethics in Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4225", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will learn about creating and implementing effective, scalable and sustainable solutions which address social needs and issues through social entrepreneurship. The focus will be on social enterprises in Singapore and South East Asia. Different models, examples, and ways of thinking about social entrepreneurship will be covered in an experiential learning format.", + "title": "Social Enterprises and Social Innovations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Module follows up from the introduction to family-centred direct social work practice for individuals and families. Students are to examine various social work practice theories in depth and are expected to develop skills in appropriate interventions such as casework, problem solving, family group work, children and youth work, inter-organisational networking and preventive interventions in various settings. Experiential learning and projects are used to develop competence, critical thinking and integration of classroom learning to real life situations. Students are taught to establish ways of engaging in continuous self-learning, self-care and skills development in their professional career as a social worker.", + "title": "Advanced Family-Centred Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT14", + "day": "Monday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "E1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS4-B109", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides some insights and understanding of the impact of illness on individuals and their families. This will be examined from three broad domains: (1) macro perspectives, (2) conceptual underpinnings and theoretical orientations to social work practice, and (3) selected areas of medical social work interventions, which focus on skills and intervention. Topics will include policies, legislations, practice in different healthcare settings, social-health care integration, specialised/ advanced theories, specific and prevalent health issues.", + "title": "Social Work In Medical Setting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4228", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0301", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module prepares students to understand and work with middle-aged and older people through a combined lifespan developmental approach and ecological perspective. The focus is on the intergenerational issues. Emphasis is also placed on theoretical frameworks related to the ageing process and specific ageing issues such as dementia, and widowhood. Students will be given opportunities to improve their communication and relationship skills through role play in discussion groups and a case study which they conduct as part of their written term assignment.", + "title": "Working With Older Adults", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4229", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS4-0206", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the major challenges and issues confronting today's youth and allows one to better appreciate youth and their culture. It further examines individual, familial, and societal factors that impact adolescent development. Intervention models and techniques that target current youth issues will be examined. In addition, youth work in different settings with its unique challenges and approaches will be discussed.", + "title": "Urban Youth Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the contemporary framework used in understanding mental health concerns and policies and its application in the local context. It emphasizes key theoretical concepts and systemic principles used in the assessment and management of risk. It focuses on an ethical, effective systemic approach to risk management and quality assurance, covering common concerns such as medico\u2010legal liability, defensible decision making, documentation and information sharing. Three main concerns covered are: the risk of suicide, the risk of aggression, the risk of client disengagement from services in mental health settings. Topics include a broad overview of DSM IV in child and adult psychopathology; forensic behavioral science, clinical treatment of the psychiatric patient in abusive family systems, mental health rehabilitation, disaster management, and the efficacy of various group strategies mental health settings. A case study approach will be used to illustrate social work assessment and intervention.", + "title": "Risk Assessment and Protection of Vulnerable Clients", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The student is required to undertake research, which should have an evaluative and/or policy component and which may require direct social work intervention. The Honours Thesis, which should be of about 12,000 words, is the equivalent of three modules. The student, in consultation with staff of the department, will choose the research topic.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "SW4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Intermediate level special topics current in social work practice and research such as disaster management, problem gambling, cyber gaming addiction, and trauma may be offered in this module.", + "title": "Special Topics in Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW4880", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides insight into infectious diseases and those who are impacted by them. There will be a focus on vulnerable populations who are disproportionately affected by the various infectious diseases. In addition to more acute infectious diseases such as COVID-19 and Severe Acute Respiratory Syndrome (SARS), this module will also cover chronic infectious diseases such as Human Immunodeficiency Virus (HIV) and Pulmonary Tuberculosis. This module will integrate concepts and theories from social work and public health to provide the tools and frameworks to understand infectious diseases within the context of social work practice.", + "title": "Social Work and Infectious Diseases", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW4880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the ecological systems approach to family therapy. An in\u2010depth understanding of the rationale for family therapy, theory, family assessment, intervention, and research in family therapy will be discussed. Theory and practice will be critically reviewed from an international perspective taking into consideration differences in the socio\u2010political and cultural contexts in which family therapy is practiced. Skills and techniques for work with families will be emphasised. Supervised projects, case studies, role play, videos, coaching and live supervision may be used along with lectures in the seminar styled sessions. Integration of family therapy with other therapeutic interventions\nand in various social work settings such as schools, hospitals and community agencies will be discussed.", + "title": "Family Systems Theory and Intervention", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5103", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the ecological systems approach to family therapy. An in\u2010depth understanding of the rationale for family therapy, theory, family assessment, intervention, and research in family therapy will be discussed. Theory and practice will be critically reviewed from an international perspective taking into consideration differences in the socio\u2010political and cultural contexts in which family therapy is practiced. Skills and techniques for work with families will be emphasised. Supervised projects, case studies, role play, videos, coaching and live supervision may be used along with lectures in the seminar styled sessions. Integration of family therapy with other therapeutic interventions\nand in various social work settings such as schools, hospitals and community agencies will be discussed.", + "title": "Family Therapy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5103R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is for students to develop knowledge, values and skills that contribute to the management of a social service agency in Singapore. Students will learn to apply organizational theories and theories of management to human service organizations with specific reference to strategic planning, organisational structure and processes, staff management, managing interaction with the environment, management of information and communication, and resource and financial management. Cross country comparisons and discussions will enable critical thinking about human service organizations in the local context.", + "title": "Management of Human Service Organizations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is for students to develop knowledge, values and skills that contribute to the management of a state or a voluntary welfare organization in Singapore. Students will learn to apply organizational theories and theories of management to human service organizations with specific reference to strategic planning, organisational structure and processes, staff management, managing interaction with the environment, management of information and communication, and resource and financial management. Cross country comparisons will enable critical thinking about human service organizations in the local context.", + "title": "Management of Human Service Organizations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5104R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is for students to understand and assess the social policies in Singapore, especially those concerning welfare services for vulnerable groups. They will learn to do so in the international historical and theoretical context of the welfare state and welfare pluralism, and contemporary international discourses on social well-being and human development. Review of social policy and welfare services in Singapore will focus upon the Singapore\u2019s unique approaches to policy formulation, implementation and monitoring. Welfare services for the vulnerable groups will be assessed within the larger context of social well-being and development.", + "title": "Social Policy and Welfare Services", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is for students to understand and review the social welfare policies and services for vulnerable group in Singapore. They will learn to do so in\nthe international historical and theoretical context of the welfare state and welfare pluralism, and contemporary international discourses on social and human\ndevelopment. Review of social welfare policy and services in Singapore will focus upon the welfare pluralism policy approach with reference to family and\ncommunity\u2010based services for the vulnerable groups such as low income families, children, youth, older persons, persons with disability, addictive behaviours, women, prisoners\u2019 family and ex\u2010prisoners.", + "title": "Social Welfare Policy and Services", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5106R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the overall process of social service program planning and evaluation. Its emphasis is not only on the conceptual understanding of research\nmethodological issues underlying different program evaluation designs, but also on the application of various data collection methods and data analysis skills required\nfor program evaluation. Seeking to promote both evidence\u2010based practice and practice\u2010based research in the field, this module also examines how social workers can utilize and incorporate research methods and skills into their helping process to generate practice\u2010informed data for the stage of program evaluation.", + "title": "Program Development and Evaluation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the overall process of social service program planning and evaluation. Its emphasis is not only on the conceptual understanding of research methodological issues underlying different program evaluation designs, but also on the application of various data collection methods and data analysis skills required for program evaluation. Seeking to promote both evidence\u2010based practice and practice\u2010based research in the field, this module also examines how social workers can utilize and incorporate research methods and skills into their helping process to generate practice\u2010informed data for the stage of program evaluation.", + "title": "Program Development and Evaluation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5107R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Candidates of MSW who have a Bachelor in Social Work degree are allowed to enrol for \u2018SW5111 \u2013 Advanced Practicum\u2019. Two specialization tracks are offered: clinical and supervision track and programme development track. The learning goal is to enhance social work practitioners\u2019 competence and capabilities in the chosen track.", + "title": "Advanced Practicum", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5111", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Practicum is a compulsory module for candidates who do not have a Bachelor\u2019s degree in social work or equivalent. This module is designed to ensure practice competence by providing 800 hour first hand, systematic and supervised practice experiences in the actual field together with seminars for integration of social work theories with practice. The stipulated hours should be completed prior to graduation.", + "title": "Practicum", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5111A", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Practicum is a compulsory module for candidates with a Graduate Diploma in Social Work. This module is designed to ensure practice competence by providing 400 hour first-hand, systematic and supervised practice experiences in the actual field. The stipulated hours should be completed prior to graduation.", + "title": "Practicum", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5111B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Candidates are required to complete a Supervised Project, which will be an independent and original piece of work, which involves innovative and original initiatives such as developing a new social service program/policy or conducting an original piece of field research. Exemption of Supervised Project may only be given to non-social work graduates or other candidates on a case-by-case basis and, in such a case, Supervised Project is replaced by a Practicum.", + "title": "Supervised Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SW5112", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Supervised Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5112R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the methods and skills of group work and community work. Social work theories related to work with social and community groups in a multicultural context will be critically examined. This module will also include topics such as assessment, understanding of group dynamics, the various stages of group work, intervention skills and roles of the social worker in group and community settings.", + "title": "Social Work With Groups and Community", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5113", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the development of human services as a response to needs and the sociocultural contexts. An analysis of traditional and current patterns including social institutions and structures of social service delivery is made. Social Work practice at various levels such as individual, group, organisation and community are dealt with in this module. The integration of concepts, knowledge base and theory for social work practice will also be covered.", + "title": "Contemporary Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will examine human development from a life span perspective with emphasis on some pertinent demands in different contexts. Ecological, cognitive developmental, psychosocial and Freudian theories and perspectives among others will be examined for their relevance in explaining developmental outcomes and trajectories as well as for their implications for social work practice.", + "title": "Human Development in Context", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5115", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is essentially a practice-based approach to social work assessment and intervention. Advanced techniques and skills in dealing with specific individuals, families and groups are incorporated. The module also emphasises the key social work practice models and the application of concepts and framework of the models within the social-political and cultural contexts.", + "title": "Skills in Advanced Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5116", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Practice research promotes integration of practice and research in social work. It plays a key role in developing, improving and evaluating clinical practice skills, intervention models and social service provision. This capstone seminar aims to enable students to produce a practice research proposal and prepare for executing a practice research project based on the proposal in the subsequent semester. Learning activities in this module include a series of seminars, fieldwork, individual consultations, and student presentations for developing a practice research proposal to address practice research agenda in the field of one\u2019s interest.", + "title": "Practice Research Capstone Seminar I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5117A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Building on the practice research proposal developed in SW5117A, this capstone seminar aims to facilitate students\u2019 execution of an actual practice research project and dissemination of practice research findings. Along with peer feedback sessions in class and individual consultations, learning activities in this module include practice data collection and analysis in the field, practice research report writing, and presentation/dissemination of the practice research findings.", + "title": "Practice Research Capstone Seminar II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5117B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Trauma can result not only from catastrophic events such as abuse and violence but from incidents such as divorce, medical procedures that generate effects that\nare often minimized. This module aims to provide students with a framework for understanding trauma, the reactions of traumatized children and youth, and the effects of events such as natural disasters, accidents, violence, invasive medical procedures, abrupt separation on the child\u2019s physiological, psychological and emotional well being. In addition, the students will be introduced to evidenced based interventions models for working with traumatized children and youth.", + "title": "Working with Trauma - Infancy through Adolescence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Trauma can result not only from catastrophic events such as abuse and violence but from incidents such as divorce, medical procedures that generate effects that\nare often minimized. This module aims to provide students with a framework for understanding trauma, the reactions of traumatized children and youth, and the effects of events such as natural disasters, accidents, violence, invasive medical procedures, abrupt separation on the child\u2019s physiological, psychological and emotional well being. In addition, the students will be introduced to evidenced based interventions models for working with traumatized children and youth.", + "title": "Working with Trauma - Infancy through Adolescence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5205R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Leadership is an important determinant of organizational success. The aim of this module is for students to learn the principles for leadership that will enhance organizational performance. Leadership today is more than acquiring skills and knowledge, the module will place emphasis on the leader as a person. Students will learn the different theories of leadership and assess critical factors in developing leadership. Topics include Influence and Connection of the leader,\nthe dark side of leadership, leadership and organization culture, building trust to get results, coaching to drive effective leadership and leading and managing change in organisations.", + "title": "Mastering Leadership", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Leadership is an important determinant of organizational success. The aim of this module is for students to learn the principles for leadership that will enhance organizational performance. Leadership today is more than acquiring skills and knowledge, the module will place emphasis on the leader as a person. Students will learn the different theories of leadership and assess critical factors in developing leadership. Topics include Influence and Connection of the leader,\nthe dark side of leadership, leadership and organization culture, building trust to get results, coaching to drive effective leadership and leading and managing change in organisations.", + "title": "Mastering Leadership", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5206R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Multi\u2010stressed families often termed resistant, dysfunctional and hard to work with have been the main focus of social work practice. This module offers a multilevel intervention approach in working with these families. Using a systemic assessment of multigenerational influences, the module will explore the meanings and impact of these events for the family. The various therapeutic modalities, skills and interventions (including family assessment tools) will also be discussed, with a primary focus on strengths and resilience. The need for community networking, collaboration and case management will also be emphasised. Students will also be familiarised with the various polices and resources available to help such families in the community. Comparisons with models of practice from other countries will help to develop critical thinking about how such families are being helped in Singapore.", + "title": "Working with Multi-Stressed Families", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Multi\u2010stressed families often termed resistant, dysfunctional and hard to work with have been the main focus of social work practice. This module offers a multilevel intervention approach in working with these families. Using a systemic assessment of multigenerational influences, the module will explore the meanings and impact of these events for the family. The various therapeutic modalities, skills and interventions (including family assessment tools) will also be discussed, with a primary focus on strengths and resilience. The need for community networking, collaboration and case management will also be emphasised. Students will also be familiarised with the various polices and resources available to help such families in the community. Comparisons with models of practice from other countries will help to develop critical thinking about how such families are being helped in Singapore.", + "title": "Working with Multi-Stressed Families", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5207R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module enhances the student\u2019s understanding of the systemic/ relational use of play therapy with children and their family systems. A particular emphasis of the course will be understanding play therapy from historical, clinical, spiritual, systemic / relational and theoretical perspectives; the integration of family therapy and play therapy; and the clinical use of different types of play therapy modalities with diverse family constellations.", + "title": "Using Play Therapy with Children and Families", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module enhances the student\u2019s understanding of the systemic/ relational use of play therapy with children and their family systems. A particular emphasis of the course will be understanding play therapy from historical, clinical, spiritual, systemic / relational and theoretical perspectives; the integration of family therapy and play therapy; and the clinical use of different types of play therapy modalities with diverse family constellations.", + "title": "Using Play Therapy with Children and Families", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5208R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Social work supervision is an important practice area that\nserves to enhance the competencies of social workers\nand ensure good clients\u2019 outcomes. In ensuring good\nsupervisory practice, the dynamics of personal, relational,\norganizational, socio-economical and cultural factors have\nto be considered. In this course, students will examine the\nknowledge and skills that social work supervisors need to\naddress the challenges that may arise in the supervisory\npractice. A range of topics with broad themes based on\nthe conceptualization of supervision and critical issues in\nsupervision that are impacted by the organizational,\nsocio-political contexts will be discussed.", + "title": "Theory and Practice of Social Work Supervision", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Social work supervision is an important practice area that\nserves to enhance the competencies of social workers\nand ensure good clients\u2019 outcomes. In ensuring good\nsupervisory practice, the dynamics of personal, relational,\norganizational, socio-economical and cultural factors have\nto be considered. In this course, students will examine the\nknowledge and skills that social work supervisors need to\naddress the challenges that may arise in the supervisory\npractice. A range of topics with broad themes based on\nthe conceptualization of supervision and critical issues in\nsupervision that are impacted by the organizational,\nsocio-political contexts will be discussed.", + "title": "Theory and Practice of Social Work Supervision", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5209R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the various types of trauma, assessment tools; treatment modalities and planning; casework and counseling modalities as well as interagency collaboration and case management. Trauma arising from childhood sexual abuse and family violence, disease outbreaks and issues arising from national and global disasters.", + "title": "Trauma and Mental Health", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the various types of trauma, assessment tools; treatment modalities and planning; casework and counseling modalities as well as interagency collaboration and case management. Trauma arising from childhood sexual abuse and family violence, disease outbreaks and issues arising from national and global disasters.", + "title": "Trauma and Mental Health", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5210R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the contemporary framework used in understanding mental health concerns and policies and its application in the local context. It emphasizes key theoretical concepts and systemic principles used in the assessment and management of risk. It focuses on an ethical, effective systemic approach to risk management and quality assurance, covering common concerns such as medico\u2010legal liability, defensible decision making, documentation and information sharing. Three main concerns covered are: the risk of suicide, the risk of aggression, the risk of client disengagement from services in mental health settings. Topics include a broad overview of DSM IV in child and adult psychopathology; forensic behavioral science, clinical treatment of the psychiatric patient in abusive family systems, mental health rehabilitation, disaster management, and the efficacy of various group strategies mental health settings. A case study approach will be used to illustrate social work assessment and intervention.", + "title": "Risk Assessment & Management: Mental Health", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5211R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is estimated that in any given society 3 \u2010 10% of the population has some form of disability. This increases to 15% when the definition of disability includes people who are limited in activity due to chronic conditions. In Singapore a conservative estimate of persons with some form of disability may be anywhere from 120,000 to 400,000 individuals. This would include both a medical perspective as well as a socio\u2010functional perspective which emphasizes the need to address economic, environmental and cultural barriers. This module will use a life span perspective to discuss the impact of disability on the individual and the family. It will also use a systemic, ecological perspective to discuss the management, intervention and delivery of social services to people with disabilities.", + "title": "Practice with Persons with Disability", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is estimated that in any given society 3 \u2010 10% of the population has some form of disability. This increases to 15% when the definition of disability includes people who are limited in activity due to chronic conditions. In Singapore a conservative estimate of persons with some form of disability may be anywhere from 120,000 to 400,000 individuals. This would include both a medical perspective as well as a socio\u2010functional perspective which emphasizes the need to address economic, environmental and cultural barriers. This module will use a life span perspective to discuss the impact of disability on the individual and the family. It will also use a systemic, ecological perspective to discuss the management, intervention and delivery of social services to people with disabilities.", + "title": "Practice with Persons with Disability", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5213R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the meanings of assets, assets poverty, and inclusive asset\u2010building policy for the vulnerable population. It begins with re\u2010examination of\npoverty and existing anti\u2010poverty policy. Then, this course discusses meanings of assets and mounting evidence of short\u2010 and long\u2010term positive effects of holding assets. This course examines theories of saving and asset accumulation, in particular, institutional saving theory for inclusive asset\u2010building policy in Singapore and\nother parts of the world. To increase understanding of asset\u2010building strategies, this course provides a range of asset\u2010building policy and programs throughout the world. Students are also expected to develop new asset\u2010building\nprograms for the vulnerable groups in Singapore.", + "title": "Poverty and Asset-Building Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the meanings of assets, assets poverty, and inclusive asset\u2010building policy for the vulnerable population. It begins with re\u2010examination of\npoverty and existing anti\u2010poverty policy. Then, this course discusses meanings of assets and mounting evidence of short\u2010 and long\u2010term positive effects of holding assets. This course examines theories of saving and asset accumulation, in particular, institutional saving theory for inclusive asset\u2010building policy in Singapore and\nother parts of the world. To increase understanding of asset\u2010building strategies, this course provides a range of asset\u2010building policy and programs throughout the world. Students are also expected to develop new asset\u2010building\nprograms for the vulnerable groups in Singapore.", + "title": "Poverty and Asset-Building Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5215R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family and Interpersonal violence has been given prominence in the last decade. Social workers are increasingly identified as key providers of social-emotional services to this target group. This module will cover knowledge and skills pertaining to interpersonal violence. Topics include conceptual understanding of family violence and its dynamics, the legal provisions; casework and treatment group modalities in engaging survivors, men who abuse, child witnesses; ethical issues; networking and collaboration with key players such as Family Court, Police, MSF, hospitals and other social services; case management services. In addition, the module will examine the international experience of using different models of working in family and interpersonal violence.", + "title": "Family and Interpersonal Violence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family and Interpersonal violence has been given prominence in the last decade. Social workers are increasingly identified as key providers of social-emotional services to this target group. This module will cover knowledge and skills pertaining to interpersonal violence. Topics include conceptual understanding of family violence and its dynamics, the legal provisions; casework and treatment group modalities in engaging survivors, men who abuse, child witnesses; ethical issues; networking and collaboration with key players such as Family Court, Police, MSF, hospitals and other social services; case management services. In addition, the module will examine the international experience of using different models of working in family and interpersonal violence.", + "title": "Family and Interpersonal Violence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5216R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides advanced knowledge and skills of gerontological social work in institutionalized and community\u2010 based health care. It further encourages students to develop preventive strategies to promote healthy ageing through their meticulous evaluation of specialized ageing programs and services which have been implemented. Students work on the applied learning project that is an integral part of this course. Supervised projects would be complementary for the student\u2019s practical learning process. In light of multidisciplinary team approach and synthesized theorybased applications, this module intensively increases students\u2019 practical capacity through collaborations within and across multidisciplinary service networks for older adults.", + "title": "Continuum of Care and Healthy Ageing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides advanced knowledge and skills of gerontological social work in institutionalized and community\u2010 based health care. It further encourages students to develop preventive strategies to promote healthy ageing through their meticulous evaluation of specialized ageing programs and services which have been implemented. Students work on the applied learning project that is an integral part of this course. Supervised projects would be complementary for the student\u2019s practical learning process. In light of multidisciplinary team approach and synthesized theorybased applications, this module intensively increases students\u2019 practical capacity through collaborations within and across multidisciplinary service networks for older adults.", + "title": "Continuum of Care and Healthy Ageing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5217R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with recent theories on addiction leading to an in\u2010depth understanding of addictive behaviours, and the application for social work practice. Topics include models of addiction, etiology and recovery, assessment and treatment modalities, crisis intervention and relapse prevention. This module also focuses on alcoholism and problem gambling, as there is a wide scope for social work intervention in these problem areas. Social drinking and recreational gambling are prevalent in our society. When alcohol and gambling issues become problematic, individuals and families can\nexperience several psychosocial problems, such as family violence, financial hardship, strained relationships, family displacement, and legal and criminal infraction.", + "title": "Practice with Persons with Addiction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with recent theories on addiction leading to an in\u2010depth understanding of addictive behaviours, and the application for social work practice. Topics include models of addiction, etiology and recovery, assessment and treatment modalities, crisis intervention and relapse prevention. This module also focuses on alcoholism and problem gambling, as there is a wide scope for social work intervention in these problem areas. Social drinking and recreational gambling are prevalent in our society. When alcohol and gambling issues become problematic, individuals and families can\nexperience several psychosocial problems, such as family violence, financial hardship, strained relationships, family displacement, and legal and criminal infraction.", + "title": "Practice with Persons with Addiction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5218R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers important issues encountered by social workers involved in palliative and end\u2010of\u2010life care. Key topics include 1) assessment and intervention strategies based on the bio\u2010psychosocial\u2010spiritual perspective, 2) potential ethical dilemmas encountered in end\u2010of\u2010life care, 3) impact of personal values and biases on quality of care, 4) grief and bereavement and 5)\nend\u2010of\u2010life care for special populations. At the end of the course, students will be able to a) explain influence of personal values and biases on end\u2010of\u2010life (EOL) care, b) implement assessment and intervention strategies for\nend\u2010of\u2010life care and c) describe key aspects of the dying process, grief and bereavement.", + "title": "Palliative and End-Of-Life Care", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers important issues encountered by social workers involved in palliative and end\u2010of\u2010life care. Key topics include 1) assessment and intervention strategies based on the bio\u2010psychosocial\u2010spiritual perspective, 2) potential ethical dilemmas encountered in end\u2010of\u2010life care, 3) impact of personal values and biases on quality of care, 4) grief and bereavement and 5)\nend\u2010of\u2010life care for special populations. At the end of the course, students will be able to a) explain influence of personal values and biases on end\u2010of\u2010life (EOL) care, b) implement assessment and intervention strategies for\nend\u2010of\u2010life care and c) describe key aspects of the dying process, grief and bereavement.", + "title": "Palliative and End-Of-Life Care", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5219R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces statistics to social work students, specifically on their use in making informed decisions about social work interventions. The purpose is to facilitate students to use quantitative data in the effective development, delivery, and evaluation of social work services. Through SPSS, a user-friendly software, students will learn how to set up and analyze data. Topics covered in this course are descriptive and inferential statistics within the context of social work practice. This course goes beyond mere calculations and emphasizes on the criteria for and interpretability of statistical tests as well their applications in real world.", + "title": "Statistics for Social Workers", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces statistics to social work students, specifically on their use in making informed decisions about social work interventions. The purpose is to facilitate students to use quantitative data in the effective development, delivery, and evaluation of social work services. Through SPSS, a user-friendly software, students will learn how to set up and analyze data. Topics covered in this course are descriptive and inferential statistics within the context of social work practice. This course goes beyond mere calculations and emphasizes on the criteria for and interpretability of statistical tests as well their applications in real world.", + "title": "Statistics for Social Workers", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5220R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module emphasises practical approaches to personnel administration and human resource management. Human motivation and the development of human potential and leadership are also discussed.", + "title": "Personnel Practice & Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module outlines the current theories and principles of group social work. The focus will be on the principles and skills of group assessment and intervention in a clinical setting. This is an experiential course where students will focus on designing and conducting a group work program for a special population. Skills in selecting an appropriate theoretical framework, planning session contents and activities, conducting and evaluating the sessions will be emphasized in the CA where students are expected to conduct group sessions (30%) and write a report on outcome and learning experiences (30%).", + "title": "Current Group Approaches in Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module outlines the current theories and principles of group social work. The focus will be on the principles and skills of group assessment and intervention in a clinical setting. This is an experiential course where students will focus on designing and conducting a group work program for a special population. Skills in selecting an appropriate theoretical framework, planning session contents and activities, conducting and evaluating the sessions will be emphasized in the CA where students are expected to conduct group sessions (30%) and write a report on outcome and learning experiences (30%).", + "title": "Current Group Approaches in Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5245R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The importance of social prevention is emphasised in this module. Public education and communication will also be included.", + "title": "Social Prevention and Public Education", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the theory and practice of community development. In particular, it will address the role of community development in building social capital and community bonding. Models of community development will be critically reviewed and analyzed in the context of Singapore. Strategies and techniques used in Singapore vis-\u00e0-vis other communities and issues in ommunity participation and intervention will be explored. This module will also discuss some of the challenges of working in a community development setting.", + "title": "Community Organisation and Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the theory and practice of community development. In particular, it will address the role of community development in building social capital and community bonding. Models of community development will be critically reviewed and analyzed in the context of Singapore. Strategies and techniques used in Singapore vis-\u00e0-vis other communities and issues in ommunity participation and intervention will be explored. This module will also discuss some of the challenges of working in a community development setting.", + "title": "Community Organisation and Development", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5252R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The values and principles for volunteer management are outlined in this module. Volunteer training and development including\ndelegation, supervision, recognition, etc are included.", + "title": "Volunteer Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The values and principles for volunteer management are outlined in this module. Volunteer training and development including\ndelegation, supervision, recognition, etc are included.", + "title": "Volunteer Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5253R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Social Work in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Special topics in social work such as sexual abuse, family violence, substance abuse, traumatic disorders, etc will be dealt with in this course. The module will highlight a contemporary issue of social work practice.", + "title": "Special Topics in Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Special topics in social work such as sexual abuse, family violence, substance abuse, traumatic disorders, etc will be dealt with in this course. The module will highlight a contemporary issue of social work practice.", + "title": "Special Topics in Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5880R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic in direct social work practice will be dealt with in this module. Students in this module will critically understand and analyze the contemporary issues arising from direct practice under the special topic, learn about relevant assessment and intervention models, and acquire clinical skills which aim to address the issues for clients at different systemic levels (e.g., individuals, families, and groups) across various practice settings (e.g., community, and health care) and/or different stages of life span.", + "title": "Topics in Social Work \u2013 Direct Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject aims to provide social workers with evidence-based behavioural strategies that are adapted for brief psychological interventions in the health and mental health care setting. The two central components of the subject are; 1) the context and theory around focused strategies and health and mental health social work practice and 2) behavioural strategies for brief psychological interventions with people experiencing high prevalence disorders such as depression and anxiety. A key aspect of the subject is the practical step-by-step worksheets that social workers can use with clients and which focus on the acquisition of skills for evidence based practice.", + "title": "Evidence Based Behavioural Strategies for Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5881A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject aims to provide social workers with evidence-based behavioural strategies that are adapted for brief psychological interventions in the health and mental health care setting. The two central components of the subject are; 1) the context and theory around focused strategies and health and mental health social work practice and 2) behavioural strategies for brief psychological interventions with people experiencing high prevalence disorders such as depression and anxiety. A key aspect of the subject is the practical step-by-step worksheets that social workers can use with clients and which focus on the acquisition of skills for evidence based practice.", + "title": "Evidence Based Behavioural Strategies for Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5881AR", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic in direct social work practice will be dealt with in this module. Students in this module will critically understand and analyze the contemporary issues arising from direct practice under the special topic, learn about relevant assessment and intervention models, and acquire clinical skills which aim to address the issues for clients at different systemic levels (e.g., individuals, families, and groups) across various practice settings (e.g., community, and health care) and/or different stages of life span.", + "title": "Topics in Social Work - Direct Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5881R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic/area in social policy & legislation will be dealt with in this module. Students in this module will examine emergent and critical issues in social policies and legislations in Singapore as well as in the global context. Students will learn about theoretical frameworks for the formation of social policy and legislation and analytic tools for planning, monitoring and evaluation of social policy and legislation and its implementation.", + "title": "Topics in Social Work - Social Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5882", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic/area in social policy & legislation will be dealt with in this module. Students in this module will examine emergent and critical issues in social policies and legislations in Singapore as well as in the global context. Students will learn about theoretical frameworks for the formation of social policy and legislation and analytic tools for planning, monitoring and evaluation of social policy and legislation and its implementation.", + "title": "Topics in Social Work - Social Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5882R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic/area in human service organization management and leadership in social work/social services will be dealt with in this module. The selected topical area will be one among various topics in indirect social work practice or social administration, such as strategic management and leadership of NGO, social finance, negotiation and conflict management, volunteering and philanthropy, marketing social programs and promoting community relations, and etc. Students in this module will learn about theoretical underpinnings, organizational structures and strategies, personnel management, public relations, and social work leadership development in the area of the special topic chosen.", + "title": "Topics in Social Work - Social Work Leadership", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic/area in human service organization management and leadership in social work/social services will be dealt with in this module. The selected topical area will be one among various topics in indirect social work practice or social administration, such as strategic management and leadership of NGO, social finance, negotiation and conflict management, volunteering and philanthropy, marketing social programs and promoting community relations, and etc. Students in this module will learn about theoretical underpinnings, organizational structures and strategies, personnel management, public relations, and social work leadership development in the area of the special topic chosen.", + "title": "Topics in Social Work - Social Work Leadership", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5883R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic/area in social work research & evaluation will be dealt with in this module. Students will be introduced one or more advanced social work research/evaluation methods, such as qualitative social work research, statistics for social workers, mixed methods in social work research, intervention research, etc. in this module.", + "title": "Topics in Social Work - Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW5884", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic/area in social work research & evaluation will be dealt with in this module. Students will be introduced one or more advanced social work research/evaluation methods, such as qualitative social work research, statistics for social workers, mixed methods in social work research, intervention research, etc. in this module.", + "title": "Topics in Social Work - Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SW5884R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is conducted as a graduate seminar and examines important contributions to social work theory from classical as well as modernist perspectives with a view to encouraging deeper reflection about the critical interface between theory and practice. Students are challenged to examine social work practice issues alongside the discourse on social structure and human agency and are expected to make presentations to demonstrate a heightened awareness of modern ideological currents that shape social work practice.", + "title": "Social Theory in Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW6101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a framework for analysis of public policy in particular social policy. The use of social indicators, trend analysis and policy evaluation tools for specific fields of social welfare will be discussed. The use of applied research evaluation including techniques of social surveys, focus groups and the systematic analysis of data will also be covered in this module.", + "title": "Policy & Research in Social Welfare", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW6102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Specialised study of one or key specific policy option(s), its value base, legal and financial structures, social and political implications are covered in this module. Policy alternatives are also critically examined.", + "title": "Human Service Research & Evaluation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW6231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth examination of selected theories in counselling and psychotherapy such as Rogerian Psychotherapy, Behaviour Therapy, Reality Therapy and others. The application of the therapeutic techniques and skills to various settings will be emphasised.", + "title": "Theory & Practice in Psychotherapy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW6241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Specialised Policy Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW6249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Research Design & Quantitative Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW6257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers training in specific fields of social work practice such as health, mental health, gerontology, children, youth, disability, criminal justice and rehabilitation, industrial social work, etc.", + "title": "Specialised Fields of Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW6259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Social Work in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SW6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from AY2004/2005. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a formal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded \"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "SW6770", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the methods and skills of group work and community work. Social work theories related to work with social and community groups in a multicultural context will be critically examined. This module will also include topics such as assessment, understanding of group dynamics, the various stages of group work, intervention skills and roles of the social worker in group and community settings.", + "title": "Social Work With Groups and Community", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the development of human services as a response to needs and the sociocultural contexts. An analysis of traditional and current patterns including social institutions and structures of social service delivery is made. Social Work practice at various levels such as individual, group, organisation and community are dealt with in this module. The integration of concepts, knowledge base and theory for social work practice will also be covered.", + "title": "Contemporary Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0201", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module will examine human development from a life span perspective with emphasis on some pertinent demands in different contexts. Ecological, cognitive developmental, psychosocial and Freudian theories and perspectives among others will be examined for their relevance in explaining developmental outcomes and trajectories as well as for their implications for social work practice.", + "title": "Human Development in Context", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is essentially a practice-based approach to social work assessment and intervention. Advanced techniques and skills in dealing with specific individuals, families and groups are incorporated. The module also emphasises the key social work practice models and the application of concepts and framework of the models within the social-political and cultural contexts.", + "title": "Skills in Advanced Social Work Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT11", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Candidates are required to fulfil practicum requirements of 400 fieldwork hours under an approved supervisor and it is equivalent to one module. The candidate is only allowed to take the Social Work Practicum if he/she had already taken or is concurrently taking one of the essential modules specified by the Department of Social Work and Psychology.", + "title": "Social Work Practicum", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5120", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0604", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with the basic knowledge and skills in counselling older adults. Besides the various theories on ageing relevant to older people, the module will cover the counselling approaches suitable for application in Singapores context. The emphasis will be on developing a repertoire of skills and knowledge essential for effective assessment and intervention. Students will be guided on evaluation tools and the process of termination.", + "title": "Gerontological Counselling", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Family Centred Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module outlines the framework for practice with children and youth. Both local and international models for intervention will be discussed. Current state of practice is reviewed along with an analysis of the theoretical basis as well as an evaluation of pragmatic outcome of these practices will be conducted.", + "title": "Working With Children and Youth", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a historical as well as present analysis of social intervention in the area of child welfare. It examines child welfare policies including government and community expenditures, programmes and services.", + "title": "Child Welfare Policy and Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers a multidisciplinary perspective on ageing, including the biological, psychological and social theories and issues that affect older people and their families. Current international as well as national policies and legislation are examined and evaluated. The seminar style of teaching is meant to involve students in using their critical skills to identify gaps in services and suggest recommendations.", + "title": "Multidiscipinary Perspectives On Ageing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is on working with clients on issues of loss and grief and terminal illnesses. Attention is also given to ethical and philosophical issues arising from working with the dying.", + "title": "Intervention With the Terminally Iii", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5273", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the theory and practice of social work with families. A comprehensive discussion of family development and families in transition along with a systemic approach to intervention is given. Family therapy and other intervention strategies are also discussed.", + "title": "Family Systems and Intervention", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the theories of human sexuality, aetiology of sexual dysfunction and marital therapy. Marriage, sexual lifestyles and treatment of sexual and marital problems such as HIV-AIDS, extra-marital relationship, etc. are also discussed.", + "title": "Human Sexuality and Marital Therapy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5275", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The principles and techniques in helping families cope with stress in everyday life as well as specific stressors such as death, illness, unemployment, incarceration, etc. is the focus of this module. Theory of stress and development of personal and community resources is discussed.", + "title": "Family Stress and Coping", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5276", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this module is on planned change at the group and community levels. The dynamics and politics of social change including the use of group processes and power bases are included. Topics such as setting agendas, rules of order, information and publicity strategies are discussed.", + "title": "Planned Social Change", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5277", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module outlines the major theories and principles of social work with groups. Current modalities in group assessment and intervention are emphasised. Issues on leadership and power, conflict management and mediation are also dealt with.", + "title": "Comparative Group Modalities", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5279", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The nature of drug and alcohol abuse with its physical, social and psychological impact on individuals and families will be discussed in this module. The focus is on assessment of drug and alcohol problem for effective intervention.", + "title": "Nature of Drugs & Alcohol Abuse", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5280", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on assessment and intervention with clients with a history of drug and alcohol abuse. Principles and techniques of individual and family therapy using a systemic perspective will be the main content.", + "title": "Individuals, Families & Substance Abuse", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5281", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is a survey of various treatment programmes for the rehabilitation of drug and alcohol abusers. Current trends and highlights of major treatment philosophies will be discussed. A critical analysis of alternative models of treatment will be included.", + "title": "Drugs & Alcohol Abuse Treatment", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5282", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The scope of disabilities and rehabilitation is defined in this module. Intervention theory and techniques in working with physical and mental disabilities as well as rehabilitation in areas of crime and delinquency are discussed.", + "title": "Disability and Rehabilitative Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5283", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The current mental health and health care networks are examined in the light of providing more effective services. Alternative models of service delivery and co-ordination in the system will be proposed.", + "title": "Health & Mental Health Service Systems", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5284", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The issues and philosophies of various rehabilitation and treatment programmes in criminal and juvenile justice and other rehabilitative contexts will be examined in this module. Application of techniques and concepts for the local context will be emphasised.", + "title": "Rehabilitation Programme Issues", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5285", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with knowledge necessary for working alongside adults with mental health needs. The module will expose students to various psychiatric disorders, with emphasis on those that commonly occur in adults. For each disorder, students will learn about its clinical features, course and prognosis, and treatments. Students will also learn about social, psychological, and biological factors that contribute to the development of the disorder and those that impact on its outcome. Lastly, students will be introduced to the Diagnostic and Statistical Manual of Mental Disorder for an understanding of the diagnosis of mental disorders.", + "title": "Common Psychiatric Disorders in Adults", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5286", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers in-depth study in a specific method of social work including therapeutic models, preventive intervention, mediation and conflict management.", + "title": "Topical Studies in Social Work Methods", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5292", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines in-depth study in a specific social work issue such as professionalisation, gender, discrimination, justice and ethics.", + "title": "Topical Studies in Social Work Issues", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5293", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the theories and principles of human service management. Topics on consultation and training, organisational development and growth are also dealt with.", + "title": "Human Service Organisations & Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5297", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the theory and practice of community assessment and intervention. The study of community psychology and analysis of power bases in different societies is included. Understanding the local resource network needs assessment and programme development is part of this module.", + "title": "Approaches in Community Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5298", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Ethical issues and ethical conflicts are characteristic of social work practice and practitioners must have ethics competency. This course offers preparatory knowledge on clinical ethics, including key ethical concepts, ethical theories, ethical principles and ethical reasoning. It challenges students to shift from social work ethics models to engagement in ethical reasoning. This course will help students appreciate how personal values can falsely present a situation as ethically problematic and influence ethical decision-making.", + "title": "Ethical Principles and Competency in Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5300", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0212", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Current topics and challenges in social work practice including preventive and developmental approaches to social intervention are given emphasis in this specialised module.", + "title": "Topics in Social Work", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The involvement of service users in social work is challenging. This module will study service user involvement from service user, theoretical and practical perspectives and hence, identify barriers, possibilities and challenges in participatory processes. Special importance will be placed on power relations and power theories. To develop service user involvement social workers need tools and knowledge. A central part of this is establishing connections between social work practice and research. Hence, the module will also focus on the possibilities of using practice research \u2013 a research approach aiming at developing practice through collaborative processes involving social workers, service users and researchers.", + "title": "Service User Involvement", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides insight into infectious diseases and those who are impacted by them. There will be a focus on vulnerable populations who are disproportionately affected by the various infectious diseases. In addition to more acute infectious diseases such as COVID-19 and Severe Acute Respiratory Syndrome (SARS), this module will also cover chronic infectious diseases such as Human Immunodeficiency Virus (HIV) and Pulmonary Tuberculosis. This module will integrate concepts and theories from social work and public health to provide the tools and frameworks to understand infectious diseases within the context of social work practice.", + "title": "Social Work and Infectious Diseases", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5880B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Loss, grief and bereavement cuts across all sectors of social work practice. The focus of this course is on seriously-ill patients facing death and dying issues. The social worker is often impacted by grief and bereavement issues and many are ill-equipped to assist the griever in an appropriate manner to enhance individual and familial grief recovery. \n\nThis course encompasses understanding the state of grief, the relationship between grief and loss, anticipatory grief and death anxiety, and how individuals react to grief.", + "title": "Grief and Bereavement Counselling", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5880C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide a broad understanding of Singapore\u2019s unique healthcare landscape, evolution, financing, goal toward social health integration and burden of disease. The students will learn theories of health behavior, models and framework for practice in health social work. Social work in healthcare will be examined in the continuum of primary, acute and intermediate and long-term care (ILTC). The students will gain insights into the impact of illness on individuals and their families. It aims to cover specialized topics such as chronic illnesses, acute and trauma, mental health, family violence, medical ethics, palliative and end of life care.", + "title": "Social Work in Healthcare Settings", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5880D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for students who are training to enter the social work profession to support clients with mental health concerns. The module will cover foundational knowledge in common mental health issues and provide students with the understanding towards basic mental state examination and case formulation using the Integrated Illness Causation Model. The module will also provide perspectives into mental health diagnosis and classification, legislations governing the care and treatment of persons, and related ethical issues in social work practice", + "title": "Social Work Practice in Mental Health", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWD5880E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0401", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches how to architect scalable, robust and reliable ubiquitous systems. Students will learn how to architect the back-end support for systems such as Netflix, Dropbox and the Singapore\u2019s Lamp Post IoT project.", + "title": "Architecting Scalable Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "13", + "moduleCode": "SWE5001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "Horizon", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Integrity", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Integrity", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Integrity", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 6 + ], + "venue": "Horizon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Momemtum", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4, + 6 + ], + "venue": "Horizon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4, + 6 + ], + "venue": "Horizon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Integrity", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Momemtum", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Horizon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Momemtum", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Momemtum", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Momemtum", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches how to architect scalable, robust and reliable ubiquitous systems. Students will learn how to architect the back-end support for systems such as Netflix, Dropbox and the Singapore\u2019s Lamp Post IoT project.", + "title": "Architecting Scalable Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "13", + "moduleCode": "SWE5001G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Momemtum", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-12", + "end": "2022-09-12" + }, + "venue": "Horizon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches how to design and manage products and platforms. Examples are AliPay and Grab application platform.", + "title": "Designing and Managing Products and Platforms", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "SWE5002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-30", + "end": "2022-10-15", + "weeks": [ + 1, + 2, + 3, + 4, + 9, + 10, + 11, + 12 + ] + }, + "venue": "Frontier", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-23", + "end": "2022-09-23" + }, + "venue": "Blue_Ocean", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7, + 8, + 9 + ], + "venue": "Frontier", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Pinnacle", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-02", + "end": "2022-07-23", + "weeks": [ + 1, + 3, + 4 + ] + }, + "venue": "Influence", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Blue_Ocean", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-21", + "end": "2022-09-21" + }, + "venue": "Pinnacle", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8, + 10 + ], + "venue": "Frontier", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3, + 4, + 5, + 6 + ], + "venue": "Interaction", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Blue_Ocean", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-20", + "end": "2022-09-20" + }, + "venue": "Pinnacle", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "Frontier", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Frontier", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-19", + "end": "2022-09-19" + }, + "venue": "Pinnacle", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Blue_Ocean", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches how to design and manage products and platforms. Examples are AliPay and Grab application platform.", + "title": "Designing and Managing Products and Platforms", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "SWE5002G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-09", + "end": "2022-07-09" + }, + "venue": "Influence", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Pinnacle", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the skills required to engineer and architect scalable data sources for powering data-driven digital platforms and data-intensive streaming systems. Examples are systems such as Netflix, Nest, Sensetime.", + "title": "Engineering Big Data", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "11", + "moduleCode": "SWE5003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Ambition_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10, + 11 + ], + "venue": "Innovation_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Integrity", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Ambition_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-03-18", + "weeks": [ + 1, + 2, + 4, + 5, + 6, + 11 + ] + }, + "venue": "Ambition_I", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Momemtum", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Innovation_I", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Ambition_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-18", + "end": "2023-03-11" + }, + "venue": "Resilience", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Integrity", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Ambition_I", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Ambition_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Innovation_I", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Momemtum", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Innovation_I", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the skills required to engineer and architect scalable data sources for powering data-driven digital platforms and data-intensive streaming systems. Examples are systems such as Netflix, Nest, Sensetime.", + "title": "Engineering Big Data", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "11", + "moduleCode": "SWE5003G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Resilience", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the skills and techniques required to engineer Intelligent Smart Systems. Example systems include Alexa, Nest, Amazon Go.", + "title": "Architecting Smart Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "11", + "moduleCode": "SWE5004", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-04", + "end": "2023-01-04" + }, + "venue": "Frontier", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-02-04", + "weeks": [ + 1, + 2, + 4, + 5 + ] + }, + "venue": "Interaction", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Resilience", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-06", + "end": "2023-01-06" + }, + "venue": "Frontier", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-11", + "end": "2023-03-25" + }, + "venue": "Momemtum", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Resilience", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-03", + "end": "2023-01-03" + }, + "venue": "Frontier", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Horizon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Horizon", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Resilience", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 2 + ], + "venue": "Resilience", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4 + ], + "venue": "Horizon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Innovation_I", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-05", + "end": "2023-01-05" + }, + "venue": "Frontier", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the skills and techniques required to engineer Intelligent Smart Systems. Example systems include Alexa, Nest, Amazon Go.", + "title": "Architecting Smart Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "11", + "moduleCode": "SWE5004G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5 + ], + "venue": "Innovation_I", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11 + ], + "venue": "Horizon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will teach how to design and manage cyber security for ubiquitous systems that needs to be highly secure including cashless systems. \nExample systems include PayLah, Telegram, SSO/2FA, LifeSmart.", + "title": "Securing Ubiquitous Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "SWE5005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-09-24", + "end": "2022-10-15" + }, + "venue": "Horizon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2022-07-02", + "end": "2022-07-30" + }, + "venue": "Integration", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 4, + 5, + 6 + ], + "venue": "Frontier", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Blue_Ocean", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "Integrity", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Blue_Ocean", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 8 + ], + "venue": "Blue_Ocean", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "Horizon", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Interaction", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3 + ], + "venue": "Blue_Ocean", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "Horizon", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "Horizon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Interaction", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "Integrity", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 9 + ], + "venue": "Integrity", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Interaction", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Interaction", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 7 + ], + "venue": "Interaction", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "F1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "Horizon", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 1 + ], + "venue": "Horizon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will teach how to design and manage cyber security for ubiquitous systems that needs to be highly secure including cashless systems. \nExample systems include PayLah, Telegram, SSO/2FA, LifeSmart.", + "title": "Securing Ubiquitous Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "SWE5005G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 10 + ], + "venue": "Horizon", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1 + ], + "venue": "E-Learn_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this graduate certificate, members of agile teams will learn how to apply essential agile practices, software design skills and DevSecOps practices to analyse, design and implement nontrivial software systems that are robust, reusable, maintainable and extensible with the relevant project artifacts.", + "title": "Designing Modern Software Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "11", + "moduleCode": "SWE5006", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 4 + ], + "venue": "Blue_Ocean", + "day": "Friday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 4 + ], + "venue": "Blue_Ocean", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Blue_Ocean", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-01-07", + "end": "2023-01-14" + }, + "venue": "Horizon", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": { + "start": "2023-02-25", + "end": "2023-03-04" + }, + "venue": "Interaction", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 3 + ], + "venue": "Integrity", + "day": "Saturday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this graduate certificate, members of agile teams will learn how to apply essential agile practices, software design skills and DevSecOps practices to analyse, design and implement nontrivial software systems that are robust, reusable, maintainable and extensible with the relevant project artifacts.", + "title": "Designing Modern Software Systems", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "11", + "moduleCode": "SWE5006G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "P1", + "startTime": "0900", + "endTime": "1700", + "weeks": [ + 11, + 12, + 13 + ], + "venue": "Blue_Ocean", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Capstone project for the Master of Technology in Software Engineering is designed to allow students to experience engineering smart, secure and scalable\nsoftware systems, platforms and products.\n\nThe project allows students to apply their knowledge in a real world context, demonstrating their mastery of a range of software skills, such as in project management, requirements analysis, architecture and design, software construction, verification and validation. It also allows students to apply techniques and skills learnt to build smart systems and platforms that are capable of handling and making use of AI techniques, Internet of Things and Big Data.\n\nThe capstone project will be conducted typically in teams of 3-5 students. However in special cases, students maybe allowed do individual projects.\n\nStudents are expected to spend at least 40 man-days of effort each.", + "title": "Capstone Project in Software Engineering", + "faculty": "Institute of Systems Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "SWE5007", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "F1", + "startTime": "0900", + "endTime": "0959", + "weeks": [ + 2 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + }, + { + "classNo": "P1", + "startTime": "0900", + "endTime": "0959", + "weeks": [ + 1 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Is crime a \u201cnatural\u201d, biological, psychological, sociological and legal phenomenon, or a combination of all? How do contemporary societies in general, and the criminal justice system in particular, deal with the problem of crime and disorder? This course aims to answer these questions and more about our understanding on how criminals and crimes are being viewed in our society. The students will be acquainted with the criminal justice policy perspectives on crime and punishment and how best to respond to and reduce the problem of crime in contemporary societies.", + "title": "Crime and Criminality: A Multidisciplinary Perspective", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "SWK5070", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will introduce students to the sociological and psychological issues relating to incarceration and their impact on the processes of prisonization, prisoner identity construction and management, and subsequent reintegration into society. These issues will be examined against the backdrop of the philosophy and principles of punishment as well as the prison system.", + "title": "Criminal Justice in Context: A Critical Introduction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "SWK5071", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In-prison programming, counselling and casework services are an integral part of offender rehabilitation and re-entry into the community. There is relatively a lacuna in the scholarship to offer a theoretical understanding to design programmes, counselling and casework services that are appropriate for offender rehabilitation. Modern approaches include RiskNeed-Responsivity (RNR) principles and to a great extent, Good Lives Model (GLM). However, in recent years, there is a burgeoning desistance research to advocate for a more holistic method to support the offenders in their reintegration.", + "title": "Pathways to Desistance - Offender Rehabilitation Theories", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "SWK5074", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Families play a crucial role in the rehabilitation of the exoffender. Some are involved in the transgenerational transmission of pathology, whilst others have rigid structure and patterns that present challenges to the ex-offender\u2019s rehabilitation.", + "title": "Engaging Family Systems in Rehabilitation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "SWK5075", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Understanding Anger and Aggression in Reintegration Work - Anger is an emotion that many offenders have difficulty with. They experience it strongly, some all too frequently, express it in ways that are destructive and ultimately damaged by it as well. This two-day module will inform participants on how this emotion is experienced in the body and mind. It will identify the many ways to help clients better regulate this emotion.", + "title": "Helping Clients Manage Their Difficult Emotions", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "SWK5076", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is for students to develop knowledge, values and skills that contribute to the management of a social service agency in Singapore. Students will learn to apply organizational theories and theories of management to human service organizations with specific reference to strategic planning, organisational structure and processes, staff management, managing interaction with the environment, management of information and communication, and resource and financial management. Cross country comparisons and discussions will enable critical thinking about human service organizations in the local context.", + "title": "Management of Human Service Organizations", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is for students to understand and assess the social policies in Singapore, especially those concerning welfare services for vulnerable groups. They will learn to do so in the international historical and theoretical context of the welfare state and welfare pluralism, and contemporary international discourses on social well-being and human development. Review of social policy and welfare services in Singapore will focus upon the Singapore\u2019s unique approaches to policy formulation, implementation and monitoring. Welfare services for the vulnerable groups will be assessed within the larger context of social well-being and development.", + "title": "Social Policy and Welfare Services", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with the overall process of social service program planning and evaluation. Its emphasis is not only on the conceptual understanding of research\nmethodological issues underlying different program evaluation designs, but also on the application of various data collection methods and data analysis skills required\nfor program evaluation. Seeking to promote both evidence\u2010based practice and practice\u2010based research in the field, this module also examines how social workers can utilize and incorporate research methods and skills into their helping process to generate practice\u2010informed data for the stage of program evaluation.", + "title": "Program Development and Evaluation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Candidates of MSW who have a Bachelor in Social Work degree are allowed to enrol for \u2018SW5111 \u2013 Advanced Practicum\u2019. Two specialization tracks are offered: clinical and supervision track and programme development track. The learning goal is to enhance social work practitioners\u2019 competence and capabilities in the chosen track.", + "title": "Advanced Practicum", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5111", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Practicum is a compulsory module for candidates who do not have a Bachelor\u2019s degree in social work or equivalent. This module is designed to ensure practice competence by providing 800 hour first hand, systematic and supervised practice experiences in the actual field together with seminars for integration of social work theories with practice. The stipulated hours should be completed prior to graduation.", + "title": "Practicum", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5111A", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Practicum is a compulsory module for candidates with a Graduate Diploma in Social Work. This module is designed to ensure practice competence by providing 400 hour first-hand, systematic and supervised practice experiences in the actual field. The stipulated hours should be completed prior to graduation.", + "title": "Practicum", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5111B", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Candidates are required to complete a Supervised Project, which will be an independent and original piece of work, which involves innovative and original initiatives such as developing a new social service program/policy or conducting an original piece of field research. Exemption of Supervised Project may only be given to non-social work graduates or other candidates on a case-by-case basis and, in such a case, Supervised Project is replaced by a Practicum.", + "title": "Supervised Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "SWM5112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Practice research promotes integration of practice and research in social work. It plays a key role in developing, improving and evaluating clinical practice skills, intervention models and social service provision. This capstone seminar aims to enable students to produce a practice research proposal and prepare for executing a practice research project based on the proposal in the subsequent semester. Learning activities in this module include a series of seminars, fieldwork, individual consultations, and student presentations for developing a practice research proposal to address practice research agenda in the field of one\u2019s interest.", + "title": "Practice Research Capstone Seminar I", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5117A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on the practice research proposal developed in SW5117A, this capstone seminar aims to facilitate students\u2019 execution of an actual practice research project and dissemination of practice research findings. Along with peer feedback sessions in class and individual consultations, learning activities in this module include practice data collection and analysis in the field, practice research report writing, and presentation/dissemination of the practice research findings.", + "title": "Practice Research Capstone Seminar II", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5117B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0116", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Trauma can result not only from catastrophic events such as abuse and violence but from incidents such as divorce, medical procedures that generate effects that are often minimized. This module aims to provide students with a framework for understanding trauma, the reactions of traumatized children and youth, and the effects of events such as natural disasters, accidents, violence, invasive medical procedures, abrupt separation on the child\u2019s physiological, psychological and emotional well being. In addition, the students will be introduced to evidenced based interventions models for working with traumatized children and youth.", + "title": "Working with Trauma - Infancy through Adolescence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Leadership is an important determinant of organizational success. The aim of this module is for students to learn the principles for leadership that will enhance organizational performance. Leadership today is more than acquiring skills and knowledge, the module will place emphasis on the leader as a person. Students will learn the different theories of leadership and assess critical factors in developing leadership. Topics include Influence and Connection of the leader, the dark side of leadership, leadership and organization culture, building trust to get results, coaching to drive effective leadership and leading and managing change in organisations.", + "title": "Mastering Leadership", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Multi\u2010stressed families often termed resistant, dysfunctional and hard to work with have been the main focus of social work practice. This module offers a multilevel intervention approach in working with these families. Using a systemic assessment of multigenerational influences, the module will explore the meanings and impact of these events for the family. The various therapeutic modalities, skills and interventions (including family assessment tools) will also be discussed, with a primary focus on strengths and resilience. The need for community networking, collaboration and case management will also be emphasised.", + "title": "Working with Multi-Stressed Families", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module enhances the student\u2019s understanding of the systemic/ relational use of play therapy with children and their family systems. A particular emphasis of the course will be understanding play therapy from historical, clinical, spiritual, systemic / relational and theoretical perspectives; the integration of family therapy and play therapy; and the clinical use of different types of play therapy modalities with diverse family constellations.", + "title": "Using Play Therapy with Children and Families", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Social work supervision is an important practice area that\nserves to enhance the competencies of social workers\nand ensure good clients\u2019 outcomes. In ensuring good\nsupervisory practice, the dynamics of personal, relational,\norganizational, socio-economical and cultural factors have\nto be considered. In this course, students will examine the\nknowledge and skills that social work supervisors need to\naddress the challenges that may arise in the supervisory\npractice. A range of topics with broad themes based on\nthe conceptualization of supervision and critical issues in\nsupervision that are impacted by the organizational,\nsocio-political contexts will be discussed.", + "title": "Theory and Practice of Social Work Supervision", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-B110", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 17, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It is estimated that in any given society 3\u201010% of the population has some form of disability. This increases to 15% when the definition of disability includes people who are limited in activity due to chronic conditions. In Singapore a conservative estimate of persons with some form of disability may be anywhere from 120,000 to 400,000 individuals. This would include both a medical perspective as well as a socio\u2010functional perspective which emphasizes the need to address economic, environmental and cultural barriers. This module will use a life span perspective to discuss the impact of disability on the individual.", + "title": "Practice with Persons with Disability", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the meanings of assets, assets poverty, and inclusive asset\u2010building policy for the vulnerable population. It begins with re\u2010examination of poverty and existing anti\u2010poverty policy. Then, this course discusses meanings of assets and mounting evidence of short\u2010 and long\u2010term positive effects of holding assets. This course examines theories of saving and asset accumulation, in particular, institutional saving theory for inclusive asset\u2010building policy in Singapore and other parts of the world. To increase understanding of asset\u2010building strategies, this course provides a range of asset\u2010building policy and programs throughout the world.", + "title": "Poverty and Asset-Building Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5215", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the meanings of assets, assets poverty, and inclusive asset\u2010building policy for the vulnerable population. It begins with re\u2010examination of poverty and existing anti\u2010poverty policy. Then, this course discusses meanings of assets and mounting evidence of short\u2010 and long\u2010term positive effects of holding assets. This course examines theories of saving and asset accumulation, in particular, institutional saving theory for inclusive asset\u2010building policy in Singapore and other parts of the world. To increase understanding of asset\u2010building strategies, this course provides a range of asset\u2010building policy and programs throughout the world.", + "title": "Poverty and Asset-Building Policy", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "SWM5215R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Family and Interpersonal violence has been given prominence in the last decade. Social workers are increasingly identified as key providers of social-emotional services to this target group. This module will cover knowledge and skills pertaining to interpersonal violence. Topics include conceptual understanding of family violence and its dynamics, the legal provisions; casework and treatment group modalities in engaging survivors, men who abuse, child witnesses; ethical issues; networking and collaboration with key players such as Family Court, Police, MSF, hospitals and other social services; case management services.", + "title": "Family and Interpersonal Violence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides advanced knowledge and skills of gerontological social work in institutionalized and community\u2010 based health care. It further encourages students to develop preventive strategies to promote healthy ageing through their meticulous evaluation of specialized ageing programs and services which have been implemented. Students work on the applied learning project that is an integral part of this course. Supervised projects would be complementary for the student\u2019s practical learning process. In light of multidisciplinary team approach and synthesized theorybased applications, this module intensively increases students\u2019 practical capacity through collaborations within and across multidisciplinary service networks for older adults.", + "title": "Continuum of Care and Healthy Ageing", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with recent theories on addiction leading to an in\u2010depth understanding of addictive behaviours, and the application for social work practice. Topics include models of addiction, etiology and recovery, assessment and treatment modalities, crisis intervention and relapse prevention. This module also focuses on alcoholism and problem gambling, as there is a wide scope for social work intervention in these problem areas. Social drinking and recreational gambling are prevalent in our society. When alcohol and gambling issues become problematic, individuals and families can experience several psychosocial problems.", + "title": "Practice with Persons with Addiction", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers important issues encountered by social workers involved in palliative and end\u2010of\u2010life care. Key topics include 1) assessment and intervention strategies based on the bio\u2010psychosocial\u2010spiritual perspective, 2) potential ethical dilemmas encountered in end\u2010of\u2010life care, 3) impact of personal values and biases on quality of care, 4) grief and bereavement and 5) end\u2010of\u2010life care for special populations. At the end of the course, students will be able to a) explain influence of personal values and biases on end\u2010of\u2010life (EOL) care, b) implement assessment and intervention strategies for end\u2010of\u2010life care and c) describe key aspects of the dying process.", + "title": "Palliative and End-Of-Life Care", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5219", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces statistics to social work students, specifically on their use in making informed decisions about social work interventions. The purpose is to facilitate students to use quantitative data in the effective development, delivery, and evaluation of social work services. Through SPSS, a user-friendly software, students will learn how to set up and analyze data. Topics covered in this course are descriptive and inferential statistics within the context of social work practice. This course goes beyond mere calculations and emphasizes on the criteria for and interpretability of statistical tests as well their applications in real world.", + "title": "Statistics for Social Workers", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The values and principles for volunteer management are outlined in this module. Volunteer training and development including delegation, supervision, recognition, etc are included.", + "title": "Volunteer Management", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0402", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent research plays an important role in graduate education. The Independent Study Module is designed to enable the student to explore an approved topic in Social Work in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Graduate Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5660", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic in direct social work practice will be dealt with in this module. Students in this module will critically understand and analyze the contemporary issues arising from direct practice under the special topic, learn about relevant assessment and intervention models, and acquire clinical skills which aim to address the issues for clients at different systemic levels (e.g., individuals, families, and groups) across various practice settings (e.g., community, and health care) and/or different stages of life span.", + "title": "Topics in Social Work - Direct Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5881", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic/area in human service organization management and leadership in social work/social services will be dealt with in this module. The selected topical area will be one among various topics in indirect social work practice or social administration, such as strategic management and leadership of NGO, social finance, negotiation and conflict management, volunteering and philanthropy, marketing social programs and promoting community relations, and etc. Students in this module will learn about theoretical underpinnings, organizational structures and strategies, personnel management, public relations, and social work leadership development in the area of the special topic chosen.", + "title": "Topics in Social Work - Social Work Leadership", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5883", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One special topic/area in social work research & evaluation will be dealt with in this module. Students will be introduced one or more advanced social work research/evaluation methods, such as qualitative social work research, statistics for social workers, mixed methods in social work research, intervention research, etc. in this module.", + "title": "Topics in Social Work - Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SWM5884", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Systems have many interacting components \u2013 hardware, software and people with complex and often conflicting requirements to be met. Systems engineering combines technical, interpersonal and managerial knowledge and skills to build systems. This module provides students with the language, knowledge, and\nconcepts of systems and systems engineering and an introduction to various types of architecture to manage complex systems. \nStudents will explore the processes of design,\ndevelopment, implementation and management\nof multi-functional team-based projects. It will\nalso provide the student with the ability to carry\nout and manage a system engineering project.\nCase studies will provide the students with a\npractical context.", + "title": "Systems Engineering and Architecture", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents ideas of systems analysis and project management in a manner which demonstrates their essential unity. It uses the systems development cycle as framework to discuss management of engineering and\nbusiness projects from conception to termination. The module is divided into three interrelated parts: systems analysis and project management, project selection and organization behaviour, and systems and procedures in project planning and control.", + "title": "Large Scale Systems Project Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "All complex engineering and management investment decisions have economic\nconsequences, such as profitability and risk. This module is aimed at providing the necessary background knowledge and techniques for economic evaluation of capital investments. Topics such as time value of money, economic evaluation of alternatives, accounting concepts, depreciation and taxation, replacement analysis,\nrisk and uncertainty, capital financing & budgeting, real options analysis are included. Case studies and software applications will be used in all topics.", + "title": "Engineering Finance", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals mainly with the complex decision-making process in the planning, design, operation and maintenance of large scale systems. It examines the goals of a system, its stakeholders, and its boundaries (political, social,\nenvironmental etc) and limitations including the complexities involved to understand the issues in planning, design and management of such large\nscale systems. In addition, the possible effects and unintended consequences are also considered. To do this, it draws upon some of the best practices from engineering, businesses management and political and social sciences. Case studies of systems that have been implemented in Singapore or being planned are\nused to illustrate the practical aspects of systems engineering.", + "title": "Large Scale Systems Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Model-based analytical techniques have been used effectively to understand processes, constraints, relationships and issues in complex management and system engineering problems. An organization can exploit these techniques to\nmake better decisions under uncertainties, derive cost-savings in operations, design better products and create new services. Participants in the course will learn to identify opportunities for improvement within their organizations, develop\nskills in using and managing model-based analysis effectively, and become more\ndisciplined thinkers in systems engineering and management issues. Examples and case studies will be drawn from a variety of practical scenarios such as network design, engineering design optimization, logistics and supply chains, and\noperations management.", + "title": "Management Science in Systems Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Integrated Logistics Support (ILS) is essential to the design and life cycle support of systems. It includes influencing the design to improve supportability, maintenance planning, provisioning, development of manuals and training, and logistic support over the system full life cycle. Topics covered include the concept of\nILS in the design and maintenance of systems, operational requirements, system maintenance concept, functional analysis, life-cycle costs, logistics support analysis, systems design, test and evaluation, production, spare / repair parts \nmanagement are discussed. Case studies will be used.", + "title": "Integrated Logistics Support", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the basic principles of the subjects Six Sigma and Lean as well as associated tools such as 5S and value stream analysis. Essential techniques related to setting up project charter, management and execution of\nSix Sigma projects are covered. Case studies will be used.", + "title": "Lean Six Sigma", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the necessary practical skills and analytical knowledge for complex decision making and risk management in engineering and business environments. This is achieved by providing a paradigm based on normative decision theory and a set of prescriptive tools and computational techniques \nusing state-of-the art software with which a stake holder can systematically analyze a complex and uncertain decision situation leading to clarity of action. Students will be better positioned to carry out and communicate decision and risk analyses on their own as well as evaluate work undertaken by specialists, analysts and consultants. Case studies and real-life examples will be used to illustrate the various techniques.", + "title": "Decision Analysis & Risk Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module deals with collecting and drawing inferences from data from operational processes to allow the decision maker to characterize, improve and design such processes. Statistical methods for supervised and unsupervised\nlearning will be covered in this module. Topics include descriptive statistics, correlation analysis, regression analysis, multivariate analysis, nonparametric \nmethods, associate rules, and cluster analysis. The subject is application oriented and examples drawn from service processes rather than mathematical development will be used wherever possible to introduce a topic.", + "title": "Learning from Data and Knowledge Discovery", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will focus on the interaction dynamics between the human operator and the machine/system in a human-machine system. We shall begin by defining the areas of concern in human factors engineering (e.g., the humanmachine\ninterface, the displays to be perceived, and the controls to be actuated). We shall\ndiscuss also the tools and methodologies used by a human factors engineer. The latter portion of the subject will discuss issues of capabilities and limitations of the human operator.", + "title": "Humans and Systems Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine leadership in relation to technology and the engineering profession. Topics will include: leadership theories, historic and current leaders, ethical leadership, teaming and networking, thinking frameworks, business\nand engineering leadership, and communicating and influencing people. Through this course students will explore their own leadership abilities and develop or strengthen their competencies in areas such as personal mastery, team dynamics, running effective meetings, developing and coaching others, and \ncreation of vision and mission statements.", + "title": "Leadership in Engineering", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an opportunity for students to do an independent study of how a complex system is designed, commissioned and managed. The module will provide the students with both practical and practical experience working with senior systems engineering manager on a real-world project, and to provide\nopportunity for the student to reflect on the process they followed, the nature of the problem solved. Projects will be chosen from various domains such as health care, logistics, energy & environment, socio-technological systems, etc. \nStudents will present their findings in a seminar and submit a written report.", + "title": "Systems Engineering Project and Case Studies", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in Systems Engineering. Specific topics are selected on the basis of current teaching and research needs. Lectures and case studies will be given by both department staff, senior practitioners and visiting specialists.", + "title": "Special Topics in Systems Engineering & Management", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "SYE5409", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with knowledge and understanding of how to develop an organisation for analytics. The module starts by describing how an organisation can transform itself to become an analytics organisation. It will then move on to the methods and techniques for applied analytics, managing and governing data for analytics, reporting of data for key performance indicators, and optimisation and testing with applied analytics. Solutions to address organisational silos are also discussed. Examples will be drawn from various industry domains and organisations.", + "title": "Building an Analytics Organisation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA2101", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-09", + "end": "2023-07-04" + }, + "venue": "LT15", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2023-05-18", + "end": "2023-06-29", + "weekInterval": 2 + }, + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-09", + "end": "2023-07-04" + }, + "venue": "COM1-0204", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2023-05-09", + "end": "2023-07-04" + }, + "venue": "LT15", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-09", + "end": "2023-07-04" + }, + "venue": "LT19", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-18", + "end": "2023-06-29", + "weekInterval": 2 + }, + "venue": "LT15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-18", + "end": "2023-06-29", + "weekInterval": 2 + }, + "venue": "LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-18", + "end": "2023-06-29", + "weekInterval": 2 + }, + "venue": "COM1-0204", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 33, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-08T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an introduction to the fundamental concepts and tools needed to understand the emerging role of business analytics in business and nonprofit organisations. The module aims to demonstrate to students how to apply basic applied analytics tools using MS Excel and R, and how to communicate with analytics professionals to effectively use and interpret analytic models and results for making better and more wellinformed business decisions.", + "title": "Introduction to Business Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA2102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-SR9", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD1", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with practical knowledge and understanding of basic issues and techniques in data visualisation principles, techniques and tools. The module covers data visualisation and dashboard design concepts, visual perception and design principles, visualisation techniques and tools for temporal and spatial data, proportions and relationships, multivariate and complex data, etc.", + "title": "Data Visualisation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA2103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM3-01-25", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT15", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT15", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-22", + "weekInterval": 2 + }, + "venue": "LT15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-22", + "weekInterval": 2 + }, + "venue": "LT15", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-11", + "end": "2023-06-22", + "weekInterval": 2 + }, + "venue": "LT19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-11T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Predictive analytics uses an assortment of statistical techniques to predict future events or behaviors based on collected data. For example, businesses could use predictive analytics to answer questions about consumer behavior and market movements and to anticipate future events, forecast plausible outcomes, and make informed decisions that enable organisations to gain and sustain competitive advantages. Data can be combined and analysed to make predictions with a certain degree of reliability. Students will learn predictive analytics by using Excel or R to construct statistical models like regression, time-series forecasting, weighted moving averages among others.", + "title": "Predictive Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA2104", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Web mining aims to find useful information from the web about the market trends and competitor movements. This module covers the fundamental concepts of web mining and web search techniques and equip with skills and capacity to analyse, design and develop web search and web mining applications.", + "title": "Web Mining", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA2105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses the basic concepts and methods of text analytics including capturing, representing, and interpreting unstructured or loosely structured textual information. Such textual information includes newswire stories, blogs, and forum discussions among others. This module also serves as the foundation for analysing textbased information (e.g., sentiment analysis) on the social media platforms.", + "title": "Text Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA3102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Monday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to train students to be conversant in the technologies, approaches, principles and issues in designing IT applications systems for applied analytics. Major topics include: rapid web frameworks, scripting languages, web and mobile interfaces, tracking and analysis of customers, payment services / verification, implementing security, designing and deploying web and mobile services, and operational considerations and technical tradeoffs.", + "title": "Application Systems Development for Business Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA3103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0206", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 3, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will develop an appreciation of analytics in mobile application and game, as well as its importance on the application and game design. The interest on mobile application and game analytics has emerged in recent years as one of the essential resources for understanding user behavior and enhancing their usage experience. Students will learn the key concepts to mobile application and game design and analytics to meet constantly changing user needs.", + "title": "Mobile Application and Game Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA3150", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Web analytics is the practice of collecting website traffic data to understand visitor activity and interactions. The insights gained through web analytics allow website developers to make informed decisions about how to improve site efficacy (e.g., landing page optimisation) and user experience (flow). Tools such as Google! Analytics could be used for exercises.", + "title": "Web Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA3204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In today\u2019s environment, marketing analysts require tools and techniques to both quantify the strategic value of marketing initiatives, and to maximise marketing campaign performance. This module aims to teach students concepts, methods and tools to demonstrate the return on investment (ROI) of marketing activities and to leverage on marketing analytic techniques to make better and more informed marketing decisions.", + "title": "Marketing Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA3222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a follow-up from TAA3102 (Text Analytics) that looks at how organisations can expand their social networks and strengthen their relationships with connected individuals and online communities to create value from social media.", + "title": "Social Media Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA3241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to educate the students on how and to what extent can analytics can be applied in the financial service sector, in order for a student to seek a career in this industry sector. It is designed to provide the students with a broad overview and thematic case studies of how each major business segment of the financial services industry employs IT and analytics to maintain a competitive edge, and to comply with laws and regulations.", + "title": "Financial Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA4204", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches the concepts, techniques and methods to analyse and improve the visibility of a website or a web page in search engines via the \u201cnatural\u201d or unpaid (\u201corganic\u201d or \u201calgorithmic\u201d) search results. The module will emphasise the relationship of search engine optimisation to digital marketing in terms of building high quality web pages to engage and persuade, setting up analytics programs to enable sites to measure results, and improving a site\u2019s conversion rate.", + "title": "Search Engine Optimisation and Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA4212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Lecture", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Friday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Increasingly, human resource department is relying on metrics and analytics to formulate effective and sustainable strategies. This module introduces the key operations of human resource management and relates them to workforce analytics. Students will understand how workforce analytics functions, e.g., analyse historical manpower data to predict future manpower requirements. The benefits could include improved human resource functions, higher recruitment success rates, improved management of employee performance and derived actionable workforce analytics reporting.", + "title": "Workforce Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA4215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers in-depth coverage of geospatial analysis, starting with the transferring of knowledge in the gathering, visualization, and manipulation of spatial data. The key areas in geospatial analytics, including point pattern analysis, spatial autocorrelation, and spatial interpolation will be covered in detail using a variety of case studies. The module provides hands-on skills to use a Geographic Information System (GIS) to learn and apply different spatial operations.", + "title": "Geospatial Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA4220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 28, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides you with the foundational application of analytics in the internal and external auditing process. Students will have an opportunity to gain technological and managerial overview of analytical techniques in the auditing domain, link audit analytics to an organisation\u2019s continuous monitoring, business process support, and audit analytics reporting.", + "title": "Audit Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA4230", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "To a healthcare enterprise, leveraging on healthcare data is strategic for business intelligence, streamlining workflow operations and providing quality customer service and patient care. Lectures and tutorials will cover foundations and best practices to achieve effective and meaningful analytics. The module is useful for students with the view to an IT career related to information management in healthcare.", + "title": "Healthcare Analytics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TBA4250", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the widespread use of computers and computational tools in industrial practice and research, it is important for students in the chemical engineering programme to gain a firm understanding and appreciation of the fundamentals of programming, algorithmic problem solving, coding and debugging. The final goal is to be able to apply these skills to solving realistic chemical engineering problems. MATLAB, a high-level computing language will be employed due to its capability to solve domain-specific computing problems more conveniently than with traditional programming languages. MATLAB also provides the platform to span a wide variety of application areas.", + "title": "MATLAB Programming for Chemical Engineers", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TC1005", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a basic foundation in calculus and its related subjects required by Chemical Engineering students. The objective is to equip students with various calculus techniques for their Chemical Engineering modules in later semesters. The module emphasizes problem solving and mathematical methods in single-variable and multivariate calculus, vector algebra and matrix algebra as well as their applications in Chemical Engineering.", + "title": "Mathematics for Chemical Engineers 1", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TC1411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module starts with an introduction to the fundamental principles of materials science, which include basic structural chemistry and crystal structures. After that, the second part of this module covers typical properties of materials, which include structure imperfection and diffusion, mechanical properties, thermal behavior, electrochemical corrosions, and phase diagrams of metals. The third part describes structural characteristics of materials including ceramic, metallic, polymeric and composite materials. The last part gives a general introduction to more physically related properties, namely electrical and optical properties as well as the environmental aspects of structural materials selection.", + "title": "Materials for Chemical Engineers", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TC1422", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces basic concepts of developing mathematical models for Chemical Engineering systems and trains students on techniques for solving the resulting differential equations. The objective is to provide mathematical foundations for solution of complex Chemical Engineering problems. This module is to be driven from Chemical Engineering systems perspective and expose students to methodology to identify appropriate simplifications in system modeling that lead to simplified mathematical description from a more comprehensive one. The module develops methods for solving first and second order differential equations, partial differential equations, and then applies them to Chemical Engineering systems.", + "title": "Mathematics for Chemical Engineers 2", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TC2411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental concepts of statics and mechanics of materials and their applications to engineering problems. The topics introduce the fundamentals of structural mechanics, material behaviour and failure models to appreciate the use of materials. Both Mechanics of rigid body and deformable body are covered.", + "title": "Statics And Mechanics of Materials", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE1109", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module in soil mechanics and geotechnical engineering. The course teaches students the fundamental engineering geological knowledge and basic soil mechanics, and their impact on geotechnical and foundation engineering design and construction.\nStudents will learn to understand the basic characteristics of soils, fundamental effective stress principle, and mechanical behaviour of soil including the strength, compressibility and consolidation properties of soil through lectures, tutorial discussions, and case studies, the course covers the basic soil properties, soil testing, shear strength parameters in drained and undrained conditions, compressibility of granular soil, and the consolidation\ncharacteristic of cohesive soils. The course also enables students to acquire the knowledge and practical skills of functioning as an engineer and consultants through the laboratory soil tests and submission of a consultant report arising from the analysis of a given mini-project, conducting\nappropriate soil tests and the engineering evaluation.", + "title": "Soil Mechanics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE2112", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the student to basic concepts of fluid\nmechanics and hydraulics. Starting with fluid properties and\nfluid statics, the student would understand how these\nconcepts are used for the calculation of hydrostatic forces\nand the stability of floating bodies. The student is\nintroduced to the concepts of fluid flow, ideal and real fluids\nand their limitations, laminar and turbulent flows, the\nconcept of the boundary layer and flow resistance, the\nconcept of flow separation and the wake, frictional and form\ndrag and lift on immersed bodies. Dimensional analysis and\nthe concept of similitude will help reinforce the fundamental\nconsiderations essential for experiments with fluid\nphenomena. By the end of the course, the student should\nunderstand the concepts of conservation of mass,\nmomentum and energy and how these can be applied to\nflow measuring devices, to the estimation of frictional losses\nfor flows in pipelines, to pumping systems and other\nengineering applications.", + "title": "Hydraulics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE2134", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with knowledge and\nskills in structural mechanics, and concrete and\nsteel as structural materials. The topics introduce\nthe fundamentals of material constitutive\nbehaviours and failure models to appreciate the\nuse of materials in structural design. The topics\nalso cover the applications of concrete and steel as\nstructural materials including its properties, design\nand quality control in practice. The module is\ncompulsory for civil engineering undergraduate\nstudents without which he will not be qualified to\npractise as a professional civil engineer.", + "title": "Structural Mechanics and Materials", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE2155", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0603-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0603-04", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A project has to be managed effectively so that it\ncan be delivered on time, within budget, safely and\nmeeting quality specifications. This course is a first\ncourse on project management. It introduces the\nstudent to construction planning, contract\nadministration and managing the site. Through a\nproject and employing a project planning software\ncommonly used in the industry, the students will\nalso learn how to plan and schedule a project for\nconstruction.", + "title": "Construction Project Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE2183", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Civil infrastructure has significant impact on the\nnatural, social, economic and human environments.\nEngineers have a significant role to play in proposing\nand realising technical solutions that are\neconomically feasible and environmentally\nsustainable. Sustainable infrastructure development\nmust consider all significant project impacts in a\nholistic way through a methodical impact\nassessment process. This module introduces the\nconcepts to conceptualize and evaluate proposals for\ninfrastructure development in a holistic and\nsustainable way.", + "title": "Infrastructure & the Environment", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE2184", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to equip undergraduate civil\nengineering students with mathematical and statistical tools\nfor fast and efficient solutions of various practical\nengineering problems in their further education and in their\nprofessional life.\nA bridge is built from mathematics and statistics to\nengineering applications based on a reasonable depth in\nfundamental knowledge. The focus is on numerical solution\nmethods for linear algebraic problems and differential\nequations as well as on probability theory and statistics. The\nsubjects are discussed and demonstrated in the context of\npractical civil engineering problems. This allows students to\nsolve problems in many fields and disciplines. Application\nareas include but are not limited to stability problems,\ndynamics/vibrations, linear and nonlinear structural\nanalysis, reliability and risk analysis, structural and system\nanalysis under uncertainty, and design of processes and\nstructures under uncertainty.", + "title": "Engineering & Uncertainty Analyses", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE2407", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT1", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "LT1", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics covered in this module include water and wastewater\nsources, characteristics of water and wastewater (physical,\nchemical, and biological parameters), principles of physical,\nchemical, and biological processes for water and\nwastewater treatment, and water reclamation. Applications\nof fundamental principles for process analysis and design\nwill be discussed with a focus on commonalities in\napplications across industry. Laboratory experiments\nrelevant to water quality assessment and engineering are\nalso included in the module.", + "title": "Water Quality Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE3001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves supervised self study over one semester on a topic approved by the Department. The work may relate to a comprehensive literature survey, design feasibility study, industry case study, or critical analysis and evaluation related to smart cities, urban infrastructure and planning, construction, civil, or environmental engineering study, or a combination of these. The study area is to be finalised, after consultation with the supervisor. The student has to find a suitable supervisor. The student must acquire, interpret, evaluate relevant information in the area of study, and formulate practical solutions. Approval will be granted by the course coordinators.", + "title": "Independent Study in Civil Engineering Infrastructure", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE3100", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module in slope stability and earth retaining structures. The topics covered include slopes and embankments, earth pressure and retaining structures, and basic deep excavations. Students will learn how to check ultimate limit states using limit equilibrium methods and appreciate that such checks are necessary but not sufficient (serviceability to be discussed in advanced modules). The goal is to teach an assessment of force and/or moment equilibrium for slopes, calculation of active and passive earth pressures, and appreciation of various important design considerations pertaining to earth retaining structures and basic deep excavations.", + "title": "Geotechnical Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE3115", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module in foundation engineering. The topics covered include site investigation and interpretation of soil reports, shallow foundations and deep foundations. Students will learn how to use simple foundations to distribute vertical loads from the superstructure to the underlying soil formation without overstressing the soil (more complex loading modes to be discussed in advanced modules). Students are taught the interpretation of site investigation report, derivation of relevant design soil properties, selection of sensible foundation type, and verification of capacity and settlement requirements.", + "title": "Foundation Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE3116", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces basic principles and tools to design, plan, evaluate, analyze, manage and control transportation systems. The aim is to enable students to identify, formulate, examine, and solve transportation engineering problems. The major topics include transportation system, planning and management, geometric design of roads and intersections, structural design of pavement, pavement materials, traffic flow and analysis, and traffic management and control.", + "title": "Transportation Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE3121", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the basic principles of\nhydrology and water resources, including flow\nthrough pressurised pipe systems and free surface\nflow. In particular the course covers fundamental\nconcepts of hydrological cycle, such as: response of\ncatchment system, river network and reservoir to\nrainfall; frequency analysis of rainfall or flood,\ndesign of ponds, reservoirs, river flow and\ncatchment management, are covered as well. Other\ntopics include flow routing such as kinematic wave,\ndiffusive wave and dynamic wave.\n Water Resources portion of the module covers\npressurised pipe flow calculation principles,\nhydraulic design of pipelines, use of pumps and\nturbines, urban hydraulics and water distribution\nsystems. In addition to this, free surface open\nchannel flows are covered. In particular topics of\nuniform flow, critical depth, gradually varied flow,\ncalculation of surface profiles.", + "title": "Water Resources Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE3132", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamentals of structural analysis. Students will learn idealization of structural components, materials, loads and supports, concepts of statical redundancy, determinacy and stability, energy theorems, analysis of trusses, beams and frames. The second part of the module will teach students the methods and principles of advanced structural analysis, with emphasis on matrix methods of linear structural analysis, influence line analysis and approximate lateral load analysis. Students will also familiarize themselves with software for stress and deformation analysis of typical civil engineering structures. The module is compulsory for civil engineering undergraduate students without which he will not be qualified to perform his task as respectable civil engineer.", + "title": "Structural Analysis", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE3155", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with knowledge and skills in the design of structural concrete members and systems. The topics cover basic design for action effects as well as the serviceability and ultimate limit state design of real-life structures. The module is compulsory for civil engineering undergraduate students without which he will not be qualified to practice as a professional civil engineer.", + "title": "Structural Concrete Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE3165", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip undergraduate civil engineering students with sufficient design knowledge and skills on steel structures both for their further education and engineering career. This module provides students with fundamental approaches (based on Eurocode 3) in designing structural steel components and steel buildings. The scope of this module aligns with the fundamental requirement outlined by the Board of Singapore Professional Engineers on the design of steel structures. The students will acquire fundamental knowledge and approaches to perform structural design for steel beams, axially loaded members, connections, portal/industrial buildings, multi-storey frames, and plated structures. This enables the students to", + "title": "Structural Steel Design and System", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE3166", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7A", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The students are assigned an integrated design\nproject involving various disciplines of civil\nengineering. The module provides the opportunity\nfor students to work as a team on a civil\nengineering project integrating the knowledge they\nhave gained from modules they have taken in\nearlier years. The module will also enhance their\ninterpersonal, communication and leadership skills\nthrough group projects, report writing and a few\noral presentations", + "title": "Design Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The B. Tech. Dissertation is carried out by\nindividual students and offers the opportunity for\nthe student to develop research capabilities. It\nactively promotes creative thinking and allows\nindependent work on a prescribed research project.\nLevel 4 students undertake the project over two\nsemesters. Each student is expected to spend not\nless than 9 hours per week on the project chosen\nfrom a wide range, covering various civil\nengineering disciplines. Topics include elements of\ndesign and construction, and research and\ndevelopment. Assessment is based on the student\u2019s\nworking attitude, project execution and\nachievement, an interim report and presentation,\ndissertation and final oral presentation.", + "title": "BTech Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TCE4104", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the knowledge in\nthe design of land transport infrastructures in the\ncontext of the multimodal nature of modern\ntransportation systems. With a focus on the\nmovement of people and vehicles, the planning and\nmanagement of land transport infrastructural\ncapacities and operations as well as the design of\nterminal and link facilities shall be examined.\nTopics covered include: design of highway\ninfrastructures, bus transit and urban street\ninfrastructural design; design of rail transit\ninfrastructures; and stops, stations and terminal\ndesign.", + "title": "Design of Land Transport Infrastructures", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the student to the application of the basic concepts in pipe and open channel flows that were covered earlier to the design of the pumping system and associated facilities in a water or sewage treatment plant. Topics covered include selection of pumps for optimal efficiency, hydraulic design of the pump sump and the sewage/treated water delivery system and surge mitigation. Students will be involved in a project on the design of such a system.", + "title": "Treatment Plant Hydraulics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE4247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with the fundamentals of finite\nelement principles to enable them to understand the behaviour of\nvarious finite elements and to be able to select appropriate\nelements to solve physical and engineering problems with\nemphasis on structural and geotechnical engineering applications.\nIt covers weak formulation, element shape function, isoparametric\nconcepts, 1-D, 2-D, 3-D and axisymmetric elements, field\nproblems, modelling and practical considerations, and special\ntopics. The module is targeted at undergraduate and graduate\nstudents involved in research or application of the finite element\nmethod in civil engineering problems", + "title": "Linear Finite Element Analysis", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE4257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces the basic principles and concepts of\nstructural stability and dynamics. Students will learn to\nunderstand the stability and dynamic characteristics of\nstructures and how they respond to quasi-static and time\nvarying loads. They will learn to apply the concept to civil\nengineering structures through projects. The course covers\nthe behaviour of structures such as frames, beams and\ntrusses modelled as discrete and continuous system\nsubjected to quasi-static and dynamic loads. The course is\ntargeted to 4th year undergraduate students.", + "title": "Structural Stability & Dynamics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE4258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Building Information Modeling (BIM) is a revolutionary technology and process that provides an integrated digital database and a variety of modelling tools to remarkably change the way buildings and infrastructure facilities are designed, analyzed, constructed, and managed. BIM is rapidly becoming the industry standard and best practice. This course provides a comprehensive coverage with essential details in several key aspects of project development, such as design, building performance, sustainability, engineering, construction, project delivery, and facilities management. It helps the students start their first integrated BIM project through the hands-on of a project assignment employing industry leading BIM software.", + "title": "Building Information Modeling for Project Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE4282", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the information regarding application of advanced unit operations and processes for enhancing the quality of treated effluent and rendering the product water suitable for reuse applications. The module will enable students to understand the fundamental principles of advanced wastewater treatment. Students are taught to identify and design the appropriate advanced treatment system to enhance the quality of the treated effluent and exploit the option of reuse application.", + "title": "Water & Wastewater Engineering 2", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE4401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental Impact Assessment (EIA) is the process of\nidentifying, predicting, evaluating and mitigating the\nbiophysical, social, and other relevant effects of\ndevelopment proposals prior to major decisions being taken\nand commitments made. The objective of EIA is to ensure\nthat decision-makers consider environmental impacts\nbefore deciding whether to proceed with new projects.\nParticipants are introduced to the concept of EIA, its\nhistorical evolution and the terminologies that are used\nworldwide. Lectures will cover the organizational aspects of\nEIA, the EIA framework and the procedural methods to\nconduct an EIA, with special emphasis on water and water\nrelated issues. Participants will carry out a mini EIA study\nusing the various approaches covered in the module.", + "title": "Environmental Impact Assessment", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE4408", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A broad range of diverse technologies, including information\nprocessing, computing, communications, control and\nelectronics can be applied to our transportation and\nsystems. The combination of these technologies, known\ncommonly as intelligent transportation systems (ITS),\nenables engineers to effectively manage transportation\nproblems at the system level. The topics covered in this\nmodule include state-of-the-practice and state-of-the-art\nsystems and technologies in rapidly progressing ITS\nresearch and development. This module enables the\nstudent opportunity acquiring the knowledge and practical\nskills through the lectures, field investigations, and course\nprojects.", + "title": "Intelligent Transportation Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide senior level\nundergraduate and graduate students an overall view of the\ntransportation systems, means of managing and influencing\nthe systems to achieve planning, design, and operation\ngoals. The topics covered include the characteristics of\ntransportation systems; roles and structure of government\nagencies in transportation management; environmental and\nsocial impact of transportation systems, travel demand\nmanagement; public transport management; models of\nassessing transportation services; regulation and\nderegulation of transportation services; roles of\ntransportation systems with the agenda of global warming\nand energy conservation; case studies of transportation\npolicies in several countries.", + "title": "Transportation Management & Policy", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5026", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module on ground improvement\ntechniques as well as its design, construction and\nmonitoring in geotechnical engineering. Topics covered\ninclude ground improvement principles and design\nconsiderations, techniques of improving granular soils,\ntechniques of improving cohesive soils and peaty soils, field\ncontrols and monitoring, field evaluation \u2013 specification,\nperformance evaluation and acceptance criteria, and case\nstudy. Student are taught the basic principles of various\nground improvement techniques, and how to select the\nmost appropriate ground improvement techniques to be\nused in specific circumstances. Specific learning objectives\ninclude understanding the principles and design of vibroflotation\nmethod, dynamic compaction, dynamic\nreplacement with mixing, vertical drains with preloading,\nchemical stabilization and grouting, etc. Field construction\ncontrol and instrumentation as well as monitoring\ntechniques will be discussed", + "title": "Ground Improvement", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5106", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the advanced principles and concepts on the analysis and design of pile foundations. Students will also learn how to appreciate and appraise complex pile foundation problems under various loading and boundary conditions. The course enables students to acquire the knowledge and practical skills through the course project assignments and case studies in the practice of advanced pile design.", + "title": "Pile Foundations", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5107", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced module in earth-retaining structures\nand deep excavations. Topics include earth pressure\ntheories, rigid retaining structures, flexible retaining\nstructures, cellular cofferdams, retaining walls for deep\nexcavations, support systems for deep excavations, and\nfield monitoring. Students are taught to deal with design and\nconstruction issues pertaining to a spectrum of earthretaining\nsystems from low rigid retaining walls to flexible\nsupport systems for deep excavations. Students will also\nlearn to apply the methods of limit state, such as BS8002\nand Eurocode7, to the design of rigid and flexible retaining\nwalls. Applications of commercial geotechnical FEM\nsoftwares are taught to aid in design of deep excavations to\nlimit ground deformations and satisfy SLS requirements. At\nthe end of the course, students are taught the application of\nadvanced earth pressure theories, selection of appropriate\nretaining structures, and verification of capacity and\nmovement requirements, using limit equilibrium and FEM\nanalysis tools.", + "title": "Earth Retaining Structures", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5108", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students the essential concepts and\nmethodology for the planning, design and implementation of\nsite investigation and ground instrumentation programmes.\nThe module will be broadly divided into two parts. The first\npart covers various aspects of site investigation such as the\nplanning, design, density of bore holes, sampling technology\nand disturbance, in-situ and laboratory testing and\ngeophysical methods. The second part covers various\naspects of ground instrumentation such as monitoring of\nground movement, drawdown, excess pore pressures, strut\nforces, wall deflection and observational methods. This\nmodule enables students to acquire the knowledge and\npractical skills through the lectures, case studies and\nprojects.", + "title": "Geotechnical Investigation & Monitoring", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with design knowledge on\nsteel offshore structures. The major topics covered include\nplanning considerations; design criteria and procedures;\nmethods for determining loads; structural analysis methods;\nmember and joint designs; material selection and welding\nrequirements; and design for fabrication, transportation and\ninstallation phases. The module will be valuable to students\ninterested in offshore engineering.", + "title": "Analysis & Design of Offshore Structures", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is concerned with the analysis and design of\nfoundations for offshore structures. Students will learn the\nprinciples, concepts, analysis methodology and design\nconsiderations that are applied to the offshore environment.\nThe major topics covered include: offshore design\nconsiderations; offshore site investigation; foundations for\njack-up rigs and offshore gravity platforms; anchor\nfoundations; suction caissons; and offshore pile foundations\ninstallation, analysis and design. Students gain an\nunderstanding of the design methodology for offshore\nfoundations for fixed and floating structures.", + "title": "Offshore Foundations", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip civil\nengineering students with sufficient design knowledge and\nskills on steel-concrete composite structures both for their\nfurther education and for their future engineering career.\nThis module provides students with fundamental\napproaches in designing structural steel-concrete\ncomponents and buildings. The students will acquire\nfundamental knowledge and skills to perform structural\ndesign for composite beams, slabs, columns, joints, multistorey\nbuildings. This enables the students to conceive a\nsafe and economical structural system. The module is\ntargeted at MSC civil engineering students and those with a\nkeen interest on structural design.", + "title": "Advanced Structural Steel Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5509", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to further equip civil engineering students with design knowledge and skills in reinforced and prestressed concrete. The module provides students with fundamental approaches in designing structural concrete components and systems. The students will learn refined methods in the design for action effects and for deflection and crack control, and in the structural design of flat slab systems, slender columns, concrete bridges, concrete water tanks, design and detailing of connections. The module is targeted at MSc civil engineering students and those with a keen interest on advanced structural concrete design.", + "title": "Advanced Structural Concrete Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5510", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with in-depth knowledge on\nthe role of constituent materials of concrete such as\ncements, mineral admixtures, and chemical admixtures and\ntheir interactions that affect properties of fresh and\nhardened concrete. It also provides students with in-depth\nknowledge on concrete response to stresses, timedependent\ndeformations, and durability of concrete\nexposed to severe environments. The module discusses the\nbasic considerations and design philosophy for\nperformance-based design of concrete mixtures and\nproduction of concrete. It also discusses the progress in\nconcrete technology and the latest development on highstrength,\nhigh-performance, lightweight, and self\ncompacting concrete. Sustainable development in\nconstruction industry and use of recycled aggregates and\nother recycled materials will be discussed as well. The\nmodule is targeted at post-graduate and final year\nundergraduate students who will gain knowledge from the\nmodule to complement their skill in structural design and to\nprepare them for their career as professional engineers.", + "title": "Advanced Concrete Technology", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5604", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary objective of this module is to equip civil engineering students with sufficient design knowledge and skills on precast structural concrete both for their further education and for their future engineering career. This module provides students with fundamental approaches in designing precast concrete components and structures. The students will acquire fundamental knowledge and approaches to section analysis and design, design of connections, floor diaphragm action, precast frame structures and precasat components. The module is targeted at MSc civil engineering students and those with a keen interest on precast concrete technology.", + "title": "Precast Concrete Technology", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5611", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In a project, the selection of construction method and\nequipment are important considerations that can affect\nproject execution and even the bottom line profits. This\ncourse gives an overview of the construction methods\navailable in civil engineering, industrial, offshore and\nbuilding type projects, and the considerations in equipment\nselection and fleet size determination. It also introduces the\nstudent to concepts of constructability, simulation and\noptimization methods related to allocation of scarce\nresources. Specific topics include constructability concepts\nand implementation, planning, methods, information\ntechnology applications, systems analysis and optimization,\nconstruction economics.", + "title": "Construction Equipment and Methods", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCE5805", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the widespread use of computers and computational tools in industrial practice and research, it is important for students in the chemical engineering programme to gain a firm understanding and appreciation of the fundamentals of programming, algorithmic problem solving, coding and debugging. The final goal is to be able to apply these skills to solving realistic chemical engineering problems. MATLAB, a high-level computing language will be employed due to its capability to solve domain-specific computing problems more conveniently than with traditional programming languages. MATLAB also provides the platform to span a wide variety of application areas.", + "title": "MATLAB Programming for Chemical Engineers", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN1005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will be introduced to an overview of the chemical process industry and a discussion of several significant examples. The core of the module covers the details of steady state material and energy balance, including recycle, purge, phase change and chemical reaction. The concepts are extended to simultaneous mass and energy balances and unsteady state balances. The module is targeted at first-year part-time chemical engineering students with some working knowledge in the chemical industries.", + "title": "Chemical Engineering Principles", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN1111", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Friday", + "lessonType": "Lecture", + "size": 32, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Friday", + "lessonType": "Tutorial", + "size": 32, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a basic foundation in calculus and its related subjects required by Chemical Engineering students. The objective is to equip students with various calculus techniques for their Chemical Engineering modules in later semesters. The module emphasizes problem solving and mathematical methods in single-variable and multivariate calculus, vector algebra and matrix algebra as well as their applications in Chemical Engineering.", + "title": "Mathematics for Chemical Engineers 1", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN1411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module starts with an introduction to the fundamental principles of materials science, which include basic structural chemistry and crystal structures. After that, the second part of this module covers typical properties of materials, which include structure imperfection and diffusion, mechanical properties, thermal behavior, electrochemical corrosions, and phase diagrams of metals. The third part describes structural characteristics of materials including ceramic, metallic, polymeric and composite materials. The last part gives a general introduction to more physically related properties, namely electrical and optical properties as well as the environmental aspects of structural materials selection.", + "title": "Materials for Chemical Engineers", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN1422", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers the basic principles of chemical kinetics of both homogeneous (single phase) and heterogeneous (multi-phases) reaction systems and reactor design. Module contents include classification of chemical reactions, stoichiometry, chemical kinetics and reaction mechanism of both homogeneous and heterogeneous reactions, simple and multiple reactions, selectivity, yield and product distribution, definition and derivation of performance equations of ideal reactors (ideal batch, plug and constant stirred tank reactors), rate data collection and treatment, recycle and multiple reactors, temperature effects, heterogeneous reaction systems (fluid-fluid, fluid solid and catalytic reactions), identification and analysis of rate processes, concentration profile and overall rate equation, pore diffusion in porous catalysts, deactivation, reactor configuration and design, Basic introduction to non-ideal flow and residence time\ndistribution analysis.", + "title": "Chemical Kinetics And Reactor Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN2116", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 150 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to provide students with the rudimentary understanding of the basic laws and other concepts of thermodynamics and apply them to analyses chemical engineering problems. The module starts with basic definition, applications and limitations of chemical engineering thermodynamics, followed by a review of basic laws, properties and concepts of thermodynamics. The development and discussion of thermodynamic property relations for systems of constant and variable compositions are covered in detail. The developed property relationships together with the basic laws are then applied to the analysis of the various equilibrium problems in chemical engineering such as vapour -liquid, vapour-liquid-liquid, liquidliquid, solid-liquid and chemical reaction equilibria.", + "title": "Chemical Engineering Thermodynamics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN2121", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces to students the classification of fluids and their properties, followed by the analysis of static fluid. The integral and differential forms of the fundamental equations \u2013 Continuity, Momentum and Energy equations are then studied. The concept of momentum transfer by the shear stress is introduced in this course. Dimensional analysis and model theory are studied. The concept about boundary layer theory, flow with pressure gradient, viscous flow and turbulence are also described. Practical aspect involves the consideration of flows in closed conduits. At the end of the course, basic concepts regarding fluid machinery is also covered.", + "title": "Fluid Mechanics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN2122", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-0322-23", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-0322-23", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-28T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the fundamental principles of heat and mass transfer relevant to the chemical engineering discipline. This course considers three modes of heat transfer, namely, conduction, convection, and radiation. For heat conduction, both steady and unsteady states are examined. These are followed by an analysis for convective heat transfer and heat transfer with phase change and subsequently radiation heat transfer. Steady and unsteadystate molecular diffusion is studied, while convective mass transfer is analyzed using exact and approximate integral analysis. Finally, analogies between mass, heat and momentum transfer is discussed to integrate the concept of transport phenomena.", + "title": "Heat And Mass Transfer", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN2125", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces basic concepts of developing mathematical models for Chemical Engineering systems and trains students on techniques for solving the resulting differential equations and applying vector algebra and calculus. The objective is to provide mathematical foundations for solution of complex Chemical Engineering problems. This module is to be driven from Chemical Engineering systems perspective and expose students to methodology to identify appropriate simplifications in system modeling that lead to simplified mathematical description from a more comprehensive one. The module develops methods for solving order differential equations, partial differential equations as well as handling vector operations in Chemical Engineering systems.", + "title": "Mathematics for Chemical Engineers 2", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN2411", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "E1-06-03", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "E1-06-03", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 24, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-08T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module incorporates introductory concepts, dynamic modeling, transfer function modules, system identification, control hardware, feedback control and module-based design methods. SIMULINK will be introduced and used to stimulate and examine the effectiveness of various control strategies. This module also incorporates a detailed case study that prepares the students to design control systems for a realistic sized plant. This module is targeted at chemical engineering students who already have a basic knowledge of chemical engineering processes.", + "title": "Process Dynamics & Control", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN3121", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with the basic concepts for physical processes such as filtration, sedimentation, centrifugation, fluidization, gas cleaning and other topics on flow and dynamics of particulate systems. Particulate solids are characterized in terms of size, size distribution, measurement and analysis and processing such as comminution and mixing. The concept of fluid flow and particle settling are used for design and operation of some important fluid-particle separation methods. The principle of fluidization and its applications as pneumatic transport of solids are also included. This is a core module targeted at the students with background in fluid mechanics in BTech Chemical Engineering program.", + "title": "Particle Technology", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN3124", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, equilibrium stage and rate-based design concepts in separation processes are introduced. Starting from simple stage, binary separation, the theoretical treatment is extended to multi-component, multi-stage processes. After brief introduction to inter-phase mass transfer, basic concepts in rate-based design for the more important separation processes such as absorption and distillation are illustrated. The rate-based design concept is then extended to operations involving simultaneous heat and mass transfer such as in cooling tower and dryer. The process design principles are illustrated with distillation, absorption, extraction, adsorption, cooling tower and drying processes.", + "title": "Separation Processes", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TCN3132", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-15", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-02T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide fundamental concepts and methods for the design and operation of safe plants. The students will gain a thorough understanding of chemical process hazards, their identification, their potential effects on safety, health, and the environment, and methods of assessment and control. Emphasis is placed on the integrated management of safety, health, and environmental sustainability.", + "title": "Process Safety, Health and Environment", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "TCN3135", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "E3-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "E3-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-11T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a working knowledge of numerical methods and their applications to problems in thermodynamics, fluid mechanics, heat and mass transfer, and reaction engineering. The topics covered are linear and nonlinear equations, interpolation, ordinary and partial differential equations. Each topic starts with an introduction of its applications in chemical engineering followed by principle, development and relative merits of selected methods. Use of suitable software for numerical methods is demonstrated. Students complete 1-2 group projects involving chemical engineering problems and its numerical solution using software, which instills independent learning. The module is targeted at the second year part-time chemical engineering students with some experience in the industry.", + "title": "Process Modeling & Numerical Simulation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN3421", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide students with training for scientific/technical research. It involves an assignment of a research project and safety education. Equipment training will be provided, if required. Students need to spend at least ten hours per week on the project under the guidance of a project supervisor and/or co-supervisor. A thesis is required at the end of the project; it will include literature survey, materials and methods, results and discussion, conclusions and suggestions for further study. An oral presentation is also required.", + "title": "B.Tech. Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TCN4119", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide fundamentals and methods of of process synthesis and simulation, which are required for design of chemical processes/plants. Students learn a heuristic method for process development, simulation strategies, main steps in process design and rigorous process simulation using a commercial simulator through both lectures and many hands-on exercises. They will also learn detailed mechanical design of process equipment, cost estimation and profitability analysis of chemical\nprocesses.", + "title": "Process Synthesis and Simulation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "TCN4122", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-19", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 45 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this capstone design project, students execute a group project to design a chemical production facility. They solve a practical design problem in the same way as might be expected in an industrial situation. Students develop and evaluate process flowsheet alternatives via rigorous simulation, perform preliminary sizing, analyze safety and hazards, and estimate costs and profitability. Further, they learn how to solve open-ended problems by making critical design decisions with sound scientific justification and giving due consideration to cost and safety. Project coordinators act as facilitators, and students work almost independently on the project and exercise their creativity", + "title": "Final Year Design Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "TCN4124", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "L3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "L4", + "startTime": "1800", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E3-06-14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L1", + "startTime": "1800", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E3-06-03", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L3", + "startTime": "1800", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E3-06-13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "L2", + "startTime": "1800", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E3-06-11", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces students to the principles of producing a polymer product starting from polymer synthesis to the final engineering design and production. It starts with an introduction to polymer chemistry of various synthesis methods and strategies. This is followed by the analysis and characterization of polymers using the physics of polymers. Finally, techniques for producing or synthesizing polymers will be learnt. The various processing methods such as extrusion, njection modelling, blow molding and film blowing for polymers so produced are discussed. Detailed mathematical analyses of some process operations based on momentum, heat and mass transfer approaches are carried out.", + "title": "Polymer Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a working knowledge of selected techniques and software in pinch analysis and process integration as well as their application to chemical processes. The first part of the module covers pinch analysis for heat integration, including data extraction and energy targeting, heat exchanger network design, integration of utilities, heat and power systems, and distillation columns. Application of pinch analysis to maximization of water re-use is also discussed. Another topic is data reconciliation and gross error detection, and their applications. This module is targeted at senior chemical engineering students.", + "title": "Pinch Analysis and Process Integration", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module familiarizes students with the upstream section of a biologics manufacturing plant. It starts with the drug discovery process and natural products research. The rudimentaries of cells, building blocks of proteins, carbohydrates and nucleic acids, as well as fundamental enzyme kinetics are next introduced. Before going into the heart of the module, which is the design of a fermenter, growth and product kinetics are introduced, followed by the concepts of recombinant DNA technology and hybridoma technology for the production of biopharmaceuticals. Detailed treatment of the design of the fermenter, including the operating strategies and transport phenomena with respect to agitation and aeration, follows. Finally a discussion of media sterilization and process monitoring of a bioprocess completes the module.", + "title": "Biochemical Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4208", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces to students with various membrane sciences, technologies, and applications such as microfiltration (MF), ultrafiltration (UF), nanofiltration (NF), reverse osmosis (RO) for water reuses and desalination, material design and gas separation for energy development, and membrane formation for asymmetric flat and hollow fiber membranes. Introduction of various membrane separation mechanisms will be given.", + "title": "Membrane Science And Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course provides an overview of the petrochemical industry, with a focus on the Singapore industry. The following processes are discussed in the first part: Refining, Steam Reforming, Steam Cracking, Ammonia and Methanol production. To provide an in-dept understanding, fundamental aspects of the processes, i.e. catalysis, kinetics, thermodynamics and reactor design will be highlighted. The second part of this module starts with an introduction to the fundamental organic reaction types and the structural characteristics of the compounds involved. It is then followed by an introduction to homogeneous catalysis using organometallic compounds as catalysts. The third topic of this part covers a series of derivatives from ethylene, propene, butenes, BTX (bezene-toluene-xylenes), focusing on functional group conversion ad applications of target compounds. The forth topic covers the main fine chemicals, such as surfactants, special monomers, adhesives and intermediates for personal care and pharmaceutics. The final topic introduces the basic concept of green chemical process, focusing on development of chemicals that are more environmental friendly.", + "title": "Petrochemicals & Processing Technology", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module combines food science and engineering operations as an integrated food-engineering course. It starts with the food science topics such as, food chemistry, microbiology and nutrition. Then it focuses on the applications of various chemical engineering operations (refrigeration, freezing, evaporation, drying, and thermal processing) to food processing. The course also covers other relevant topics such as, food rheology and packaging of food products.", + "title": "Food Technology and Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a fundamental knowledge of electronic materials produced or processed in various industries. It imparts a basic understanding in electrical, electro-optic and magnetic properties of electronic materials in relation to their importance in microelectronic/ optoelectronic/semiconductor industry and their technological applications such as wafer devices, solid-state fuel cells, lithium batteries, light-emitting diodes and solid-state lasers. In particular, semi-conductors, electronic ceramics, conducting polymers, optical and magnetic materials, and nanostructured materials will be introduced. This module is targeted at senior engineering students.", + "title": "Electronic Materials Science", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an overview of semiconductor processing with an emphasis on the role of chemical engineering principles. An overall view of manufacturing in the semi-conductor industry and the role of chemical engineers are given. The physics and materials aspects of solid-state devices are introduced with a view towards understanding their functions. The next part takes the students through the various processing events, starting with silicon wafer manufacture and continuing with diffusion, CVD, photolithography, etching and metallization. Chemical engineering principles are highlighted in each section. The module concludes with a description of process integration for device manufacture and a brief discussion about electronic packaging. This module is targeted at level 4 chemical engineering students.", + "title": "Processing of Microelectronic Materials", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a structured introduction to advanced process control concepts with emphasis on methods and techniques that are relevant for industrial practice. Advanced control strategies including feedforward control, ratio control, cascade control, inferential control, decentralized control systems and model predictive control techniques, as well as the representation of process in discrete-time control system and design of controllers, which will be covered. The learning experience of the students will be enhanced through projects that will require them to design advanced controllers for process systems.", + "title": "Advanced Process Control", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to advanced computational methods and their application to problems commonly arising in chemical engineering. Tools and techniques from the areas of optimization, neural networks and artificial intelligence would be covered in the course. Practical aspects of recognizing problems in process operation and design that can be solved using these techniques, formulating the problem and solving them would be covered using commonly available software.", + "title": "Computer Aided Chemical Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module familiarizes students with the downstream section of a biologics manufacturing plant. The module first discusses drug requirements for different applications, and an overview of the downstream processes involved in obtaining an acceptable product quality. The general characteristics and fundamental principles of unit operations encountered in each of the major section of a downstream train are then discussed in detail: removal of insolubles, product isolation, high resolution techniques and product polishing. The current state of the research in some unit operations is also highlighted.", + "title": "Downstream Processing of Biochemical and Pharmaceutical Products", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module covers topics pertaining to regulatory and quality issues associated with pharmaceutical production. The two main components of the module are: regulatory aspects of pharmaceutical manufacture and analytical techniques for quality control. The concept of GMP and its components including standard operating procedures, documentation, validation, organization and personnel, premises, equipment, production and quality control are covered in the first half of the module. The second part of the module introduces the students to the various analytical techniques employed in pharmaceutical industry to assess the quality of protein-based biologics.", + "title": "Good Manufacturing Practices in Pharmaceutical Industry", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, the students will consolidate their accumulated knowledge of fundamental modeling principles and analytical/numerical solution techniques by applying them to a wide variety of large-scale, steady as well as dynamic, chemical, physicochemical, and biochemical systems of industrial importance. The module will emphasize the full range of modeling and simulation techniques including first-principle model development, model analysis and validation, and model prediction and applications. The students will demonstrate their acquired skills by solving one or more sufficiently complex problems of their own choice in a term project to gain hands-on experience", + "title": "Chemical & Biochemical Process Modeling", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with a working knowledge of unit operations and processes for the control of industrial effluent from the chemical process industries. The module begins with an overview of the characteristics of effluent from the chemical plant operations and its impact on the environment. Concepts on environmental sustainability and green processing particularly pertinent to the chemical industry will be covered, including techniques for waste minimization and pollution prevention. Finally, applications of process (physical, chemical and biological) for the treatment of effluent from plant facilities will be presented. Case studies from various industries will also be presented. This module is targeted at level 4 chemical engineering students.", + "title": "Unit Operations and Processes for Effluent Treatment", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4240", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-09", + "end": "2023-07-04" + }, + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-09", + "end": "2023-07-04" + }, + "venue": "E1-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-23", + "weekInterval": 2 + }, + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-12", + "end": "2023-06-23", + "weekInterval": 2 + }, + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-11T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the basic theories, methods and software for formulating and solving optimization problems relevant to chemical processes. They will study various methods of linear, nonlinear and mixed-integer linear programming, which would enable them to select and use appropriate algorithm and/or software for solving a given problem. They will also execute the various steps in optimization by solving selected practical problems via various case studies as well as a term project. This is for undergraduate students who wish to learn optimization methodology to solve real-life problems in research and chemical industry.", + "title": "Optimization of Chemical Processes", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The first part of the module focuses on steps involved in catalytic reactions, such as adsorption, desorption and reaction kinetic models, chemical catalysis, biocatalysis, inter-particulate and intraparticulate transport processes involving Thiele modulus and effectiveness factor. The factors and reaction sequences causing the deactivation of solid catalysts will be covered. The second part of the module focuses on the various methods of preparation, characterization and testing of industrial solid catalysts. The module ends with some case studies on how to select and design catalysts for industrially important processes.", + "title": "Chemical And Bio-Catalysis", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TCN4246", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to provide skills for system level design of complex hardware/software systems. The trend that products and systems become communicating systems, with many parallel activities on multiple embedded processors, and with complex multimedia interfaces makes their design unmanageable with the current hardware/software co-design practice. This workshop presents a system level design approach that yields executable system level models based on object-oriented analysis and specification. A design process starts with a multidisciplinary discussion enabled by formal models that visualize collaborating processes of a system and its environment. These models show functional real-time behaviour as well as system architecture. Subsequently, a model is extended with the properties of candidate implementation technologies. This enables verification and validation of required system properties. Dedicated models can be used for architecture studies on performance, channel bandwidths and real-time properties.", + "title": "Specification of Complex Hardware/Software System", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TD5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches how to go from an executable, but un-optimized specification in a language C, C++ or SystemC, to an optimized implementation. In particular we will focus on specifying a multimedia system in SystemC and on source code transformations which reduce the requirements for the data memories, and therefore optimize performance and energy consumption. Furthermore we focus on the exploitation of parallelism at different levels of granularity.", + "title": "Embedded Systems in Silicon", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TD5102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Aims : To teach the translation of digital signal processing algorithms used in modern day multimedia/wireless/data storage applications into architectural platforms suitable for electronics implementation.\n\nLearning objectives : A good understanding of digital signal processing algorithms used in typical multimedia, wireless and/or data storage applications and their practical implementation issues. The course will also address selection of suitable architectural platforms for their implementation.", + "title": "Dsp Algorithms:design & Implementation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TD5104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Basics of Product Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TD5201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Statistical analysis and experimentation techniques for engineers. Topics include analysis of variance, regression analysis, factorial and fractional factorial designs, response surface methodology and non-parametric methods. The module is application oriented and examples drawn from industrial applications rather than mathematical development will be used wherever possible to introduce a topic.", + "title": "Applied Engineering Statistics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TD5202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course starts where the reliability (REL) course stops. In this course the relation between product quality and reliability with the main operational processes such as product development and manufacturing. In this course especially non-ideal behaviour during development, manufacturing and customer use (including human factors) will be used to explain the imperfections in early life of a product. The stressor-susceptibility concept will be introduced as a mathematical framework for enhanced reliability models.", + "title": "Quality & Reliability By Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TD5204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Rigorous international competition, the explosion of market segments and niches and accelerating technological change have created a set of competitive imperatives for the development of new products and processes in industry. Product development is the key to increase the pace of product introduction to deal with shorter product lives. Concurrent engineering is explained and a practical approach to concurrent engineering is presented in the form of five principles. The influences of the product design and teams on the development cycle time are discussed. Short cycle product development processes cannot exist without proper learning loops and risk management. Finally, aspects of organizational change in implementing short cycle product development processes are discussed.", + "title": "Short Cycle Product Development Process", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TD5211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will take a closer look at human behavior in product development processes. We will focus on organizing for quality and creativity in increasingly shorter product development cycles. One of the most often used structure to achieve quality and creativity under time pressure is cross-functional team work, and we will discuss this in more detail. We will use original articles from the literature.", + "title": "Human Aspects of Product Development and Quality", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TD5215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module intends to give students insight in the mutual interdependency of different phases in a product?s lifecycle. The main focus is on the design phase and on how other parts of the lifecycle can be managed from design perspective. The course is intended for first year MTD students.", + "title": "Design For X", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TD5235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on \"soft skills\" for modern design engineers. Topics covered include team work and team building, design appreciation and technical writing/communication.", + "title": "Professional Development", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "TD5341", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The project is undertaken thru a one year full-time attachment with the industry, jointly supervised by academic and industrial mentors. The students will gain industrial experience through involvement in areas such as strategic planning, product development and project management. Students will have to submit a project thesis and do an oral presentation at the end of the project. Students will also need to submit quarterly progress reports.", + "title": "Industrial Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "0", + "moduleCode": "TD5991", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, student will be exposed to the entire product development cycle of a new conceptual product. This involves requirements analysis, system specification, design of system algorithms and architecture, hardware and software development, integration and demonstration of a working prototype. Design goal verification will also be conducted in every phase of the project in addition to project management.", + "title": "Embedded Systems Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TD6109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is a 1-year module designed for MTD (Mechatronics) and MTD (Rapid Product Development) students and should be taken during their 1st year of MTD studies. An important component of this module is the project work where a team of 4-6 students work on the design and realization of a product. A team comprises MTD (Mechatronics) and MTD (Rapid Product Development) students.\n\nThe learning objective is for students to be able to design new products in a teamwork-based and multidisciplinary environment. The learning outcome is student?s knowledge of the complete design process plus the prototype building stage with considerations for design for manufacturability. Topics covered include: Product Planning; identification of customer needs; product specification; mechatronics design approach and subsystems; modeling; applied electronics and interfacing; control fundamentals; concept generation and selection; product architecture; design for manufacturing; computer aided design; prototyping; intellectual property; design optimization and product economics; contemporary topics in design; and intellectual property. Activities include lectures, discussions, industrial design workshop, laboratory experiments, and project work. Module is 100 % Continuous assessment consisting of quizzes, assignments, and project work with teamwork.", + "title": "Product Design and Realization", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "TD6209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Electronic Devices and Materials", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TDEE2004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a follow up module for TE2102. The topics include the following: Vector algebra. Vector function. Directional derivatives. Divergence and curl of vector fields. Line, surface and volume integrals. Jacobian. Gauss' and Stokes' Theorem. Cartesian, cylindrical and spherical coordinates. Partial Differentiation. Partial differential equations. Curve Fitting.", + "title": "Engineering Mathematics II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TE2002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a follow up module for TE2002. The topics include the following: complex functions, complex differentiation, Cauchy-Riemann equations, singularities and zeros, contour integration, conformal mapping; probability, random variables, probability density function, distributions, applied statistics, random process, responses of linear systems to random inputs.", + "title": "Advanced Mathematics for Engineers", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TE2003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Monday", + "lessonType": "Lecture", + "size": 1, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Monday", + "lessonType": "Tutorial", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to the discipline of computing and the problem solving process. It stresses on good programme design and programming styles, and structured programme development using a higher-level programming language. The topics covered in this module are: Algorithm design process, Programme development/coding/debugging. Programming concepts in a high-level language including programme structure, simple data types and structured types and various control structures (sequencing, loops, conditionals, etc.). Linear data structures such as arrays and linked-lists. The utility of recursion using a variety of sorting algorithms.", + "title": "Programming Methodology", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TE2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Software project planning, requirements analysis, data flow methods. Software development, object-oriented design, portability and re-use. Software quality assurance, testing strategies and techniques. Case studies.", + "title": "Software Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TE3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This purpose of this module is to learn the effects of, and ways of mitigating, random manufacturing variations and failure of components and systems. This module is targetted at students wishing to pursue careers in electronic manufacturing industries. Topics covered: Review of probability and statistics. Concepts of tolerance analysis and design. Methods of tolerance design including the Monte-Carlo method. Tolerance sensitivity and its applications. Reliability concepts. Device reliability. System reliability. Modelling and monitoring reliability. Burn-in and accelerated wear.", + "title": "Robust Design Of Electronic Circuits", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TE3801", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will do a research project over two semesters on a topic of current interest in Electrical and Computer Engineering. Students learn how to apply skills acquired in the classroom and also think of innovative ways of solving problems. Apart from intrinsic rewards such as the pleasure of problem solving, students are able to acquire skills for independent and lifelong learning. The objective of this module is to teach skills, such as questioning, forming hypotheses and gathering evidence. Students learn to work in a research environment.", + "title": "BTech Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "TE4001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a follow up module for TE2102. The topics include the following: Vector algebra. Vector function. Directional derivatives. Divergence and curl of vector fields. Line, surface and volume integrals. Jacobian. Gauss' and Stokes' Theorem. Cartesian, cylindrical and spherical coordinates. Partial Differentiation. Partial differential equations. Curve Fitting.", + "title": "Engineering Mathematics II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE2002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-23", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E1-06-0102", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "E1-06-0102", + "day": "Monday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a follow up module for TE2002. The topics include the following: complex functions, complex differentiation, Cauchy-Riemann equations, singularities and zeros, contour integration, conformal mapping; probability, random variables, probability density function, distributions, applied statistics, random process, responses of linear systems to random inputs.", + "title": "Advanced Mathematics for Engineers", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE2003", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Electromagnetic (EM) and transmission line theory is essential in all disciplines of electrical and computer engineering. EM theory is the fundamental basis for understanding transmission lines and electrical energy transmission. To understand and solve EM and transmission line problems encountered in electrical and computer engineering, rigorous analytical methods are required. At the end of this module, in addition to being able to solve EM and transmission line problems, the student will be able to design transmission line circuits, design electrical elements with lumped behaviour, and mitigate EM interference. To enhance understanding, case studies and computer visualisation tools will be used. Topics covered: Static electric and magnetic fields. Maxwell's equations. Electromagnetic waves: plane-wave propagation, behaviour at interface between media, shielding, electromagnetic compatability. Transmission lines. Impedance matching. Radiation. Case studies.", + "title": "Engineering Electromagnetics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE2011", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a fundamental course in signals and systems. Signals in electrical engineering play an important role in carrying information. Signals going through a system is an inevitable process. It allows engineers to understand the system. Thus in this course the relationship between signals and systems will be taught. The concepts which are important include time and frequency domain representations, Fourier and Laplace transforms, spectrum of a signal, frequency response of systems (Bode diagrams), sampling theorem, linear time invariant systems, convolution, transfer functions, stability of feedback systems, modulation and filters.", + "title": "Signals and Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE2023", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Tutorial", + "size": 75, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Monday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a first course that introduces fundamental digital logic, digital circuits, and programmable devices. This course provides students with an understanding of the building blocks of modern digital systems and methods of designing, simulating and realizing such systems. The emphasis of this module is on understanding the fundamentals of digital design across different levels of abstraction using hardware description languages, and developing a solid design perspective towards complex digital systems.", + "title": "Digital Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE2026", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 2, + 4, + 5, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "E4-03-07", + "day": "Monday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on the basic circuit concepts, this module introduces the operating principles of transistors and how they are used in amplifier circuits. It discusses the foundational concepts of transistor amplifiers and analyses their performance. It also introduces operational amplifiers as a circuit component and describes how functional analog circuits, which can be applied to solving complex engineering problems, can be designed and analysed using operational amplifiers. LTSpice will be introduced as a circuit analysis tool. To augment learning, two laboratory sessions will be included focusing on the topics of single transistor amplifiers and Op-Amp circuits, respectively.", + "title": "Electronic Circuits", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE2027", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 4, + 7, + 10, + 13 + ], + "venue": "TP-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 5, + 6, + 8, + 9, + 11, + 12 + ], + "venue": "TP-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 4, + 7, + 10, + 13 + ], + "venue": "TP-GLR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 13 + ], + "venue": "E4A-06-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 42, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6, + 12 + ], + "venue": "E4A-06-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 42, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students how to program microcontrollers and achieve computer interfacing using C programming and industry standard protocols. The course extends the C programming students have learnt earlier, covers microprocessor instruction sets and how to program microcontrollers to interface with other devices in order to build an embedded system. The course culminates in an assignment in which students design and build an embedded system that meets requirements and specifications.", + "title": "Microcontroller Programming and Interfacing", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE2028", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-0322-23", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-0322-23", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 3, + 4, + 6, + 7, + 8, + 9, + 10, + 12 + ], + "venue": "E4-03-07", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as the hands-on counterpart for TEE2027 and EE2023E/TEE2023. Students will practise and strengthen the knowledge learnt in electromagnetics, devices and circuits, and signals and systems through a series of experiments with the aim of integrating these knowledge to build an integrated digital communication system. The experiment will touch on important concepts, such as opamp characterization, circuit design specifications and component choice, frequency domain signal analysis, OOK modulation, frequency spectrum, and wireless communication system. Towards the end, the students will form an integrated view on these topics through a mini-project that encompass all these fields.", + "title": "Integrated System Lab", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE2033", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": { + "start": "2023-01-20", + "end": "2023-04-14", + "weeks": [ + 1, + 2, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 13 + ] + }, + "venue": "E4A-06-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce students to the discipline of computing and the problem solving process. It stresses on good programme design and programming styles, and structured programme development using a higher-level programming language. The topics covered in this module are Algorithm design process, Programme development/coding/debugging. Programming concepts in a high-level language including programme structure, simple data types and structured types and various control structures (sequencing, loops, conditionals, etc.). Linear data structures such as arrays and linked-lists. The utility of recursion using a variety of sorting algorithms.", + "title": "Programming Methodology", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE2101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 4, + 7, + 12 + ], + "venue": "E2-0309PC6", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will give students some general computing as well as more specific software skills for solving engineering problems. LabVIEW is widely adopted \nsoftware in the industry for data acquisition and instrument control. The teaching of LabVIEW will be based on engineering fundamentals that students have learnt in the first two years. This will also help them to consolidate concepts that have been learnt in the various technical modules. Through a series of integrated \nminiprojects carried out in the lab, students will be guided in their exploration of engineering principles and problem solving using the tools available in LabVIEW.", + "title": "Labview for Electrical Engineers", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an engineering module that focuses on the conceptualization, design and development of technology oriented new products. It integrates innovation, product planning, marketing, design and manufacturing functions of a company. This module gives students an opportunity to conceptualize and design a product which they will eventually be able to prototype. Thus it is designed for electrical engineering students to experience an integrated learning of innovation and enterprise pertaining to new product development where technology plays a central role. The major topics include innovation, opportunity management, identification of customers\u2019 needs, product specification, design, planning, testing, manufacturing, and commercialization. Intellectual property and its relationship with all facets of new technology product design are also covered. Guest speakers from relevant industries will be invited to present practical aspects of innovation and new product development.", + "title": "Innovation & Enterprise I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3031", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Wireless communication and sensing systems play an ever increasing role in society. This module introduces the RF and microwave hardware systems and circuits.\n\nThe applications include: GSM/CDMA, RFID, UWB, WLAN, Bluetooth, Zigbee, Radar and remote sensing", + "title": "Intro to RF and Microwave Sys & Circuits", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3104", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamentals of analog and digital communications. It starts with an overview of modern communication systems based on analog and digital techniques and an elaboration on the advantages of digital over analog systems. Then, the basic analog communication techniques are introduced, including amplitude/frequency modulation and demodulation. This is followed by an introduction of analog-to-digital conversion techniques, including signal sampling and quantization theory. Finally, it introduces the three main building blocks of digital communication systems, including source coding, channel coding, and digital modulation/demodulation.", + "title": "Communication Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3131", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Tuesday", + "lessonType": "Packaged Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Tuesday", + "lessonType": "Packaged Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Software project planning, requirements analysis, data flow methods. Software development, object-oriented design, portability and re-use. Software quality assurance, testing strategies and techniques. Case studies.", + "title": "Software Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches students the basics in the design of the various classes of microprocessors. Contents include design of simple micro-controllers, high performance CPU design using parallel techniques, memory organization and parallel processing systems. Topics also include the development of support tools to enable efficient usage of the developed microprocessor. The course emphasizes practical design and students are expected to be able to synthesize microprocessors at the gate level at the end of this course.", + "title": "Computer Architecture", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the design of embedded systems covering four key areas, namely, specifications and requirement determination, architectural design, software development and hardware development. The unified system design approach emphasizes hardware software co-design in the final synthesis of the application. Students will be brought through a design cycle in a realistic project. Topics covered include: System specification and requirement analysis; Object relationship and system structure; Quantifying behaviour; Targeting architecture: hardware/software partitioning; Resource estimation; Programmable platforms; Developing application software and targeting RTOS; Hardware design and implementation; System integration and debugging techniques; Design to meet regulatory standards.", + "title": "Embedded Computer Systems Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Feedback systems are ubiquitous in both the natural and engineered world. They are essential for maintaining our environment, enabling our transportation and communications systems; and are critical elements in our aerospace and industrial systems. For the most part, feedback control systems function accurately and reliably in the background. This course aims at introducing the magic of feedback, and tools for analysing and designing control systems. The fundamental knowledge of feedback and the related area of control systems are useful to students with diverse interests. Topics covered include feedback principles, time and frequency analysis of control systems, and simple controller design.", + "title": "Feedback Control Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on integration of analog circuits on silicon using CMOS technology. The topics covered include processing and modeling background, basic circuits, reference circuit design, single stage amplifiers, operational amplifiers, noise issues and advanced design methods", + "title": "Integrated Analog Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3408", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Electronic devices are the basic building blocks of all electronic gadgets used in our daily life. A solid understanding of the fundamental device concepts is essential for the electrical engineer to keep up with the fast evolution of new device technology. This module emphasizes on the properties of electronic materials and the operation principles of key electronic devices including p-n diode, bipolar junction transistor (BJT), MOS capacitor and (MOSCAP). Additional issues related to dielectric materials and non- semiconductor materials will be introduced. Contacts between metal and semiconductor will also be covered.", + "title": "Microelectronics Materials and Devices", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3431", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Power electronics forms an integral part of all electronics equipment from household appliances through information technology to transportation systems. This module develops the working knowledge, the foundation theory for generic power electronic circuits and the principles of their design. At the end of this module the student should be able to analyze and evaluate and carry out basic design of power electronics system for a large spectrum of applications. The topics covered are: Power semiconductor switches and characteristics. AC-to-DC converters and their performance. DC-to-DC converters: analysis and performance. DC-to-AC converters; analysis and performance. Switching circuits design and protection.", + "title": "Power Electronics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3501", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10, + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10, + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 11, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10, + 12 + ], + "venue": "", + "day": "Monday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9, + 11 + ], + "venue": "", + "day": "Monday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 11, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the fundamental principles of modern electrical energy systems including three-phase analysis. Upon completion of this course, students will be able to analyse, model, and predict the performance of energy systems and devices like generators, transformers, transmission lines and various types of loads and power electronic converters. The module is designed specifically to help students develop a broad systems perspective and an understanding of the principal elements of electrical energy systems. Furthermore, lecture materials are relevant to PE exams. Students will be prepared to work effectively with electrical engineers on the joint solution of complex problems.", + "title": "Electrical Energy Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3506", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 11 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 12 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "9", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 11 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "8", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 12 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to signal processing methods. It aimed at preparing students for high-level technical electives and graduate modules in signal processing and new media. The topics covered include: digital filtering, multirate digital signal processing, introduction to wavelet transform, probability and random signals, Wiener filter, AMAR model, linear prediction, singular value decomposition, principle component analysis and multimedia applications.", + "title": "Signal Processing Methods", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3731", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This purpose of this module is to learn the effects of, and ways of mitigating, random manufacturing variations and failure of components and systems. This module is targetted at students wishing to pursue careers in electronic manufacturing industries. Topics covered: Review of probability and statistics. Concepts of tolerance analysis and design. Methods of tolerance design including the Monte-Carlo method. Tolerance sensitivity and its applications. Reliability concepts. Device reliability. System reliability. Modelling and monitoring reliability. Burn-in and accelerated wear.", + "title": "Robust Design Of Electronic Circuits", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE3801", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will do a research project over two semesters on a topic of current interest in Electrical and Computer Engineering. Students learn how to apply skills acquired in the classroom and also think of innovative ways of solving problems. Apart from intrinsic rewards such as the pleasure of problem solving, students are able to acquire skills for independent and lifelong learning. The objective of this module is to teach skills, such as questioning, forming hypotheses and gathering evidence. Students learn to work in a research environment.", + "title": "BTech Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "TEE4001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Radio and microwave systems are used for information transmission. Module introduces students to range of knowledge and skills employed by RF and microwave engineers to specify, analyse and design radio and microwave transmission systems. Topics Time-varying EM fields guided waves, evanescent modes, plane-wave propagation. Radiation radiation mechanism, magnetic vector potential, current distribution on thin wire, Hertzian dipole, Half-wave dipole, monopole. RF Antennas parameters, aperture antennas and arrays. RF Amplification stability, gain, small-signal narrowband design. RF Generation conditions for oscillation, oscillator design, dielectric resonators. RF Receivers receiver and mixer parameters. RF Systems system gain, noise figure, satellite and terrestrial systems.", + "title": "Radio-Frequency (RF) Communications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "E4-07-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-16", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "E4-07-08", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "E4-07-08", + "day": "Monday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "E4-07-08", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Radio and microwave systems rely on efficient transmission and distribution of electromagnetic (EM) energy. Radio and microwave systems need to be immune from external EM interference and need to ensure that they do not cause interference of their own. To achieve these requirements, this module will equip and foster the students with balanced and particularly more hands-on oriented contents on radio frequency (RF) designs and practical systems, through live experiments, software learning, and real-life RF examples. Topics covered: transmission systems, resonator cavity, impedance matching network, electromagnetic interference (EMI) and shielding, multi-port scattering and corresponding measurement methods, radiation, and antenna characterizations.", + "title": "Radio Frequency Design and Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course begins with a review of mathematical preliminaries such as random processes and signal space concepts. It covers the design of modulation and demodulation schemes for digital communications over an additive white Gaussian noise channel. Emphasis will be placed on error rate performance for various digital signaling techniques and on error control coding techniques for reliable communications. Topics include the optimal receiver principle, modulation/demodulation techniques, signaling over band limited channels and important channel codes such as Reed-Solomon codes, turbo codes and LDPC codes.", + "title": "Digital Communications & Coding", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an in-depth treatment of fundamental topics of network design based on the Internet protocol stack model. It is aimed at making students understand how networks work through understanding of the underlying principles of sound network design. This course covers topics including network requirements, architecture, protocol stack models, Ethernet Token Ring, Wireless, and FDDI networks, bridges, switching and routing in IP and ATM networks, and internetworking. Apart from learning the concepts in networks, the students will gain expertise in analyzing and designing networking protocols through mini-projects.", + "title": "Computer Networks", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9, + 13 + ], + "venue": "", + "day": "Friday", + "lessonType": "Laboratory", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course will enable students to know the basics and theories of Internet-related tenchologies which offer the background knowledge & skills required for computer or network engineers. Contents covered include Internet Architecture & client/server applications, Client & Server Computing, Internetworking concepts & Architectural Model, Transport protocols: UDP/TCP, TCP/IP socket programming, Routing protocols, Domain Name System, Mobile IP, and Next Generation IP.", + "title": "Network Protocols and Applications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers data analytics for the Internet of Things. It starts with an introduction to the Internet of Things (IoT) systems, including the enabling technologies, IoT network architectures and protocols. IoT systems have applications such as semiconductor manufacturing, smart power grids, and healthcare. The module then covers data science fundamentals such as Bayesian statistics, classification, supervised learning, unsupervised learning, and deep learning. The module also covers basic machine learning algorithms such as decision trees, logistic regression, support vector machines, and neural networks. Students will visualize and analyze real-world data sets via practical IoT case studies.", + "title": "Data Science for the Internet of Things", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objectives of this module are to present the theoretical foundations of real-time systems and to discuss the practical aspects of their implementation. It describes the characteristics of a real-time computing system and students are taught how to design a real-time embedded system using structured data flow methodology. Concepts of time-critical I/O and real-time deadlines are emphasized, as are the important aspects of real-time operating systems, scheduling and the practical implementation of embedded systems and firmware. Other topics covered include deadlock management and process communications. Various case studies on industrial real-time systems will be exhibited to give students a real-world feel for such systems. Students will undertake a mini project involving a real-time embedded system. Topics covered: Introduction to real-time and embedded systems; Time critical I/O handling; Real-time embedded software design; Concurrent programming; Real-time operating systems; Scheduling and time-critical processing; Deadlock management; Process communications; Case studies of real-time embedded systems.", + "title": "Real-Time Embedded Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover sensors, instrumentation and control systems commonly used in the industry. The sensor and instrumentation part includes topics such as signal processing and conversion, transducers and actuators, instrumentation amplifiers, non-linear amplifiers, issues pertaining to grounds, shields and power supplies. The control portion covers the evolution and types of control systems, centralized control, direct digital control (DDC), distributed control systems (DCS), fieldbuses, PID control: tuning methods and refinements, auto-tuning principles and implementation, available industrial PID controllers and their operation. It will include other common control systems such as feed-forward, cascade, ratio, selective, split range, time-delay compensation, sequence control and PLC.", + "title": "Industrial Control Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4303", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental knowledge, theories and applications of fuzzy logic and neural networks. It examines the principles of fuzzy sets and fuzzy logic, which leads to fuzzy inference and control. It also gives students an understanding of the structures and learning process of a neural network. Topics covered include: fuzzy set theory, fuzzy systems and control, basic concepts of neural networks, single-layer and multilayer perceptrons, self-organizing maps and neural network training.", + "title": "Introduction To Fuzzy/Neural Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4305", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "E3-06-08", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-10", + "end": "2023-07-05" + }, + "venue": "E3-06-08", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "E3-06-08", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with essential concepts in electronics to enable them to understand and design complex electronics circuits and systems for processing analog signals.Topics covered: Techniques for implementing specific amplifier frequency response involving poles and time constants; Negative feedback amplifiers; Oscillators: RC, LC and crystal-controlled oscillators; Power amplifiers: Output stage, efficiency and distortion; DC power supply design: Linear and switching regulators, current limiting; Mixer, modulators and demodulators for communication systems; Active filters; Instrumentation amplifiers, CMRR; Applications of current mirror circuits.", + "title": "Analog Electronics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4407", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the students to the design of integrated circuits. It covers basic concepts including integrated circuits fabrication technology, CMOS and nMOS design, inverter design, aspect ratios of pull-up and pull-down transistors, switching characteristics of CMOS and nMOS inverters, latch-up, stick diagram, design rules, mask layout, sub-systems design, ASIC challenges and issues, ASIC design flow, Verilog hardware design language basics, and logic synthesis. Each student will do a design exercise using the EDA tools.", + "title": "Integrated Digital Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4415", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to equip students with the physical foundation of metal oxide semiconductor (MOS) device physics and the theoretical background for understanding end applications in modern transistors and memory devices (e.g., Flash, phase change random access memory, etc.). Upon the successful completion of this module, the student is expected to gain an understanding on the principles of operation and physics of modern MOS transistors and memory devices. Such knowledge is useful for careers in the wafer fabrication plants, foundries, design houses and the microelectronics industry.", + "title": "Modern Transistors and Memory Devices", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4435", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the new information age, fabrication process technology continues to be employed in the manufacturing of ultra-high density integrated circuits such as microprocessor devices in computers. This module focuses on the major process technologies and basic building blocks used in the fabrication of integrated circuits and other microelectronic devices (e.g., solar cells). Understanding of fabrication processes is essential for undergraduate students who wish to develop their professional career in the microelectronics industry such as in wafer fabrication plants, foundries and design houses.", + "title": "Fabrication Process Technology", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4436", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-02-32", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the basic concepts and techniques in computer vision and digital image processing. The following topics are taught: elements of a vision system, image acquisition, 2-D discrete Fourier transform, image enhancement techniques, error-free and lossy compression, segmentation methods, and representation and description methods.", + "title": "Introduction to Computer Vision and Image Processing", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TEE4704", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module builds and exposes students to the mathematical foundational concepts that are necessary in a variety of engineering disciplines. The topics include the following: Ordinary differential equations. Laplace transform. Matrix algebra. Vector Space. Eigenvalues and Eigenvectors. Determinants and Inverses. Solution of linear equations. Diagonalisation. Functions of Matrices. Matrix exponential. Matrix differential equations.", + "title": "Engineering Mathematics I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TG1401", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "5", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module highlights to students the ethical issues they will face working as an engineering professional. The issues covered range from the rationale for an engineering code of practice, risk and safety issues, conflict of interest, ethical issues in research. This module will be offered to second or higher year engineering students as they need their engineering background to better understand the issues involved. Case studies will be presented to cover real life issues.", + "title": "Ethics In Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TG2415", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for BTech Engineering students. It leverages on the student\u2019s work experience and focuses the student\u2019s mind on exploring and reflecting on how the concepts and theories gained in the classroom can be translated into industrial practice to enhance his/her work performance. The student is required to complete 3 written reports, 2 oral presentations, and 6 Skills courses. This module is normally taken over two consecutive regular semesters, and is an Unrestricted Elective Module.", + "title": "Industrial Practice", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "TG3001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for BTech Engineering students. It leverages on the student\u2019s work experience and focuses the student\u2019s mind on exploring and reflecting on how the concepts and theories gained in the classroom can be translated into industrial practice to enhance his/her work performance. The student is required to complete 3 written reports and 2 oral presentations. This module is normally taken over two consecutive regular semesters, and is an Unrestricted Elective Module.", + "title": "Industrial Practice", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "TG3002", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to (i) expose students to computing principles (including abstraction and composition), (ii) provide a broad introduction to key computing concepts (including computer organisation, operating systems, data management, distributed applications), and (iii) introduce students to basic programming methodologies and problem solving techniques through a simple structured programming language.", + "title": "Introduction to Computing and Programming I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC1001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Saturday", + "lessonType": "Laboratory", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds on basic knowledge from TIC1001. Students will learn how to model a problem and how to design and implement solutions to computational problems. TIC1002 also introduces the methodologies and good practices of programming: testing, debugging, assertion, documentation, and tools such as linter, and debugger. Students will be exposed to more complex problems and learn to abstract out the complexities and to compose programmes from smaller, reusable components. Finally, students will be introduced to object-oriented programming paradigm as a powerful way of composing reusable components to form larger, more complex, programmes.", + "title": "Introduction to Computing and Programming II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC1002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "0930", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B108", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B111", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0930", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Thursday", + "lessonType": "Lecture", + "size": 110, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Saturday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the interactions and impacts of computing on society, particularly on how the society has been transformed by computing (and vice versa), how policies and social norms have been developed due to computing, and emerging issues related to regulation of computing in society. Students will gain an understanding of the professional and ethical responsibilities of computing professionals, and an ability to analyse the impact of computing on society on a local and global scale.", + "title": "Professional, Ethical, and Social Issues in Computing", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC1101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces mathematical tools required in the study of computer science. Topics include: (i) Logic and proof techniques; (ii) Relations and functions; (iii) Mathematical formulation of data models (linear model, trees and graphs), and (iv) Counting and combinatorics.", + "title": "Discrete Structures", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC1201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0201", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM2-0108", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to fundamental data structures, their implementation strategies, their algorithm design, and their applications. Data structures covered include linked lists, stacks, queues, hash tables, heap, trees, and graphs. This module also introduces the concepts of running time analysis and Big-O notation to quantify the performance of different implementation strategies and algorithms.", + "title": "Data Structures and Algorithms", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC2001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B109", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0120", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-B112", + "day": "Monday", + "lessonType": "Laboratory", + "size": 24, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 115, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-23T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the necessary conceptual and analytical tools for systematic and rigorous development of software systems. It covers four main areas of software development, namely object-oriented system analysis, object-oriented system modelling and design, implementation, and testing, with emphasis on system modelling and design and implementation of software modules that work cooperatively to fulfil the requirements of the system. Tools and techniques for software development, such as Universal Modelling Language (UML), programme specification, and testing methods, will be taught. Major software engineering issues such as modularisation criteria, programme correctness, and software quality will also be covered.", + "title": "Introduction to Software Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC2002", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 90 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a platform for students to gain hands-on experience developing a medium-scale software applications, integrating what they have learned in the classroom in the first two years of the BTech computing programmes.", + "title": "Software Development Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC2003", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the strategic role of information systems in an organisation and how information systems can lead to organisational improvements in operations, planning, and decision making. Students will learn to identifying strategic opportunities for information systems deployment in an organisation, and be exposed to issues related to managing IT resources and evaluating IT investments.", + "title": "Information Systems and Organisations", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T09:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-12", + "end": "2023-07-07" + }, + "venue": "LT15", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT19", + "day": "Monday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-12", + "end": "2023-07-07" + }, + "venue": "LT19", + "day": "Friday", + "lessonType": "Tutorial", + "size": 26, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2023-05-12", + "end": "2023-07-07" + }, + "venue": "LT15", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT15", + "day": "Monday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-08", + "end": "2023-06-19", + "weekInterval": 2 + }, + "venue": "LT15", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-10T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as an introductory module on information security. It illustrates the fundamentals of how systems fail due to malicious activities and how they can be protected. The module also places emphasis on the practices of secure programming and implementation. Topics covered include classical/historical ciphers, introduction to modern ciphers and cryptosystems, ethical, legal and organisational aspects, classic examples of direct attacks on computer systems such as input validation vulnerability, examples of other forms of attack such as social engineering/phishing attacks, and the practice of secure programming.", + "title": "Introduction to Information Security", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC2301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 48, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SR_LT19", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 48, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces computer systems to students from the perspective of a programmer. Students learn about the computer systems, focusing on the hardware and operating systems, and how they impact the design, implementation, and performance of a programme. Topics covered include data representations, machine-level representations of C programmes, processor architecture, memory hierarchy, programme optimisation, linking, interrupts and signals, memory management, system-level I/O, and concurrency.", + "title": "Introduction to Computer Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC2401", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad introduction to computer networks and networked applications as well as network application programming. It covers a range of topics including basic computer network concepts, protocols, network computing concepts and principles, networked applications development and network security.", + "title": "Computer Networks and Applications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC2501", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR2", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists of two parts. The first introduces the fundamental concepts and techniques necessary for the understanding and practice of design and implementation of database applications and of the management of data with relational database management systems. The module covers entity-relationship model, functional dependencies, normalisation, and programming with SQL. The second part builds on top of the first and introduces students to contemporary techniques in building simple CRUD-based Web applications with a database backend and a JavaScript-based frontend.", + "title": "Database and Web Applications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC2601", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Friday", + "lessonType": "Tutorial", + "size": 27, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Friday", + "lessonType": "Tutorial", + "size": 105, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT15", + "day": "Friday", + "lessonType": "Lecture", + "size": 105, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concepts that serve as a basis for hundreds of programming languages. It aims to provide the students with a basic understanding and appreciation of the various essential programming-languages constructs, programming paradigms, evaluation criteria and language implementation issues. The module covers concepts from imperative, object-oriented, functional, logic, constraints, and concurrent programming. These concepts are illustrated by examples from varieties of modern object-oriented, functional, and logic programming languages. The module also introduces various implementation issues, such as pseudo-code interpretation, static and dynamic semantics, abstract machine, type inferencing, etc.", + "title": "Principles of Programming Languages", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC2701", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-0344", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students with critical communication skills for computing professionals. Students will learn interpersonal and intercultural communication skills as well as oral and written communication skills. In particular, students learn to communicate technical information to both technical and non-technical audience in a succinct, effective, convincing, and understandable way. By the end of the module, students will be able to write effective proposals/reports that contain significant components on IT and/or data analytics (for business analytics major), email messages, software guides, and speak/present confidently in meetings/negotiations, conduct software demonstrations and pitch IT ideas/proposals to management and users.", + "title": "Communications for Computing Professionals", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC2901", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 31, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 23, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0212", + "day": "Thursday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of TIC2001 and explores in greater depth the practices of software requirements analysis and software design. The first part of this module focuses on how to capture, document, and validate the needs of the stake holders as software requirements. The second part focuses on the issues, techniques, strategies, representations, and patterns used to determine how to implement a software. Topics covered include design principles, architectural design, HCI design, and design patterns.", + "title": "Software Requirements Analysis and Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC3001", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR1", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on human-computer interaction and covers the common principles, design guidelines, prototyping techniques, evaluation techniques, as well as implementation of modern computer user interfaces.", + "title": "User Interface Design and Implementation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC3002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module focuses on the managerial aspects of information security and prepares students for their future roles as information security managers or information security professionals. Through this module, students will appreciate the challenges of managing information security in the modern organisation. Topics include risk management, security policies and programmes, managing the security function, and planning for continuity.", + "title": "Information Security Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC3301", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0209", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to provide some in-depth discussions on selected topics in system and network security. This module covers the following topics: intrusion detection, DNS security, electronic mail security, authentication, access control, buffer overflow, memory and stack protection, selected topics in application security, for instance, web security, and well-known attacks.", + "title": "Computer Systems Security", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC3302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an essential module designed for BTech Computing students. Leveraging the the students' work experience, students in this module will reflect upon how the knowledge gained in the BTech programme can be translated to their workplace, so that they can perform better in their jobs.", + "title": "Industrial Practice", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "TIC3901", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is one of the two modules where students get to practice software engineering concepts learnt in a team environment to produce a well-designed, well-tested, large-scaled software system. This module focuses on software engineering practice of a greenfield project, where students will elicit the requirements, design the software architecture and interfaces, and implement the software from scratch.", + "title": "Software Engineering Practicum I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is one of the two modules where students get to practice software engineering concepts learnt in a team environment to produce a well-designed, well-tested, large-scaled software system. This module focuses on software engineering practice of a brownfield project, where students will have to understand an existing piece of software before developing additional components or modify existing components to meet a set of new requirements.", + "title": "Software Engineering Practicum II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4002", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0217", + "day": "Friday", + "lessonType": "Lecture", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Software project management is the discipline of defining and achieving project goals while optimizing resource constraints during a project lifecycle. It is about planning, scheduling, resource allocation, execution, tracking, and delivering software development projects within variables such as time, scope, cost and quality. Software in project management has a unique product life cycle process that requires multiple rounds of testing, updating, and customer feedback. This module will look at two approaches to software development which are the traditional or waterfall method (linear predictive approach) and the now popular approach, Agile methodology (iterative adaptive approach). Today most IT-projects are managed in the Agile style (Scrum and Kanban) to keep up with the increasing pace of business and iterate based on customer and stakeholder feedback. Module will cover knowledge areas of project management such as feasibility study, quality, risk, cost, budgeting, change control, estimation, communication, time, scope, procurement, configuration and human resource management.", + "title": "Software Project Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4003", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the concepts and practice of software quality control to ensure that a software that has been developed meets the stated requirements, through reviews and testing. This module first introduces students to various software review process, followed by testing methodologies used in the industry to ensure that the functional and non-functional requirements are met.", + "title": "Software Quality Control", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4004", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad introduction to software engineering approaches specific to building a parallel/distributed software system. Such systems are challenging since they are concurrent, prone to components failure, and non-deterministic. This module begins by introducing students to the basics of concurrent and parallel programming, as well as common middleware and tools for building distributed systems. It then covers how behaviours and challenges specific to distributed and parallel software can be considered as part of the software engineering processes (including requirements, design, and testing).", + "title": "Parallel and Distributed Software Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4005", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is one of the two modules where students get to practice information security concepts learned in the classroom and gain hands on experience. Students work in a team environment on an information security-related projects. Project activities can include analysing the security requirements, designing and implementing security systems, attacking and defending a system, developing and deploying an information security policy, etc.", + "title": "Information Security Practicum I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4301", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0207", + "day": "Thursday", + "lessonType": "Lecture", + "size": 7, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is to get students to apply information security concepts in the software development process. Students are expected to discuss and analyze a given application along with the security concepts related to the development and deployment of that application in the IT infrastructure. Then, students are to work in a group to analyze and fix the security issues/threats/vulnerabilities of that application. Project activities include understanding an application and proposing a security solution for it by developing/testing basic applications and analyzing/fixing the security vulnerability of the application using world-wide used open-source tools.", + "title": "Information Security Practicum II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4302", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0216", + "day": "Thursday", + "lessonType": "Lecture", + "size": 7, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Software engineering processes need to include security considerations in the modern world. This module familiarizes students to security issues in different stages of the software life-cycle. After completing this module, the students are expected to understand secure programming practices, be able to analyse and check for impact of malicious inputs in programmes, and employ specific testing techniques which can help detect software vulnerabilities.", + "title": "Software Security", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0204", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to prepare students for understanding the security of the latest web platform and its interplay with operating systems and the cloud infrastructure. The topics covered include the design of web browsers and web applications, vulnerabilities in web applications and web browsers, design of web scanners, authentication in webbased platforms, security policies and enforcement mechanisms. This module also covers security topics on the interface between the web platform and the backend systems, such as the underlying database systems and cloud infrastructure.", + "title": "Web Security", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4304", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0208", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A number of most damaging attacks on computer systems involve the exploitation of network infrastructure. This module provides an in-depth study of network attack techniques and methods to defend against them. Topics include basic concepts in network security; firewalls and virtual private networks; network intrusion detection; denial of service (DoS); traffic analysis; secure routing protocols; protocol scrubbing; and advanced topics such as wireless network security.", + "title": "Network Security", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4305", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "COM1-0210", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a follow-up from TIC3301 and covers the governance and audit of information security processes within an organisation. Students will learn about various information security assurance frameworks, both international and local, and techniques and procedures to review the effectiveness of information security implementation in the organisation, as well as methods for developing and implementing security strategies using these frameworks.", + "title": "Information Security Governance and Audit", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIC4306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this project module enables students to undertake a substantial computing-related project work over a period of one year. Students work on self-proposed projects or projects proposed by staff. They will have good opportunity to apply what they have learnt on practical computing problems. Students should periodically submit a report make a presentation to the respective supervisors.", + "title": "Independent Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "TIC4901", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides BTech (Business Analytics) students an active learning opportunity to work independently in a group on practical, large-scale, computing projects related to their respective degree programme. Emphasis will be placed on identifying and understanding a real-world problem to be solved, analyzing the requirements, designing and implementing a solution, and evaluate the solution. Students get to apply what they learn in the classroom and gain hands-on experience on solving real-world problems, and develop a thorough understanding of issues involved.", + "title": "Business Analytics Capstone Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "TIC4902B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides BTech (Cybersecurity) students an active learning opportunity to work independently in a group on practical, large-scale, computing projects related to their respective degree programme. Emphasis will be placed on identifying and understanding a real-world problem to be solved, analyzing the requirements, designing and implementing a solution, and evaluate the solution. Students get to apply what they learn in the classroom and gain hands-on experience on solving real-world problems, and develop a thorough understanding of issues involved.", + "title": "Cybersecurity Capstone Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "TIC4902C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides BTech (Software Engineering) students an active learning opportunity to work independently in a group on practical, large-scale, computing projects related to their respective degree programme. Emphasis will be placed on identifying and understanding a real-world problem to be solved, analyzing the requirements, designing and implementing a solution, and evaluate the solution. Students get to apply what they learn in the classroom and gain hands-on experience on solving real-world problems, and develop a thorough understanding of issues involved.", + "title": "Software Engineering Capstone", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "TIC4902S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the analytical methods used to support the operations of industrial systems that produce goods and services. It equips the students with the understanding of the fundamental processes necessary for this production and the tools and techniques commonly deployed to create effective and efficient systems. The topics covered include strategic purpose of an economic entity, forecasting of demand, planning for output levels, production control systems, scheduling, facilities layout, and quality assurance.", + "title": "Introduction to Industrial System", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE2010", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Friday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Friday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the basic concepts and the methods of probability and statistics. Topics include the basic concepts of probability, conditional probability, independence, random variables, discrete and continuous distributions, joint and marginal distributions, mean and variance, some common probability distributions, sampling distributions, estimation and hypothesis testing.", + "title": "Probability and Statistics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE2020", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This modules introduces fundamental programming methodologies for solving real-life complex problem using Python with emphasis in industrial operations and supply chains management oriented applications. Topics include problem solving by computing, writing pseudo-codes, problem formulation and problem solving, program development, coding, testing and debugging, fundamental programming constructs (variables, types, expressions, assignments, functions, control structures, etc.), fundamental data structures: arrays, strings and structures, data processing using large scale data sets from files, visualization, facilitating a design towards solving complex problems. Module will expose both Python and one or more of its variants used for scientific computations such as SciPy and NumPy.", + "title": "Programming Methodology with Python", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE2030", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 4, + 8, + 11 + ], + "venue": "E2-0307PC4", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 4, + 8, + 11 + ], + "venue": "E2-0308PC5", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 4, + 8, + 11 + ], + "venue": "E2-0309PC6", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 90 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module builds upon the foundation in ST2131/TS2120/IE2120E and stresses on applications of stochastic modeling. Topics include: Review of exponential distribution; Conditional probability and conditional expectation; Discrete time Markov chains; Poisson process; Basic queuing models and continuous time Markov chains and Renewal theory. The emphasis of this course will be on model formulation and probabilistic analysis. Students will eventually be conversant with the properties of these models and appreciate their roles in engineering applications.", + "title": "Probability Models with Applications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE2100", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundation module introduces students to some of the basic concepts of operations research. Topics include linear programming, network flow models, and nonlinear programming. Besides the basic concepts, students will also learn about the applications of these topics to complex engineering and management problems.", + "title": "Operations Research I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE2110", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT3", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the fundamental concepts of quality and basic techniques in quality engineering. The topics covered are measures and interpretation of variation, control charts, process capability analysis, and acceptance sampling. The module will also deal with some related issues such as, measurement systems analysis, PDCA, TQM, and industrial case studies.", + "title": "Quality Engineering I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE2130", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Monday", + "lessonType": "Tutorial", + "size": 70, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Monday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT53", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the concept of \"the time-value of money\" and the effect that it has on economic decisions in engineering and business. It equips the students with a conceptual framework for understanding and evaluating economic alternatives represented as a set of cash flows over time. Topics covered include cash flow analysis, choice among economic alternatives, effects of depreciation and taxation, replacement analysis, and dealing with risk and uncertainty.", + "title": "Engineering Economy", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE2140", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT4", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the basic concepts of human factors engineering and ergonomics. The topics covered include: Human Factors in Systems (Human Error), Implications of Human Functions in performance (Work Physiology), Workstation Design (Guidelines and Norms), Environmental Stressors and Ergonomics Fieldwork (Translation and Application).", + "title": "Human Factors Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE2150", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This foundation module aims to introduce students to the fundamental concepts and underlying principles of systems thinking, as well as modeling methods and tools that are applicable to the design of industrial systems. The topics in this module include introductory systems concepts, mental models and causal loop diagrams, while the modeling methods and tools to be covered include that of operations research and data analysis. The application of these topics to simple systems design problems will be illustrated through laboratory sessions. Real-world case studies will be presented to show how these concepts have been applied in industrial contexts.", + "title": "Systems Thinking and Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE3010", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Friday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is to give students the opportunity to apply concepts learnt to solving real world problems. In this module, each student is assigned to work on a company-sponsored problem that requires application of industrial and systems engineering concepts. The module provides the opportunity for students to identify key problems and craft an objective, scope and deliverable for a piece of work, collect and analyze the relevant data, and apply the appropriate tool to solve the problem. It also enables students to improve their communication skills through report writing and presentation to the various stakeholders.", + "title": "Systems Design Project", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TIE3100", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module goes beyond the foundation and deals mainly with the applications of statistics in the engineering context. Topics include: Review of statistical decision making and hypothesis testing, ANOVA with homogeneity of variance tests, concepts of blocking, RCBD, fixed and random effects models with multiple comparison procedures, factorial experiments, nonparametric methods, an introduction to bootstrapping with IE-based case studies. Students will also appreciate the importance of good planning and be able to conduct and evaluate simple experiments.", + "title": "Statistics for Engineering Applications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE3101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-SR3", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the basic concepts of discrete-event simulation systems and application to problems that have no closed-form solutions. The course will cover modelling techniques, random number generators, discrete event simulation approaches, simulated data analysis, simulation variance reduction techniques and state-of-the-art simulation software. At the end of this course, students will be able to analyse and develop simulation models of given problems.", + "title": "Simulation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TIE3110", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 100 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is to give students exposure to research. In this module, each student is assigned to a research project that requires application of industrial and systems engineering concepts. The module provides the opportunity for students to conduct self study by reviewing literature, defining a problem, analyzing the problem critically, conducting design of experiments, and recommending solutions. It also enables students to improve their communication skills through technical report writing and oral presentation.", + "title": "B.Tech. Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TIE4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental principles and practices for decision modelling and risk analysis in industrial engineering and operations management. It presents a set of analytical methods and tools with which stakeholders can deal with complex and uncertain decision situations leading to clear and defensible actions.", + "title": "Decision Analysis in Industrial & Operations Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Friday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to advanced modeling concepts and methods in industrial and operations management. With systems becoming more complex, this module will impart students with the skills to conduct appropriate optimization modeling of the problems encountered in these systems. Students will learn how to solve these models computationally using exact and heuristic methods to make optimal or near-optimal decisions for these systems. Selected problems in logistics systems will be used to illustrate the real-world modeling applications.", + "title": "Advanced Modeling in Operations Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-04", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches students a range of modern statistical and machine learning tools for solving data intensive problems in industrial & management engineering and supply chain management. Popular algorithms in statistical and machine learning currently used in the industry will be covered. These include but are not limited to linear regression, support vector machine, artificial neutral network, decision tree, principal component analysis, boosting, clustering, etc. Practical case studies will be used and software such as Python or R will be utilized.", + "title": "Data Analytics for Operations Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-08", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the fundamentals of supply chain concepts. It covers issues and basic techniques of distribution strategies, transportation logistics and supply chain network optimisation models. Students are equipped with fundamental concepts and quantitative tools that are essential to solving logistics and supply chain problems.", + "title": "Supply Chain Modelling", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4220", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics in logistics or specialised topics. Students will learn and understand evolving concepts in logistics and supply chain. This module will enable students to keep abreast with current developments in the\nlogistics field and broaden their exposure to various specialised topics.", + "title": "Selected Topics in Logistics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Design-in quality versus process control. Quality function deployment. Failure mode and effects analysis. Fractional factorial designs. Confounding. Robust design. Reliability analysis and testing.", + "title": "Quality Engineering II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4230", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Friday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Friday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics in quality engineering or specialised topics. Students will learn and understand concepts in quality management and quality technology. This module will enable them to keep abreast with current developments in quality engineering and broaden their exposure to various specialised topics.", + "title": "Selected Topics in Quality Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the basic concepts in project management. The process encompasses project planning, project scheduling, cost estimating and budgeting, resource allocation, monitoring and control, and risk assessment and management. The principles behind the process and the approaches to their execution will be covered. This module will enable students to define and plan a project within the constraints of the environment. The plan will serve as a blueprint for the implementation and control of a project.", + "title": "Project Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4240", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the basics of cost management. Concepts relating component items and process steps to value-added functions are introduced as a precursor to the analysis of system cost over the entire life cycle of products and services. It also deals with tools and approaches to select equipment, materials for cost-effective operations. This module enables students to cost out a system and recommend approaches to develop strategies for increasing the cost effectiveness of the system.", + "title": "Cost Analysis And Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4242", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0603-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-0603-04", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to established and emerging concepts in new product development and technological innovation. The entire new product development process, from opportunity identification to product launch, will be discussed in the module. Materials will be drawn from real-life practices and research findings.", + "title": "New Product Management and Innovation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics in engineering management or specialised topics. Students will learn and understand evolving concepts affecting the management of engineering activities.This module will enable them to keep abreast with current developments in the engineering management field and broaden their exposure to various specialised topics.", + "title": "Selected Topics in Engineering Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is an introductory module on systems engineering. It explains systems, systems engineering, system development lifecycles and processes, applications and methods to integrate systems and mitigate risks. In particular, system development will be learned in details through a project.", + "title": "Introduction to Systems Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics in systems engineering or specialised topics. Students will learn and understand evolving concepts affecting the engineering large-scale or complex systems. This module will enable them to keep abreast with current developments in the systems engineering field and broaden their exposure to various specialised topics.", + "title": "Selected Topics in Systems Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to either emerging topics in industrial engineering or specialized topics by visiting staff. The students are given the opportunity to learn from visiting staff and also to understand evolving concepts in operations research\nand industrial engineering.", + "title": "Selected Topics in Industrial Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TIE4299", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The following topics will be covered in detail: Vector algebra, vector functions; Cartesian, cylindrical and spherical coordinates; Curves, tangents and lengths; Gradient, directional derivatives; Divergence and curl vector fields; Line, surface and volume integrals, Jacobian.; Green\u2019s theorem, Gauss\u2019 and Stokes\u2019 theorems.", + "title": "Engineering Mathematics II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TM2401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a group-based project that focuses on the design of a complete mechanical design product, emphasizing the design process, analysis and drawings. The major project may be preceded by smaller projects to instill familiarity and experience. Elements of commercialization (e.g. market survey) and form-giving (aesthetics) may be incorporated. Students are required to submit a report, drawings, do a presentation, and take oral examinations. Effective group dynamics and experience of the process and problems involved in translating paper design to prototype are the key objectives of this module.", + "title": "Mechanical Systems Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "TM3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists mainly of a research-based project carried out under the supervision of one or more faculty members. It introduces students to the basic methodology of research in the context of a problem of current research interest. The module is normally taken over two consecutive semesters, and is a core requirement of the B.Tech. programme.", + "title": "B.Tech. Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "TM4101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module consists mainly of a research-based project carried out under the supervision of one or more faculty members. It introduces students to the basic methodology of research in the context of a problem of current research\ninterest. The module is normally taken over two consecutive semesters, and is a core requirement of the B.Tech. programme.", + "title": "B.Tech. Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TM4102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the fundamental concepts related to the simulation of manufacturing systems. How the data between the manufacturing systems are transferred, their standard protocols are also covered. In addition the following topics are covered: Concepts of discrete-event modelling and simulation, definitions, types, essential elements in modelling, design and implementation of manufacturing simulation models, petri-nets, model verification and validation, input information collection and analysis, interpretation of outputs, use of random inputs and variance reduction techniques, protocol standards, communication topology, MAP/TOP.", + "title": "Manufact'G Simulat'N & Data Communicat'N", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TM4263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the basic principles in various areas of the automobile. These include various types of petrol engines, diesel engines, rotary engines, electric engines and hybrid engines, and their related issues, various types of transmission systems (manual and automatic), chassis design and their development, and vehicle dynamics (including suspension, steering, brakes), car body design and manufacture, and safety issues. Also covered are fuel, combustion, and emissions, plus examples from the automotive industry and current industrial practices.", + "title": "Fundamentals of Automotive Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TM4264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to equip students without 'A'-level mathematics with appropriate mathematical knowledge and skill, to prepare them for further study of mathematics related disciplines. Major topics: Sets, functions and graphs, polynomials and rational functions, inequalities in one variable, logarithmic and exponential functions, trigonometric functions, sequences and series, techniques of differentiation, applications of differentiation, maxima and minima, increasing and decreasing functions, curve sketching, techniques of integration, applications of integration, areas, volumes of solids of revolution, solution of first order ordinary differential equations by separation of variables and by integrating factor, complex numbers, vectors.", + "title": "Introductory Mathematics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TMA1001", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S14-0619", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a basic foundation for calculus and its related subjects required by computing students. The objective is to train the students to be able to handle calculus techniques arising in their courses of specialisation. In addition to the standard calculus material, the course also covers simple mathematical modelling techniques and numerical methods in connection with ordinary differential equations. Major topics: Preliminaries on sets and number systems. Calculus of functions of one variable and applications. Sequences, series and power series. Functions of several variables. Extrema. First and second order differential equations. Basic numerical methods.", + "title": "Calculus for Computing", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TMA2101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Lecture", + "size": 80, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT33", + "day": "Friday", + "lessonType": "Tutorial", + "size": 80, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces basic concepts in linear algebra that are routinely applied in fields like science, engineering, statistics, economics and operations research. The vector spaces within which the general ideas are developed are all real vector spaces (actually Rn). The objective of the course is to inculcate a facility in both the algebraic and geometric viewpoints of linear algebra. The module will develop basic skills in computing with vectors and matrices (with or without any mathematical software). It will also highlight examples of the more important applications of linear algebra in other fields.", + "title": "Linear Algebra", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TMA2102", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "LT34", + "day": "Thursday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "LT34", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "LT34", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "1930", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "LT34", + "day": "Monday", + "lessonType": "Tutorial", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-08T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as an introduction to probability and statistical techniques to students. Topics covered include the basic concepts of probability, conditional probability, independence, random variables, joint and marginal distributions, mean and variance, some common probability distributions, sampling distributions, estimation and hypothesis testing based on a normal population.", + "title": "Probability and Statistics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TMA2103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT50", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 100, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the student with the fundamental knowledge to do calculations on design components like bolts, fasteners, joints, welds, springs, gears, brakes, clutches. Other areas covered will include material selection, fatigue, bearings, shafts, as well as design mechanisms like linkages and cams. This is a compulsory module with no final exam. Assessment will be based purely on continuous assessment.", + "title": "Fundamentals of Mechanical Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME2101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides for a further understanding of concepts and principles of solid mechanics and its applications to engineering problems. The topics covered are: Two-dimensional systems; Combined stresses; Energy methods; Columns; Experimental stress analysis; Inelastic behaviour.", + "title": "Mechanics of Materials II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "TME2114", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6, + 7 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6, + 7 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6, + 7 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 9 + ], + "venue": "EA-02-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6, + 7 + ], + "venue": "EA-02-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 6, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-25T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the fundamental engineering principles on kinematics and kinetics. The topics of rigid body dynamics and vibration will be covered, including the theoretical development and practical application to mechanisms and machinery. The salient features of dynamics to be applied for each instance will be clearly explained and the interpretation of the results obtained will be highlighted.", + "title": "Mechanics of Machines", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME2115", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "E1-02-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E1-02-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6 + ], + "venue": "E1-02-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-02", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E1-02-03", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course develops a good understanding of the basic concepts and application of thermodynamics required for the analysis, modeling and design of thermal-fluid systems in engineering practice. Major topics include: Review of First and Second Laws of Thermodynamics and their applications; Reversible and Irreversible processes; Entropy; Non-flow and flow processes; Cycles involving entropy changes; Power/refrigeration and air cycles; Ideal gas mixtures; Psychrometry and applications; Fuels; Combustion and First Law applied to combustion.", + "title": "Engineering Thermodynamics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME2121", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 7, + 8, + 9, + 13 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 4, + 5, + 6, + 10, + 11, + 12 + ], + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "EA-06-20", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 11 + ], + "venue": "EA-06-20", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course to fluid mechanics for mechanical engineering students. After introducing the basic terminology and a classification of fluid flows, students are taught fluid statics, which covers hydrostatic forces on submerged bodies and buoyancy. In the section on fluid dynamics, basic principles of fluid motion are introduced. This covers the continuity equation, Bernoulli and energy equations. The momentum equation and its engineering application using the control volume approach are included. Dimensional analysis and similitude are taught with engineering examples. This course also includes laminar and turbulent pipe flows, Hagen-Poiseuille law, friction factor, and losses in pipe fittings.", + "title": "Fluid Mechanics I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME2134", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 5 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 5 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6 + ], + "venue": "EA-04-22", + "day": "Friday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "EA-04-22", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-26T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the students to the operating principles of hydraulic pumps and turbines, their applications and methods of selecting pumps to match system requirements and how to avoid cavitation damage. We also focus on the mathematical theory of potential (non-viscous) fluid flow as well as the structure of basic vortices.\n\nThis is followed by treatment of the fundamentals of viscous fluid flow and boundary layers. The major topics covered therein are the Navier-Stokes equations and some of their exact solutions, boundary layer flow theory, estimation of drag force on a flat plate, boundary layer separation and control, equations of motion for turbulent flow and turbulent boundary layers, turbulent models and velocity profiles in turbulent boundary layers. Boundary layer with transition. Flow around bluff and streamlined bodies: their flow patterns, drag and lift.", + "title": "Fluid Mechanics II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME2135", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-01", + "day": "Monday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 5 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 5 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6 + ], + "venue": "EA-04-21", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6 + ], + "venue": "EA-04-21", + "day": "Friday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a compulsory module and it introduces students to various fundamental concepts in control system analysis and design. Topics include mathematical modeling of dynamical systems, time responses of first and second-order systems, steady-state error analysis, frequency response analysis of systems and design methodologies based on both time and frequency domains. This module also introduces computer simulation as a means of system evaluation.", + "title": "Feedback Control Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME2142", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "E2-01-01", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E2-01-02", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-20", + "day": "Friday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "E2-01-01", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "E2-01-01", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E2-01-02", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E2-01-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "E2-01-01", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Primarily a core subject for mechanical engineering students, this course introduces the basic principles and characteristics of various sensors for the measurement of mechanical quantities such as position, velocity, acceleration, force, and temperature. Topics that are also introduced are actuators for achieving motion, primarily various types of electric motors. This course also covers the generalised measurement and instrumentation system, the associated electronics, drivers and power supplies for the processing of the signals from the sensors and transducers and for driving the various actuators. Emphasis is placed on the knowledge required for the application of these sensors and actuators rather than on their design.", + "title": "Sensors and Actuators", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME2143", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E2-01-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-06", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E2-01-01", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 11 + ], + "venue": "E2-01-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 12 + ], + "venue": "E2-01-03", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E2-01-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 12 + ], + "venue": "E2-01-03", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E2-01-01", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 12 + ], + "venue": "E2-01-01", + "day": "Friday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 11 + ], + "venue": "E2-01-01", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "E2-01-01", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-05-02T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the foundation for understanding the structure-property-processing relationship in materials common in mechanical engineering. Topics explore the mechanical properties of metals and their alloys, the means of modifying such properties, as well as the failure and environmental degradation of materials. Practical applications are demonstrated through laboratory experiments to illustrate the concepts taught during lectures.", + "title": "Principles of Mechanical Engineering Materials", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME2151", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Thursday", + "lessonType": "Lecture", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 55, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 4 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 3 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 5 + ], + "venue": "E3-04-02E", + "day": "Friday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 75 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the principles of computer-aided tools: CAD and CAM, which are widely used in modern design and manufacturing industry. By introducing the mathematical background and fundamental part programming of CAD/CAM, this course provides the basics for students to understand the techniques and their industrial applications. The topics are: CAD: geometric modelling methods for curves, surfaces, and solids; CAM: part fabrication by CNC machining based on given geometric model; Basics of CNC machining; Tool path generation in CAD/CAM (Option to introduce a CAM software to generate a CNC program for the machining of a part); Verification of fabricated part by CNC measurement based on given geometric model. The module is targeted at students specializing in manufacturing engineering.", + "title": "Manufacturing Processes", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME2162", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "E1-0409PC1", + "day": "Monday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6 + ], + "venue": "E1-0409PC1", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 3 + ], + "venue": "E1-0409PC1", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 5 + ], + "venue": "E1-0409PC1", + "day": "Monday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 3 + ], + "venue": "E1-0409PC1", + "day": "Monday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 4 + ], + "venue": "E1-0409PC1", + "day": "Monday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E1-0409PC1", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 5 + ], + "venue": "E1-0409PC1", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 11 + ], + "venue": "E1-0409PC1", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 6 + ], + "venue": "E1-0409PC1", + "day": "Monday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 12 + ], + "venue": "E1-0409PC1", + "day": "Monday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 4 + ], + "venue": "E1-0409PC1", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E1-0409PC1", + "day": "Monday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9 + ], + "venue": "E1-0409PC1", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 8, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 60 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The following topics will be covered in detail: Vector algebra, vector functions; Cartesian, cylindrical and spherical coordinates; Curves, tangents and lengths; Gradient, directional derivatives; Divergence and curl vector fields; Line, surface and volume integrals, Jacobian.; Green\u2019s theorem, Gauss\u2019 and Stokes\u2019 theorems.", + "title": "Engineering Mathematics II", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME2401", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 4, + 10, + 13 + ], + "venue": "UTSRC-LT51", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 5, + 6, + 7, + 8, + 9, + 11, + 12 + ], + "venue": "UTSRC-LT51", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2130", + "weeks": [ + 4, + 10, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 3, + "timetable": [ + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "E1-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "E1-06-03", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E1-06-0102", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E1-06-03", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "E1-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "E1-06-0102", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a group-based project that focuses on the design of a complete mechanical design product, emphasizing the design process, analysis and drawings. The major project may be preceded by smaller projects to instill familiarity and experience. Elements of commercialization (e.g. market survey) and form-giving (aesthetics) may be incorporated. Students are required to submit a report, drawings, do a presentation, and take oral examinations. Effective group dynamics and experience of the process and problems involved in translating paper design to prototype are the key objectives of this module.", + "title": "Mechanical Systems Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "TME3101", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the fundamental engineering principles on kinematics and kinetics. The topics of rigid body dynamics and vibration will be covered, including the theoretical development and practical application to mechanisms and machinery. The salient features of dynamics to be applied for each instance will be clearly explained and the interpretation of the results obtained will be highlighted.", + "title": "Mechanics of Machines", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME3112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the key concepts related to the different modes of heat transfer (conduction, convection and radiation) and principles of heat exchangers. It develops the students\u2019 proficiency in applying these heat transfer concepts and principles, to analyse and solve practical engineering problems involving heat transfer processes. Topics include introduction to heat transfer; steady state heat conduction; transient heat conduction; lumped capacitance; introduction to convective heat transfer; external forced convection; internal forced convection; natural/free convection; blackbody radiation and radiative properties; radiative exchange between surfaces; introduction to heat exchangers and basic calculation of overall heat transfer coefficient.", + "title": "Heat Transfer", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME3122", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E2-B1-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E2-B1-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "EA-05-50", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E2-B1-02", + "day": "Monday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "E2-B1-02", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7 + ], + "venue": "EA-05-50", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "EA-05-50", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "E2-B1-02", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "EA-05-50", + "day": "Monday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8 + ], + "venue": "EA-05-50", + "day": "Thursday", + "lessonType": "Laboratory", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-29T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers topics on: Linear elasticity in which the general equations of equilibrium and compatibility are derived and its applications are illustrated for complex problems; Unsymmetrical bending of beams; Stresses in pressurized thick-walled cylinders in elastic and elasto-plastic regions; Stresses in rotating members; Introduction to mechanics of composite materials; and Experimental stress analysis with particular emphasis on optical methods. This is an elective module and is intended for students in Stage 3 and 4 who have an interest in the stress analysis of isotropic and composite materials. The materials in this module are applicable to chemical, civil, mechanical and aeronautical engineering.", + "title": "Mechanics of Solids", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME3211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "systems typically encountered in Mechanical Engineering applications. Unsteady flow fluid theories, real-life unsteady flow problems and practical design solutions will be described, explained and analysed in this course. These include Analysis and Designs of Water pumping stations and their distribution systems, petroleum products (i.e. crude oil and natural gas) transportation pipelines systems, Oil and Gas flow systems, Thermal Power Stations flow systems etc", + "title": "Unsteady Flow in Fluid Systems", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME3233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students are taught how the microprocessor/microcomputer is applied as the brain in an intelligent mechatronic system. Major topics include: Basic operations of the microprocessor; Introductory assembly language programming; High-level language programming; Basic interfacing with external devices and working with real-time devices. Upon successful completion, students will be able to have the confidence to design and implement smart products and systems, including intelligent robotic devices and machines, and intelligent measurement systems. This is a technical elective with the main target audience being mechanical engineering students in their third year of study. Examples of application, tailored specifically for mechanical engineers, are used to illustrate the principles.", + "title": "Microprocessor Applications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME3241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will learn the approaches used in the design of sequencing circuits applied to machine-level industrial automation. Special emphasis is given to electromechanical and pneumatic systems. After a quick review of input sensing, pneumatic actuators, basic switching logic and elements, the design of sequential control systems using electromechanical ladder diagrams, purely pneumatic circuits and programmable logic controllers are introduced. Upon successful completion, students should be able to read and understand pneumatic circuits and electromechanical ladder diagrams and be able to quickly design and implement such circuits for any sequencing problem. This is a technical elective course targeted at third year mechanical engineering students.", + "title": "Automation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME3242", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module equips students with basic knowledge in materials selection for mechanical design. The major topics are Classification of engineering materials; Materials properties in design using case studies; Ferrous alloys (carbon and low-alloy steels, tool steels, stainless steels, cast irons); Non-ferrous alloys (Cu-, Al-, Mg-, Ti-, Zn-, Ni-alloys, etc.); Engineering plastics and composites; Engineering ceramics; Surface engineering and coating techniques; Joining processes; Material selection in design; Product costing and case studies. The module is aimed at students who want to specialise in mechanical product design.", + "title": "Materials For Engineers", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME3251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-03", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the principles of computer-aided tools: CAD and CAM, which are widely used in modern design and manufacturing industry. By introducing the mathematical background and fundamental part programming of CAD/CAM, this course provides the basics for students to understand the techniques and their industrial applications. The topics are: CAD: geometric modelling methods for curves, surfaces, and solids; CAM: part fabrication by CNC machining based on given geometric model; Basics of CNC machining; Tool path generation in CAD/CAM (Option to introduce a CAM software to generate a CNC program for the machining of a part); Verification of fabricated part by CNC measurement based on given geometric model. The module is targeted at students specializing in manufacturing engineering.", + "title": "Computer-Aided Design and Manufacturing", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME3261", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-05", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-19T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches product design for manufacture and assembly. It covers the details of design for manufacture and assembly (DFMA) methods for practicing engineers and also allows for learning of concurrent or simultaneous engineering. The topics covered: Introduction, Selection of materials and processes; Product design for manual assembly; Design for automatic assembly and robotic assembly; Design for machining; Design for rapid prototyping and tooling (rapid mould making); Design for injection moulding. The module is targeted at students majoring in manufacturing.", + "title": "Design for Manufacturing and Assembly", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME3263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Fundamental concepts of statistics and the analysis of experimental data for engineers. Topics include hypothesis testing, linear/curvilinear/multiple regression, correlation, testing of fitted lines/curves, comparing different batches of experimental data, analysis of variance (ANOVA).", + "title": "Understanding Experimental Data", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME3273", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-02-11", + "day": "Monday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module consists mainly of a research-based project carried out under the supervision of one or more faculty members. It introduces students to the basic methodology of research in the context of a problem of current research interest. The module is normally taken over two consecutive semesters, and is a core requirement of the B.Tech. programme.", + "title": "B.Tech. Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TME4102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Traditional Firms are challenged by innovative entrepreneurial firms almost everywhere. Ever shrinking product life cycle, fast product introductions from several quarters, easy availability of funding from Venture Capitalists, ease of access to manufacturing via sub contracting, emergence of cheap mass production work house in China and other countries to name few, are putting severe pressure on the traditional firms. Style and design, killers of early days, are no longer offer sustainability. It is no longer possible to undergo New Product Development in conventional sense and reap the benefit afterwards for a longer period of time. The rules of the game have changed under the new knowledge based economy. New strategies are being developed consistently by the leading firms such as Apple, Google and Amazon, to name a few. This course covers New Product Development process in its entirety with the emphasis on relevant traditional as well as emerging radical approaches. The emphasis is placed on how to succeed in business place by utilising the resources of others as well as your own \u2013 a typical scenario of knowledge based economy.", + "title": "The Management Of New Prod. Development", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module develops students\u2019 understanding of various methods used to determine the shock and vibration characteristics of mechanical systems and instills an appreciation of the importance of these characteristics in the design of systems and their applications in vibration isolation, transmission, and absorption problems; Natural frequencies and normal modes; Dynamic response and stability. Single and multiple-degree-of-freedom systems will be treated using continuous and discrete system concepts, including Lagrange\u2019s equations. Approximation methods for solution as well as instrumentation for vibration measurement will be discussed. Examples will be drawn mainly from mechanical disciplines.", + "title": "Vibration Theory & Applications", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to integrate knowledge in thermodynamics, heat transfer and fluid mechanics to design and simulate air-conditioning systems, as well as to estimate and analyse the energy performance of buildings. Major topics include: Applications and basics; Psychrometrics; Comfort and health; Heat gains through building envelopes; Cooling load calculations; Air conditioning design calculations; Air conditioning systems; Air conditioning plants and equipment., Energy estimation and energy performance analysis. The module is designed for third and final-year students who are interested in the Cooling and Energy Efficiency of Buildings.", + "title": "Thermal Environmental Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 45, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-05", + "day": "Thursday", + "lessonType": "Lecture", + "size": 45, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module extends the basic heat transfer principles covered in earlier modules to engineering applications. Although some important new physical processes are introduced, the main emphasis is on the use of these to the design-analysis of industrial systems. The use of empirical data for situations where detailed analysis is difficult will be demonstrated through the solution of design examples. The main topics include: Heat exchangers with phase change; Boiling; Condensation; Combined heat and mass transfer; Heat transfer enhancement; Cooling of electronic equipment; and Design examples.", + "title": "Applied Heat Transfer", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module facilitates the learning of the fundamentals of robotic manipulators for students to appreciate and understand their design and applications. Successful completion allows student to formulate the kinematics and dynamics of robotic manipulators consisting of a serial chain of rigid bodies and implement control algorithms with sensory feedback. The module is targeted at upper level undergraduates who have completed fundamental mathematics, mechanics, and control modules. Students will also gain a basic appreciation of the complexity in the control architecture and manipulator structure typical to new-generation robots.", + "title": "Robot Mechanics and Control", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4245", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-0322-23", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-0322-23", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This elective module in materials science examines the importance of temperature and its effects on the structure and properties of materials common in mechanical engineering. Besides the thermodynamic principles of phase equilibria and the kinetics of phase transformations, students will be introduced to standard industrial practices, as well as the latest techniques in non-conventional processing of materials. Topics include thermodynamics and kinetics in metallic alloy systems, thermal modification processes, surface modification processes and rapid thermal processing.", + "title": "Thermal Engineering Of Materials", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module highlights various engineering properties of the materials that are of paramount importance to a design engineer along with various design philosophies that are commonly practised. It develops the analytical ability of students in choosing the most appropriate material from a design engineer\u2019s perspective. The topics are covered: Introduction of eng-ineering materials; Materials selection for weight-critical applications; Materials for stiffness based designs; Materials for strength-based designs; Materials for damage tolerant designs; Materials and fatigue-based designs; Materials and design against corrosion; Materials for wear critical applications; Materials for biomedical applications; and Materials Selection for special applications.", + "title": "Materials in Engineering Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Functional materials belong to a special category that is different from traditional structural materials. This category of materials provides special functionalities and is able to convert energy from one from to another. They can be found naturally and can also be engineered based on different requirements. This course covers principles of functional materials in inorganic and organic materials, and metals. The course will also provide applications of some functional materials in devices.", + "title": "Functional Materials and Devices", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "All mechanical engineering students need the basic knowledge of metal machining and tool design for mass production and the design of cutting tools. This module provides the fundamental understanding of metal machining and tool design.", + "title": "Tool Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4261", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-01", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a comprehensive introduction to automation technologies applied in discrete part manufacturing. It also introduces essential principles and provides analytical tools for manufacturing control. Major topics covered include: Economic justification of automated systems; Fixed and transfer automation; Automated material handling and automated storage/retrieval systems, Flexible manufacturing systems, Internet-enabled manufacturing, Group technology, Process planning, Automated assembly and automated operation planning for layered manufacturing processes.", + "title": "Automation in Manufacturing", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4262", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the fundamental concepts related to the simulation of manufacturing systems. How the data between the manufacturing systems are transferred, their standard protocols are also covered. In addition the following topics are covered: Concepts of discrete-event modelling and simulation, definitions, types, essential elements in modelling, design and implementation of manufacturing simulation models, petri-nets, model verification and validation, input information collection and analysis, interpretation of outputs, use of random inputs and variance reduction techniques, protocol standards, communication topology, MAP/TOP.", + "title": "Manufact'G Simulat'N & Data Communicat'N", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4263", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "EA-06-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "EA-06-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "EA-06-04", + "day": "Monday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-10T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the basic principles in various areas of the automobile. These include various types of petrol engines, diesel engines, rotary engines, electric engines and hybrid engines, and their related issues, various types of transmission systems (manual and automatic), chassis design and their development, and vehicle dynamics (including suspension, steering, brakes), car body design and manufacture, and safety issues. Also covered are fuel, combustion, and emissions, plus examples from the automotive industry and current industrial practices.", + "title": "Fundamentals of Automotive Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4264", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-09", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module enables students to learn the micromachining of both Silicon and non-Silicon materials. The major topics include the basic micro-fabrication as well as the micro-machining processes for microsystems. Some of the processes to be covered: Bulk Processes; Surface Processes; Sacrificial Processes and Bonding Processes; Micro-machining based on conventional machining processes; Micro-machining based on non-conventional machining processes; Special machining; The module is targeted at students seeking to specialise in the Microsystems Technology.", + "title": "Micro-Fabrication Processes", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TME4283", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves independent project work over two semesters, on a topic in Transportation Systems & Management approved by the Programme Management Committee. The work may relate to a comprehensive literature survey, and critical evaluation and analysis, design feasibility study, case study, minor research project or a combination.", + "title": "Research Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TP5001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Intelligent transportation systems and its simulation are crucial for efficient and effective management of urban transportation and mobility in modern cities. A broad range of diverse technologies, including information processing, computing, communications, control and electronics can be applied to our transportation systems and many simulation methods are adopted by transport agencies. The topics covered in this module include state-of-the-practice and state-of-the-art ITS technologies and simulation methods. This module enables the student opportunity acquiring the knowledge and practical skills through the lectures, field investigations, and course projects.", + "title": "Intelligent Transportation Systems and Simulation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TP5025", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to provide senior level undergraduate and graduate students with an overall view of the transportation systems, means of managing and influencing the systems to achieve certain goals. The topics covered include the characteristics of land, sea and air transportation systems; roles and structure of government agencies in transportation management; environmental and social impact of transportation systems, travel demand management; public transport management; models of financing transportation services; regulation and deregulation of transportation services; roles of intelligent transportation systems in system management and policy implementation; case studies of transportation policies in several countries", + "title": "Transportation Management & Policy", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TP5026", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will critically examine the dimensions of an integrated inter-modal transport system in relation to the changing logistics and supply chain practices of procurement, production and distribution. Themes and issues studied include the analysis of inter-modal choices using the total cost concepts in distribution, the international-domestic interface, advanced technologies in inter-modalism, the role of government in inter-modal integration. The module will also introduce simulation analysis for multi-modal operations, including building, calibration and validating models, output analysis and application programming interface.", + "title": "Intermodal Transportation Operations", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TP5028", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to the core concepts of marketing, with a special emphasis on the marketing of new, innovative products and services where no market previously existed or where the underlying product concepts may be unfamiliar to existing customers. The pedagogical approach emphasises those market research methods, marketing strategies, pricing analysis and promotional techniques that are particularly useful for entrepreneurial settings. Particular attention is paid to the innovative use of internet as well as non-conventional techniques such as 'guerilla' marketing. The usefulness of these analytical tools is illustrated through concrete case studies of successful entrepreneurial marketing.", + "title": "Entrepreneurial Marketing", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to the core concepts of marketing, with a special emphasis on the marketing of new, innovative products and services where no market previously existed or where the underlying product concepts may be unfamiliar to existing customers. The pedagogical approach emphasises those market research methods, marketing strategies, pricing analysis and promotional techniques that are particularly useful for entrepreneurial settings. Particular attention is paid to the innovative use of internet as well as non-conventional techniques such as \"guerilla\" marketing. The usefulness of these analytical tools is illustrated through concrete case studies of successful entrepreneurial marketing.", + "title": "Entrepreneurial Marketing", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR2201A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to the core concepts of marketing, with a special emphasis on the marketing of new, innovative products and services where no market previously existed or where the underlying product concepts may be unfamiliar to existing customers. The pedagogical approach emphasises those market research methods, marketing strategies, pricing analysis and promotional techniques that are particularly useful for entrepreneurial settings. Particular attention is paid to the innovative use of internet as well as non-conventional techniques such as \"guerilla\" marketing. The usefulness of these analytical tools is illustrated through concrete case studies of successful entrepreneurial marketing.", + "title": "Entrepreneurial Marketing", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR2201B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to the core concepts of marketing, with a special emphasis on the marketing of new, innovative products and services where no market previously existed or where the underlying product concepts may be unfamiliar to existing customers. The pedagogical approach emphasises those market research methods, marketing strategies, pricing analysis and promotional techniques that are particularly useful for entrepreneurial settings. Particular attention is paid to the innovative use of internet as well as non-conventional techniques such as 'guerilla' marketing. The usefulness of these analytical tools is illustrated through concrete case studies of successful entrepreneurial marketing.", + "title": "Entrepreneurial Marketing", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR2201Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides the opportunity for students to pursue an in-depth study of an entrepreneurship topic/issue under the close supervision and guidance of an instructor.", + "title": "Independent Study Module in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "TR3000", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the integration of the marketing, design, and manufacturing functions of a company to create products that meet market demand. Topics covered in the course include development processes and organisations, product planning, identifying customer needs, product specifications, concept development, product architecture, industrial design, design for manufacturing, prototyping, product development economics, and managing projects. The students are required to complete a group product development project. The course is targeted at undergraduate students in the Technopreneurship Minor Program.", + "title": "New Product Development", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creating a new business is a challenging and complex task. The road to entrepreneurial success is long, winding and strewn with pitfalls, obstacles and blind turns. The risks of starting a new business are high, as illustrated by the high failure rates for new ventures. However, as is always the case, the rewards are commensurate with the risk in addition to the psychic rewards of starting a business, witness the dominance of entrepreneurs in the Forbes 400 list.", + "title": "New Venture Creation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creating a new business is a challenging and complex task. The road to entrepreneurial success is long, winding and strewn with pitfalls, obstacles and blind turns. The risks of starting a new business are high, as illustrated by\nthe high failure rates for new ventures. However, as is always the case, the rewards are commensurate with the risk: in addition to the psychic rewards of starting a business, witness the dominance of entrepreneurs in the Forbes 400 list.", + "title": "New Venture Creation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3002A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creating a new business is a challenging and complex task. The road to entrepreneurial success is long, winding and strewn with pitfalls, obstacles and blind turns. The risks of starting a new business are high, as illustrated by\nthe high failure rates for new ventures. However, as is always the case, the rewards are commensurate with the risk: in addition to the psychic rewards of starting a business, witness the dominance of entrepreneurs in the Forbes 400 list.", + "title": "New Venture Creation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3002B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the knowledge and tools required to start their own successful scalable business. Students learn through developing a business idea and business plan and presenting it to a panel of judges at the end of the course. Major topics covered include idea generation and evaluation, value proposition, market analysis, sustainable competitive advantage, marketing strategy, creative problem-solving, innovation, teams, legal issues, financing, valuation and forecasting, managing growth, going global, negotiation and presentation. The course is targeted at all students who are interested in learning how to start a scalable business.", + "title": "New Venture Creation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3002I", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the knowledge and tools required to start their own successful scalable business. Students learn through developing a business idea and business plan and presenting it to a panel of judges at the end of the course. Major topics covered include: idea generation and evaluation, value proposition, market analysis, sustainable competitive advantage, marketing strategy, creative problem-solving, innovation, teams, legal issues, financing, valuation and forecasting, managing growth, going global, negotiation and presentation. The course is targeted at all students who are interested in learning how to start a scalable business.", + "title": "New Venture Creation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3002N", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to equip an engineer with the marketing skills needed to launch and lead a high-growth, high-tech venture. Covers marketing challenges facing entrepreneurs who expand internationally early in the life of the company. Combines learning by the case method, working in teams, and a field based entrepreneurial project. Bases 50% of grade on team performance, to cultivate entrepreneurial leadership and teamwork skills.", + "title": "Global Entrepreneurial Marketing", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3003", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to discuss the structure, environment and risk management of entrepreneurial investments in business start-ups. There will be a comprehensive introduction of entrepreneurial investments, from combined investment options to focused investments, and other different processes based on real-life and theoretical basis. This course focuses on both the theoretical and practical aspects of entrepreneurship investment. Case study analysis and comparison of local and international environment of venture capital investment would be the primary focus. This eventually leads up to a discussion of the construction of an entrepreneurship investment system which is appropriate and relevant to a particular country.", + "title": "Entrepreneurial Finance", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3007", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with strong conceptual foundation for understanding the dynamic process of technological innovation. Students will be introduced to the importance of technological innovation as a driver for value creation and economic growth. The dynamics of technological change will be analyzed through the concepts such as technology life-cycles, dominant design, network externalities, and first-mover advantage. Key technology commercialization processes through which an innovative idea is transformed into a successful product or service in the marketplace will be studied, and the key organizational/management factors and socio-economic/competitive environmental factors that influence the effectiveness of these processes will be highlighted.", + "title": "Technological Innovation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3008", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with strong conceptual foundation for understanding the dynamic process of technological innovation. Students will be introduced to the importance of technological innovation as a driver for value creation and economic growth. The dynamics of technological change will be analyzed through the concepts such as technology life-cycles, dominant design, network externalities, and first-mover advantage. Key technology commercialization processes through which an innovative idea is transformed into a successful product or service in the marketplace will be studied, and the key organizational/management factors and socio-economic/competitive environmental factors that influence the effectiveness of these processes will be highlighted.", + "title": "Technological Innovation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3008A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with strong conceptual foundation for understanding the dynamic process of technological innovation. Students will be introduced to the importance of technological innovation as a driver for value creation and economic growth. The dynamics of technological change will be analyzed through the concepts such as technology life-cycles, dominant design, network externalities, and first-mover advantage. Key technology commercialization processes through which an innovative idea is transformed into a successful product or service in the marketplace will be studied, and the key organizational/management factors and socio-economic/competitive environmental factors that influence the effectiveness of these processes will be highlighted.", + "title": "Technological Innovation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3008B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is a fundamental part of the entrepreneurship learning process of the NUS Overseas Colleges program. Offered by the Stockholm School of Entrepreneurship, the course challenges the students to identify areas of need, to find and create business ideas, and to develop business concepts and opportunities.\n\nThe module is aimed at equipping students with knowledge on the process of creating and developing a business opportunity. The course covers pre-idea to creation of the business idea, identification of market demand, conducting of competitive analyses and study of relevant issues affecting the actual launching of the product/service. Real life examples will be used for more effective learning.", + "title": "Ideation - Creating A Business Idea", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "TR3010", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module is taught as part of continual learning following its preceding module Ideation Creating a Business Idea. The two modules provide the fundamentals of an entrepreneurship education which the NUS Overseas Colleges program is designed to achieve. Offered by the Stockholm School of Entrepreneurship, the course resolves to bring participating students through a business development process from the development of an idea to the final business plan.", + "title": "Planning-Developing A Venture", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "TR3011", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Execution - Running your own Company", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "TR3012", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Growth - Managing your Firm", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "TR3013", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module proposes to bring students at NUS in Singapore and multiple NOC locations overseas to work as a global project team to help leaders of a new venture make decision related to global expansion. \n\nWith the evolution of Internet, many high-tech startups expand sales and distribution internationally soon after founding. They enter target markets around the world before they are imitated by \u201ccopycat\u201d entrepreneurs in\nother countries. Many new ventures outsource business functions like manufacturing, engineering, customer support, and R&D to other countries to reduce labor costs or get access to scarce talent. This module uses field work\nto prepare students to help new ventures go global.", + "title": "Globalization of New Ventures", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3014", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity for indepth study in the area of entrepreneurship, and for studying specialized topics and new developments in the area. Topics covered will vary from semester to semester and may include entrepreneurial finance, technology and intellectual property management, electronic business management, product design and management, digital marketing.", + "title": "Topics in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3049", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module measures the student\u2019s effort in pursuing his/her entrepreneurial aspirations and in further developing his/her potential beyond their internship given the NOC opportunity.Taken together with TR3202 Start-up Internship Programme, the student will be assessed on his/her internship by regular reviews and presentations to companies and consulting professor. He/she will also need to prepare a business pitch at the end of the internship.", + "title": "Entrepreneurship Practicum", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "TR3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module measures the student\u2019s effort in pursuing his/her entrepreneurial aspirations and in further developing his/her potential beyond their internship given the NOC opportunity. Taken together with TR3202 Start-up Internship Programme, the student will be assessed on his/her internship by regular reviews and presentations to companies and consulting professor. He/she will also need to prepare a business pitch at the end of the internship.", + "title": "Entrepreneurship Practicum", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TR3201M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module measures the student\u2019s effort in pursuing his/her entrepreneurial aspirations and in further developing his/her potential beyond their internship given the NOC opportunity.Taken together with TR3202 Start-up Internship Programme, the student will be assessed on his/her internship by regular reviews and presentations to companies and consulting professor. He/she will also need to prepare a business pitch at the end of the internship.", + "title": "Entrepreneurship Practicum", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "TR3201N", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module documents the learning experience from the internship in writing. Taken together with TR3201 Entrepreneurship Practicum, the student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Start-up Internship Programme", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "TR3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module documents the learning experience from the internship in writing. Taken together with TR3201 Entrepreneurship Practicum, the student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Start-up Internship Programme", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "TR3202I", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module documents the learning experience from the internship in writing. Taken together with TR3201 Entrepreneurship Practicum, the student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Start-up Internship Programme", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "TR3202M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module documents the learning experience from the internship in writing. Taken together with TR3201 Entrepreneurship Practicum, the student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Start-up Internship Programme", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "TR3202N", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module documents the learning experience from the internship in writing. Taken together with TR3201 Entrepreneurship Practicum, the student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Start-up Internship Programme", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "TR3202S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module documents the learning experience from the internship in writing. Taken together with TR3201 Entrepreneurship Practicum, the student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Start-up Internship Programme", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "TR3202T", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module documents the learning experience from the internship in writing. Taken together with TR3201 Entrepreneurship Practicum, the student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.", + "title": "Start-up Internship Programme", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "TR3202U", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Start-up Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TR3203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Start-up Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TR3203E", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Start-up Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TR3203F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Start-up Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TR3203I", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Start-up Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TR3203M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Start-up Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TR3203N", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Start-up Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TR3203P", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Start-up Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TR3203Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module involves the writing of a case study on the start-up process and challenges faced by the internship host companies of the students at the overseas college. Students will apply the concepts and frameworks learned in entrepreneurship courses to document the key processes of companies in the real world.", + "title": "Start-up Case Study & Analysis", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TR3203T", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Module aims to evaluate students\u2019 co-curricular learning while on the NUS Overseas Colleges (NOC) programme through a business pitch, participating in entrepreneurship related activities and a business idea log.", + "title": "Entrepreneurship Practicum (Short)", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "TR3204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Module aims to evaluate students\u2019 co-curricular learning while on the NUS Overseas Colleges (NOC) programme through a business pitch, participating in entrepreneurship related activities and a business idea log.", + "title": "Entrepreneurship Practicum (Short)", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "TR3204S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Module aims to evaluate students\u2019 co-curricular learning while on the NUS Overseas Colleges (NOC) programme through a business pitch, participating in entrepreneurship related activities and a business idea log.", + "title": "Entrepreneurship Practicum (Short)", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "TR3204T", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Module aims to evaluate students\u2019 co-curricular learning while on the NUS Overseas Colleges (NOC) programme through a business pitch, participating in entrepreneurship related activities and a business idea log.", + "title": "Entrepreneurship Practicum (Short)", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR3204U", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A two week long immersion module that introduces students to the core concepts of entrepreneurship. Through action learning, cross-cultural team learning and hackathon pitching, this module aims to inculcate an entrepreneurial mindset and provide the foundational understanding of the entrepreneurial start-up process contextualized in the startup ecosystems of Singapore and Southeast Asia.", + "title": "Summer Programme in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "TR3301", + "semesterData": [ + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A two week long immersion module that introduces students to the core concepts of entrepreneurship. Through action learning, cross-cultural team learning and hackathon pitching, this module aims to inculcate an entrepreneurial mindset and provide the foundational understanding of the entrepreneurial start-up process contextualized in the startup ecosystems of Singapore and Southeast Asia.", + "title": "Summer Programme in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "TR3301A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Participants will be exposed to best-of-class lessons from entrepreneurs and thought leaders in Sweden, Singapore, and Silicon Valley. Students from NUS, KTH, and Silicon Valley will compare and contrast the lessons of entrepreneurial leaders in all three regions. Participants will develop a personal philosophy and code of conduct for themselves as the next generation of entrepreneurial leaders. They will develop their skills as global entrepreneurs, preparing them to more effectively collaborate with entrepreneurs and members of the Circles of Influence in other high tech regions around the world. Members of all three learning groups will develop their professional global networks.", + "title": "Global Entrepreneurial Leadership", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR4001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity to gain knowledge in the broader range of topics of entrepreneurship. Topics covered will vary from semester to semester and may include innovation, negotiation, social entrepreneurship, law, operations, leadership, strategy, technology.", + "title": "Seminars in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR4049", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity to gain knowledge in the broader range of topics of entrepreneurship. Topics covered will vary from semester to semester and may include innovation, negotiation, social entrepreneurship, law, operations, leadership, strategy, technology.", + "title": "Seminars in Entrepreneurship - Lean Startup: Market Validation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR4049N", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity to gain knowledge in the broader range of topics of entrepreneurship. Topics covered will vary from semester to semester and may include innovation, negotiation, social entrepreneurship, law, operations, leadership, strategy, technology.", + "title": "Seminars in Entrepreneurship - Lean Startup: Market Validation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR4049S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides students with an opportunity to gain knowledge in the broader range of topics of entrepreneurship. Topics covered will vary from semester to semester and may include innovation, negotiation, social entrepreneurship, law, operations, leadership, strategy, technology.", + "title": "Seminars in Entrepreneurship - Lean Startup: Market Validation", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR4049T", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module provides a hands-on practical introduction to the Lean StartUp methodology. Students will learn and apply the lean launch methodology for customer discovery/market validation to empirically test and validate their business idea.", + "title": "Lean Startup Practicum", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "TR5049", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "26", + "startTime": "0900", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "27", + "startTime": "0900", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "27", + "startTime": "0900", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "26", + "startTime": "0900", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "I3-02", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce the world of early-stage investments and venture capital to the participants. It will also allow participants to develop a better understanding of the fund-raising process for a startup and appreciate an entrepreneur\u2019s challenges from an early-stage financing point-of-view.\n\nParticipants will learn the basic venture-funding skillset from experienced operators and investors. They will also learn about what early stage investors and venture capitalists look out for during the fundraising process, as well as gaining insights about the world of innovation.\n\nThis module is designed for aspirational entrepreneurs and working professionals seeking to chase their entrepreneurial dreams.", + "title": "New Venture Finance", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR5101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "26", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "27", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "26", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "27", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "26", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of the module is teach technology entrepreneurs on how to utilize intellectual property (IP) assets and integrate these into their businesses. \n\nTopics covered: i) different IP types (patents/copyright/trademark/knowhow) and how each type can protect a core business ii) best practices for developing/licensing/enforcing IP rights iii) discussion of how venture capitalists view IP ii) basics of patentability in different technology segments iii) technology landscape iv) avoid infringement of already-granted competing patents. \n\nThis module will leverage on case studies, assignments, group discussions and presentations by industry experts in various technology segments (medical /sustainability /energy /materials /AI /food tech).", + "title": "Intellectual Property Basics for Entrepreneurs", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR5102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "26", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "27", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "26", + "startTime": "1500", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "Unknown" + }, + { + "classNo": "27", + "startTime": "1900", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_C", + "day": "Friday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "27", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "26", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-GLR", + "day": "Monday", + "lessonType": "Lecture", + "size": 200, + "covidZone": "B" + }, + { + "classNo": "27", + "startTime": "1700", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-GLR", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 200, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A two week long immersion module that introduces students to the core concepts of entrepreneurship. Through action learning, cross-cultural team learning and hackathon pitching, this module aims to inculcate an entrepreneurial mindset and provide the foundational understanding of the entrepreneurial start-up process contextualized in the startup ecosystems of Singapore and Southeast Asia.", + "title": "Summer Programme in Entrepreneurship", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TR5301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Semester long internship in a Singapore based startup.The student will prepare a weekly logbook as well as internship reports which will be used a part of the evaluation of their internship experience.\nRemoval of overseas study mission from curriculum.", + "title": "Experiential Entrepreneurship Internship", + "faculty": "NUS", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "TR5302", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the basic issues of written translation and acquaints them with the fundamentals of intercultural communication. The practice-oriented module is conducted in an interactive manner. Through in-class discussion, hands-on exercises and scenario-based translation activities, students are expected to acquire a wide range of translation strategies and apply them to various English-Chinese communicative settings. A variety of genres and fields will be introduced, including literature, politics, economics, science, and technology.", + "title": "Basic Translation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TRA2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "D4", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS1-0301", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0213", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS3-0303", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 75, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "D4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0119", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "D3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "AS4-0116", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module, designed for Level 2nd-4th year students, deals with some problems not specified for attention under the basic translation module, requiring students to translate some literary works into Chinese and English respectively. Topics will include the relationship between contemporary translation theory and practice, the use of more specific semantic and cultural understanding of the text, as well as more complex formation of textual structures in the process of translation. Special attention will be paid to online resources for translators.", + "title": "Advanced Translation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TRA3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is structured on an intensive basis with seminars, group projects/presentations and individual assignments. The course is essentially practical which aims to train students to become professional media translators by reinforcing the skills and techniques required of their translations of different media text\u2010types into Chinese\u2010English and vice versa. Students will learn from regular exercises in translating a wide variety of print and electronic media texts and representative material selected from international news syndicates, regional newspaper, televisions, advertisements and websites.", + "title": "Mass Media Translation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TRA3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module allows students to learn the rules of Chinese and English subtitling and the way to operate subtitling software like Aegisub and VisualSubSync. \n\nAudiovisual materials like documentaries, TV programs and movies, will be translated with or without scripts. Through practices, students are expected to familiarise themselves with subtitling and the above\u2010mentioned software.\n\nStudents will be exposed to different genres of film and television programmes, as well as the varieties of English and Chinese used in the field.", + "title": "Film and Television Subtitling Translation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TRA3203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS8-0405", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce knowledge in translation strategies and literary translation. Students will have the opportunity to translate texts (both Chinese to English and English to Chinese) from fiction, drama and poetry. Being different from translation for technology and business, the concept of beauty, poetics and equivalence will be discussed in this module.", + "title": "Literary Translation", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TRA3204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to introduce knowledge in the relationship between technology and the translation industry. Within the curriculum, students will learn a variety of computer\u2010assisted translation tools and software that is useful for translation, including SDL Trados, SDL Multiterm, memoQ, Wordfast, D\u00e9j\u00e0 Vu, Adobe Fireworks (only for functions that are applicable to translation practice) and Aegisub.", + "title": "Computer-Assisted Translation Tools", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TRA3205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module presents a comprehensive overview of the major theoretical paradigms (e.g., equivalence, Skopos theory, descriptive translation studies, effort models for interpreting) in translation and interpreting studies (TIS). In the analysis of landmark examples of empirical research on translation and interpreting, we illustrate how theories are integrated into translation and interpreting practices. Through lectures, class discussions and readings, students will gain insight into the central conceptual and empirical issues in the TIS field.", + "title": "Translation and Interpreting Theories", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TRA3206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0207", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will provide students with foundational knowledge of the different aspects of, approaches and discursive contexts relating to the study and praxis of theatre and performance. The module will also introduce students to the various forms of classical and contemporary performance practices and their attendant modes of analyses combining play analysis, theatre history & theory. Using complementary content\u2010centred lectures and practice laboratory, the module creates an environment where students simultaneously engage with module content while investigating its relations to the creation of theatre and performance.", + "title": "Introduction to Theatre and Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS1101E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "LT13", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "venue": "LT13", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "W3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Monday", + "lessonType": "Lecture", + "size": 60, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From religious rituals to personal identity, propaganda to public protests, media spectacles to interactive artworks, performance is a prevalent feature of\ncontemporary societies. Performance Studies draws on anthropology, cultural studies and art theory to explore how these and related phenomena work, what effects they have, and how they relate to each other. This introductory module provides an overview of the key concepts behind a fast\u2010developing discipline, and uses them to interpret a range of social practices and performance events that can be found in Singapore and other highly globalized societies. The module combines\nfieldwork, critical thinking, and performance analysis.", + "title": "Introduction to Performance Studies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0302", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces theatrical histories and theories across a variety of global traditions. As a broad overview, this module juxtaposes significant traditions to think through how theatre is related to its historical context, how theory has arisen from or shaped practice, and how history itself is constructed by historians. Students will investigate a variety of forms including those transmitted through oral, embodied, and text-based methods.", + "title": "Global Theatres", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the historical trajectories of traditional Asian theatres and the ways in which they have evolved due to colonialism, nationalism and globalisation. Combining focused studies on traditional theatre forms and their contemporary iterations with cross-geographical comparison, this module provides the analytical tools to examine Asian theatres as they evolve. The traditional/contemporary dynamic will be further explored in practical sessions and thematic discussions, through the study of classical scripts, masks, stages, and costumes from Sanskrit drama, Noh theatre and Xiqu. Students interested in South Asian studies, Chinese studies and Japanese studies will benefit from this module.", + "title": "Asian Theatres: Tradition and the Contemporary", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on key figures and aspects of contemporary performance as a means of learning about innovative approaches to theatre practice. Taking the works of a significant dramatist, director, theorist or theatre/performance genre as their starting point, students will investigate the resulting aesthetic and conceptual innovations, and explore their implications for current approaches to performance making more generally. As such, the module combines creative and critical practice, and features a variety of reflective, analytical and practical assessment tasks, including a group performance project.", + "title": "Making Contemporary Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the aesthetic or instrumentalist role of the arts in society and assess its implications on cultural policy, before evaluating different models of state subvention in the arts, from the arm's length approach to the interventionist, incentive and laissez-faire models. In the process, key contemporary policy issues, relating to the civilizing mission of the arts, the notion of identity in a postmodern intercultural situation, the twin demands of nationalism and internationalism, and the questions of corporate sponsorship versus the welfare state will be addressed, with particular emphasis on the Singaporean context.", + "title": "Cultural Policy, the Arts and Society", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This practical introduction to the comprehensive range of concepts, principles and practices in marketing focuses on arts and culture-related products, services and industries. Besides drawing attention to vital distinctions in the marketing of for-profit versus not-for-profit organisations, the latter of which characterizes the majority of arts agencies in Singapore, the political, sociological and economic factors which influence those working in the arts will also be examined. This module is targeted at students interested in arts administration or Theatre students wishing to hone their skills in the managerial aspects of the arts.", + "title": "Marketing the Arts and Leisure Services", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2235", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0118", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Intended for students majoring in Theatre Studies, this module aims to explore how the boundaries of social and cultural identities are constructed and crossed in performance. By looking at various forms of performance texts, it will examine a) racial and gender identities represented in the body and language, b) patterns of image-making and c) the performative dynamics of the encounter between different identities. Throughout the course, students will be guided to address the questions of how the differences across the borderlines are represented and challenged and, also, whether these boundaries are ultimately directed towards specific cultural ends.", + "title": "Crossing Boundaries in Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Actors and their craft stand at the centre of many theatrical traditions. Yet what is acting is, and who actors are, remain subjects of intense fascination, which continue to be explored in live performance, as well as through writings by practitioners, scholars and critics. This module combines practical workshops and critical reading to explore diverse approaches to acting and to investigate the role and status of the actor within the art form of theatre, and in society at large. Focusing on actor development and the process of acting, assessment tasks highlight the importance of participation, reflection and presentation.", + "title": "As If: Actors and Acting", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2237", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "W2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the close reading of dramatic texts in order to study the dynamic relationship between text & performance. Through the examination of 4 major modern playwrights working in different historical, geographical and cultural contexts, this course will explore the development of modern drama in the 20th century, the significance of text as the basis of theatrical realization, the variety of staging possibilities engendered by the dramaturgy of the play-text, and the synergistic partnership of word and action in creating the huge variety of text-based theatre in the 20th century.", + "title": "Major Playwrights of the 20th Century", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2239", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module looks at how one's voice is made and how one can modulate it. Students will get an understanding of the physiological processes that produce voice and the relationship between mind and body in vocal communication. Hence this is also a very practical workshop using techniques developed by actors and singers that will improve the resonance and musicality of the speaking voice and also vocal strength and endurance. Using verse, prose and dramatic text, students will work on vocal characteristics - pitch, intonation patterns, pace and pausing, placement - and so improve their oral delivery.", + "title": "Voice Studies and Production", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2240", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Monday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Monday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on screenwriting in short fiction films. It cultivates a critical and practical understanding of the short film form and the process of crafting a narrative, particularly the centrality of characterisation, structure and thematic development. Through practice, analysis and self-reflection, students learn to conceptualise, develop and interrogate their own written short cinematic script.", + "title": "Writing the Short Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students from NUS and Universitas Gadjah Mada (UGM) will work together on a collaborative intercultural theatre project and use this experience to think through the implications of devising intercultural performances in Southeast Asia. In this special term module, all students will spend 2.5 weeks in Indonesia and 2.5 weeks in Singapore. The sessions will combine theory seminars, practical workshops and rehearsals.", + "title": "Intercultural Performance Practice", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the conventions of a variety of film genres and styles, ranging from Hollywood and Chinese cinemas to Bollywood and animation. It traces the development of each genre, examining its defining characteristics, the role and influence of the star system and individual stars such as actors and directors, and its relations to other film styles and industries. Through a group creative project, students will make a film that involves the practical application of critical ideas.", + "title": "Film Genres: Stars and Styles", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "D1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS6-0214", + "day": "Thursday", + "lessonType": "Lecture", + "size": 50, + "covidZone": "B" + }, + { + "classNo": "D2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 3, + 5, + 7, + 9, + 11 + ], + "venue": "AS3-0213", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This non-technical module uses theatre to explore two sides of Artificial Intelligence. First, we consider how theatre makers are using the creative potential of AI in their work (for example, by using robots, computational choreographic scores and immersive environments generated by deep learning). Second, we review theatre performances aimed at critiquing the ethical, societal and epistemological challenges brought forth by AI (for example, the racial biases in face recognition and the ecological costs of the servers required for deep learning).", + "title": "Theatre, Big Data and Artificial Intelligence", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2244", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0102", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in Theatre and Performance Studies. The topic to be covered will depend on the interest and expertise of regular or visiting staff members in the department.", + "title": "Topics in Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Asian theatre makers of the twentieth century have greatly contributed to the conception and formation of modernity in Asia. This module highlights three key historical moments in Asia\u2019s modernizing process: Asia\u2019s initial contacts with Europe and America at the turn of the century; the postwar era between the 1960s and the 1980s when political activism was at its height; and the more recent global and local theatre collaborations in the region. We will study theatre history, play texts, and digital recordings of performances to trace the development of modern Asia from the perspectives of theatre makers.", + "title": "Makers of Modern Theatre in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS2880A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The final practical project in the Theatre Studies curriculum provides students with a structured and guided opportunity to research, develop and produce an original performance piece. Working in a group under the supervision of a guest director, students conduct independent contextual research and contribute creatively to the collaborative process. The performance will be shown to a public audience, and each student will offer a research presentation analysing the process, choices and outcomes of individual work in the context of the group project. This is an essential module for Theatre Studies major students, taken in Year 3 of a student\u2019s enrolment.", + "title": "Theatre Lab", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TS3103", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "W1", + "startTime": "1000", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Friday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module develops students' theoretical and practical perspectives of Applied Theatre, a term that embraces different strands of socially engaged theatre, and focuses on the 'usefulness' of theatre in various educational and community contexts. Through exploring a range of practical approaches deployed by some key practitioners in the field, students are guided to think critically about how the social efficacy of theatre can be promoted and debated. Leading approaches are re-examined in light of context\u2010 and culture\u2010specific situations, and students' practical experience form a basis to engage with theoretical questions and issues of creating participatory theatre in non\u2010conventional settings.", + "title": "Applied Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module interrelates Western history and theatre practice from approximately 1800 to the present, and constitutes a continuation of the theoretical, literary, technological, and historical roots of Western theatre begun in TS2231; it serves as an overview primarily for Theatre Studies majors but is accessible to others interested. The approach for the module draws from multiple disciplines and perspectives. It stresses the relationship of historical forces, ideological movements, and theatre practice in Europe and the Americas. Seminal play texts are discussed in detail, and, as appropriate, in a background of interdisciplinary material, including intercultural, filmic and cybernetic perspectives.", + "title": "History and Theory of Western Theatre 2", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module recognises performance as a major component of our everyday lives: how we observe, enact and embody the myriad performances in our environments, both `mediated\u2019 and `live\u2019. Through discussions, presentations and workshops, this module explores notions of authenticity and transformation through performances in social and public spaces. Various theoretical models will be considered, including those that relate to the avant-garde and the experimental. A final project will be developed over several weeks, where the students work in groups to create a short video that integrates these approaches with their ideas about performance.", + "title": "Performance & Social Space", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the rich spectrum of performance practices in Southeast Asia, such as ritual theatre, dance drama, storytelling, and puppetry. The performative heritage of performance traditions and religious theatres in the region will be examined and compared with contemporary iterations. Through key theoretical approaches, students will learn to understand each practice in its changing socio-cultural contexts, and its aesthetics. They will trace the genealogy of Southeast Asian performance practices in relation to their historical entanglements with Asian traditions and Western forms. Students interested in theatre, religious studies, sociology and history may find this module useful.", + "title": "Southeast Asian Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the basic tenets of performance studies (i.e. performance and performativity) and applies them to a study of popular culture in a global arena. Through a variety of texts including films, video games, public speeches, and social media posts, the module teaches how the production and circulation of popular forms can be read as performance: how they are produced or packaged for consumption, how the consumer relates to them and how their success or failure is measured. It will show the pervasiveness and relevance of performativity in everyday physical and online interactions.", + "title": "Performance and Popular Culture", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a grand overview of Singapore English Language Theatre as well as an in-depth analysis of its canonical texts. It traces the development of Singapore's cultural identity through her theatre's shifting strategies of representation. Apart from contextualizing the key texts within an awareness of Singapore cultural policy and social rubric, this module also focuses on an understanding of theoretical paradigms from postcolonialism, feminism, interculturalism and postmodernism.", + "title": "Singapore English-Language Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3235", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What can theatre and performance do in the face of climate change, environmental degradation, and biodiversity loss? This module explores how a range of playwrights, theatre-makers, and performance artists have responded to this question. Drawing on a wealth of recent eco-conscious scholarship within\ntheatre and performance studies, we consider topics such as eco-theatre, theatre and the anthropocene, theatre and the posthuman, theatre and animals, immersive and site-responsive performance, and ecoscenography. The module also considers how the application of environmental and eco-critical paradigms to theatre may enable a deeper understanding of what theatre is.", + "title": "Theatre Ecologies", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Asian performance has had a huge impact on the 20th century world theatre. Prominent figures, such as Stanislavski, Artaud, Brecht, Brook, Grotowski, Suzuki and Schechner, were influenced by Asian acting. This module teaches the Asian performance traditions of the golden age: the Sanskrit theatre of India, zaju opera of China, and kabuki of Japan. The principles and philosophies of these traditions are compared as an organic whole that differs significantly from Western traditions. Students are guided to explore masterpieces in a Renaissance manner, imitating and reviving both their style and spirit. The module also serves as a reference for intercultural performances", + "title": "Acting and Directing in Asian Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module shifts the study of acting practices from theatre makers to teachers and theorists of acting who have worked with performers primarily known for their work on screen. These may include the likes of: Stella Adler, Lee Strasberg, Maria Ouspenskaya, and Michael Chekhov, all of whom were closely associated with Stanislavski and the Moscow Art Theatre. This module will also study screen performers who exemplify certain epochs and/or styles of screen acting. Students are expected to analyse these performances, and in turn produce screen recordings demonstrating and developing what they have learned from these performers and their trainings.", + "title": "Acting for the Screen", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3238", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates a wide range of classical Asian dramatic texts, including masterpieces from Indian Sanskrit theatre, Chinese opera, and Japanese Noh and Kabuki. The social milieus in which the drama evolved are examined, and the illusionary world which ancient theatergoers imagined are reconstructed. The module treats dramatic literature as a vital component of living theatre, not as reading material, and thus complements TS3237, which teaches the staging practices of Asian theatre. Towards the end of the semester, Western canonical dramaturgy serves as a comparative reference to Asian materials, which enhances intercultural study or practice in other modules.", + "title": "Reading Asian Drama", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover the writing and the critical aspect of theatre criticism\u00a0 \u2010\u00a0 the art of writing theatre reviews. The role of the theatre critic will be examined in conjunction with the stylistic and formal contents of theatre criticism. The module will explore the uses and elements of theatre criticism with a heavy emphasis on the practical applications of the techniques and skills of writing play analysis in communicating the theatrical experience to the reader. This module will also explore the different modes of publishing in old and new media and examine how they affect reviewer-reader communication.", + "title": "Theatre Criticism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module, intended for advanced undergraduate students, is meant to provide a survey introduction to Modern European drama from the late 19th C. to the present. The plays chosen reflect dramaturgical and theatrical reflections on the modern, on class and gender relations (and breakdowns) and form part of a tradition of innovation in which later drama is formed, partially at least, in response to earlier.", + "title": "Modern Drama", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will study the usefulness and relevance of \u2018intercultural theatre\u2019 as an approach to productions that combine different theatrical forms and cultures. It aims to explore the critical issues and implications of intercultural theatre, a term largely used by Western critics, from specifically Asian positions to practice, and to assess interculturalism as an approach against other concepts such as adaptation, cultural ownership, and cultural \u2018borrowing\u2019. The study of various theoretical approaches and performance texts in this module will be related to broader issues such as (post)colonialism, globalisation, and transnationalism.", + "title": "Intercultural Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the many ways in which theatre and film are distinct but closely inter-related mediums. The bulk of the module focuses on close analysis of texts that have been adapted from the stage to the screen, examining performativity within those texts and how the essential properties that define the stage and the screen contribute to and facilitate particular ways for performing such texts. Notions of theatricality and the cinema will be interrogated, especially in relation to how cinema can be \u2018theatrical\u2019 and the theatre \u2018cinematic\u2019. Teaching and assessment modes include lectures, seminars, workshops and guided practical coursework.", + "title": "Stage and Screen", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3243", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0119", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Building on skills learnt in TS1101E, this module aims to deepen the understanding of different theatrical styles and how such understanding can be applied to make effective performance choices with special emphasis on the performer\u2019s vocal expressiveness. Students explore texts selected from a range of periods and genres through exercises, scene study, and rehearsal.", + "title": "Voice and Text", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides Arts 3 students majoring in Theatre Studies with the opportunity of an internship project in theatre organizations. It matches individual students' interests and skills with internship roles in stagecraft, stage production, event planning, theatre in education, research and administration offered by theatre companies. Through research papers, regular reports, and a final presentation, students are trained to integrate theoretical knowledge with practical application, develop skills in teamwork and problem-solving, and form research parameters and gather data to address issues in theatre practice from a critical perspective. Students are selected competitively on the basis of interviews and portfolios.", + "title": "Professional Theatre Internship", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Shakespeare\u2019s plays have been known in many parts of Asia for about 100 years, and contemporary Asian theatre practice shows at once a great diversity of approaches to them, and patterns of common interest in production and reception. This module takes recent productions from different theatre cultures to compare how Shakespeare\u2019s texts are engaged through non\u2010realist aesthetic principles, and how self-reflexive treatments of naturalism, as well as new scripts based on his plays, interact with the cultural values represented by Shakespeare in the East and Southeast Asian region. Assessment includes the option of a creative project.", + "title": "Shakespeare and Asian Performances", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3246", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0119", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The informal archiving of events through recording technology and social media is now an everyday activity, such that the event and its record are increasingly intertwined. This module provides a hands\u2010on introduction to the considerations and processes in the digital archiving of theatre performances. Issues in the selection of materials, their ownership and presentation will be explored through the interests of different parties: the archivists, the institution housing the archive, the copyright holders and the archive\u2019s users. Students will be guided in group projects to archive a set of performance materials for different kinds of archives in the digital humanities.", + "title": "Digital Archiving and Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The oriental \u2013 as figure, setting, story and / or acting style \u2013 has played varied roles in theatre histories. This module investigates archival materials, modes of transmission and Avant-Garde theatres, to study key aesthetics and ideas through which imaginings of the oriental were secreted in and by English and European theatrical performances from the 18th to the 20th centuries. The workings of orientalism will provide a vantage point from Asia for reviewing constructions of theatre history, and analysing historical issues in performance.", + "title": "Theatre and Orientalism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project. It has relevance to the student's Major, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\n\nUROPs usually take place within FASS, ARI, and partners within NUS, though a few involve international partners. All are vetted and approved by the Major department. All are assessed.\n\nUROPs can be proposed by supervisor or student, and require the approval of the Major department.", + "title": "FASS Undergraduate Research Opportunity (UROP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS3551", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Practice research aims to discover new things\n\nabout theatre by doing it, rather than watching\n\nit. This module offers a group project in Theatre\n\nand Performance practice research designed and\n\ndirected by the lecturer. Students are guided in\n\nthe theoretical parameters and issues, project\n\nmethodology, and development of the practical\n\nwork. Through an individual role, each student\n\nconsiders how their practical experience and\n\nknowledge in local contexts interact with theory\n\nand methodology. The module extends over\n\nboth semesters of one academic year to\n\nfacilitate the longer-term growth of practice\n\nresearch outcomes. Admission is by portfolio\n\nsubmission and interviews / auditions.", + "title": "Topics in Group Practice Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TS3880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to train students in the art and practice of play-writing while simultaneously offering them the opportunity to role-play the professional responsibilities and disciplines of a playwright. Topics to be covered include dramatic structure, dramatic action, the relationship between dialogue and action, characterisation, setting, the use of physical objects to create meaning, and different treatments of time on stage. Students will be assigned research and writing exercises throughout the module culminating in a full-length play. Students will also be expected to act in and direct other students scenes and plays as part of the continuous re-drafting and critique process.", + "title": "Playwriting: Practice and Production", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module focuses on the theatre practitioner's work within the legal context - the rights and liabilities of the theatre artist in relation to their work and its public performance. The course will highlight specific legal principles and aims to equip students with a practical working knowledge of the law, with particular focus on the theatrical arena.", + "title": "Arts and the Law", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students a way to approach theatre and performance through the matrix of gender. Students will be exposed to selected discourses on feminism, masculinity, transgenderism. This module will focus on the issues of language, body, theatricality and performativity and explore how the gender discourses can inform the students\u2019 engagement with these issues, particularly in relation to aesthetics and embodiment. Incorporating a critical, examination of selected play-texts, this module will lead students to develop a project where they can either construct a creative response to a play or a devised reflection on their process of researching gender in theatre.", + "title": "Theatre and Gender", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is the form and function of theatricality in contemporary Asian society? This module seeks to answer this question by investigating a range of collective practices of symbolic action and meaning\u2010making that have become known as \"cultural performance\". The methodological perspectives of Performance Studies will be deployed to contextualise cultural performances that contribute so arrestingly to social reality in East and Southeast Asia. Students will participate in a field trip and learn a variety of research techniques such as practice\u2010based inquiry, interviews, performance analysis, historical analysis and visual ethnography to develop individual research projects throughout the semester.", + "title": "Cultural Performance in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is not a course about Postmodernism. This is a course examining the relationship between Postmodernism and Theatre, their tensions and complements. The course will examine notions of theatricality and performativity that have come to characterise Postmodernism. Related ideas of simulacra and rehearsal, occularism and spectatorship, self-consciousness and self-reflexivity will be debated and discussed. Postmodernism as style, attitude and as mode will be pitched against performance aesthetics and theatre techniques to further explore the relationship between the two. The course will also locate Singapore theatre practices in the context of a global postmodernity.", + "title": "Theatre and Postmodernism", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines popular media-mediated events \"as\" performance. The module will investigate the way in which 'mediatised'(i.e. media-mediated) and popular events \"perform\" and shape the audience's perception of reality. Conversely, the module will also examine how media-mediated performance is influenced by audience interests and perceptions. The focus will be on popular media-mediated events like sports, reality TV, the internet to illustrate how they constitute different modes of performances while sharing similar performativities. The module will also focus on cross-genre, inter-disciplinary performances while also examining notions of the spectacular and spectacle in contemporary visual culture.", + "title": "Media and Popular Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS1-0304", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a study of how the literary and performance traditions associated with Shakespeare's work are mobilized and transformed by the visual cultures of contemporary cinema. Through the intersections between the mediums of the dramatic text, theatre and film, the course examines central issues that shape Shakespeare's currency and circulation in the cinema the values attached to authenticity and performance traditions, the Shakespearean actor, the appropriation and parody of the \"universality\" of Shakespeare, and the transformation of the meaningfulness of his plays through visuality and spectacle.", + "title": "Shakespeare and Film", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0206", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Doing performance can teach us things that watching it cannot. This module uses performance practice as a research methodology to investigate otherwise inaccessible questions of creativity, embodiment, and performance processes. The three main components of the module include: defining a research question, designing and conducting experiments/observations, presenting the outcomes. Students will conceptualize and execute their own research project, in a relationship of collaborative research with artists. The nature of the project determines the resulting presentation: multi-media talk, lecture-demonstration, or short performance or workshop. The module will also focus on case studies from a range of cultural and stylistic sources.", + "title": "Performance Research", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS7-0106", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module trains students to become independent performance-based researchers in applied theatre. Students further develop their critical and creative skills through exposure to key practical approaches and critical theories in the field. To consolidate skills in integrating practice with theory, students will undertake Performance as Research projects of considerable scope with attention given to the social and cultural complexity of specific communities and contexts. Applied theatre as a form of social intervention, community engagement and knowledge production will be examined.", + "title": "Performance as Research in Applied Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module trains students to become independent performance-based researchers in applied theatre. Students further develop their critical and creative skills through exposure to key practical approaches and critical theories in the field. To consolidate skills in integrating practice with theory, students will undertake Performance as Research projects of considerable scope with attention given to the social and cultural complexity of specific communities and contexts. Applied theatre as a form of social intervention, community engagement and knowledge production will be examined.", + "title": "Performance as Research in Applied Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4222A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Honours Thesis is usually done in the second semester of a student's registration in the Honours Degree Programme.", + "title": "Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "TS4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module is designed to enable the student to explore an approved topic within the discipline in depth. The student should approach a lecturer to work out an agreed topic, readings, and assignments for the module. A formal, written agreement is to be drawn up, giving a clear account of the topic, programme of study, assignments, evaluation, and other pertinent details. Head's and/or Honours Coordinator's approval of the written agreement is required. Regular meetings and reports are expected. Evaluation is based on 100% Continuous Assessment and must be worked out between the student and the lecturer prior to seeking departmental approval.", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to cover selected topics in Theatre and Performance Studies. The topic to be covered will depend on the interest and expertise of regular or visiting staff member in the department.", + "title": "Topics in Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Live performance is a vibrant and dynamic art form, and innovations in aesthetics and technique mean that it is constantly changing. Over the course of this module, students will conduct a critical assessment of recent developments in performance practice, and of their implications for performance theory and analysis. Recent trends in performance and scholarship will be surveyed, informed by a combination of publications, electronic resources, and theatre\u2010going. Students will be assessed on their capacity to develop informed responses to the work, to conduct and present independent research into current trends, and to reflect critically on the concept of the \u2018contemporary\u2019.", + "title": "Contemporary Performance Practices", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS4880C", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad-based critical and methodological foundation for advanced research in theatre and performance. Taking one example from each of three aspects of performance a script, a live performance, and\na media/cultural performance the module trains students to examine and compare the critical positions and questions posed by a range of theoretical texts with different approaches, priorities and methodologies. Core topics are\nthe mutually transformational modalities of textuality and performativity, live and mediated performance, and non-traditional critical and performance practices. Students are guided in formulating a research proposal and project, which forms the main coursework component.", + "title": "Text and Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS5101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a broad-based critical and methodological foundation for advanced research in theatre and performance. Taking one example from each of three aspects of performance a script, a live performance, and\na media/cultural performance the module trains students to examine and compare the critical positions and questions posed by a range of theoretical texts with different approaches, priorities and methodologies. Core topics are\nthe mutually transformational modalities of textuality and performativity, live and mediated performance, and non-traditional critical and performance practices. Students are guided in formulating a research proposal and project, which forms the main coursework component.", + "title": "Text and Performance", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS5101R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In recent years, the vitality and currency of Asian cinema has resulted in texts that can no longer be viewed as merely artifacts of a particular culture or nation. This module looks at how film industries in Asia have engaged with global cinema through various forms of negotiations that assert, compromise or consume national, cultural or conventional distinctions. We assess the implications of a conglomerate Asian cinema by examining the current trend of transnational Asian films, the translatability of conventions and adaptability of ideas within Asia itself as well as between Asia and dominant cinemas like Hollywood.", + "title": "Asian International Cinema", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS5212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In recent years, the vitality and currency of Asian cinema has resulted in texts that can no longer be viewed as merely artifacts of a particular culture or nation. This module looks at how film industries in Asia have engaged with global cinema through various forms of negotiations that assert, compromise or consume national, cultural or conventional distinctions. We assess the implications of a conglomerate Asian cinema by examining the current trend of transnational Asian films, the translatability of conventions and adaptability of ideas within Asia itself as well as between Asia and dominant cinemas like Hollywood.", + "title": "Asian International Cinema", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS5212R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0309", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Shakespeare is by far the most produced and adapted western playwright in East Asian theatre cultures. Approaches to translating, performing and re\u2010writing his plays have changed over time, and are now at their most diverse and experimental. Correlatively, connections and relationships between Asian and Anglophone performance histories have also matured. Using translated and annotated archival recordings, this module examines the historical contexts and theatrical concerns of East Asian Shakespeare performances, relating them comparatively to Anglophone and European textual and performance histories. It is jointly taught by NUS and The Shakespeare Institute, University of Birmingham as a distance learning module.", + "title": "Performing Shakespeare in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS5213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Shakespeare is by far the most produced and adapted western playwright in East Asian theatre cultures. Approaches to translating, performing and re\u2010writing his plays have changed over time, and are now at their most diverse and experimental. Correlatively, connections and relationships between Asian and Anglophone performance histories have also matured. Using translated and annotated archival recordings, this module examines the historical contexts and theatrical concerns of East Asian Shakespeare performances, relating them comparatively to Anglophone and European textual and performance histories. It is jointly taught by NUS and The Shakespeare Institute, University of Birmingham as a distance learning module.", + "title": "Performing Shakespeare in Asia", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS5213R", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS5-0205", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How do societies use performance to mediate between the past and the present? This module addresses the question by considering the place of performance in the forging of history, the use of performance analysis as a means of gaining insights into historical events, and the function of performance as a process of remembering. Combining historical case studies and contemporary performances from local, regional and international contexts from colonial encounters and memorial rituals to trauma plays historiography is studied alongside the ways in which theatrical and other performances play a role in both reinforcing and challenging prevailing cultural memories.", + "title": "Performance, History and Cultural Memory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS5232", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How do societies use performance to mediate between the past and the present? This module addresses the question by considering the place of performance in the forging of history, the use of performance analysis as a means of gaining insights into historical events, and the function of performance as a process of remembering. Combining historical case studies and contemporary performances from local, regional and international contexts from colonial encounters and memorial rituals to trauma plays historiography is studied alongside the ways in which theatrical and other performances play a role in both reinforcing and challenging prevailing cultural memories.", + "title": "Performance, History and Cultural Memory", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "TS5232R", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT13", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS5660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS6660", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a required module for all research Masters and PhD students admitted from Sem 1 of AY2009/2010. The module provides a forum for students and faculty to share their research and to engage one another critically in discussion of their current research projects. The module will include presentations by faculty on research ethics and dissertation writing. Each student is required to present a\nformal research paper. Active participation in all research presentations is expected. The module may be spread over two semesters and will be graded\n\"Satisfactory/Unsatisfactory\" on the basis of student presentation and participation.", + "title": "Graduate Research Seminar", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "TS6770", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AS4-0109", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Advanced Topics in Theatre", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TS6880", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a design project which requires students to form a group, to study, formulate and analyze an actual industrial logistics or supply chain problem with the goal of recommending a design solution that is practical. It also enables students to practice and improve the skills of technical report writing and oral presentation.\n\nThe objective of the design project is to provide an opportunity for students to gain practical experience on an actual industry problem. It also gives the students a broader scope of applying supply chain management and engineering concepts rather than concentrating on one particular subject area.", + "title": "Supply Chain Design", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TSC3100", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Understanding procurement, global sourcing and supply management are vital for supply chain management.\nThe module aims to impart the necessary knowledge related to contemporary global sourcing and supply management strategies to students. Topics such as purchasing and strategic sourcing; global sourcing strategies; strategic sourcing process etc. will be covered.", + "title": "Global Sourcing & Supply Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TSC3222", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-04", + "day": "Monday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Globalization has destroyed traditional national boundaries such that single transactions cross various countries, each with its own financial regime. Competition is no longer between companies but between these multinational supply chains. This module aims to impart the necessary knowledge to understand the financial supply chain embedded within these supply chain to be able to manage them effectively. The students will be brought through a macro view of supply chain across companies within industry before focusing on financial implications of supply chain related decisions in the organization.", + "title": "Supply Chain Financial Analysis and Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TSC3223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E4-04-02", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the concepts of distribution and warehousing. Distribution and warehouse management are important components of logistics and supply chain management systems. \n\nThe topics cover include network distribution design, network location and warehousing systems such as material handling systems, storage systems and order picking systems. Case discussions will be an integral part of the lecture.", + "title": "Distribution & Warehousing", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TSC3224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-21", + "day": "Friday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Transportation is important concept in the study of logistics and supply chain management systems. Costs associated to transportation, distribution can form a large part of the overall business cost.\n\nTopics on the importance of transportation, different modes of transportation, transportation planning and risk management will be covered.", + "title": "Transportation Management", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TSC3226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E5-03-22", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a two semester research module for 4th/ final year undergraduate students in engineering. In this module, each student is assigned to a research project that requires application of supply chain management and engineering concepts. The module provides the opportunity for students to conduct self study by reviewing literature, define a problem, analyze the problem critically, conduct design of experiments, and recommend solutions.\n\nIt also enables students to improve their communication skills through technical report writing and oral presentation. The objective of the module is to give students exposure to research.", + "title": "B. Tech Dissertation", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "TSC4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sea Transport being the cheapest mode of transportation is the main driver for global supply chain. Container terminal is an important node in the supply chain network for maritime logistics. It can serve as a gateway to the hinterland and transhipment hub for the movement of goods.\n\nTopics on the importance of containerization, the key processes in port operation, the types of equipment used in port, operation strategies and new port design concepts, port competition and port connectivity will be covered.", + "title": "Port Logistics", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TSC4225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Friday", + "lessonType": "Lecture", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-29T01:00:00.000Z", + "examDuration": 100 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module builds and exposes students to the mathematical foundational concepts that are necessary in a variety of engineering disciplines. The topics include the following: Ordinary differential equations. Laplace transform. Matrix algebra. Vector Space. Eigenvalues and Eigenvectors. Determinants and Inverses. Solution of linear equations. Diagonalisation. Functions of Matrices. Matrix exponential. Matrix differential equations.", + "title": "Engineering Mathematics I", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TTG1401", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "5", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-14", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-13", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-10", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-11", + "day": "Wednesday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 11 + ], + "venue": "E2-0308PC5", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 130, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 10 + ], + "venue": "E2-0308PC5", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 9, + 12 + ], + "venue": "E2-0308PC5", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 7, + 9 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 8, + 13 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10, + 12 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 120 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Thursday", + "lessonType": "Lecture", + "size": 100, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "E2-0308PC5", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-15", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E1-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "EA-06-06", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "LT7", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 10 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 11 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "2030", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-07", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 11 + ], + "venue": "E2-0308PC5", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 12 + ], + "venue": "E2-0308PC5", + "day": "Monday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 12 + ], + "venue": "E2-0308PC5", + "day": "Wednesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module highlights to students the ethical issues they will face working as an engineering professional. The issues covered range from the rationale for an engineering code of practice, risk and safety issues, conflict of interest, ethical issues in research. This module will be offered to second or higher year engineering students as they need their engineering background to better understand the issues involved. Case studies will be presented to cover real life issues.", + "title": "Ethics In Engineering", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TTG2415", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "ENG-AUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-11", + "end": "2023-07-06" + }, + "venue": "ENG-AUD", + "day": "Thursday", + "lessonType": "Lecture", + "size": 175, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2030", + "endTime": "2130", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2030", + "weeks": { + "start": "2023-05-15", + "end": "2023-06-26", + "weekInterval": 2 + }, + "venue": "ENG-AUD", + "day": "Monday", + "lessonType": "Lecture", + "size": 175, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-07-10T01:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to help students communicate competently and ethically in the engineering practice. It aims to develop students to be 'able communicators' with a holistic and humane view of engineering. Students are expected to work towards becoming critical decision makers, creative problem solvers, effective communicators, and responsible professionals. The course will focus on developing audience-centred oral communication skills, and students will be given opportunities to critically analyze communicative texts and events, and perform effective and ethical communication practices in various situations. The course also helps develop students' ability to effectively communicate engineering practices to both technical and non-technical audience.", + "title": "Communications for Engineering Professionals", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TTG2901", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Thursday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-04", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "2100", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E3-06-12", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for BTech Engineering students. It leverages on the student\u2019s work experience and focuses the student\u2019s mind on exploring and reflecting on how the concepts and theories gained in the classroom can be translated into industrial practice to enhance his/her work performance. The student is required to complete 3 written reports, 2 oral presentations, and 6 Skills courses. This module is normally taken over two consecutive regular semesters, and is an Unrestricted Elective Module.", + "title": "Industrial Practice", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "TTG3001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for BTech Engineering students. It leverages on the student\u2019s work experience and focuses the student\u2019s mind on exploring and reflecting on how the concepts and theories gained in the classroom can be translated into industrial practice to enhance his/her work performance. The student is required to complete 3 written reports and 2 oral presentations. This module is normally taken over two consecutive regular semesters, and is an Unrestricted Elective Module.", + "title": "Industrial Practice", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "TTG3002", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Essential 1 for BTech Students", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TX1901T", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Essential 2 for BTech Students", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TX1902T", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Essential 3 for BTech Students", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TX1903T", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Essential 4 for BTech Students", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TX1904T", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Essential 5 for BTech Students", + "faculty": "Cont and Lifelong Education", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "TX1905T", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "USP ISM (ST) Overseas Exchange Module", + "title": "Overseas ISM (ST)", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UAI3100E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "USP Overseas Exchange Module substitution code", + "title": "Overseas Exchange Module", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UAI4000E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of the module is to expose students not only to arts with digital media, but also let them develop their own art works. Students practise the analysis and interpretation of arts and become familiar with the major shifts of the arts in the 20th century and the basics of postmodern aesthetics. During the production of creative works, the focus lies on the training of conceptual skills. Similarities between artistic and strategic creativity are investigated. The connection between art and leadership, the tradition of the avant-garde and a discussion about favourable conditions for innovation in a society serve to round up the module.", + "title": "Cyberart", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UAR2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Framed around the production of non-fiction short films, Creating \u201cReality\u201d explores the visual representation of factual material. The intellectual core of the module focuses on the complexities of visual approaches to data collection and narrative, especially when observing and depicting real life practices, stories, and behaviours. In the module, non-fiction film is used as tool to explore critical\nissues of the nature of reality, subjectivity/objectivity, selection bias, and the manipulation of data \u2013 which are broad based concerns in all academic disciplines.\n\nThe module draws upon literature from a wide range of disciplines from visual anthropology and new media, to film studies to contextualize the diversity of theoretical and practical approaches involved in creating non-fiction film. The module utilizes practical learning exercises, including the group production of a short documentary film about some aspect of current events, or everyday life in Singapore.", + "title": "Creating 'Reality'", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UAR2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Intercultural understanding is crucial for solving global problems but face-to-face exchanges are not always possible due to emerging crises, political barriers and income inequality. This module invites students to imagine new modes of intercultural exchange. In the first half of the semester, we will borrow tools and concepts from a variety of disciplines (cultural anthropology, intercultural theatre, interaction design, and translation theory) to devise different \u201cinteraction playbooks\u201d. In the second half of the semester we will test these by working with students in partner universities around the world, through digital platforms and, when feasible, face-to-face interactions.", + "title": "Reinventing Intercultural Exchanges", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UAR2207", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR8", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How do we turn science into art? This creative writing module examines how theatre explores issues of science - - the personal, institutional and social dimensions of scientific inquiry \u2013 as students create new original dramatic works. Students read and analyse science plays from a playwright\u2019s perspective, and apply the techniques learned to their own short weekly creative writing exercises based on scientific developments. These will be critiqued by their peers, and will culminate in the research and writing of their own one-act plays.", + "title": "From Lab to Stage: Writing the Science Play", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UAR2208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\u201cWhat doesn\u2019t kill you makes you stronger\u201d is a common\nsaying that implies a positive response to external stress.\nYet, beyond the rhetorics, this notion is grounded in\nscientific principles. The goal of this module is to first\ndiscuss the theoretical basis behind this effect, and then to\nexplore the reach of this phenomenon across different\ndisciplines. These include addressing the risk-benefits of\nmedications and health supplements, the effects of\nexercise on the physical body, concept of immunity and\nothers. Beyond that, we hope to generate a platform for a\ndeep dialogue on the potential analogies of the concept in\nfar-reaching domains such as sociology, psychology and\neven economics (antifragility). Through this, we hope to\nadvocate the theories and practice of taking \u201ccalculated\nrisk\u201d in life situations.", + "title": "Hormesis and Life", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UBM2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module serves as an introductory module for students\ninterested in regenerative medicine entrepreneurship and its\nassociated intricacies, including ethical issues and\nsocioeconomic impact. This module will broadly cover the\nfundamental concepts in regenerative medicine such as stem\ncell biology and tissue engineering. With this knowledge,\nexamples of regenerative medicine technologies will be used\nas anchors for discussion throughout the course to enable\nstudents to truly appreciate the complexities involved in\nbringing these typically controversial technologies from bench\nto commercialization.", + "title": "Creating Wolverine in Real Life", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UBM2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "History & culture basket (level 3000) 1", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UCQ3101E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Society & Economy basket (level 3000) 1", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UCQ3201E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module focuses on the relationship between cultural heritage and contemporary political and social situations. It is designed to provide students with opportunities to explore a range of theoretical and intellectual issues from the fields of anthropology, geography and archaeology on cultural heritage and the roles that place and material culture play within the enactment of social practices. It draws upon historical and contemporary case studies provide real world problems for engaging with the theoretical components of the module. There is an emphasis upon debate, discussion, and problem oriented individual and group projects. Several day trips around Singapore, as well as an extended field trip to Cambodia are offered as part of the module.", + "title": "Politics of Heritage : Singapore and the Region", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UCV2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Straddling the fields of faith, civilisations and culture,\nmigration, diaspora, political economy, foreign policy and\ninternational politics, this module, being multidisciplinary in\ncomplexion, provides for a multifaceted understanding of\nIndia-Singapore relations in the contemporary world.", + "title": "The Heterogeneous Indians of Contemporary Singapore", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UCV2209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces different theoretical approaches to urban design and the relevant discourses. With a greater understanding of the various theories and discourses, this course will serve as a base from which students can develop their own convictions and approaches to urban design. It also examines the fundamentals of urban design and the factors in the related fields of urban planning, architecture and landscape architecture that influence the creation of urban spaces. The module aims to lead students to critically examine and investigate the many ways through which the city is imagined, developed, formed and occupied.", + "title": "Urban Design Theory and Discourse", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UD5221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UT-AUD2", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip participants with a good knowledge of the urban planning process, particularly the quantitative, research, and policy considerations. It examines the relationship between urban planning and urban design from the practitioner's perspective. Extensive reference with case studies will be made to the Singapore planning process at the various levels. It also helps participants to develop a sound understanding of the integrated nature of urban planning and the urban design processes and how this can be reinforced to achieve a more efficient and attractive urban environment.", + "title": "Planning Process: Quantitative & Policy Dimensions", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UD5521", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The urban design studio is where the synthesis of theoretical and practical aspects of urban analysis and design takes place. Using urban design projects of different scales that deal with programming, planning and design, the studio encourages the integration of political, social, economic, environmental, and physical concerns in the design of urban spaces. The studio will also analyse successful urban design projects in the form of case studies.", + "title": "Urban Design Studio 1", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "UD5601", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 35, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The urban design studio is where the synthesis of theoretical and practical aspects of urban analysis and design takes place. Using urban design projects of different scales that deal with programming, planning and design, the studio encourages the integration of political, social, economic, environmental, and physical concerns in the design of urban spaces. The studio will also analyse successful urban design projects in the form of case studies. Urban Design Studio 2 will include a compulsory international workshop in the form of a field trip to a regional city to work with the relevant local planning/design authority and academic institution (cost of fieldtrip borne by student).", + "title": "Urban Studio Design 2", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "UD5602", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AKIMAUD", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "AKIMAUD", + "day": "Friday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Tutorial", + "size": 25, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Design Lecture", + "size": 40, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Design Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is taken in conjunction with urban design studios. Methods of urban analysis and urban design will be taught to enable the students to tackle urban design projects of varying scales introduced in UD5601 and UD5602. The various aspects of urban growth, city limits/boundaries, urban structure, urban architecture, typologies as well as infrastructural planning, parcellation, public space and design guidelines will be introduced. The critical role that transportation plays in structuring the city will also be examined. This course will be conducted intensively on a daily basis over a period of three weeks (usually beginning on the third week of Semester 1).", + "title": "Framework of Urban Design and Analysis", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UD5622", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2022-08-04", + "end": "2022-08-18" + }, + "venue": "ERC-ALR", + "day": "Thursday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2022-08-03", + "end": "2022-08-17" + }, + "venue": "ERC-ALR", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2022-08-02", + "end": "2022-08-16" + }, + "venue": "ERC-ALR", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2022-08-05", + "end": "2022-08-19" + }, + "venue": "", + "day": "Friday", + "lessonType": "Lecture", + "size": 70, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": { + "start": "2022-08-01", + "end": "2022-08-15" + }, + "venue": "SDE4-EXR1-2", + "day": "Monday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module is to provide students the in-depth understanding of urban form analysis, urban form making and development processes over extended spatial and temporal environment through various urban design cases and theories. As one of the essential courses of urban design, the lecture/seminar is going to introduce not only the historical legacy but also those cutting-edge thinking for the future. The discussion will cover many discourses related to how cities and urban spaces could be analyzed, designed, managed, evaluated, represented and changed. The original thought of city form and design from Kevin Lynch is regarded as the starting point for the whole module. The following sessions will cover those new trends and issues in different specific urban design topics, such as downtown urban design, urban regeneration, Asian urbanism and large-scale project development, waterfront redevelopment, transit village, sustainable city, landscape ecological design, information city, the emerging technologies for urban simulation and finally the making of urban design plan.", + "title": "Special Topics In Urban Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UD5624", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces methods and techniques supporting urban planning and design. Topics cover three major methodology clusters \u2013 spatial analytics based on geographic information science (GIS), qualitative research methods and participative design techniques. The spatial analytic part contains fundamental skills including thematic mapping, vector analysis tools, spatial analysis and network analysis. Qualitative part covers overview, survey and interview, but mainly focuses on field study. Participation content reviews the basic knowledge of community involvement. The subject is delivered through lectures, lab tutorials and projects. Hands-on lab tutorials and assignments provide students with experiences on selected key methods using real datasets; and exposure in local data environment and contexts.", + "title": "Methods and Tools for Urban Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UD5625", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Monday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module presents an economic perspective to issues arising from urban and regional development. It explains economic principles relevant to land market and urban policy analysis. Topics to be discussed include the rise and decline of city economies, the demand and supply for spaces in cities, the spatial structure of cities and its effect on the urban economy, the role of the market and the government in resource allocation in cities. Students are expected to apply the economic thinking to addressing contemporary urban challenges, such as climate mitigation, housing affordability, and job growth.", + "title": "Urban Economics", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UD5626", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 40, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to guide students through a critical assessment of contemporary urban design. In the face of accelerating technological advancement, exacerbating environmental degradation, and in particular unexpected threats such as the Covid-19 pandemic, our cities are confronted with many emerging issues. This raises great challenges that requires us to re-think and re-conceptualise urban design practices at present and in the future. Based on examination of the latest debates and discussions on the emerging issues of contemporary cities, and conversation with experts from practices, government agencies, academia, etc., this module will provide students with a multi-perspective platform for them to develop their own critical views and convictions of the design and building of future cities.", + "title": "Critique of Contemporary Urban Design", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UD5628", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "SDE-ER4", + "day": "Monday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-LT52", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 35, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The dissertation, limited to 10,000 words, offers the opportunity of candidates to conduct independent research and to demonstrate analytical and critical abilities by investigating a topic of interest and of relevance to their course of study.", + "title": "Dissertation", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "UD5641", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the Biblical, Confucian, Socratic, and Modern or Machiavellian conceptions of the virtuous leader. The module is aimed at exposing students to the most representative texts of each tradition in order to gain depth of understanding of the competing conceptions of leadership, and their underlying assumptions about the nature of human beings. Students will also be expected to interrogate each tradition with a view to discovering its relevance to contemporary life.", + "title": "Virtue And Leadership", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UHB2204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course adopts an eclectic, multi-disciplinary approach towards leadership. \n\nThrough a section on Core Ideas and Great Texts, it highlights the key tensions and complexities involved in leaders\u2019 decision-making, exemplified in seminal thinkers\u2019 work on how to determine the \u201cright\u201d and / or \u201cgood\u201d; and explores how these tensions/complexities play out in a selection of Great Texts, both literary and philosophical. \n\nA section on Contemporary Issues applies the ideas of leadership tension/complexity to current leadership challenges. A student-selected USPitch Project provides a first-hand practical experience of the issues explored in earlier sections.", + "title": "Leadership in a Complex World", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UHB2206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the deep interconnections between language, cognition and culture. It begins with a consideration of the \u2018discursive mind\u2019 - that is, the particularly human way of knowing that uses language as its primary tool and medium. Realizing how much of human cognition is language-dependant,\nwe then explore the relations between language, cognition and culture by looking at such everyday linguistic phenomena as code-switching, metaphor and gesture. Augmenting the reading of sociolinguistic and cognitive science texts in this module, students will also learn how to collect and to analyze empirical\nevidence of language phenomena in order to more critically assess the claims of such texts.", + "title": "Language, Cognition, and Culture", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UHB2207", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course we will investigate and analyse key conceptual and theoretical ways of examining the relationships between immigration and the city through readings on migration processes and theories, the conceptualization of places such as immigrant enclaves, immigrant identity, immigrant entrepreneurship, the \ngendered nature of some immigrant flows and the mutual influence of immigrants and urban landscapes and cultures. Readings in this seminar will draw from research by geographers, anthropologists, sociologists and economists. We will learn how geographers conduct research and also conduct research on immigration and its effects in Singapore, using data available from archival \nsources, the Singapore government and information gathered by students.", + "title": "Immigration and the City", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UHB2208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes an inter-disciplinary look at the multifarious concept of \u201cgovernance\u201d - how resources, issues and groups are organised and managed by a range of actors from the public, private and people sectors. Through a combination of academic work and case studies, the module explores\n(i)\tunder what circumstances, and how, governance in the modern world needs to be more \u201cpolycentric\u201d \u2013 taking place at multiple interlocking levels, including the global, national and local; \n(ii)\tkey determinants of success or failure in different instances of polycentricity; \n(iii)\tboth the benefits and limitations inherent in polycentric governance arrangements, as well as the challenges and obstacles to achieving greater polycentricity.", + "title": "Polycentric Governance: Possibilities and Pitfalls", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UHB2209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The ability to experience emotions has numerous consequences, both desirable and undesirable, as emotions can colour our perception, drive or deter our daily\npursuits, and, in the long run, shape whether we feel satisfied or disgruntled with life. This module focuses on the roles that emotions play in various areas of life, such as arts, religion, and material consumption. There will be multi-disciplinary, reflective discussions, grounded on updated and rigorous psychological research so as to enhance appreciation of abstract theories and to motivate effective application of these theories in real life.", + "title": "Emotion in Daily Life", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UHB2210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Anthropocene is the proposed term meant to\ndesignate a new epoch in Earth\u2019s geological history in\nwhich we, the anthropos, have become a geological force.\nFrom rising sea levels, spiking temperature, to mass\nextinctions, humanity has not simply changed the\nbiogeochemical profile of the Earth but done so to the point\nof threatening its very survival. In its altered state, the\nEarth appears increasingly unable to sustain the\nagricultural, energy, and capital networks that humanity\nhas built to drive itself. The Anthropocene, in other words,\nfigures man as a primary agent of a grand planetary drama\nat the same time it stymies his ability to act. This module\nexamines the notion of agency in the conditions of the\nAnthropocene. It asks what a warming, liquefying, dying\nworld might reveal about the realities and limits of our\nagency?", + "title": "Welcome to the Anthropocene: Agency in the Era of Climate Change", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UHB2211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\u201cOur generation,\u201d Singaporean playwright Joel Tan remarks, \u201cis sick with nostalgia.\u201d From the popularity of retro and vintage styles to the proliferation of artwork\n(some state-sanctioned, some not) that lovingly look to and at our past, Singapore seems to be in the firm grip of nostalgia. Are these indeed manifestations of nostalgia? Is any interest in the past nostalgic, or does nostalgia consists of a style or a way of regarding the past? More importantly, how should we understand these nostalgic tendencies? In what senses is nostalgia a \u201csickness,\u201d and can Singaporean practices of nostalgia help us rethink this characterization? (100 words)", + "title": "Singaporean Nostalgia", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UHB2212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the theory and practice of community development (i.e., engagement of communities so that they become empowered agents of social change). The community development models and frameworks that would be discussed in the module include asset-based community development; community capitals framework; networking approach to community development; community empowerment models; sustainable livelihoods models; and radical community development.\n\nStudents would develop competencies in applying qualitative research techniques that can be used to map communities. Additionally, students would be exposed to community participation, consensus building and design thinking techniques that can be adopted to generate solutions to community issues.", + "title": "Engaging and Building Communities", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UHB2213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Research has established that we often fall prey to cognitive biases unknowingly, leading to us making suboptimum decisions. This module seeks to examine some of these biases and how they affect our decision making as we re-look at decision making theories. In this module, we seek answers to the question of, \u201cWhat constitutes a good decision and what makes for a good decision maker?\u201d\nWe will also discuss the implications of these biases from the social welfare perspective and explores how we can overcome these biases.", + "title": "Effective Decision Making", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UHB2214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS2921R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS2922R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS2923R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS2924R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS2951R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS2952R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3901", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (ST)", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3901S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3902", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (ST)", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3902S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3903", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (ST)", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3903S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride On)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3904R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911AX", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3911TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912AX", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3912TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3913", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Course-Based Module (Riding-On Regular Module)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3913R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Course-Based Module (Riding-On Regular Module)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3914R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3915EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3915HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3915PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3915PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Course-based Module (Ride-on)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3915R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3916EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3916HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3916PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3916PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3921", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3921R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3922", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3922R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3923", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3923R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3924", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3924R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "UIS3929R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3931", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3932", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3933", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3934", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Ride-on for CS3216 taken by USP students.", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS3951CS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module (together with CS3209) is part of the UROP (Computing) project. The objective of this module and the UROP (Computing) project in general, is to provide an opportunity for talented students to undertake a substantial research project under the supervision of faculty members of the School of Computing. Through this research collaboration, the student will get to experience at first hand the challenges and exhilaration of research, discovery and invention. This module should be followed by CS3209 to complete the UROP (Computing) project.", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3951R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Ride-on for CS3217 taken by USP students", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS3952CS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module follows CS3208 and completes the requirements of the UROP (Computing) project. Please see CS3208 for description.", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3952R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this project module enables students to undertake a substantial project work over a period of six months. Students may work individually or in groups on projects proposed by staff. They will have good opportunity to apply what they have learnt on practical problems, be it research-oriented or software-development. At the end of the project, the students must submit a report to their respective supervisors describing in details of what they have accomplished.", + "title": "Independent Project", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3953R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "UIS3954R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "UIS3955R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-on)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3956R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3957R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS3958R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-on)", + "faculty": "Multi Disciplinary Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "6", + "moduleCode": "UIS3971R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4904R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911AX", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911PEE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911PEP", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911PES", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SC, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SC, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SC, with a minimum CAP of 3.20.", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4911TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912AX", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in CH, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in CH, with a minimum CAP of 3.20.", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912CH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912CL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912EC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912EL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912EU", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912GE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912GL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912JS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912MS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912PE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912PEE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912PEP", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912PES", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912SC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cohort 2011 and before;\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SE, with a minimum CAP of 3.50.\n\nCohort 2012-2015:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 60 MCs in SE, with a minimum CAP of 3.20.\n\nCohort 2016 onwards:\nTo be offered subject to the agreement of the Supervisor and Department. Completed 100 MCs, including 44 MCs in SE, with a minimum CAP of 3.20.", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912SE", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912SN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4912TS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4913", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4915EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4915HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4915PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4915PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4916EN", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4916HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4916PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "UIS4916PS", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4921", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4921R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4922", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4922R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4923", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4923R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4924", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4924R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4931", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4932", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4933", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4934", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-on)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "UIS4935R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-on)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4951R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS4952R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-on)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "8", + "moduleCode": "UIS4953R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5921R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5922R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5923R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5924R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5931R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5932R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5933R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5934R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Module", + "title": "Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5941", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5941R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Module", + "title": "Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5942", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5942R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Module", + "title": "Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5943", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5943R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent Study Module", + "title": "Independent Study Module", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5944", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5944R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The primary role of the formal specification is to provide a precise and unambiguous description of a computer system. A formal specification allows the system designer to verify important properties and detect design error before system development begins. The objective of this course is to study various formal specification and design techniques for modelling (1) object-oriented systems, (2) real-time distributed systems, and (3) concurrent reactive systems. The course will focus on the state-based notations Z/Object-Z, event-based notation CSP/Timed-CSP. Graphical modelling notations, such as StateChart and UML (Unified Modelling Language) will also be addressed.", + "title": "Independent Study Module (Ride-on)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS5951R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS6922R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS6931R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Independent Study Module (Ride-On)", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIS6951R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We live in a world where technological advances and technology related decisions constantly impact society in many different ways. Being able to critically assess technological claims helps one make better judgments that could significantly affect our world. This module looks at central ideas and major technological advances in the field of computer science, and how these developments have shaped modern society through the IT revolution. Although the specific subject matter deals with computer science and information technology, the module objectives are more general in nature. We aim to develop in students, a balanced perspective of science, technology and their impact on modern society.", + "title": "Computer Science & The I.T. Revolution", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIT2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-SR9", + "day": "Friday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "One of the most recent advances in the area of computer science and information theory is the emergence of a new notion, the concept of quantum information. The module aims to provide an introduction to the field of quantum computing. While very much a technology of the future, the module will examine some of the possibilities that the quantum world offers in advancing the capabilities of computers and how our notion of information has evolved. Essentially the module showcases, two major paradigm shifts; one from classical physics to quantum physics and the other from the standard Turing principle in computer science to its modern quantum counterpart.", + "title": "Quantum computation", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIT2205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Formal methods of reasoning have been studied in all major civilizations, but the appearance of automatic computing devices in the 20th century has led to an explosion of interest in and applications of formal logic. Today, the advantages of formal reasoning are recognized and utilized far beyond computer science. Students of this module will discover the power as well as the limitations of formal methods for philosophy and mathematics, and learn to apply them in diverse areas such as political speeches and arguments, analysis of detective novels and the scheduling of sports tournaments.", + "title": "The Importance of Being Formal", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIT2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Computational thinking is a way of understanding the world and solving problems. We will explore a wide range of programming languages, systems, and activities designed to help children and the general public acquire\ncomputational thinking skills. Students will build and explore computer models of complex systems in the life and social sciences in order to acquire a deeper understanding of the underlying phenomena. No programming experience required. \n\nThis module is also about the pedagogical theories that underlie attempts to create environments designed to support learners in becoming creative problem solvers and capable of doing scientific research via computer simulations.", + "title": "Computational Thinking and Modelling", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIT2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The 4th industrial revolution, combining notions from fields such as cybernetics, the maker world and artificial intelligence, is rapidly starting to take shape. The key\nunderlying human thought process is often represented by the term \u2018computational thinking\u2019 but this thought process is much more than thinking like a programmer or computer-like. It is a broadly interdisciplinary process\nencompassing both the arts and the sciences, and essential for succeeding in an interconnected and data driven world. Indeed, thinking computationally is often\nmore like art than like math. This module, explores the thought processes behind computational thinking and considers applications in finance.", + "title": "Thinking 4.0", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIT2208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Learn about AI and machine learning from hands-on project work, case studies of how AI is impacting nearly every field of study, and explorations of its societal, ethical, and philosophical impacts. No prerequisite programming experience or advanced mathematics required. This module is an opportunity to do an AI project of your choice in your field of study (including physical, life, and social science, business, art, language, and humanities).", + "title": "AI Projects and Case Studies", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UIT2209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to give an overview of a living cell, genetic basis of diseases, biological molecules and their applications in undertaking clinical challenges. In brief, the student will learn the basic concepts of molecular biology, genetics, genetic engineering and biotechnology relevant to the biomolecular revolution. New frontiers of the revolution will be discussed with the emphasis of their\nimpacts on the individual and society. Through contemporary readings, students will be provoked to think of issues arising from the biomolecular revolution.", + "title": "The Biomolecular Revolution", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULS2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Thursday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Lecture", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Nothing in biology makes sense except in the light of Evolution This bold statement by the Russian population geneticist T. Dobzhansky emphasizes the importance of evolution as the only unifying concept in biology. Yet, the theory of evolution is more controversial and opposed by more forces in society than any other theory in science. The module will revisit many of these objections and reveal that they are based on reasoning that is incompatible with the principles of science. We will investigate, why it is \"Neo-Darwinism\" and not \"Intelligent Design\" that is currently the best supported paradigm for explaining \"adaptation.\" We will then challenge the power of the neo-Darwinian paradigm by asking how seemingly incompatible phenomena like altruism and excessive male ornamentation can possibly be explained by natural selection. We will also study several key events in evolution such as the origin of sex and its numerous consequences and the origin of the human species. We will conclude with discussing the importance of the theory of evolution for understanding cultural evolution (\"memes\") and human health and senescence (\"Darwinian medicine\").", + "title": "Evolution", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULS2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Biodiversity conservation became one of the important environmental themes of global concern after UN Conference on Environment and Development at Rio de Janeiro in 1992. The realisation that human development has to complement and not to compete with biological conservation ultimately developed into the famous Agenda 21. This protocol bound all the nations into accepting various responsibilities towards conservation of nature and natural resources. This module is aimed at imparting knowledge to students to help them understand and appreciate various concepts and issues concerning biodiversity and conservation at local, regional and global levels.", + "title": "Biodiversity And Conservation Biology", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULS2204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Sign processes permeate the lives of all creatures in the natural world. Sign use makes possible not only such higher-order human abilities as spoken language and written texts, but also underlies such communicative animal behaviour as the calls and songs of birds and cetaceans; the pheromone trails of insect colony organisation and interaction; the mating, territorial, and hierarchical display behaviour in mammals; as well as the deceptive scents, textures, movements and coloration of a wide variety of symbiotically interacting insects, animals and plants. This course will introduce you to the recently developed field of biosemiotics the interdisciplinary study of sign processes as they occur variously across the biological spectrum. Looking at the close relation between living systems and their sign systems (hence the term: bio-semiotics), this still-emerging discipline seeks to traces the evolutionary development of sign-mediated ways of being in the world from its beginnings in the transmission of information across single cells to its most complicated realisation in the abstract forms of human thought.", + "title": "Biosemiotics: Signs In Nature", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULS2205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When we open our eyes, we feel that we are seeing the world as it is in front of us. But scientific studies reveal that we are seeing only a tiny fraction of that world, and that what we do see (and hear, and smell, and touch) is not the world \u201cas it is\u201d \u2013 but as it is represented to us through the \nfilters of our biology, or technology, and our culture. This module will examine the ways in which these three important forces enable, limit and shape the ways that we perceive \u201cthe world in front of us\u201d.", + "title": "The Doors of Perception: Biology, Technology & Culture", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULS2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When asked, \u201cwhat is pain?\u201d many respond: \u201cthe response to something painful.\u201d That answer is tautological. To escape tautology, we need to understand pain independent of any stimulus; we need to understand pain subjectively. A subjective focus, however, causes \nproblems. The need for subjectivity might deny pain to the unborn and to animals, and seemingly leads to the conclusion that we can \u201cthink\u201d ourselves into, and out of, pain. Consequently, many argue that pain should be understood objectively as the expression of biological changes (hormonal increases, brain activity) that are mobilised to defend the organism from injury.", + "title": "The Biology and Phenomenology of Pain", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULS2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Situated within a megadiverse biodiversity-hotspot, Singapore has drastically-reduced natural areas yet remains surprisingly species-rich. Combined with her colonial legacy, infrastructural capabilities and cultural biases, Singapore offers a unique situation for studying biodiversity. In this module, we study how Singapore\u2019s biodiversity landscape as well as the motivations and methods for studying biodiversity have evolved across Singapore\u2019s history. Retracing how prominent naturalists explored Singapore\u2019s biodiversity in the past, we imagine how they would do it today using current techniques. This module has a strong fieldwork component, imbuing students with naturalist sensibilities which heightens their awareness of Singapore\u2019s diverse but oft-neglected natural heritage.", + "title": "Biodiversity and Natural History in Singapore", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULS2208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Invertebrates are the animals lacking backbones that comprise >90% of the animal kingdom. Despite this, they remain superficially known to most people. This module gives much-needed attention to this megadiverse group, focusing on the varied biological innovations in aspects of their anatomy, physiology, and behaviour, which enable them to survive in particular habitats. We examine how such innovations in invertebrates have inspired man-made designs, materials and technologies across disciplines, which lead to human innovations that benefit society; and how the study of invertebrates more broadly contributes understanding of the natural world that also indirectly benefits society.", + "title": "Invertebrate Innovations", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULS2210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "War is the greatest common, man-made trauma that human beings undergo. We imagine war before, during and after we fight it. We imagine it socially, as tribes or nations, generating a common understanding through books, movies, songs and other representations. Those shared visions of war enable us to fight it and confront its trauma.\n\nThis module examines the changing imagination of war across history. Focusing mainly on English-speaking cultures, it examines poems, books, films, songs, plays, news reports, letters, speeches and tv programmes. It asks how they represent war, and how representations change over time and under pressure from technology, events and political thought.", + "title": "Representing War", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULT2298D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to provide students with an introduction to irony, a central term in literary and cultural studies. Irony presupposes disjunctions \u2013 between what is said and what is meant, what is perceived and what is real. It thus involves a critical attitude in exploiting and/or perceiving disjunctions. It is often directed with negative effect towards figures and structures of authority, and is sometimes an integral part of a world-view. Students will engage closely with a variety of texts of\ndifferent types, including poems, tracts, short stories, speeches, plays, sketches, songs and pictures. In doing so, they will reach a better understanding of the roles irony can play not only in literature, but also in society more generally. Since the texts are drawn from different historical times, media and geographical locations, students will get a sense of the widespread use of irony in culture and society.", + "title": "Understanding Irony", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULT2299A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Where does meaning come from? Some people think that it resides in the text; some suggest that it originates from the author; others argue that meaning is created by the reader. This module examines the possibilities and problems of the last answer. To what extent does the reader of a text determine its meaning? Is there a universal, objective reader, or are readers historically specific, biased and always \"subjects\"? If a reader constructs the text, can the text in turn construct the reader? We will think about these questions by operating on several levels: (1) by discussing literature and films that thematise reading; (2) by assessing how thinkers have debated the reader's role; and (3) by examining our own processes of reading.", + "title": "Topics in Lit. 2: The Subject of Reading", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULT2299C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Whereas the goal of many literacy studies is to determine who is literate or what counts as literacy, the goal of this module is to examine the political, economic, and social assumptions, factors, and effects of the distinction\nbetween literacy and illiteracy. Although such a study could take place within any national context, this module will focus on Singapore as a location for taking up this issue. Organized around the literacy narratives and histories of \nUSP students older generations of Singaporeans, and people from other cultures and nations, this module explores the impact of the distinction between those who are literate and those who are not on Singaporean identity,\nhistory, politics, and ethics.", + "title": "The Politics of Language and Literacy in Singapore", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULT2299D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A standard way of thinking about arguments privileges reasoning over other modes of persuasion. In other words, good arguments persuade by only relying on logic. They avoid an overreliance on excessive emotional language or on a speaker\u2019s expertise. This module challenges these understandings of argumentation and demonstrates that logic must be considered in its relation with emotions and \nethics for arguments to be persuasive. Students will begin with the Aristotelian tradition and read contemporary treatments of the issues. Further, students will put rhetorical theory into practice by constructing logical, affective, and ethical arguments.", + "title": "Appealing Arguments: Logos, Pathos, and Ethos", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULT2299E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What are the possibilities and problems of \u201cclose reading\u201d? Close reading has long been a foundational tool in, and beyond, literary studies. By looking at its formalist manifestations and political uses, this module first explores what close reading is. We then discuss recent critiques, which has led to alternatives such as: distant reading; reparative reading; surface reading; thin description; just reading; and too-close reading. In so doing, the module raises bigger questions about the \u201cproper function\u201d of analysis. Should it expose and uncover, or \u201cmerely\u201d describe? To make small claims (about a literary work), or large ones (e.g., about society)?", + "title": "Close Reading and Its Vicissitudes", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULT2299F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the modern history of Southeast Asia through the reading of novels and short stories set or composed in the region. It adopts an interdisciplinary approach, with students exploring particular historical periods and topics such as race and ethnicity, gender, conflict, and work and labour. To do so, they will be introduced to different approaches in literary theory, such as New Historicism and Postcolonialism, in order to understand and interpret the historical context in which fiction is written. Ultimately, students will evaluate the advantages and difficulties of using fiction as a means to understand the past.", + "title": "The Modern History of Southeast Asia through Fiction", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ULT2299G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As an inquiry-tier module, students will be brought through a general framework for thinking about these issues lensed from philosophy mathematics and physics. Specifically,\n- The philosophical strand will expose students to some of the early conceptions of space, time and matter. Principally ideas of Descartes and Leibniz with emphasis on Kant\u2019s concept of space and time. The mathematization of science in the 17th Century - from Descartes use of coordinate geometry to Galileo\u2019s Principle of Inertia and the mathematics of motion will serve to showcase how the early concepts took shape.\n- The mathematical strand will serve to showcase how Euclid\u2019s axiomatic approach to geometry formed the basis of subsequent generalizations that led to the characterization of space and time. Here students will be introduced to structures such as topological spaces, manifolds and Riemannian spaces that form the basis of the space-time fabric.\n- The physical strand will touch on the notion of physical symmetries and its relation to geometry. In particular, Galilean and Special relativity will serve to elucidate how the motion of particles in the space-time fabric reveals its geometrical structure. This will culminate in Einstein\u2019s Equivalence Principle and its implications leading up to the General theory of Relativity.\n\nThe aim here is to provide a coherent exposition of how the three disciplines come together in providing insights into the nature of space, time and matter. The questions raised will force students to examine and reflect on the extent to which our commonsensical views of the physical space accurately describes the way nature really is; and to what degree this view is tenable on the basis of detailed quantitative reasons and empirical evidence. Hopefully, through this analysis, students will appreciate the subtle interplay between the realm of ideas and mental constructs and that of experiments and scientific facts.", + "title": "Space, Time & Matter: The Shape and Size of the Cosmos", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UNL2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "L2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "L1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "L1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "L2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Although diverse in scale and nature, the dynamics of tsunamis, the formation and breaking of chemical bonds, the development of stripes on a zebra, the transmission of nerve impulses, and the precession of binary pulsars are natural phenomena that can be described and understood in terms of waves. We will discuss the nature of waves by starting with the idea that a wave is simply a disturbance that propagates in a medium via the interaction of its parts. Using the above and other phenomena, we examine what we can learn about matter from the various kinds of waves. We will also trace the important steps in scientific thinking that has taken the idea of a wave from a mere description of empirical observations to the abstract but powerfully predictive concept of a quantum wave.", + "title": "Waves in Nature", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UNL2205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module seeks to explore the importance of various key ideas in the history of physics by considering a selection of examples each semester as a means of examining the whys and hows of certain scientific revolutions. The theme underlying the choice of topics to be covered will be to explore the evolutionary aspect of scientific understanding which finds inter-connections (often, only much later, sometimes even centuries later) between seemingly unrelated ideas. The student should take away from this module a sense of the revolutionary nature and scientific importance of the ideas explored that semester, as well as the deep inter-connections which science establishes - 'Nature's Threads' as it were.", + "title": "Nature's Threads", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UNL2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the evolution of our present theoretical understanding of some basic aspects of the physical world around us. It explores the role of certain\nprimitive concepts of science and how these key ideas have been used to construct a coherent \u2018mental\u2019 picture of the physical world. The particular focus this semester will be on a wellestablished and \u2018deterministic\u2019 law of nature: the Law of Universal Gravity and how this led to Newton\u2019s prediction of the motion of the planets.\nThe module will also question, on a higher level, the nature of \u2018scientific explanations\u2019: how these are extended over time and inevitably get modified by having to take into account new \u2018facts\u2019 provided by observation and experiment.", + "title": "The Nature of Natural Law", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UNL2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How is it possible that only a small number of genes can code for the shape of a tree? Or more generally, where does the complex behaviour so common in the natural world come from? Indeed, how is it conceivable that trillions of neurons create intelligent behaviour? A key to answer these questions lies in interaction and recursion. In this module, the world of complex systems and their fundamental mechanisms are explored through lectures, seminars and hands-on programming. It will be shown how in many cases complex systems can be modelled with recursive processes leading to emergent phenomena that defy an atomic explanation.", + "title": "Complexity and Recursion", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UNL2208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Can physics allow us to know the reality of nature or does it merely tell us how nature appears? Or for that matter, what are the limits of knowledge in physics, constrained as it is to giving responsible proof for the claims it makes?\nThis module explores some of the developments of quantum physics and how they bear on the philosophical notions of reality and appearances. The enquiry here will consist of an in-depth examination of the theoretical and experimental observations that claim to elucidate the notion of realism. Students will be taken through a journey that showcases the developments that have shaped our\ncurrent views on the topic.", + "title": "Quantum Reality and Appearance", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UNL2209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is the nature of Reality and how can we be sure about what we know? Do mathematical constructs such as symmetry groups and infinity point beyond themselves to a higher reality? How do we account for the fact that mathematics is so effective in describing nature? Is it mere language or is it the reality itself? This module explores the intimate link between reality and mathematics and how the latter has been unreasonably effective in providing a description of nature. Students will be taken through a journey that showcases the developments that have shaped our current views on the topic.", + "title": "Mathematics and Reality", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UNL2210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main goal of course is to describe chemical technology as one of foundations of our global economy. In this course a variety of chemical technologies (i.e., products, processes and reactors) will be presented. The trans-disciplinary aspects of chemical technology will be stressed, especially since chemical technology is based on fundamental laws and approaches taken from math and physical sciences. The responsibility of the chemical engineer for the global and regional environment will be explained.", + "title": "Chemicals And Us", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPC2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Nanotechnology is a relatively new field, and there is still controversy over its future potential. This module aims to acquaint students with the current topics in nanoscience, while engaging them in a dialogue on future possibilities, as well as the social and environmental implications of nanotechnology. Students will first be introduced to fundamentals of the nanoscale and learn to appreciate what the world is like when things are shrunk to this scale. They will then explore the special tools and fabrication methods required and have some hands-on experience with nano-instrumentation in a group project.", + "title": "Nanoscale Science And Technology", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPC2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Can we learn how man-made technologies work by taking a deeper, more quantitative look at how living organisms function? The nature of physical law imposes unique\nconstraints on the evolution and functioning of living organisms \u2013 the same constraints (and opportunities) we encounter when inventing technologies. This module will investigate how living organisms of all shapes and sizes have evolved creative solutions around natural constraints, and indeed turned these into opportunities for amazing feats of \u2018natural\u2019 engineering. To do this, students will learn important engineering fundamentals such as fluid mechanics and chemical and heat transport. The overall goals are to assemble a conceptual toolkit to analyse physical and chemical technologies, and to also highlight how nature can inspire new man-made technologies.", + "title": "The Technology of Life - Machines That Go Squish", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPC2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does an understanding of molecular interactions help us to make sense of everyday chemical phenomena to important chemical technologies? For example why are plastics non-biodegradable? Why and how an LED lights up or gets quenched, or one drug molecule works while another results in side effects? These are important outcomes resulting directly or indirectly from initial intermolecular forces. Environmental issues such as differentiation between\nbiodegradable and \u201cunfriendly\u201d materials can also be discussed. Stereochemical or 3D-controlled intermolecular forces allow an understanding of many chemical processes in biological systems.", + "title": "Molecular Courtship", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPC2208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Clean air and water are crucial for public health and to ensure a safe supply of drinking water. Pollution to our air and water can pose health risks and increase treatment costs. This module explores topics related to environmental pollution that threatens clean air and water. What are the main air and water pollutants? From what sources do they come? How do these contaminants get transported? How do we monitor and keep tabs on the quality of the environment? Relevant examples from Singapore and other countries will be used to demonstrate concepts taught in class.", + "title": "Pollution Control Engineering in Singapore", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPC2209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Energy permeates all aspects of our everyday lives, yet the goal of ensuring secure, affordable, and sustainable energy for all remains a major global challenge. Significant technological progress has been made towards achieving this goal. However, implemementation of new technology can prove difficult for various reasons such as lack of suitable sites and strong public opposition. In this module, we shall explore key energy technology, and discuss the challenges facing their widespread adoption. We will also talk about the energy situation in Singapore, and highlight the challenges and opportunities in the local context.", + "title": "Energy in Singapore: Is Technology the Answer?", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPC2210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "People was once benefited from the method of science and the idea of determinism to gain knowledge about our material world. However, it is still debatable whether or not science and determinism were sufficient to understand the whole material world. Through reviewing our understanding of the origins of the Universe, Earth, Life, Mankind and Civilisation, the module helps us to reflect our understanding of the material world along the historical timeline and we would analyse the role of determinism in our perception of the material world.", + "title": "Re-examining the Deterministic World of Matter", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPC2211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores and scrutinizes the current energy and environmental problems the world is facing, by critically evaluating the main causes and finding ways to alleviate and solve them. Key topics include energy conservation, alternative or renewable energy, climate change, carbon footprint, decarbonization, pollution, forestation/reforestation and science-based policy making. Students will be poised to make a difference not just through their awareness but by translating their knowledge into concrete action.", + "title": "Solving Energy and Environmental Problems", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPC2212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The environmental crisis, manifested in air and water pollution, environmental degradation, the rate of extinction of animal and plant species, and the depletion of natural resources, has many different aspects, the most important being, arguably, the philosophical aspect. In this module, students will be introduced to the philosophical debate about environmental issues. The objective is to equip students with concepts and theories that will help them think about the environment at the fundamental level. Major topics include anthropocentrism and non-anthropocentrism, bio-centred ethics, deep ecology, eco-feminism and environmental virtues.", + "title": "Ethics And The Environment", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPI2205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creativity seems to be an overused and vague buzzword, though only few would deny its fundamental role in an economic system which relies on innovations as a driving force. So what actually is creative thinking, can we foster it or is it just a matter of inspiration? We will analyze different forms of creativity with examples from history, research, technology and the arts. Then we will practice creative thinking and explore strategies how to manage innovative teams. To show that creative strategic thinking plays a role in various domains of society we turn towards negotiation and deal-making.We conclude with ideas how to communicate new ideas best and a discussion on creative leadership.", + "title": "Creative Thinking", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPI2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the intersections between ethics (the study of what is right and wrong) and aesthetics (the study of beauty and taste) in light of two questions: (1) whether the appreciation of artworks makes us morally better persons, and (2) whether a moral defect make an artwork less beautiful. Students will study both historical and contemporary philosophical debates on these two issues, and make use of examples of representational art \u2013 i.e., artworks which depict an object, event or mental state \u2013 to explore their own positions. Examples of representational art examined include: novels, paintings, films, photographs, and museum exhibits.", + "title": "Ethics and Aesthetics: The Moral Value of Representational Art", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPI2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How have artists, philosophers, and writers of fiction imagined the relation between humans and animals? Have they imagined humans as a species of animal, or as belonging to a realm of being that exceeds the lives of animals? What, if anything,\ndistinguishes us from animals: language, clothing, reason, or something else? In this course we will examine some of the ways these questions have been explored in art, advertising, philosophy, and literature. Students will consider how we look at\nanimals, read the views of influential philosophers, and immerse themselves in literary texts that imagine animals. The course will conclude with an examination of a provocative text by the novelist J. M. Coetzee, who stages a confrontation between philosophy and literature on the question of imagining animals.", + "title": "Imagining Animals", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPI2208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Making money is a widely accepted goal for many in various societies. This module focuses on what does it actually mean to make money, what are values in general and how can individuals, such as entrepreneurs create them in particular. Studying the close intertwinedness of economic and cultural values will lead, perhaps surprisingly, to philosophical reflections upon the meaning of life and what could constitute \u201chappiness\u201d. While acquiring some practical business skills students, draw the connection between what has been called rhetorics in the humanities and marketing, sales and negotiation in business studies. A discussion on the potential of \u201ctransformative entrepreneurship\u201d for societies will round up the semester.", + "title": "Creation of Value", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPI2209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Before technology created augmented reality, the ancient practice of \u201cmemory palaces\u201d combined mental visualization with material environments. Over 2,000 years, this practice split along different paths: (1) an analytical tool and (2) a technique for memorizing large chunks of information.\n\nThe memory palace is method people used for memorizing, organizing, and recalling large amounts of information before there were computers. In this course, students will learn and draw from rhetorical theories of memory to analyse communication. Simultaneously, they will use the memory palace to train for a mini-memory championship, held in the last two weeks of the module.", + "title": "Arts of Memory: Public Recollection & Memory Training", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPI2210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From the ancient world to the present day, philosophers, novelists, and social thinkers have attempted to envision ideal states. Utopian texts often present us with provocative thought experiments, addressing fundamental questions about justice, leadership, and human flourishing. In this module, we will critically examine representations of ideal states ranging from Plato's Republic to contemporary visions about smart cities. We will focus in particular on the roles of governance, labor, and technology in the construction of utopian projects and discuss whether the utopian imagination is still relevant in the present day.", + "title": "Utopia: Ideal Places from Plato to the Smart City", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPI2211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will study technologies of the self, practices that individuals adopt in order to transform themselves in light of their ideals. We will look at the origins of this concept in the study of ancient Greek and Roman philosophy and discuss texts drawn from Western and Eastern traditions that recommend particular practices of self-transformation. Throughout the module, we will also consider whether ancient technologies of the self are still relevant today and to what extent contemporary selfimprovement approaches and forms of digital selffashioning are modern examples of technologies of the self or a qualitatively different phenomenon.", + "title": "Technologies of the Self: from Socrates to Self-Help", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPI2212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The rule of Britain, France and the Netherlands in the 18th-20th centuries have left behind a conflicting legacy in different parts of Asia. On the one hand, they destroyed\u2014even if only partially\u2014the cultural traditions as well as socio-economic infrastructure of their colonies. On the other, they established political, economic, social and cultural institutions that colonialized subjects have to different degrees benefitted from till this day. This module will examine how this conflicting legacy came about, so that students will be more analytically equipped in making sense of it.", + "title": "Making Sense of Colonial Ideology and Its Legacies", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPI2213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is \u201cthe mind\u201d and where does it fit in the interdependent histories of nature and culture on our planet? Does \u201cmind\u201d reduce to brain activity \u2013 or is it more than just the electro-chemical exchange between neurons? As minded creatures with brains ourselves, the ways in which we delimit the mind/brain relation has enormous consequences for the ongoing construction of our legal, social, medical and ethical lives. In this module, we will study some of the major approaches to this issue, and attempt to discover what it is that we are really talking about when we are talking about \u201cmind.\u201d", + "title": "Multidisciplinary Inquiries Into the Mystery of \u201cMinds\u201d", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UPI2214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and indeed moves beyond what might be gained through a qualitative approach. While the most important element of the class will be a hands-on quantitative exploration of the problem in question, students will conclude by considering the limits of quantitative analysis in the chosen case.", + "title": "Quantitative Reasoning Foundation: Epidemics", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQF2101A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of one important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach.\n\nIn this particular iteration of the module, we will learn to make appropriate measurements to quantify the ecofootprint arising out of our current personal lifestyle\nchoices, conduct systematic thought/real experiments to explore improvement opportunities, and propose a modelbased sustainable alternative for ourselves, our families or communities such as the USP Residential College.", + "title": "Quantitative Reasoning Foundation: Quantifying Our Eco-Footprint", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQF2101E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of one important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can\nprovide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach.\n\nIn this module, we will learn quantitative tools to understand and to quantify risks encountered in daily life; to compare and to weigh the consequences of these risks\nfor a more insightful decision-making. We will examine the underlying limitations of these tools.", + "title": "Quantitative Reasoning Foundation: Calculating Risks", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQF2101F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can \nprovide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach. \n\nThis module focuses on quantifying aspects of nuclear risks. Students will pose a question related to nuclear risks (e.g. What is the lowest dose of radiation that can lead to cancer?), propose a method to measure the relevant variables, collect the necessary data, and make scientifically justifiable inferences from it. Students will thus perform all aspects of a genuine scientific study, from problem formulation to decision making and final reporting.", + "title": "Quantitative Reasoning Foundation: Quantifying Nuclear Risks", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQF2101G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can \nprovide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach. \n\nThis module focuses on interstate war, and how its likelihood is affected by countries\u2019 regime types. Does democracy cause peace between states? Known as the \u201cdemocratic peace theory,\u201d this hypothesis will be investigated by students using quantitative analyses. They will survey extant research and build empirical models to test the proposition.", + "title": "Quantitative Reasoning Foundation: War and Democracy", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQF2101H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach.\n\nThis module looks at environmental quality and human health. Students will learn how environmental quality is measured, air and water quality parameters, and health effects of pollution. They will apply quantitative analyses in understanding our environment and its link to our wellbeing.", + "title": "Quantitative Reasoning Foundation: Quantifying Environmental Quality", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQF2101I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach. What factors contribute to positive life outcomes? Is successful living predicated simply by demographics or do social attitudes lead to a happy life? Are these two factors linked? We explore 40 years of data to answer questions surrounding the relationship between demographics, attitude, and the quality of life of individuals.", + "title": "Quantitative Reasoning Foundation: Pursuit of Happiness", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQF2101J", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "UTSRC-SR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This topic-based module develops quantitative reasoning skills through a structured analysis of an important but accessible problem, imparting to students the appreciation that, for many questions/issues, a quantitative analysis can provide the insight and clarity that complements and moves beyond what might be gained through a qualitative approach. \n \nThis module uses the searching of romantic relationship as an example to demonstrate the usefulness of quantitative reasoning. Students will learn to use survey and data analysis to validate some claims about dating, and to investigate dating strategies from mathematical modelling. The cross-discipline potential of quantitative methods will be reviewed.", + "title": "Quantitative Reasoning Foundation: In Search of Soulmate", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQF2101K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to sharpen students\u2019 analytical minds, and to develop skills for decision making such as might be useful in management consulting. Students will appreciate the general decision framework and be familiar with some decision models in this quick and challenging course.\n \nThe focus will be on data-analytic and microeconomic approaches to decision making, with as little use of formulas as practicable. Rather, grasping of broad concepts, extension of intuition and, where appropriate, use of information technology to arrive at decisions, will be emphasized.", + "title": "Decision Analytics", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQR2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module discusses on the implications of \u201ctime\u201d for quantitative analyses. What is \u201ctime\u201d? How is it important for understanding certain phenomena? How might its passage, in and of itself, be of interest? What econometric models are appropriate for quantitatively testing timerelated hypotheses? \n\nStudents will explore these questions using political science as a thematic topic. They will first read substantive material, regarding the importance of time for understanding the processes that produce politics-related phenomena. Students will then learn more advanced quantitative modelling strategies that can accommodate the implications of \u201ctime,\u201d allowing students to correctly test time-related hypotheses (e.g., survival analysis).", + "title": "Passing Time: Processes, Temporality, and Econometrics", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQR2211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Linguistics is the scientific study of language. Linguists study the range of possible human languages, how languages differ, and what they have in common, and formulate explicit and consistent theories of linguistic structures and relations. The data of linguistics are all around us, on every written page and in every conversational interaction. How do linguists who are interested in the grammar of languages collect and analyse linguistic data, and how do linguists use these data to build theories of human language? This module focuses on the theory of grammar, and examines the broader goals of linguistics and the methodology of grammatical theory by means of hands-on exploration of these processes.", + "title": "How Linguists Work", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQR2212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on matters that are truly linguistic. After separating linguistic problems from ones that should be studied in other fields, the course introduces students to genuinely scientific study of human language. More specifically, by (critically) reading Radford 2009, the course provides a concise and clear introduction to current work in syntactic theory, drawing on the key concepts of\nChomsky\u2019s Minimalist Program. By looking at data mainly from English, it will also introduce students to quite a few linguistic mysteries.", + "title": "Generative Syntax", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQR2214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Indicators are measured concepts that monitor development and track progress. Indicator reports are an indispensable element in the information system of a democratic society, providing government, researchers, business and the public with data driven evidence to inform policy, research and debate. Developing innovative indicators to monitor the progress of difficult to measure concepts (i.e. sustainability, cultural wellbeing, community cohesion), using novel techniques of data collection and analysis (experience sampling, social media, IoT monitoring), are necessities for a society to thrive in an increasingly complex world.", + "title": "Developing Meaningful Indicators", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQR2215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-SR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A tools-and-soft-skills module introducing Python machine learning, with hands-on modelling via pre-programmed templates. Students will be gently ushered into the artificial intelligence landscape, so that they might henceforth\u2014as an insider\u2014keep abreast with the ecosystem\u2019s constant reshaping.\n\nBroad appreciation of introduced models from a decision-maker\u2019s perspective will be emphasized, without deep dive into program coding. Students will learn to communicate responsively and congenially with senior management and technical colleagues alike.\n\nWe will equip students to thoughtfully follow the accelerating analytics transformations within modern organizations. Students may then deservedly take a seat with enlightened movers and shakers digitizing future workplaces.", + "title": "Thoughtful Learning with Machines", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UQR2216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project, and involves the application of subject knowledge, methodology and theory in reflection upon the research project.\nUROPs may be with USP faculty, joint appointees, or other NUS faculty and, exceptionally, with other USP partners. All are vetted and approved by the USP, and are assessed. UROPs are proposed by a supervisor, and require the\napproval of the USP.", + "title": "USP Undergraduate Research Opportunity", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "URM3301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and usually in a team, on an existing research project, and involves the application of subject knowledge,\nmethodology and theory in reflection upon the research project.\n\nUROPs may be with USP faculty, joint appointees, or other NUS faculty and, exceptionally, with other USP partners. All are vetted and approved by the USP, and are assessed.\n\nUROPs are proposed by a supervisor, and require the approval of the USP.", + "title": "USP Undergraduate Research Opportunity (S&T-based UROP)", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "URM3302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Growing up with social media, cinema, the Internet, and more, you have had the globe at your fingertips. But have you probed effects of this accessibility on your ability to act as an independent, adaptable thinker and doer? Have visualist media encouraged you to act as a spectator, only, rather than as a curious (maybe courageous) world citizen when you study abroad, travel, consider foreign-labor or migrancy issues, or seek employment? This module explores integrity, openness and expressivity through one strand of identity, Asian-Pacificness.", + "title": "Globalizing Asian-Pacific Identities", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course serves as an introduction to history in general and the history of modern Singapore in particular. It adopts a wide-angled approach to an understanding of national heritage, history and identity, with due attention to both international and internal developments which have together shaped present-day Singapore. These developments include the formation of a colonial plural society under British rule, the impact of the Japanese Occupation, the rise of nationalism and political contestation, statehood, merger with and separation from Malaysia, the politics and economics of survival, and the governance of an independent city-state.", + "title": "Singapore: The Making Of A Nation", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2304", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Thursday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Friday", + "lessonType": "Lecture", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the aftermath of colonialism, a host of decolonizing experiences produced different successor regimes - from democratic to semi-authoritarian to communist. This module focuses on the geographical basis, historical background, and contemporary birthing of regionalism, amidst such diversity. It aims to introduce students to the political, strategic and economic aspects of regional cooperation, particularly through ASEAN. It also encourages them to consider the cumulative impact of such cooperation on the formation of a Southeast Asian regional identity, and the prospect of an indigenous collective political imagination bridging the diverse communities.", + "title": "Southeast Asia: The Making Of A Region", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Focusing upon disasters and responses, this module interrogates the core issues underlying humanitarian interventions and development programs. This\nincludes consideration of environmental and social vulnerabilities, resilience, local capacities, the roles of beneficiaries, governments and NGOs, aid governance, and accountability.\n\nThe module draws upon literature from a wide range of disciplines to contextualize the diversity of theoretical and practical approaches involved in complex humanitarian emergencies. The module utilizes extensive problem-based learning in which students engage with real world scenarios. The module is aimed for students interested in the inner workings of government, NGO and beneficiary interaction in humanitarian and development situations.", + "title": "Disasters and Responses", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores and examines the dynamics between politics and new media in various realms. Earlier scholarship focused on politicians, parties and their electorate. However, with the increasing ubiquity of Internet technologies and user-generated content, political actors soon took on myriad dimensions and forms.\n\nStudents will acquire knowledge of foundational communication and political participation theories, as well as critically examine the relationship between media and political processes. The module also inculcates insights and knowledge on how media and politics play out in various arenas, such as political parties and campaigning, civil society organizations and grassroots movements.", + "title": "New Media and Politics", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2308", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the ways in which seemingly nonpolitical everyday practices bear, or can come to have, ethical and political significance. We will look at philosophers and political theorists concerned with the ordinary activities of Speaking, Eating, Thinking and Walking, and how such activities reveal or inform, among other things, our concepts of responsibility, the human and the animal, the moral and political necessity of selfreflection, and the interactions between the individual and the natural and built environment. Thinkers to be read include Arendt, Austin, Benjamin, Cavell, Diamond, Singer, Thoreau, Rousseau and others.", + "title": "Ordinary Politics", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2309", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the tension between \u2018need\u2019 to \u2018develop\u2019 and imperatives of conserving natural resources in the backdrop of enormous socio-economic and environmental challenges we face today. Sustainable development (SD) emerged as a response to confront these challenges; whether it has served its purpose or not\nremains debatable. Different scientific, technological, economic and political instruments encompassing sustainable development (SD) will be critically evaluated.\nThe criticality of natural resources and their consumption patterns will be presented to the students. The need to engage local communities in new ways in social\nconstruction of SD would be discussed.", + "title": "Questioning Sustainable Development", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the intersections between archival materials, historical memory, and the writing of biography. It takes as a subject an archive in Singapore which has not been extensively used. Students will not only do practical work in terms of archival cataloguing and notation, but they will also study theoretical work on archives and biography, and critically examine biographical work in different media, before producing biographical work of their own. This module fulfils the Singapore Studies requirement.", + "title": "Archives, Biography, Memory in Singapore", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What makes diverse people a nation? Though no single answer covers all nations or nationalisms, analysts agree that modern nations are less a natural formation than a construction in need of constant upkeep. Art can and does play a role here. This module introduces several theories of nationalism and of art on the understanding that these discourses do not mesh easily. This module fosters probing interdisciplinary comprehension of potential intersections between nation-building and paintings, music, photography, poems and a great deal more.", + "title": "Nationalism and the Arts", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does law affect people and society? How do people and society influence law? Can law bring about social change? In what ways? This course approaches the study\nof law as a social institution, and examines law, legal actors, and legal institutions from various perspectives such as sociology, psychology, political science, and legal\nscholarship. We will discuss theoretical perspectives on the relationship between law and society, the relationship between law and social behaviour, law in action in various social contexts, the role of law in social change, and the roles of lawyers, judges, and juries.", + "title": "Understanding Law and Social Change", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Emotions, it is often said, has no place in politics. Where the former is thought to be primal and unruly, the latter is regarded as the realm of reason, of pragmatic and thoughtful deliberations. But how accurate is such a view?\nDon\u2019t emotions typically accompany our political judgments and actions? Might they perhaps condition such responses, priming them and orienting us towards certain political attitudes and dispositions? Organized around five\nemotions\u2014fear, disgust, grief, compassion, and hope\u2014 this module explores how emotions circulate within political life, how they emerge and are deployed for the mobilization of identities, sovereign legitimacy, ethical responsibility, and resistance.", + "title": "Politics and Emotion", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2314", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia is widely regarded as a model for economic development due to its advances in alleviating poverty, improving infrastructure, and fostering education \nand healthcare. But economic success often overshadows critical social problems that arise in tandem with such rapid development. This module, offered only in special summer sessions, takes a hands-on approach to examining critical issues in social development, in particular those revolving around local empowerment, democratization, and sustainability. Working within a framework of participatory action research, and collaborating with peers at another ASEAN university, this rigorous course includes substantial fieldwork conducted among development projects outside \nof Singapore.", + "title": "Participatory Social Development in Southeast Asia", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2315", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines social and political satire across a broad range of historical eras and cultural settings. Our approach is historical and ethnographic, and rests on the idea that there exist various traditions of satire, each deeply embedded in social and political contexts. Rather than treating satire as mere commentary upon culture and politics, we examine it as a particular form of social practice that can shape politics and culture. We explore throughout the question of whether satires can in fact be viewed as unique historical and cultural documents that reveal certain dynamics and truths that more \u201cserious\u201d documentation cannot.", + "title": "Satires and (Un)Serious Histories", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2316", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Multiculturalism is a foundational pillar and defining feature in Singapore\u2019s history and society. At once celebrated and contested, Singapore\u2019s multiculturalism is imbued with various themes and meanings, and poses many important issues and challenges central to personal, group and national cultural identities as well as to political, economic and social life. How did it come to be a core principle in nation-building? What are state imperatives and social processes and state imperatives in its historical making and constant remaking? Why are race, language and religion its core constitutive elements and how have their saliency evolved over time? What are its main controversial features and areas of tensions, and how do these affect identities, social relations between individuals, groups and communities, and impact social cohesion, citizenship and belonging? How is it further impacted by massive immigration? Is its present official form still valid in light of immigration, changing demographics and competing claims of rights and responsibilities? What does multiculturalism mean in citizens\u2019 memories of the past, experiences in their present everyday lives, and imaginings of the future? This module explores and discusses these central questions and significant dimensions, issues and problems in Singapore\u2019s contested multiculturalism through a combination of lectures, seminars, on-site learning, research projects, class presentations and personal reflections. It also has a strong research component in which students discover and understand multiculturalism through research on selected topics using a variety of research methods, and relate their research and other observations to readings drawn from various disciplines of anthropology, sociology, history, economics, geography, heritage studies and memory studies.", + "title": "Multiculturalism in Singapore and Its Contested Meanings", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2317", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The question of managing ethnocultural diversity\u2014i.e. of how to reconcile particular ethnic and cultural claims with the broader demands of national cohesion and citizenship\u2014is a challenging and pressing issue faced by all multiethnic states and met with a variety of responses that draw from different intellectual traditions. For Singapore, this question has been a key feature of its nation-building process since 1965 and its response has been the cultivation of an ostensibly \u2018Asian\u2019 multiculturalism styled in contradistinction to \u2018Western\u2019 liberal models. \n\nThis module examines and evaluates the conceptual framework of the Singaporean model of multiculturalism. It does so by positioning it in relation to other existing theories of ethnocultural identity and rights. In so doing, it asks: \n1. What are the theoretical and normative underpinnings of the Singaporean model? \n2. How does it stand up against the liberal-democratic model? \n3. What might be its differences between both the \u2018Western\u2019 communitarian and \u2018Confucian\u2019 communitarian models of multiculturalism? \n4. Does it adequately account for the complexities of identity? \n5. Can, given a changing ethnic and cultural demography, the Singaporean model survive?", + "title": "Managing Cultural Difference:Theorizing the S\u2019pore Model", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2318", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides theoretical understanding and empirical knowledge about social movements and their relationship with law and society. How does collective mobilization emerge? We begin with this question and then\nturn to the different approaches of analyzing social movements. We will also consider how states and other movement opponents suppress and control social movements, and how movements respond to repression, and deploy, even spread, their ideas, strategies, and tactics within and across movements, as well as across national borders. In examining these issues, we will use\ncase studies, and discuss the role of law, including how it matters to the social control of social movements, movement strategies, tactics, and decision-making, and movement effects.", + "title": "Social Movements, Law, and Society", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2319", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "War crimes trials are commonly used to address mass violence and facilitate political transition. This course examines the potential and limits of war crimes trials as transitional mechanisms, comparing them with non-legal complements and alternatives. What transitional objectives do these trials seek to achieve and how do these trials contribute to a society\u2019s political transition? Given the many pressing and conflicting needs of post-war societies or societies in transition, should the organisation of such trials be prioritised? What are possible alternative transitional measures? What role should the law play, if at all? Using Singapore\u2019s Second World War experience as a central case study, this module will explore the challenges faced by societies undergoing political transition and the different legal and non-legal measures adopted.", + "title": "Transitional Justice and War Crimes Trials: Case Studies from Singapore and Asia", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2320", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Everyone hears advice that the unexamined life is not worth living. Yet how often do we examine lives across print, visuals, sound, and more? How often, moreover, do we consider lives that are not human? Students in this integrative module explore lives human and non-human, including their own, marshalling varied media and analytical modes.\nThe first lives that we examine are in the form of science writing about non-human lives. Next, we move to human lives, real and imagined. This module puts local (and \u2018glocal\u2019) spin on expressive and critical narration to strengthen critical and communication skills.", + "title": "Examining Local Lives", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module charts the roles of Lee Kuan Yew, S Rajaratnam and Goh Keng Swee in shaping the foreign policy of Singapore from 1965. Key Singapore policymakers and diplomats such as Tommy Koh, Kishore Mahbubani & Bilahari Kausikan acknowledge that in particular the longevity of Lee\u2019s tenure and his strategic philosophy structures Singapore\u2019s actions internationally. This module examines the impact of the leadership\u2019s ideological assumptions on how Singapore navigates its relations with 3 major areas, ASEAN, the US and the regional powers, China and India and adapts to the current inflection point in the international diplomacy of Indo-Pacific region.", + "title": "Situating Singapore in the Wider World", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is commonly known that technology and culture are intricately interconnected to each other, existing in a relationship that is mutually constitutive. Technology\nproduces culture as much as the other way around. But such a relationship is complex and controversial. Both technology and cultural producers are not often selfreflexive about how the relationship impacts on their work, and unaware of the resulting ethical dilemmas and politics. This module introduces students to critical concepts in culture and technology studies focusing on social and political change, transformations in the way we think about civilization, and the formation of identity.", + "title": "Culture and Technology", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Women around the world struggle with the various fallouts from climate crisis. This vulnerable demographic struggles to combat both real and ideological conditions connecting women and Nature. Cognizing this, the field of Ecological feminism [Ecofeminism] has grown rapidly in the past few decades.\n\nThis introductory module to ecofeminism will combine literary analysis, environmental humanities and feminism. It will extend students\u2019 knowledge of feminism and environmental issues relating to women. Fundamental to the study will be the literary analysis of texts taught in a scaffolded way. The module will examine literary texts by Asian women across South, East and Southeast Asia.", + "title": "Gender and Ecology in Asia", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2324", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TP-SR9", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Does social inequality matter? This module aims to examine different theories of the link between social equality and democracy, and related concerns pertaining to the value of social equality and the significance of equality of opportunity in a democratic society. These discussions will form the theoretical background for this module.\n\nIn the second half of the module, students will apply this theoretical framework to contemporary issues related to democracy, in the global and Singaporean context, as well as evaluate policy proposals aimed at mitigating social inequality, specifically Universal Basic Income.", + "title": "Democracy and Inequality", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USE2325", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR9CAM", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "ERC-SR10", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Nothing features more prominently among fundamental human activities than the production of food. In this module, we examine various modes of primary food production and the array of socioeconomic issues each entails, including subsistence agriculture, lowland rice farming, industrial food production, and emergent forms of organic produce by small- and medium-sized enterprises. Topics focus on how social dimensions of food production intersect with other areas of inquiry, including environmental sustainability and degradation, social mobility and marginalization, food security, public health, and globalization. This module includes an intensive fieldwork component in which students experience first hand different modes of food production.", + "title": "Food Production and Society in Southeast Asia", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "USP2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, students will examine how the people of democratic Athens expressed their power, identity, and civic values through literature, visual art, and public architecture. In class, we will discuss both primary texts and secondary literature that shed light on how 5th and 4th century BCE Athenians represented themselves and their society. In Athens, we will visit key sites closely associated with democracy, study works of arts and monuments that reflect or contest its civic ideology, and meet with students at the University of Athens to discuss the contemporary legacy of ancient Athenian democracy.", + "title": "Power, Identity, and Citizenship in Democratic Athens", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "USP2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Motion pictures of all types\u2014including cinema, television, advertising--pervade our everyday lives, shaping how we construe meaning and experience, yet we tend to know very little about how that meaning is constructed. The medium of motion pictures relies on a limited and identifiable set of concrete technologies-- lighting, angle, aspect ratio, sound, editing, mise en sce\u0300ne, etc.--that serve to manipulate temporality and spatiality and to thereby create meaning. This module leads students to examine the affordances and constraints of the medium of film for the making of meaning in motion pictures, with a focus on cinema.", + "title": "Medium and Meaning in Cinema", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "USP2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is \"gender\"? What kinds of definitions have been advanced or implied for this perplexing word? How have thinkers - in fields as diverse as anthropology, history, literature, philosophy, psychology, science studies, and sociology - helped to define and even invent this category that we call \"gender\"? How have these definitions changed the way we think? What kinds of problems have these definitions created? In this module, we will analyse various moments in intellectual history when there has been a struggle over the meaning of \"gender\" (and seemingly related terms like \"sex\" and \"sexuality\") in order to understand the term's function as a category of analysis.", + "title": "The Problematic Concept Of 'Gender'", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USP3501", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is becoming increasingly popular in Singapore to identify oneself as Asian, to consume products and services that appear Asian in origin, and perhaps even to think of the future of the global economy and culture to be centred in this part of the world. However, considering the fact that such an intense fascination with Asianism is of a more recent origin a number of important questions are raised. How has the state attempted to convey Asia as a natural and unproblematic an entity? How is knowledge about it influenced and conditioned by changing social, political, and economic forces? Why did Singapore at its earliest historical phase seek to dissociate itself with the region, only to openly embrace it a few decades later? This module, therefore, introduces students to critical ways of challenging and contesting what is understood by the term Asia. Is it a geographical region, a political and cultural construction, or transnationalized space? In particular it provides students the theoretical tools needed to grapple with these questions, introduces cultural texts that could be used in assessing the way Asia is represented, and gives students opportunities for fieldwork and other out of classroom activities.", + "title": "Asianism and Singapore", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USP3505", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module develops a nuanced understanding of multifaceted expressions of religiosity in the contemporary global context, appropriately grounded in a historical perspective. It explores various socio-cultural, political, economic and technological forces and processes that impact the manifold expressions and manifestations of religion in different societies, and vice-versa. Beginning with problematizing the category \u201creligion\u201d and tracing its emergence historically and contextually as an analytical domain, the material is organized to introduce the multiple, complex and sometimes opposing strands and arguments in many social science studies of religion. This multidisciplinary module emphasises both the empirical and the theoretical.", + "title": "Religious Issues in the Contemporary World", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USP3506", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From the \u2018Clean Hands\u201d campaign to the heightened use of biometrics, the body has become a crucial site for political action, decision, and judgment. As a result,\ncorporeal registers\u2014 facial expressions, phenotype, movement, affective expressions, etc.\u2014are now vital markers of difference, determining the degree to which one is recognized as \u2018friend\u2019 or \u2018enemy\u2019, \u2018suspect\u2019 or \u2018innocent\u2019, \u2018citizen\u2019 or \u2018foreigner\u2019. Organized around three prominently figured bodies\u2014the tortured body, the racialized body, and the veiled body\u2014in the post-9/11 global landscape and its current \u201cWar on Terror\u201d, this module examines the ways in which the body is situated and implicated in relations of power, sovereignty, identity, and violence.", + "title": "The Politics of the Body", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USP3508", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concept and practices of law are inseparable from the concepts and practices of force and/or violence. In this module we will investigate three questions. First, is there a difference between legitimate and illegitimate violence, and so, what is the difference and how is it explained? Secondly, what is the, and why is there an, internal relationship between law and violence? Finally, why do we punish? We will read texts from various thinkers, including Walter Benjamin, Bentham, Robert Cover, Derrida, Foucault, Kant, Locke, Nietzsche, Rousseau, A. John Simmons, Robert Paul Wolff and others.", + "title": "Law and Violence", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USP3509", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates three inter-connected questions: Can science prove that religion is irrational? When reason becomes so powerful that it dominates nature, what ethical problems will arise? Is reason or religious faith more suitable in providing a foundation for multiculturalism? These three questions, which are still much debated today, actually arose in the Age of Enlightenment, an 18th century\nintellectual movement so important that it shaped the modern West, and even, arguably, the East. We will examine representative Enlightenment treatises on these questions, and reflect on how beliefs and principles involved are still operative in our age.", + "title": "Reason, Secularization & Multiculturalism", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USP3510", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. The module will be taught by a multidisciplinary faculty of four and will examine a theme from several disciplinary perspectives. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USR4002A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. The module will be taught by a multidisciplinary faculty of four and will examine a theme from several disciplinary perspectives. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USR4002B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "USP-TR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. The module will be taught by a multidisciplinary faculty of four and will examine a theme from several disciplinary perspectives. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USR4002C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-GLRm1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. The module will be taught by a multidisciplinary faculty of four and will examine a theme from several disciplinary perspectives. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USR4002D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course prepares students for intellectual life beyond the university by modelling and asking students to engage in responsible reading, thinking, teaching, writing, and dialogue. The module will be taught by a multidisciplinary faculty of four and will examine a theme from several disciplinary perspectives. Students will be challenged to critically read and productively respond to assumptions, evidence, and methods from the sciences, social sciences, and humanities. This module builds upon and expands USP\u2019s goal of developing socially engaged thinkers, readers, and writers with the skills necessary to understand and intervene in debates concentrated in but relevant beyond specific disciplines and academia.", + "title": "Critical Reflection", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USR4002E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module serves the larger goals of the USP academic journey by treating students to a four-fold stroll through big ideas on human inquiry and the nature of the world, where four different instructors with different intellectual backgrounds will introduce you to, and help you reflect upon different modes of inquiry that constitute the modern knowledge enterprise. By introducing you to these ideas, we seek to leverage upon your existing curiosity in subjects that go beyond your specializations, and also to encourage you to seek out new things to learn, and to reflect upon what you learn.", + "title": "University Scholars Seminar", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "USS2105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Junior Seminar is a requirement for all first year students resident in the College. It also helps fulfil the General Education requirement. The seminar allows students to work closely with a Fellow, and in classes of no more than 15. It is organized around weekly discussions, outside research, writing essays, and making presentations. Besides being exposed to a particular cross\u2010disciplinary issue, students will be invited to exercise their curiosity, think critically, and develop their written and oral communications skills. Topics will vary with the instructor.", + "title": "Junior Seminar", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC1102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The scientific developments of the 19th century from geology to palaeontology, culminating in the theory of evolution by natural selection are arguably the greatest transformations in our understanding of the natural world in human history. Much of the science of the following century has been further refinements and elaborations of these earlier foundations. Yet most of these developments remain totally unknown or misunderstood by most people. Surely, therefore, an understanding of these issues is essential knowledge for any educated person today.", + "title": "Junior Seminar: The Darwinian Revolution", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1830", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this junior seminar, students will examine the significance of various kinds of false appearances such as counterfeits, forgeries, hoaxes, and liars, together with attempts to expose them \u2013 sometimes with the help of sophisticated technologies. By critically examining what it means to designate an object, practice or person as \u2018fake\u2019, and how different kinds of fakes are judged as more or less problematic, students will develop the capacity to think critically and relationally about deep-seated human desires for \u2018truth\u2019 and \u2018value\u2019.", + "title": "Junior Seminar: Fakes", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this junior seminar, students will explore the role of images in several key contexts, including painting, photography, science, mathematics, television, cinema and the internet. Students will develop habits of critical response by studying texts from philosophy, psychology, semiotics, and literature that deal directly with images and theories of the image. Students will learn to distinguish between kinds of image.and develop an understanding of the history of images, their influence on our lives and our interaction with them. Some attention will be given to special topics, such as the invention of the camera and the establishment of 19th century science.", + "title": "Junior Seminar: Images", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102D", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This freshman seminar will engage students in critical dialogue on the topic of social innovation. Drawing upon examples of innovation across various disciplines, students will examine sources of and processes that drive innovation, and reflect upon the organization and governance of innovation. Building on this knowledge, students will be challenged to think about how new technology, strategies, concepts, and ideas can be harnessed to solve social problems Substantial time will be devoted to understanding and debating issues pertaining to social innovation.", + "title": "Junior Seminar: Social Innovation", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module centres on three questions: What is leadership? How is leadership work configured? How do we know \u2018good\u2019 and \u2018bad\u2019 leadership when we experience it? The module will approach these questions through the lens of technology, configurations and \u2018different kinds of work\u2019, and through focusing on studies of leaders and leadership. Throughout, the module will consider leadership in the context of technology and science in Asia/Singapore. External speakers from related industries will provide perspectives on leadership.", + "title": "Junior Seminar: Leadership: Technology, Configuration, Work", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An essential part of an educated person is an independent desire to know the truth. In seeking the truth, one must often judge a proffered proof. This seminar will discuss the relationship between Truth and Proof in biology, ecology, history, justice, mathematics, medicine, philosophy, physics, religion, statistics, etc. This helps the student see both the hard, objective formulation of the two concepts in the sciences, as well as their soft, subjective abstraction in the humanities.", + "title": "Junior Seminar: Proof: What\u2019s Truth got to do with it?", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102G", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Made popular by TV dramas such as Law and Order and C.S.I., forensics uses science to aid in law enforcement and crime solving. In this interdisciplinary module, students will be engaged in understanding and discussing the value of various analyses conducted to deduce truth from evidence. Online activities will be paired with active discussions on the history, use and value of forensic analysis. Finally, the credibility of forensic evidence will be discussed, and societal expectations regarding the \u201cglamorous and exciting\u201d job of the forensic criminologist in CSI compared with the \u201cmessy and morbid\u201d nature of forensics in real life.", + "title": "Junior Seminar: C.S.I. 101: Truth from evidence", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From the earliest films in the late 19th century to contemporary Hollywood blockbusters, science and technology have long played a role in how the future has\nbeen envisioned. In this seminar students will study a range of popular science fiction films and examine how the futures portrayed in these films are a creative, ociocultural\nresponse to the techno\u2010scientific milieu of their production. Students will consider how film challenges us to re\u2010examine concepts of scientific progress and technological advancement by asking questions such as: what is monstrous about sci\u2010fi monsters, and what is biology in the age of the machine?", + "title": "Junior Seminar: The Bio\u2010tech Future: Sci\u2010Fi Film and Society", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to mural painting historically, theoretically and technically. Students will learn of murals from different cultures and periods to facilitate critical discussions on the roles of art, artists and aesthetics vis\u2010\u00e0\u2010vis notions of everyday life, public space and community. They will cultivate a\nstrong sense of observation and curiosity about their surroundings, reporting on murals from antiquity, and of Singapore or their home countries. They will also acquire skills in the technical aspects of mural painting, from conceptualising designs to painting a mural. Finally, this module provides students an unusual opportunity for building collaborative and community spirit as they paint their chosen mural together.", + "title": "Junior Seminar: Murals: Expressions from/on the Walls", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102P", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How do we know how green companies are? How do managers know? This module is about information and knowledge as social phenomena. Nature does not tell us how green companies are; the information that shows us \u2018green capitalism\u2019 as a solution and a reality is constructed by humans. This module is about how environmental managers know and do 'greening', and about the problems of such knowing and doing. The focus is not on engaging in green capitalism, but on engaging with it, critically. More broadly, you will pick up skills for dealing with uncertainty, uncommon ground and contradictions.", + "title": "Junior Seminar: Green Capitalism: A Critical Engagement", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Now, more than ever, we live, die and live on through Internet technologies such as Web sites, social networking platforms and gaming environments. But how does this \u2018living, dying and living on\u2019 through the Internet relate to our \u2018bodily living, dying and living on\u2019? Using different disciplinary perspectives, this module will dwell on two questions: (1) How do we make sense of life, death and after-death in the Internet era? (2) How can we respond, through new ways of thinking, practices, policy or design, to the new challenges and questions associated with life, death and after-death today?", + "title": "Living and Dying in the Internet Age", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Disasters are catastrophic breakdowns in the relations between nature, technology, and society. They reveal aspects of these relations not normally visible. In this Junior Seminar, we explore questions such as: what are disasters, what causes them, and how do we know when they begin or end? What kinds of knowledge count when communities prepare for disasters or make recovery plans? By examining the historical, environmental, and cultural contexts of specific catastrophes and their aftermaths, such as Fukushima or the 2004 Indian Ocean tsunami, we ponder what disasters can teach us about how to (re\u2010)construct more just, resilient and sustainable societies.", + "title": "Junior Seminar: Disasters", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102U", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This junior seminar explores the relationship between poetry and science spanning the Romantic to the late Modern periods, approximately the late eighteenth through the mid twentieth century. Students will investigate the history of science and poetry as mutually supportive. Emphasis will placed on the distinct ways poetic and scientific minds imagine, experience, and develop knowledge about the natural world and the human who inhabits it.", + "title": "Junior Seminar: Ways of Knowing: Poetry and Science", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1102V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The late Steve Jobs, former CEO of the Apple company, has been credited with \u2018humanising technology\u2019: recognising that technology design needs to be sensitive to human characteristics. In this Junior Seminar, students will be exploring various ways of thinking about the relationship between the \u2018technical\u2019 and the \u2018human\u2019. What can these tell us about the organization of social life, and how (if at all) do they contribute to the design of \u2018better\u2019 technologies? A central role will be reserved for ethnographic studies of technology\u2010in\u2010use \u2013 an\nacademic approach that has gained traction with industry over the past decades. Students will also acquire hands\u2010on experience of this approach by\nstudying technology\u2010in\u2010use among friends, in the home, in the College/University, or workplace.", + "title": "Jr Sem Special Topics: Humanising Technology", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1112A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "News reports that purport to have marshalled facts and opinion on current issues are often taken at face value: they are consumed without question. How can we discern quality journalism from the less worthy instances of the craft? This seminar, led by an experienced journalist, is organised around the critical exploration of key aspects of journalistic writing: the questions behind the story, the use of numbers and the organisation of the message or argument. By dissecting media coverage of current issues, students will bolster their skills as critical readers and communicators.", + "title": "Jr Sem Special Topics: Quality Journalism and Critical Reading", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1112B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why are some scientists and engineers better leaders than others? What is the ideal environment to encourage creative minds and innovations? We will together search answers for these interesting questions by examining some famous cases in science, engineering, medicine and industry in the nineteenth and twentieth centuries. The interaction between the broader historical, cultural and social background and the science, engineering and industry community will be emphasized.", + "title": "Leadership, Creativity and Innovation", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1112D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is a science fiction (SF) movie? How did SF movies and developments in science and technology influence each other during the twentieth century?\nWhat is the use of SF movies for societies? And why are SF movies much more popular in some countries than in others? By watching and analysing classic and contemporary SF movies from the US, the Soviet Union, Japan, China, and other countries, we will search for answers to these questions. Special emphasis will be given to analysing how historical, political, and cultural environments in different countries have influenced the production and acceptance of SF movies.", + "title": "Special Topics Junior Seminar: Science Fiction Movies in the East and West", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1112F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Lifeforms on Earth interact with each other and their surroundings to form an inter-dependent, self-regulating complex system that perpetuates the conditions for the survival of all living things. Anthropogenic perturbations, however, may risk an irreversible upset to the balance of this system. Preventing this will thus require humanity to operate sustainably, within the limits of the natural world. For this module, we shall explore the extent of human impacts and their implications for the continuation of life on Earth. Thereafter, we shall consider potential solutions that support development that promotes the well-being of present and future generations.", + "title": "Special Topics: Sustainability", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1112G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this junior seminar, we examine ignorance and uncertainty as an essential part of modern life. They take many forms, such as ignorance in science, hope and the\noptimistic future, ignorance and state power, and the spiritual unknown. Ignorance and uncertainty provide an unexpected vantage point to explore the role of modern\nknowledge in our society. By critically examining the 'play' of ignorance and uncertainty for central features of modern life, students will build skills such as critical thinking, questioning assumptions, and forming a nuanced and balanced approach to the expectations we place on knowledge.", + "title": "Junior Seminar: Ignorance and Uncertainty", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Cooking has evolved in unexpected ways throughout human history and has always been one of the most important markers of human culture(s). By engaging scholarship from various disciplines (but particularly anthropology), this course explores major themes that inform the way humans prepare food across different cultures and time periods. We will particularly concentrate on the prominent example of fish. Fieldtrips will be made to one of Singapore\u2019s fishing ports and fish farms, and students will learn to apply ethnographic methods to the Singapore context. Students will also get to cook fish based on specific themes. Vegetarians and vegans are welcome.", + "title": "Junior Seminar From the Fire to the Frying Pan: Cooking and Eating in Human Culture(s)", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1114", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "From the pyramids to the Three Gorges Dam, from nano drug-delivery systems to autonomous robots, the world contains many engineering feats that make you wonder \u201cHow did they do that?\u201d. This module helps students develop basic insights into the workings of selected engineering applications. Coupled to this is an investigation of the engineering marvel \u2018in context\u2019. What problems or issues does it address? What are its costs and consequences \u2013 both intended and unintended? What are the ethical and political dimensions of this? Each run of the module will have a specific thematic focus, such as big structures, biotechnologies, or robotics.", + "title": "Junior Seminar Engineering Marvels", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1115", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Reports of radiation leaks at the Fukushima nuclear facility in Japan, following the earthquake/tsunami disaster in 2011, have triggered concern and even panic among members of the general public. In this seminar, we adopt a multi\u2010disciplinary approach to debates and controversies about radiation and nuclear technology. Key topics include: (1) the science behind radiation effects, and the way in which policymakers and others grapple with scientific uncertainties; (2) the challenges of expert\u2010lay communication about radiation risk, both after nuclear disaster and relating to consumer technologies; (3) the broader context that shapes debates over nuclear power in Japan and elsewhere.", + "title": "Junior Seminar: Radiation and Society", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1117", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This junior seminar explores the relationship between drugs and culture. Drugs are powerful because of their material and symbolic value, their power to alter bodies and minds, and their ability to both harm and heal. By examining the social lives of drugs, from production to consumption, students will build the skills to critically ask how drugs affect lives across different societies. Besides the question how a plant, food, or substance becomes constituted as a drug in the first place, topics to be explored include the use of human subjects in clinical drug trials, the \u2018pharmaceuticalization\u2019 of health, and licit/illicit drugs.", + "title": "Junior Seminar: The Social Lives of Drugs", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1118", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Understanding crime is important for those who, through the machinery of the state, would seek to impose punishment upon the criminal. This course gives students the opportunity to consider the nature of crime and punishment from a number of perspectives in philosophy, criminology and fiction. They will examine the justifications for deeming behaviour criminal, the causes of this behaviour, as well as the divergent legal responses to it across time and cultures and with changes in technology. Through the use of case studies, students will test their\nintuitions about when the imposition of punishment is morally acceptable.", + "title": "Junior Seminar: Crime and Punishment", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1119", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Everybody feels. Our feelings drive us to do and are indicators of the state of our minds. In this course, we take a broad look at human emotions across cultures.\n\nWe ask: what functions do emotions serve? Do gender differences exist? Are emotions and rationality at odds? How do society and technology affect how we feel, our perception of what we ought to feel, and what feelings we are willing to express? What is the relationship between the feeling mind and the body? What is the role of emotion in artificial intelligence?", + "title": "Junior Seminar: Emotions and Society", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1120", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Things that go bump in the night can cause a fright. But the genre of horror also reveals our prevailing anxieties, fears, and hopes about technology. From medical laboratories and electrical devices to televisions and social media, horror has been obsessed the uncertain potential of new technologies. We look at how technology is portrayed in fiction and what this tells us about society\u2019s attitudes towards technology. Through Asian and Western horror film and pop culture, and combining insights from film studies, philosophy, and science and technology studies, this module will uncover our attempts to grapple with technology and the unknown.", + "title": "Technology, Horror, and the Unknown", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Working from the position that skin belongs as much to the person as to the society in which they live, this seminar reflects on how much our identity and our sense of self is produced by the interaction between biological, cultural, political, and economic, forces that play out through and on the skin. Thus, skin is a playground \u2014 at the very same time that it is a battle field \u2014 where identity is constantly\nreshaped through interaction of words, categories, values, body techniques and emotions.", + "title": "Skin", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The public\u2019s perception of nuclear power sharply deteriorated because of the 2011 Fukushima reactor core meltdown and several other prior accidents. However, given the urgent need to fight climate change and the current global energy crisis caused by Russia\u2019s invasion of Ukraine, the case for nuclear power is becoming ever stronger. Considering the associated risks, what role should radiation play in society? In this module, we will adopt an interdisciplinary approach to examine the history of nuclear radiation, appreciate the science and technology behind nuclear power, and consider the ethical and social implications of a nuclear future.", + "title": "The Nuclear Imagination", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1123", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module challenges today\u2019s generation of students to reexamine and debate some of the foundational myths and assumptions about Singapore\u2019s pioneer past. The timespan covers Singapore\u2019s founding as a colonial economic \u201cplace\u201d in 1819, the events leading to postcolonial independence in 1959\u20131965, and the formation of communities into a \u201cnation\u201d. We will focus on the interplay of global economic factors with internal social factors, and challenge students to ask how the engagement of communities and community leaders impacts economic development.", + "title": "Debating Singapore's Social and Economic History", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1400", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the changes in the life transition from adolescence to adulthood in today\u2019s developed world. We will look at some of the popular understandings of emerging adulthood by studying an age group of people called \u201cadultolescents\u201d, \u201ctwixters\u201d, or \u201ckippers\u201d. We will also critically analyse aspects of emerging adulthood with regards to education, job opportunities, love and marriage, as well as parenting. Finally, we reflect on the kind of citizens these emerging adults are becoming, how they can engage in the community, and what the future holds for them.", + "title": "Jr Sem: Generation Y: Transitions to Adulthood", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1402", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "There are various \u2018hidden communities\u2019 in Singapore that do not gain much public attention but whose members require special consideration from society. People with disabilities, children with learning difficulties, the elderly or migrant workers are among them. They face distinct challenges to live independent and productive lives. Each semester, the module focuses on one specific group and examines that group\u2019s challenges, and best practices in Singaporean and international contexts. Engaging with hidden communities in Singapore is one of the key features of understanding global issues in a local context, so-called \u2018Glocalisation\u2019 (globalisation + localisation) to form active citizenship in a healthy society.", + "title": "Jr Sem: Hidden Communities", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1403", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "According to cultural theorists like Stuart Hall, Michel Foucault and Antonio Gramsci, the structures that support dominant ideas in society could be political, economic, religious or cultural, among others. This module examines the power structures behind the dominant ideas of our time, asking why these structures have an interest in promoting or discrediting ideas about what is \u2018good\u2019 for our community and mankind. These ideas include human rights, citizenship, democracy, meritocracy, the \u2018Washington Consensus,\u2019 development, age of majority, and political correctness.", + "title": "Jr Sem: Power and Ideas", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1404", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Technology is the creation and use of tools, techniques and processes to solve a problem or perform a specific function. In this junior seminar, students will explore and understand emergent technologies (informational, biomedical, assistive, instructional etc) and will seek to understand technologies from multidisciplinary perspectives. Students will pursue a specific area of interest (eg a specific new technology, and related ethical or legal issues) in-depth, and consider the potential implications of the widespread use of these technologies, both in advancing human progress; and the social, ethical and legal dilemmas they may pose to society.", + "title": "Jr Sem: Technology and Human Progress", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1408", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduced a comprehensive perspective on \u2018happiness\u2019 and related social constructs such as satisfaction and quality of life. Drawing from multidisciplinary research in Singapore and around the world, the following issues are discussed in detail: Does rising GDP lead to more happiness? Who are the people who are happy? Can money buy happiness? What really makes people happy? Can the government manufacture happiness for its citizens?", + "title": "Jr Sem: The Pursuit of Happiness", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1409", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The \u2018Special Topics\u2019 junior seminar (JS) at Angsana College is taught by Visiting Fellows who are part of the College for only one or two semesters, and/or by Fellows with cognate interests. The JS focuses on topics closely related to the Fellows\u2019 research or personal interests, and that are not found in any regular departmental curriculum at NUS.", + "title": "Jr Sem: Special Topics", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1410", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces and examines the idea of a \u201csystem\u201d. It explores systems theory as a way of thinking about the goals, boundaries, complexities, stakeholders, and relationships between parts of a larger network (social, \neconomic, knowledge-based etc). Topics include characteristics of a system, inter-relationships between different parts of a system, the effects of a system on its \nstakeholders and vice versa, and the limits and challenges of systems theory. Different national and community systems will be introduced. Students will also have the opportunity to investigate a system of their choice.", + "title": "Jnr Sem: Systems Systems Everywhere", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1411", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Should we believe claims that \u2018country X has high inequality\u2019 or that \u2018inequality is increasing\u2019? How does inequality today compare with inequality in past societies? Where does our modern concern about inequality come from \u2013 why did past societies accept inequality as a given? This module investigates the causes of inequality in different societies, from the Ancient world to modern Singapore. It also traces the development of the concept itself, using modern tools and frameworks from a range of disciplines to analyse the social, political and economic inequalities present in the world today.", + "title": "Jr Sem: A Brief History of Inequality", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1413", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This multidisciplinary module traces the natural history of Singapore and the region via the Spice Trade, European colonialism and independence. The founding of the Botanic Gardens and LKCNHM are set in this historical context. This module explores the value of science and biodiversity research in the region.\nStudents will apply and share this knowledge with the wider community by conceptualising an educational tour of LKCNHM, and help inspire a new found commitment to the natural world amongst urban Singaporeans.", + "title": "Jr Sem: Discovering Singapore\u2019s Natural History and Heritage", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1414", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Family is often considered the foundation of society. Families affect the way we live, play, and work, shaping our values and how we relate to others. In this module, students will investigate and engage with issues that surround and\ndefine what it means to be a Singaporean family in the 21st century. They will look at issues such as broken and singleparent families, foster care, family leisure, family businesses etc - through economic, social, and psychological perspectives. The module emphasises experiential learning and application of readings outside the classroom through field trips, guest speakers and discussions/interviews with\nfamilies and communities.", + "title": "Jr Sem: Family in a Changing Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1415", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The global games industry has overtaken film and music in annual revenue. Its reach has also extended beyond children and teens to working adults, including women. This module evaluates board and digital games and their influence on culture and communities. How do games impact our health, relationships, businesses, and behaviour? Can they change the ways we learn, interact, and understand the world? What makes games engaging or even potentially addictive? We engage communities such as professional gamers and their audiences, game designers, entrepreneurs, and women in gaming, and explore the impact of emerging technologies such as Augmented and Virtual Reality.", + "title": "Jr Sem: Games, Game Communities and Society", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1416", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Bio-medicine and biotechnology are rapidly progressing technologies in the 21st century. Who carries responsibility for debating the ethical use of these innovations \u2013 national committees, or everyday citizens? Debating bioethics requires some knowledge of three areas: bio-medicine and biotechnology themselves, theories of ethics, and methods of logical reasoning with regards to the ethical applications of the technologies to people at different stages of life. We will explore issues running from the beginning of human life (such as cloning), throughout life (such as biological enhancements) and at life\u2019s end (such as the ethics of\nassisted death).", + "title": "Jr Sem: Bioethics in the 21st Century", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1417", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Chance is ubiquitous in our daily life. A train may get delayed, the favourite soccer team may lose, a stock may dip suddenly. Less likely, but still possible: a common medical procedure may go wrong, or a routine journey may encounter an accident.\n \nThis module looks at reasoning tools which help make sense of probability, risk and uncertainty in every day situations, such as the numerous quantitative stories carried by the mass media. Students will be guided to think and respond critically to these stories. Probability theory will be introduced in a friendly, welcoming way to students from all backgrounds.", + "title": "Jr Sem: Chances in Life", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1418", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module looks at museums as spaces for organising, classifying, and exhibiting objects, from natural history to art. What is a museum\u2019s relation to the public, and its functions in society?\n\nAgainst this backdrop, an interdisciplinary approach is applied to learn how and why museums came to be, their role through the ages, and how to meaningfully appreciate/critique an exhibit. The ethics and politics of decolonising museums and repatriation will be discussed.\n\nThe module will include at least one trip to local museums, and a group project where they apply aspects of their knowledge to create a public exhibition.", + "title": "Jr Sem: Inside the Museum: Collections and the Public", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1419", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary module introduces new understandings of migrant communities by drawing on approaches from systems thinking to sociology. While migrants are often seen merely as workers, migrant categories vary, as do the reasons for moving. Along the way, migrants form communities that reconstitute societies into robust and diverse countries. Given global-local dynamics of migration, this interdisciplinary module uses Asia to examine the types of migrants (from workers to climate refugees) as well as the causes and consequences of migration shaping the economy, security, identity, health and the environment. The class also explores how migrants communities cultivate resilience to various challenges.", + "title": "Jr Sem: Beyond Borders: Migrant Community & Resilience", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1420", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will serve to prepare systems citizens with thinking and quantitative skills that thought leaders across the world consider critical for functioning in the 21st century. Comprising qualitative and quantitative elements, this module will hone students\u2019 ability to engage in Systems Thinking: understanding parts of a system, seeing interconnections, asking \u2018what-if\u2019 questions, quantifying the\neffects of specific interventions and using such understanding to propose operational/structural policies courageously and creatively. Interactive discussions and hands-on computer modelling using examples from several ecological and natural resource systems will serve as the primary learning mechanisms.", + "title": "Thinking in Systems: Ecosystems and Natural Resources", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1700", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Does a virus attack any individual? Or, does an individual create conditions for infection? How should hospitals plan treatment strategies and patient-staff movements during an outbreak? Should government allocate more resources\nto prevent onset of chronic diseases rather than managing the complications arising out of chronic diseases? Students will approach such questions from a systems perspective, which involves: understanding behaviours of subsytems and stakeholders such as disease/ infection, patients, providers, payers and society. They will also learn how the interdependencies and interactions between the different actors of the system can be integrated into a holistic system that enables better understanding.", + "title": "Thinking in Systems: Diseases and Healthcare", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This will serve as an umbrella module for all Junior\nSeminars in Residential College 4. Each module under this\numbrella will focus on a specific socially relevant theme to\ncultivate a \u201cbig picture\u201d thinking in students and help them\nto visualize how interconnections and interdependencies\nbetween various actors of a system result in interesting\nand complex behaviors. Students will develop qualitative\nand quantitative diagrammatic models using computational\ntools to analyze the theme of interest from multiple\nperspectives (social, economical, political etc.) and will use\nthem to gain better understanding of issues and capacity\nfor broader and deeper conversations.", + "title": "Thinking in Systems", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will serve to prepare systems citizens with thinking and quantitative skills that thought leaders across the world consider critical for functioning in the 21st century. Comprising qualitative and quantitative elements, this module will hone students\u2019 ability to engage in Systems Thinking: understanding parts of a system, seeing interconnections, asking \u2018what-if\u2019 questions, quantifying the\neffects of specific interventions and using such understanding to propose operational/structural policies courageously and creatively. Interactive discussions and hands-on computer modelling using examples from several ecological and natural resource systems will serve as the primary learning mechanisms.", + "title": "Thinking in Systems: Ecosystems and Natural Resources", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1702A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Does a virus attack any individual? Or, does an individual create conditions for infection? How should hospitals plan treatment strategies and patient-staff movements during an outbreak? Should government allocate more resources\nto prevent onset of chronic diseases rather than managing the complications arising out of chronic diseases? Students will approach such questions from a systems perspective, which involves: understanding behaviours of subsytems and stakeholders such as disease/ infection, patients, providers, payers and society. They will also learn how the interdependencies and interactions between the different actors of the system can be integrated into a holistic system that enables better understanding.", + "title": "Thinking in Systems: Diseases and Healthcare", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1702B", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How does our day-to-day actions and living habits affect our\nenvironment? How effectively can we engage the public,\ngovernment and other stakeholders to shape a sustainable\nenvironment for humanity? Students will analyze these\nquestions from a systems perspective by developing\nqualitative and quantitative models that can map the\ninterconnections and interdependencies between\nstakeholders involved in current sustainability challenges\nfacing humanity (examples: energy consumption, zero\nwaste and recycling). In this module, students will not only\ndevelop a good understanding on sustainability challenges,\nbut also on how actions of individuals can add up to cause\nsuch challenges.", + "title": "Thinking in Systems: Sustainability and Us", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1702C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Many of the world\u2019s problems are linked to population changes: rapidly aging population, immigration woes, and the threat of environmental degradation to human existence.\n\nIn this module, students will be introduced to population trends and be equipped to better understand fertility, mortality and migration and how they cause changes in population size, composition and distribution. It incorporates basic concepts, data sources and tools used in demography into a systems approach to modelling population dynamics.\n\nStudents will build models of increasing complexity, covering a variety of generic structures and classic system dynamics modelling scenarios.", + "title": "Thinking in Systems: Population Dynamics", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1702D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1730", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Are energy sources infinite? Do energy policies lead to a sustainable energy development? Would renewables solve our future energy needs, mitigate emissions and protect our environment? Students deal with such energy challenges by learning to understand \u2018energy systems\u2019 as a \u2018complex\nwhole\u2019. This module provides a platform for students to understand the complex behavior arising from interdependent interactions of different actors of energy systems with other economic, political, social, technological and environmental factors. To achieve this, it engages students to learn and apply systems thinking tools to such aforementioned challenges through relevant models, case studies and real-world energy policy/problem scenarios.", + "title": "Thinking in Systems: Energy Systems", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1702E", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 14, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 9, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Disasters like floods, storms, new disease outbreaks are increasing in the world. Climate change adds new hazards and uncertainties to existing risks. But are disasters a result of increasing hazards or are we becoming more vulnerable to them? Will they remain as hazards if we plan for resilience? Is resilience built or managed? Students will critically analyse these questions through a systems approach developing qualitative and quantitative models to understand relations between hazards, vulnerability, policy interventions and development practices. The module will encourage students to analyse case studies and grasp the dynamic complexity between risks, social vulnerability and resilience.", + "title": "Thinking in Systems: Disaster Resilience", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1702F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How does a market system work? What role do markets play in underpinning the global phenomenon of rising social and economic inequality in the past decades? What are the consequences of inequality? What can be done to curb inequality in a market society? Students will approach such questions from a holistic perspective, emphasizing the interconnections and interdependencies between consumers and firms, workers and employers, investors and policy-makers. The systems thinking tools will enable the students to anticipate the effects of different social interventions to focus limited resources for maximum, lasting, system-wide social changes.", + "title": "Thinking in systems: Markets and Inequality", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC1702G", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "One Health (OH) is a novel approach in health policy that perceives human health, non-human animal health, and environmental health as deeply interdependent. It strives to benefit humans, animals and ecosystems by promoting collaboration across disciplines and nations. This module examines scientific, social and philosophical aspects of OH. Featuring fieldtrips to relevant sites such as zoos and laboratories, the module takes Singapore, where governmental agencies are working closely with academic institutions to promote the OH concept, as a case study. At the same time the scope of the various topics is broadened by exposing students to regional and international comparisons.", + "title": "Humans, Animals and Ecosystems: The One Health Paradigm", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2100", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "There are few things that impact our lives as much as our sense of time. Singapore is a \u2018fast-paced\u2019 city where deadlines, time-saving apps and fertility clocks shape people\u2019s actions and experiences, and where many feel \u2018time poor\u2019, even if they are cash rich. In this module, we examine the ways in which we take time for granted through analysing the ways in which our lives are temporally grounded. We do so particularly through tracing connections between individual experience, social life and technologies such as clocks and watches, electric lighting and the internet. Is time-stress inevitable in this day and age? What does it mean to use one\u2019s time well?", + "title": "Time and Life", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This \u2018Senior Seminar\u2019 is required of students in their second year of residence in Tembusu College. The module will consider one of the most pressing problems of our time from multiple viewpoints. Merging insights from the sciences and humanities, students will be introduced to problems, conflicts, and debates over the causes of, and solutions to, the phenomenon of global warming and its implications for humanity. The seminar will meet weekly in small groups of 15\u201020, with periodic full\u2010class meetings to hear guest speakers.", + "title": "Climate Change", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2102", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A \u2018global city\u2019, a \u2018city in a garden\u2019, a \u2018city of 6.9 million\u2019... what do these and other models say about Singapore and its relationship to its past and future? This course facilitates critical and multi\u2010disciplinary engagement with the imagination and organization of Singapore as city. Students will examine visible aspects of the urban environment together with what is (treated as) invisible, and explore what is at stake in meeting Singapore\u2019s ambition within its borders and beyond. The module culminates in a project that allows students to situate ideals of the liveable, sustainable, inclusive (etc.) city in particular urban sites.", + "title": "Singapore as \u2018Model\u2019 City?", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2105", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We live in a world where complex negotiations take place daily. Navigating these complex negotiations requires one to be conscious of the psychological,\nhistorical, sociological, economical, and other contextual factors that shape each unique encounter. The rapid advancement in science and technology\nadds to the challenge of interpreting highly technical, domain\u2010specific information, which is critical in rationalizing decisions and persuading counterparts. In this module, we adopt a case study approach to dissecting complex negotiations. Students will learn to adopt both a macro and micro perspective in analysing such negotiations.", + "title": "Senior Seminar: Negotiating in a Complex World", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2107", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this seminar, students examine some of the beliefs humans have held about knowledge throughout history, with a particular focus on technological change and the idea of expertise. Through a socio-historical treatment of figures associated with knowledge, students will discuss how experts are created, challenged, and replaced. This module will enable students to critically appreciate various forms of knowledge, analyse and respond to current issues related to expertise, understand the context in which our methods and processes for acquiring knowledge are situated, and assess how they shape individual and collective lives and experiences.", + "title": "Knowledge and Expertise", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2108", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module concentrates on the Asian built environment \u2013 architecture, urban planning and sustainable development. The theme of the archaeology of the future considers the many layers of the city, from examining its past to identifying its already emerging possible urban futures. Discussions and readings that provide in-depth, analytical, and critical perspectives on urbanisation and urbanism in Asia will be supplemented with a field trip to URA\u2019s City Gallery and workshops on Futures Thinking. In particular, students will be taught the Casual Layered Analysis (CLA) methodology to help them think critically and deeply about present trends and the multiplicity of future scenarios. Through Singapore as a case study, students will gain a deeper understanding of challenges facing a rapidly-urbanising Asia, cultivate intellectual tools to evaluate these challenges and embody solutions through a hands-on creative project.", + "title": "Asia Now! The Archaeology of the Future City", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module considers how development is pictured and visualised and, to a lesser extent, textualised through a focus on industries such as finance, information technology, tourism and the creative industries. This visual view on development\nallows students to develop a critical, conceptual perspective on how development is imagined, performed and carried out in these industries. Through a visual engagement with field sites, the module explores the intersection and interplay\nbetween organisations and bureaucracies on one hand and broader societies and collectives on the other. Development is 'seen' through the perspectives of performance, experience, concepts and practice.", + "title": "Picturing and Seeing Development", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With a focus on Asia, this course draws on a diverse range of literatures to provide a broad context for understanding the dynamics between humans and animals. Southeast Asia is one of last regions in the world with extensive rain forest habitat for wild animals, but these creatures are threatened by burgeoning urbanization and agriculture. The module will go beyond a focus on wildlife, however, to consider our relationship with \u2018urban animals\u2019 of many types. Through seminar-style classes and fieldtrips conducted around Singapore, the module will test new perspectives from international and regional studies of human-animal interaction.", + "title": "Animals and the City", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Games permeate disparate fields of knowledge and involve cultural practices that are part of everyday life. This module invites students to think creatively and expansively about what it means to \u201cplay a game\u201d beyond the usual connotations of the activity. It explores games in theoretical and practical ways to develop questions interrelating politics, technologies, knowledge, and power. Further explorations find domains in life that open themselves up to the idea of \u201cplay,\u201d including political and social games. Seminarians will be equipped with theoretical and philosophical vocabulary with which they will engage in the construction, critique, and playing of games. They will think through questions like: What can constitute a game? What does it mean to win, lose, or cheat in a game? What are the stakes involved in thinking of life as a game? Relatedly, what does it mean to consider gaming systems that govern life?", + "title": "Gaming Life", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2113", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What are universities for? A university education was traditionally exclusive to the elites but is increasingly seen as crucial to professionalization and social mobility; democratic citizenship; fostering debate and the pursuit of scientific knowledge. This module examines recent debates chronicling how growing trends of neoliberalism have led to changes in how universities and higher education are viewed. We also examine the confluence of historical, political and social factors that shaped the establishment and development of universities in postcolonial society like Singapore. Students will investigate how universities in Singapore relate with their overseas counterparts and with global trends in higher education.", + "title": "The University Today", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2116", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Working from the position that skin belongs as much to the person as to the society in which they live, this seminar reflects on how much our identity and our sense of self is produced by the interaction between biological, cultural, political, and economic, forces that play out through and on the skin. Thus, skin is a playground \u2014 at the very same time that it is a battle field \u2014 where identity is constantly reshaped through interaction of words, categories, values, body techniques and emotions.", + "title": "Skin", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2117", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This interdisciplinary module introduces and examines the idea of \u2018community leadership\u2019. It focuses on how ordinary individuals identify social needs in the local community and endeavour to improve the lives of vulnerable groups by\norganising grassroots solutions. These individuals include\nNobel Laureates such as Mother Teresa or Muhammad\nYunus but also ordinary unsung heroes closer to\nSingapore. Students are required to investigate the\nemergence of pioneering community leaders combining\nthe socio-historical contexts, personal psychology,\nnetworking and socialisation processes and social\nentrepreneurship. The teaching methodology incorporates\nlectures, seminar discussion, experiential exercises and\nfield study to interview real-life community leaders.", + "title": "Community Leadership", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2400", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How \u2018green\u2019 is Singapore and how should we preserve biodiversity on this island? This GEM explores the rise of the conservation ethic in Singapore. It traces the scientific, social and economic conditions that gave rise to the global environmental movement, and to its various expressions in Singapore. Students will engage with stakeholders (scientists, officials, civil society) to understand the conflicts and collaborations between advocates of development and conservation. The class will make field trips to evaluate state-civil society partnerships (wildlife sanctuaries, green corridors, water catchment etc), and debate choices and dilemmas for the future.", + "title": "Environment and Civil Society in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2402", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Originally a concept which bound individual members to a defined nation via relations of rights and responsibilities, \u201ccitizenship\u201d in the 21st century is coming under unprecedented pressure from technological change and\nglobalization. This module will trace the development of the concept, the values and social assumptions which underpin citizenship, and the interactions between liberal, communitarian and civic narratives of citizenship from\nancient Greece to contemporary Singapore. Three key relationships are considered: the rights and duties of citizens in relation to government, to other citizens, and to non-citizens in and beyond the polity.", + "title": "Citizenship in a Changing World", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the concepts, practices and issues related to \u201ccommunity development\u201d. It focuses on the building and/or rebuilding of marginalised communities (e.g. women, the poor) in developing Asia, particularly within the context of India. It offers students an interactive learning opportunity that combines development theory, classroom discussions in Singapore, and field visits in India. Students will critically examine\ndebates about the nature of community development as well as ethical, social and economic challenges of different models.\n\nPart 1: Understanding community development and India\nPart 2: Field visits (India) \nPart 3: Reflection and sharing of insights gained", + "title": "(Re)Building Communities: Insights from India", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why do certain societies succeed, while others fail? While some countries in East Asia such as Singapore and South Korea have achieved economic success, others in the Middle East (or \u2018West Asia\u2019) have undergone a trend of de-development, evident in the post-\u2018Arab Spring\u2019social unrest . This module explores the contrasting social and economic development models of Asia\u2019s regions. We will explore how states are formed, different economic strategies countries have pursued, weigh the impact of culture, and examine social deprivation and autocratic leadership. We uncover the deep-rooted social and economic reasons behind successful or failed development in different Asian countries.", + "title": "Emerging Asia: Successes and Challenges", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Must urbanisation come at the expense of the environment? Using insights from urban planning, ecology, engineering, sociology and public policy, this module focuses on how cities can integrate with nature to create sustainable communities which minimise humans\u2019 ecological footprint. Students will explore the innovations utilised by different cities around the world. Using Singapore as a case study, students will be able to apply the concepts outlined in the Singapore Sustainable Blueprint into their communities.", + "title": "Cities and nature", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2406", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the concept of \u201cinvisible work\u201d \u2013 tasks that are an integral part of everyday life, yet remain unrecognized and devalued by employers, governments, consumers and even workers themselves. Students will learn about different conceptualizations of paid and unpaid work, gendered and racialized labor, and the challenges posed by a global market that increasingly relies on flexible, short-term contracts. Drawing from the disciplines of sociology, geography, and anthropology, readings will discuss domestic and professional care work, the emotional labour of service work, and the \u201chidden\u201d work of information technology industries and business process outsourcing.", + "title": "Work and Inequality", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2407", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Are you curious about the visual arts and their role in society? This senior seminar explores visual perception and the social dimensions of art, examining history, cultural values, symbolic meaning, and how these influence ways of seeing in Singapore and beyond. Through interactive activities, guest speakers from the arts world and museum visits, we will find out how some art works changed the world or are highly valued, and why others have gone unnoticed or discarded. Students will explore the socio-economic contexts that create cultural and counter-cultural movements, as well as cross-cultural exchanges in the art world.", + "title": "Beyond Seeing: Looking at Art", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2408", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module helps students to critically understand the unmet needs and issues of marginalised communities (e.g. the elderly and the disabled). It does this by providing students with opportunities to actively engage with a selected community, and to study its challenges in-depth. Students will be equipped with the basic concepts and skills of research and evaluation to study the community\u2019s programmes and policies. They will apply the knowledge they acquire in the classroom to real-world situations through group projects and collaborations with a community partner.", + "title": "Understanding Communities: Theory & Practice", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2409", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the concepts, practices and issues related to rebuilding communities in countries marked by factors such as past conflict, inequality or rapid development. It focuses on the building and/or rebuilding of marginalised communities (e.g. women, the poor, ethnic minorities) in such countries. It offers students an interactive learning opportunity that combines development theories, classroom discussions in Singapore, and a study trip abroad. Students will critically examine debates about rebuilding communities, as well as the ethical, social, economic and environmental challenges of ground-up community development.", + "title": "Building Communities: Exploring Global Connections", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2410", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the concepts and practices of post-conflict community reconstruction in the successor states of ex-Yugoslavia. It focuses on the rebuilding of trust and cooperation between Serbs, Croats and Bosnias/Muslims in several new nation-states after the wars and genocides of the 1990s. It offers students an interactive learning opportunity that combines development and conflict/peace theories, classroom discussions in Singapore, and a study trip. Students will critically examine debates about rebuilding communities, as well as the ethical, social, and economic challenges of community development and reconstruction.", + "title": "Reconstructing Communities: Insights from the Balkans", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2410A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the concepts, practices and issues in community development in relation to culture and conservation of natural resources and heritage. It focuses on the interplay of tradition and innovation in the holistic development of a society, particularly within the context of Nepal. It offers students an interactive learning opportunity that combines theory, classroom-based seminars and field visits. Students will critically examine discourses on the dilemmas and designs of community development as well as ethical, social and economic challenges of different models.", + "title": "Community, Culture, Conservation: Insights from Nepal", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2410B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Does parenting come naturally? Are there significant cultural differences in parenting practices, between Singapore, Asia more broadly, and the West? Do women parent differently from men? In this module, students will see that parenting may be universal but also a diverse experience. Drawing on case studies from Singapore, and other Asian societies, we examine how parenting roles and styles and perceptions of parenting are differentially produced across time, place and context. Using an interdisciplinary approach, students will learn how broader systems of inequality through institutions, policies, experts, technology and material resources perpetuate socially stratified and fragmented experiences of parenting.", + "title": "Unequal Parenthoods in Asia", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2411", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is mental wellness? How do we define \u2018(ab)normal\u2019? How do communities across different countries and cultures perceive and promote mental health and resilience? How do the government, society and family contribute to mental wellness? What roles can medical approaches, mindfulness and mindsets play? This module explores the key concepts and approaches to mental wellness across disciplines, ideologies and cultures. We will examine different perspectives in Singapore and beyond to appreciate the mental health landscape at the global, local and individual levels.", + "title": "Mental wellness: Local and global approaches", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2412", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Communication is one of the key 21st century competencies. In this module, students will draw on communication models to evaluate the effectiveness and appropriateness of verbal and nonverbal communication in face-to-face interactions and on social media platforms. Students will also learn effective/appropriate strategies to communicate as a team member and a leader in educational/organisational contexts, and explore how people should effectively/appropriately communicate information to the public and collaborate with people in the service oriented communities such as NGOs/VWOs. Additionally, students will also gain insights into the uses and impacts that social media have on individuals and society.", + "title": "Communicating with Communities in the 21st century", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2413", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We often discuss the \u2018What\u2019 and \u2018Why\u2019 of Community Engagement. However, we seldom explore the \u2018Who\u2019 of Community Engagement the stakeholders. This module explores the dynamic relationship between Community Engagement and its stakeholders. We will look at definitions of stakeholders and how they impact the efficacy, direction, processes, and perceptions of Community Engagement in Singapore. We will focus on the government, social service agencies, donors, businesses, volunteers, community members and university students such as yourself, and adopt an interdisciplinary approach to analyse how they interact with one another. Finally, we will explore technology's rapidly changing role in Community Engagement.", + "title": "Stakeholders: Community Engagement as a Sum of Diverse Parts", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2414", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will examine some organisational processes and behaviors in the context of non-profit organisations (NPOs). Through readings, case studies, guest speakers, and field trips, we will explore the interdisciplinary aspects of organisational behavior from the individual, team, organisational and societal levels of analysis. We will discuss topics such as\u2014 What motivates employees and volunteers? How can NPOs drive a positive organisational culture? What are some \u201csuccess indicators\u201d in a NPO? How can we create an inclusive community in the workplace for persons with disabilities? How do NPOs evolve to \u201ckeep up with the times\u201d?", + "title": "The Effective Non-profit", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2415", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will take on an interdisciplinary lens in understanding the needs, strengths and challenges of youths and youths-at-risk in Singapore, as well as the ecosystems they are embedded in. Specifically, using the positive youth development approach, we will discuss how environmental and intrapersonal strengths can improve positive outcomes for these youths. We will also explore topics such as youth culture, youth mental health, risk and resilience in youth, youth voice and activism, among others. Importantly, we will examine how our deepened understanding of youths can inform our meaningful engagement with them.", + "title": "Positive Youth Development in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2416", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores identity-formation in Asia from topdown and bottom-up perspectives, by looking at how authorities, communities and individuals construct their collective identities. The concept of \u2018identity\u2019 is a contentious site as it deals with issues of belonging, imagining communities and defining one\u2019s trajectory (identity-formation). Looking at historical cases to cross-compare examples among Asian societies, the course aims to encourage students to investigate groups and their relationships to their surrounding communities (families, societies and gender) and to examine the relations between state and identity, and between social activism and identity.", + "title": "Identities in Asia", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2417", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2 + ], + "venue": "CAPT-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2 + ], + "venue": "CAPT-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 9, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What defines \u2018crime\u2019? How does the likelihood of who commits crime and who is identified as \u2018criminal\u2019 differ across social contexts? This module approaches the relationship between crime and society through conceptual categories of class, gender, race, age, and geography drawing on local and global contexts of crime and justice. Students will use inter-disciplinary approaches to learn how institutions, policies, experts and mainstream society shape the landscape of crime, victimisation and justice. Furthermore, they will critically examine whether various formal and informal mechanisms of crime control adequately restore social order or conversely increase recidivism, exacerbate vulnerability and engender inequality.", + "title": "Crime, Society and Inequality (CSI) Singapore Edition", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2418", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "While globalisation has generally improved local communities in Singapore and elsewhere, how and why has it also led to greater challenges and even crises, many of which harm communities and undermine globalisation itself? By taking a people-centered analysis, this seminar critically examines how global issues \u2013 ranging from pandemics to migration to social media \u2013 impact local communities. Rather than treating communities as passive, this interdisciplinary module draws on studies from systems approaches to sociology to demonstrate how communities exercise power in responding to globalisation. Using Singapore as a reference point, the seminar explores debates on globalisation and strengthening communities.", + "title": "Think Global, Act Local Understanding Global Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2419", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Community organisations are social levellers that form support networks for the marginalised and advocate for issues that build social resilience.\n\nBut how well do we understand the inner workings of community organisations and the unique challenges they face?\n\nBy working in a partner organisation, this community internship provides an interdisciplinary learning platform to help students connect academic knowledge to \u2018real world\u2019 scenarios. \n\nStudents will be supervised by an academic fellow and an internship supervisor over 8 weeks (~30 hours per week) to facilitate deeper engagement and learning with the community partner.", + "title": "Community Internship", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTC2501", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "7", + "startTime": "1300", + "endTime": "1500", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1100", + "endTime": "1300", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-08" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-10" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-10" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-10" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-10" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "6", + "startTime": "1100", + "endTime": "1300", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-10" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "7", + "startTime": "1300", + "endTime": "1500", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-10" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + }, + { + "classNo": "5", + "startTime": "0900", + "endTime": "1100", + "weeks": { + "start": "2023-07-10", + "end": "2023-07-10" + }, + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module adopts an experiential learning approach to shape students\u2019 psychological well-being and mental resilience through mind-body practices. Students will cultivate four skills/capacities for well-being namely: Faculty of Attention, Art of Listening, Emotional Balance and Self-Awareness. Students will translate their practices and personal experiences into reflective texts as well as system diagrams. They will then engage in fieldwork at elderly care organizations in Singapore where they will dialogue with caregivers to understand their emotions and experiences. This will provide them an opportunity to personally experience and share the benefits of awareness of their mental processes while engaging in delicate conversations.", + "title": "An Undefeated Mind: An Experiential Inner Reengineering Approach", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2700", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Many of us recognize that the world we live in is growing in dynamic complexity. Accelerating economic, technological, social, and environmental change requires managers and policy makers to: (i) expand the boundaries of their mental models, and (ii) develop and work with tools to understand how the structure of complex systems influences their behaviour. This module intends to equip students with the ability to model a wide range of business systems, understand the structure-behaviour links and use such understanding to analyse policy and strategy. System Dynamics modelling will be employed as the vehicle to build these desired skills and abilities.", + "title": "Business Systems: Dynamics and Policy Making", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an opportunity to learn about system dynamics, consisting of systems thinking, modelling, and analysis. Since its inception in the 1960s, system dynamics has been used to analyse and solve problems in development (economic, political, social, sustainable, and urban), management (business, environmental, health care, and project), and public policy. The role of systems thinking and system dynamics modelling in shaping issues of sustainable development, local, national and global, has been transformative.", + "title": "Foundations in System Dynamics Thinking and Modelling", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Waves of infectious diseases like Ebola, SARS, and avian flu have shaken countries in recent years. The complex unpredictable nature of infectious diseases has also been a source of fear and threat to humans and other life forms for several centuries. The origin, spread, prevention and control of infectious diseases involve actors including animals, birds, insects, humans, environment, society and economics. This module will explore the interconnections and interdependencies between these actors as models that involve a \u201csystem of systems\u201d. Besides helping to relate model structure to dynamic behaviour, the models will be used to design optimal vaccination and control policies.", + "title": "Infectious Diseases: Dynamics, Strategies and Policies", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2703", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will foster deeper anchoring in Residential College 4's (RC4's) theme of systems through independent work in diverse areas such as energy, environment, health, society, and business. It builds upon the skill sets that RC4 students acquired in junior seminar and senior seminar 1. Students will do projects supervised by RC4 fellows; some of them may involve external collaborations and field work. Intellectual exchanges with supervisors, collaborators, practitioners, and peers will provide a unique experience to students.", + "title": "Projects in Systems", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2704", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR4", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR4", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Singapore, in the last 50 years, has evolved from a colonial port to a global city-state. Overcoming unanticipated, unprecedented, multifaceted challenges and severe resource constraints, it has emerged as a successful model-city through flexible and pragmatic policies arguably guided by systems thinking or the \u201cwhole-of-nation\u201d approach. This module will use numbers and simple systems models to understand the dynamics of Singapore with special attention on the evolving demographics, housing, healthcare and social harmony aspects. Students will also examine the impact of policy changes, generate scenarios and use them to make policy recommendations and projections for the near future. Students will employ qualitative and quantitative modelling tools learnt from a RC4 JS in this module.", + "title": "Housing, Healthcare and Harmony in Singapore: A Critical Perspective", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2705", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The 21st Century world is one where the potential for an individual\u2019s actions to elicit solutions is questionable. Critical problems such as an environment threatened by climate change, social inequality, food and water security issues and poverty seem overwhelming. This module uses the concepts and archetypes of Systems Thinking to understand the dynamics of individual presence and action in addressing such global issues. Students will be empowered to become proficient, disciplined, humane systems citizens, capable of envisioning and traversing life paths that make a difference.", + "title": "Committed to Changing Our World: The Systems Pioneers", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2706", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The rapid growth of the elderly population in Singapore is a source of concern due to the health implications of aging. While people are increasingly avoiding fatal events, they are often not avoiding the physiological changes associated with aging and the accumulation of chronic conditions and functional disability. Keeping pace with rising healthcare demand poses a key challenge for policymakers. This module explores the complex relationships between health and social care in the context of an aging society, with Singapore as a case. Students will be introduced to concepts and tools for health system-wide analysis of health and social care policies and strategies.", + "title": "Understanding Health and Social Care in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2707", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Singapore as a Smart Nation - where citizens enjoy a high quality of life, seamlessly enabled by technology and providing new opportunities for innovation and creativity. 'Internet of Things' (IoT) and 'Big Data' are essential ingredients to such a \"smart nation\". With the plethora and ubiquity of connected devices (50 Billion by 2020) and the clarion call to understand 'Big Data - The New Oil' (5 Exabytes every few days ) this module will provide insights into what these terms mean, their importance, challenges, and drivers. The module will have a blend of Lectures, Experiential Learning, Case Studies and some External Subject Matter Experts.", + "title": "Singapore - A Smart Nation in Context : IoT & Big Data", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2708", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What have been your most significant learning experiences? When have you realised you needed to question your own assumptions, that what had\nappeared like common-sense truths no longer seemed so certain? How has learning changed the way you view issues? Focusing on questions such as\nthese, in this course we will study the transformative potential of learning. We will focus not only on formal education at secondary and tertiary levels, but also consider informal learning experiences so as to investigate how ideas \u2013 whether in the classroom, through reading or travel, or in conversations with others \u2013 have changed us.", + "title": "Questioning Common Sense", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2709", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Energy, environment, sustainability and climate change are multi-disciplinary and inter-related elements.With the increase in green consciousness and possible media hype, the quest for single-point, easy, solutions arise. This module takes a systems-thinking perspective to discover the complex technological interactions behind the political/socio-economic policies in energy/environment in Singapore and the ASEAN region. Explosive economic development regionally, where investment in infrastructure provides rapid \u201cReturns on Investment\u2019, means that there is greater competition for patient or impact capital for longerterm sustainable projects. Hence, this module shows that while technology is a necessary condition for economic development, it remains an insufficient condition.", + "title": "Energy and Environment: Singapore and ASEAN Perspectives", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2710", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a social systems approach underpinned by interdisciplinarity to survey the connections and linkages of policymaking and governance vis-\u00e0-vis religious actors in Singapore. Balancing between theory and application, and between historical narrative and focus on the contemporary, this module interrogates a wide and complex array of religious-related factors which may influence the government in its policymaking process and the implementation of public policy, secularism in Singapore notwithstanding. This module also investigates how the myriad of religious factors can effect social change and determine the direction of the policies of the government vis-\u00e0-vis politico-economic and socio-cultural issues in Singapore.", + "title": "Religion, Governance and Policymaking in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2711", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A growing population, changing dietary habits and climate change are contributing to the challenge of securing food for Singapore. Singapore imports over 90% of its food supply and uses under 1% of its land area for agriculture. In 2015, Singapore was ranked the second most food secure country in the world. On the other hand, Singapore\u2019s food wastage has increased by 50% since 2005 and 1 in 10 people in Singapore is food insecure. This module takes a systems thinking and systems dynamics perspective to analyse and understand this apparent paradox between food security and food waste in Singapore.", + "title": "Hard to secure easy to waste - Singapore\u2019s food story", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2712", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Singapore has a shrinking and ageing citizen population, owing to its declining fertility rates and longer lifespans, rising singlehood and divorce rates, delay in marriages and family formation. Policies designed to lift its fertility rates have had little success. This module will use system dynamics modelling to gain insights into the dynamics and outcomes of population transitions in Singapore and countries facing similar or contrasting demographic challenges. It will also explore changing attitudes and expectations associated with singlehood, marriage and childbearing in Singapore and the region, and seek to understand the interplay of factors creating policy resistance in the city-state.", + "title": "Modelling Singlehood, Marriage & Fertility in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2713", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a social critique of markets and market behaviour in Singapore. Markets are often explained with methodological individualism as opposed to broader social systems that underscore behavioural and motivational determinants. This module presents an inter-disciplinary reading of selected economic concepts and critiques them from a social and holistic angle. It is principally a sociohistorical reading of how markets perform. In its application side, the module will reinterpret the success of Singapore using conceptual tools such as objective value theory, social productivity, the leisure class, and the historically determined social wage.", + "title": "A social critique of markets in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2714", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The world today is not only more interconnected and richer in content than ever before, but also more sensitive to disruption. Just as the proverbial butterfly flapping its wings can cause a tornado, can a small disturbance in a distant connection result in destruction elsewhere? This module focuses on such phenomena that seem to pervade a wide variety of complex issues in sociology, economics, finance, epidemics, terrorism, and science to name a few. Students will be able to debate through complex issues that Singapore and the world faces, model them, and in the process find handles to manage such complexities.", + "title": "Decoding Complexity", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2715", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 4, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A complex system entails a network of interconnections among its constituents. Take the network of friendships in a society. \"Six degrees of separation\" posits that any two persons in the world are connected through five or fewer other persons in this network. This amazing \"small world\" notion prompted scientists to study the organisational structure of networks. Indeed, many networks - however massive and complex - follow an order based on simple principles. In a minimally technical manner, this module follows this exciting development, which impacts our understanding of a plethora of phenomena from the spread of diseases to the propagation of opinions.", + "title": "Networks: Complexity and Order", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2716", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Asia, with its populous river basins, poses a global challenge for water resource management. Currently, many of these basins suffer from water scarcity, flood and resource conflicts. In this aspect, Singapore\u2019s impressive progress can offer lessons for water governance. This module will employ a systems perspective to analyse the dynamic linkages between the city-state\u2019s water resource management, its transformation from a third world to a first world country and future risks for sustaining its development. The module will explore pathways for resilience in Singapore\u2019s water sector, draw lessons for Asia and deepen students\u2019 understanding of water governance.", + "title": "Navigation in Singapore Waters-Bridges and Barriers", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2717", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Energy in Singapore depends mainly on imported fossil fuels/petroleum/natural gas. Obviously, in the quest for alternatives, future energy demand and mix, some challenges/dilemmas arise naturally in Singapore context would nuclear energy deployment be feasible? Is wind energy a viable option? would a complete switch to solar, biofuels, and waste-to-energy technologies be possible? This module offers a systems and system dynamics approach to deal with such issues and the corresponding dynamics, dilemmas and decisions that arise while addressing them. Students gain insights into the political, socio-economic and environmental aspects of these challenges through relevant case studies/models.", + "title": "Energy and Singapore: Dynamics, Dilemmas and Decisions", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2718", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a systems reading of social and economic thought with emphasis on the experience of Singapore. This module will outline the major contributions and weaknesses of received theory and critique them from an interdisciplinary or systems angle. It will contrast the methodological differences between the price-led systems and demand-led systems. Lastly, it will draw on the historical experience of Singapore to illustrate the differences between the behavioural-deductive and systems-inductive approaches to studying social and economic performance.", + "title": "Society and Economy in Singapore: A Systems View", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2719", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Many feel that the current level of income inequality is unfair and that capitalism is not functioning well for a vast majority of the population in several countries. Yet, some amount of inequality is inevitable as different people make different contributions in society. This begs the question: what is a fair level of inequality? This module synthesizes concepts from economics, political philosophy, game theory, information theory, systems engineering and statistical mechanics to provide a mathematical framework to analyse the income inequality problem and suggests options for tax policy, social programs and executive compensation.", + "title": "Income Inequality: A Teleological Perspective", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2720", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores a 21st century world characterized by volatility, uncertainty, complexity, and ambiguity (VUCA) by utilizing a synergy of model thinking and systems thinking. Why is segregation pervasive in society? Why are social riots sudden and abrupt? Why is environmental destruction irrational yet rational? From the catastrophes of nuclear meltdowns to financial crises, what role does risk and uncertainty play in our world? Students will approach such questions and evaluate complex social problems in the 21st century with models and systems concepts. Ultimately, this module seeks to expand the cognitive perception and enhance the systems thinking of its learners.", + "title": "Model and Systems Thinking for Complex Social Issues", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2721", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to impart essential knowledge of sleep science - nature, function, biopsychosocial factors and complex phenomena associated with sleep/wake cycles, common sleep disorders, sleep health etc. For this, it adopts a practical and learner-centric approach in combination with certain mindfulness-based interventions specific to overcoming sleep disturbances. The content also enables students to understand the interdisciplinary aspects of sleep-body-mind-well-being nexus holistically through systems approach to recognize the impact of sleep on our physical, mental and emotional well-being. This helps students to evaluate their own sleep problems, make informed/educated decisions and self-regulate/adjust habits to maintain good sleep health and well-being.", + "title": "Sleep Health: A Holistic Approach to Well-being", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2722", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This Senior Seminar is a dialogue about leaders and leadership in the future workplace. It takes students\u2019 lived experience and encounters with leaders as starting points; and considers what the literature, experts, and leaders from different domains may have said/demonstrated about leadership. The stories and examples of leadership are drawn from multiple domains (e.g. politics, education, social enterprise, business). A key module goal is to integrate varied instances of leadership and contexts, that will help everyone arrive at their own response to the questions, \u201chow would YOU lead? What kind of leader will you be, how, and why?\u201d (98 words)", + "title": "How would YOU lead?", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2723", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a social systems approach underpinned by interdisciplinarity to survey the connections and linkages of policymaking and governance vis-\u00e0-vis religious actors in Singapore. Balancing between theory and application, and between historical narrative and focus on the contemporary, this module interrogates a wide and complex array of religious-related factors which may influence the government in its policymaking process and the implementation of public policy, secularism in Singapore notwithstanding. This module also investigates how the myriad of religious factors can effect social change and determine the direction of the policies of the government vis-\u00e0-vis politico-economic and socio-cultural issues in Singapore.", + "title": "Religion, Governance and Policymaking in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2724", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We often experience leadership as someone leading from the top or as someone giving directions. In this module, we will learn about the leadership built upon active listening, good observation and meaningful participation - in particular with the less visible or marginalized communities in Singapore. This is an inter-disciplinary experiential learning module where community engagement is a strong focus. Readings are designed to give us the framework for meaningful interaction when meeting niche experts and practitioners in class and on field trips, motivating deep reflection and an authentic understanding of leadership.", + "title": "Leadership At the Fringe", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2725", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-22" + }, + "venue": "RC4-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-07-03", + "end": "2023-07-10" + }, + "venue": "RC4-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "No society, no matter how economically, culturally and technologically advanced, is immune to collapse. What led to the collapse of past and present-day societies, and what can we learn from them? Did these societies foresee the impending calamities threatening their existence? If not, why not? If yes, why did they not act in time? How is Singapore vulnerable to existential threats plaguing the world today and how do we strengthen our resilience? In this module, students will explore these questions through the lens of existing theories, illuminated through the use of causal-loop diagramming and insights gained through computer simulation.", + "title": "Societal Collapse & Resilience", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2726", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 2, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 2, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In an increasingly complex and disruptive 21st century society, the enhancement of psychological resilience is significantly crucial and beneficial. With theoretical and empirical studies of the psychology of happiness, science of Mindfulness, other developmental psychological theories and models, as well as case studies of the incidence of mental health issues in Singapore, this module seeks to enhance its learners with a psychological \u2018inner programming\u2019 toolkit to be resilient so as to navigate the challenges of a volatile, uncertain, and complex world, as well as to develop cognisance and sensitivity to the Singapore mental health context.", + "title": "Mind, Ego and Happiness", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2727", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Dostoevsky wrote \u201cat first, art imitates life. Then life will imitate art. Then life will find its very existence from the arts.\u201d The ability of film, as an artform, to influence the popular consciousness is in some contexts seen as indisputable (e.g. censorship); however, at other times, its impact on the viewer is perceived as tenuous. How true is Dostoevsky\u2019s concept of the relationship between between art and life? This module invites you to apply Systems Thinking, key ideas in gender theory and film studies to films and their audiences as you investigate the connections between art and life.", + "title": "Then life will imitate art Women and Men in Film", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2728", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Causal questions ranging from \u201cdoes vitamin C cure colds\u201d to \u201cdoes immigration hurt local low-wage workers\u201d are crucial to everyday decision-making and societal challenges. Causal inferences are drawn from randomized experiments, where researchers allocate individuals to treatment groups by a random draw. In social and human systems, natural experiments \u2013 situations arising in real life that resemble randomised experiments \u2013 offer a powerful way to study causal links. With a focus on intuition and practical understanding, this module discusses the motivation, identification, and interpretation of natural experiments, which are fruits of system-wide knowledge and interdisciplinary endeavors.", + "title": "Causality and Natural Experiments", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC2729", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module provides an opportunity for students who are staying at Tembusu College for a third year to do some independent \ncritical reading or research work. Unlike a UROP, where the student contributes to an existing research project, an ISM is an individual study\nprogramme conceptualized by the student. ISMs undertaken at Tembusu College must be interdisciplinary, multi\u2010disciplinary, or trans\u2010disciplinary in\ntopic and/or approach. Student and supervisor need to submit for approval an ISM contract that gives a clear account of the topic, programme of study,\nevaluation, and other pertinent details. The ISM is a graded module.", + "title": "Independent Study", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC3101", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and sometimes in a team, on an existing research project. A Tembusu UROP may focus on\nresearch related to a particular aspect of life, education or organization at Tembusu College. Alternatively, students may participate in research led\nby a College Fellow or other academic, as long as the project gives the student exposure to forms of expertise and/or interests that go beyond any\nparticular discipline. The aim of the UROP is to help support a student\u2019s academic and professional development through a meaningful research\napprenticeship. The UROP is a graded module.", + "title": "Tembusu Undergraduate Research Opportunity (UROP)", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC3102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0600", + "endTime": "0900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0600", + "endTime": "0900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Independent Study Module (ISM) provides an opportunity for senior undergraduates who are staying at the College of Alice & Peter Tan (CAPT) to do \nindependent critical reading or research work. Unlike a UROP, where the student contributes to an existing research project, an ISM is an individual study \nprogramme conceptualized by the student. ISMs undertaken at CAPT must be inter-disciplinary, multidisciplinary, or trans-disciplinary in topic and/or approach. \nStudent and supervisor need to submit for approval an ISM contract that gives a clear account of the topic, programme of study, evaluation, and other pertinent \ndetails. The ISM is a graded module.", + "title": "Independent Study", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC3400", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A UROP involves the student working with a supervisor, and sometimes in a team, on an existing research project. A CAPT UROP may focus on research related to a \nparticular aspect of life, education or organization at the College. Alternatively, students may participate in research led by a College Fellow or other academic, as long as the project gives the student exposure to forms of expertise and/or interests that go beyond any particular discipline. The aim of the UROP is to \nhelp support a student\u2019s academic and professional development through a meaningful research apprenticeship. The UROP is a graded module.", + "title": "CAPT Undergraduate Research Opportunity (UROP)", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTC3401", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "4", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 1, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2001EL", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2001HY", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2001NM", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2001PH", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2001PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2001SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2002EL", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2002HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2002NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2002PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2002PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOA2002SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOA2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOA2201EL", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOA2201HY", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOA2201NM", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOA2201PH", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOA2201PL", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOA2201SW", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOB2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOB2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "NUS Business School", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOB2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOC2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOC2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Computing", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOC2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOD2001", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOD2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOD2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOE2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOE2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOE2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOM2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOM2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "YST Conservatory of Music", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOM2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTON2001", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTON2002", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop\ntheir teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTON2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2001B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2001C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2001F", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2001M", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2001P", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2001R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2001S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2002", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2002B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2002C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2002F", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2002M", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2002P", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2002R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "UTOS2002S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOS2201", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOS2201B", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOS2201C", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOS2201F", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOS2201M", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOS2201P", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOS2201R", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "UTOP aims to train undergraduates to acquire and promulgate \u201cteaching\u201d skills. When pursuing such traineeship in teaching under UTOP, students can develop their teaching skills in a more systematic manner, and become better equipped when reaching out to those who need their help and guidance. The objective is to ensure these UTOP trainees do their good deeds (e.g., giving free tuition) in an effective manner, and more importantly, with good aptitude and confidence.", + "title": "Undergraduate Teaching Opportunities Programme (UTOP)", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "8", + "moduleCode": "UTOS2201S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module invites students to probe the concept of \u2018intelligence\u2019 in relation to Singapore\u2019s ongoing development as a nation. The idea that smart minds are essential for survival has shaped domestic policies and international positioning strategies. We ask: in what ways has human intelligence been defined, measured and harnessed? What counts as intelligence, and what does not? Beyond notions of intelligence centred on the human individual, we will also consider forms of collective and artificial intelligence, mediated by science and technology. What kinds of intelligence are needed for the future and how can Singapore develop them?", + "title": "Intelligence and Singapore Society", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2100", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This \u2018Senior Seminar\u2019 is required of students in their second year of residence in Tembusu College. The module will consider social and public health issues raised by modern advances in biomedicine, particularly as they affect Singapore and the surrounding region. Merging insights from medicine, social sciences, and the humanities, students will be introduced to problems, conflicts, and debates, and asked to form their own reasoned opinions. The seminar will meet weekly in small groups of 15\u201020, with periodic full\u2010class meetings to hear guest speakers.", + "title": "Biomedicine and Singapore Society", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A \u2018global city\u2019, a \u2018city in a garden\u2019, a \u2018city of 6.9 million\u2019... what do these and other models say about Singapore and its relationship to its past and future? This course facilitates critical and multi\u2010disciplinary engagement with the imagination and organization of Singapore as city. Students will examine visible aspects of the urban environment together with what is (treated as) invisible, and explore what is at stake in meeting Singapore\u2019s ambition within its borders and beyond. The module culminates in a project that allows students to situate ideals of the liveable, sustainable, inclusive (etc.) city in particular urban sites.", + "title": "Singapore as \u2018Model\u2019 City?", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2105", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module concentrates on the Asian built environment \u2013 architecture, urban planning and sustainable development. The theme of the archaeology of the future considers the many layers of the city, from examining its past to identifying its already emerging possible urban futures. Discussions and readings that provide in-depth, analytical, and critical perspectives on urbanisation and urbanism in Asia will be supplemented with a field trip to URA\u2019s City Gallery and workshops on Futures Thinking. In particular, students will be taught the Casual Layered Analysis (CLA) methodology to help them think critically and deeply about present trends and the multiplicity of future scenarios. Through Singapore as a case study, students will gain a deeper understanding of challenges facing a rapidly-urbanising Asia, cultivate intellectual tools to evaluate these challenges and embody solutions through a hands-on creative project.", + "title": "Asia Now! The Archaeology of the Future City", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2109", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With a focus on Asia, this course draws on a diverse range of literatures to provide a broad context for understanding the dynamics between humans and animals. Southeast Asia is one of last regions in the world with extensive rain forest habitat for wild animals, but these creatures are threatened by burgeoning urbanization and agriculture. The module will go beyond a focus on wildlife, however, to consider our relationship with \u2018urban animals\u2019 of many types. Through seminar-style classes and fieldtrips conducted around Singapore, the module will test new perspectives from international and regional studies of human-animal interaction.", + "title": "Animals and the City", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With a rapid growth in ageing population, technological advancements offer opportunities to impact the lives of the elderly in Singapore. There is an increasing need to improve the health and social needs of the ageing population. In what ways can we do to help the elderly achieve a sense of worth, confidence and productivity? How do technologies empower and disempower the elderly to have a stronger connection to their community and improved social life? What kind of technologies are required to address the needs of the growing ageing population in the future and how can Singapore develop them?", + "title": "Technologies and Ageing in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2114", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1830", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1500", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What are universities for? A university education was traditionally exclusive to the elites but is increasingly seen as crucial to professionalization and social mobility; democratic citizenship; fostering debate and the pursuit of scientific knowledge. This module examines recent debates chronicling how growing trends of neoliberalism have led to changes in how universities and higher education are viewed. We also examine the confluence of historical, political and social factors that shaped the establishment and development of universities in postcolonial society like Singapore. Students will investigate how universities in Singapore relate with their overseas counterparts and with global trends in higher education.", + "title": "The University Today", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2116", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores identity-formation in Asia from topdown and bottom-up perspectives, by looking at how authorities, communities and individuals construct their collective identities. The concept of \u2018identity\u2019 is a contentious site as it deals with issues of belonging, imagining communities and defining one\u2019s trajectory (identity-formation). Looking at historical cases to cross-compare examples among Asian societies, the course aims to encourage students to investigate groups and their relationships to their surrounding communities (families, societies and gender) and to examine the relations between state and identity, and between social activism and identity.", + "title": "Identities in Asia", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2400", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2 + ], + "venue": "CAPT-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 9, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2 + ], + "venue": "CAPT-SR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 9, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1700", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How \u2018green\u2019 is Singapore and how should we preserve biodiversity on this island? This GEM explores the rise of the conservation ethic in Singapore. It traces the scientific, social and economic conditions that gave rise to the global environmental movement, and to its various expressions in Singapore. Students will engage with stakeholders (scientists, officials, civil society) to understand the conflicts and collaborations between advocates of development and conservation. The class will make field trips to evaluate state-civil society partnerships (wildlife sanctuaries, green corridors, water catchment etc), and debate choices and dilemmas for the future.", + "title": "Environment and Civil Society in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2402", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "UT-AUD3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Originally a concept which bound individual members to a defined nation via relations of rights and responsibilities, \u201ccitizenship\u201d in the 21st century is coming under unprecedented pressure from technological change and\nglobalization. This module will trace the development of the concept, the values and social assumptions which underpin citizenship, and the interactions between liberal, communitarian and civic narratives of citizenship from\nancient Greece to contemporary Singapore. Three key relationships are considered: the rights and duties of citizens in relation to government, to other citizens, and to non-citizens in and beyond the polity.", + "title": "Citizenship in a Changing World", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Must urbanisation come at the expense of the environment? Using insights from urban planning, ecology, engineering, sociology and public policy, this module focuses on how cities can integrate with nature to create sustainable communities which minimise humans\u2019 ecological footprint. Students will explore the innovations utilised by different cities around the world. Using Singapore as a case study, students will be able to apply the concepts outlined in the Singapore Sustainable Blueprint into their communities.", + "title": "Cities and nature", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2404", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the concept of \u201cinvisible work\u201d \u2013 tasks that are an integral part of everyday life, yet remain unrecognized and devalued by employers, governments, consumers and even workers themselves. Students will learn about different conceptualizations of paid and unpaid work, gendered and racialized labor, and the challenges posed by a global market that increasingly relies on flexible, short-term contracts. Drawing from the disciplines of sociology, geography, and anthropology, readings will discuss domestic and professional care work, the emotional labour of service work, and the \u201chidden\u201d work of information technology industries and business process outsourcing.", + "title": "Work and Inequality", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2405", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 7, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Are you curious about the visual arts and their role in society? This senior seminar explores visual perception and the social dimensions of art, examining history, cultural values, symbolic meaning, and how these influence ways of seeing in Singapore and beyond. Through interactive activities, guest speakers from the arts world and museum visits, we will find out how some art works changed the world or are highly valued, and why others have gone unnoticed or discarded. Students will explore the socio-economic contexts that create cultural and counter-cultural movements, as well as cross-cultural exchanges in the art world.", + "title": "Beyond Seeing: Looking at Art", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2406", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module helps students to critically understand the unmet needs and issues of marginalised communities (e.g. the elderly and the disabled). It does this by providing students with opportunities to actively engage with a selected community, and to study its challenges in-depth. Students will be equipped with the basic concepts and skills of research and evaluation to study the community\u2019s programmes and policies. They will apply the knowledge they acquire in the classroom to real-world situations through group projects and collaborations with a community partner.", + "title": "Understanding Communities: Theory & Practice", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2407", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Does parenting come naturally? Are there significant cultural differences in parenting practices, between Singapore, Asia more broadly, and the West? Do women parent differently from men? In this module, students will see that parenting may be universal but also a diverse experience. Drawing on case studies from Singapore, and other Asian societies, we examine how parenting roles and styles and perceptions of parenting are differentially produced across time, place and context. Using an interdisciplinary approach, students will learn how broader systems of inequality through institutions, policies, experts, technology and material resources perpetuate socially stratified and fragmented experiences of parenting.", + "title": "Unequal Parenthoods in Asia", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2408", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 8, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is mental wellness? How do we define \u2018(ab)normal\u2019? How do communities across different countries and cultures perceive and promote mental health and resilience? How do the government, society and family contribute to mental wellness? What roles can medical approaches, mindfulness and mindsets play? This module explores the key concepts and approaches to mental wellness across disciplines, ideologies and cultures. We will examine different perspectives in Singapore and beyond to appreciate the mental health landscape at the global, local and individual levels.", + "title": "Mental wellness: Local and global approaches", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2409", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 7, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We often discuss the \u2018What\u2019 and \u2018Why\u2019 of Community Engagement. However, we seldom explore the \u2018Who\u2019 of Community Engagement the stakeholders. This module explores the dynamic relationship between Community Engagement and its stakeholders. We will look at definitions of stakeholders and how they impact the efficacy, direction, processes, and perceptions of Community Engagement in Singapore. We will focus on the government, social service agencies, donors, businesses, volunteers, community members and university students such as yourself, and adopt an interdisciplinary approach to analyse how they interact with one another. Finally, we will explore technology's rapidly changing role in Community Engagement.", + "title": "Stakeholders: Community Engagement as a Sum of Diverse Parts", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2410", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 7, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 7, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will take on an interdisciplinary lens in understanding the needs, strengths and challenges of youths and youths-at-risk in Singapore, as well as the ecosystems they are embedded in. Specifically, using the positive youth development approach, we will discuss how environmental and intrapersonal strengths can improve positive outcomes for these youths. We will also explore topics such as youth culture, youth mental health, risk and resilience in youth, youth voice and activism, among others. Importantly, we will examine how our deepened understanding of youths can inform our meaningful engagement with them.", + "title": "Positive Youth Development in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2411", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 2, + 4, + 6, + 8, + 10, + 12 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What defines \u2018crime\u2019? How does the likelihood of who commits crime and who is identified as \u2018criminal\u2019 differ across social contexts? This module approaches the relationship between crime and society through conceptual categories of class, gender, race, age, and geography drawing on local and global contexts of crime and justice. Students will use inter-disciplinary approaches to learn how institutions, policies, experts and mainstream society shape the landscape of crime, victimisation and justice. Furthermore, they will critically examine whether various formal and informal mechanisms of crime control adequately restore social order or conversely increase recidivism, exacerbate vulnerability and engender inequality.", + "title": "Crime, Society and Inequality (CSI) Singapore Edition", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2412", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1700", + "endTime": "1900", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "CAPT-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "While globalisation has generally improved local communities in Singapore and elsewhere, how and why has it also led to greater challenges and even crises, many of which harm communities and undermine globalisation itself? By taking a people-centered analysis, this seminar critically examines how global issues \u2013 ranging from pandemics to migration to social media \u2013 impact local communities. Rather than treating communities as passive, this interdisciplinary module draws on studies from systems approaches to sociology to demonstrate how communities exercise power in responding to globalisation. Using Singapore as a reference point, the seminar explores debates on globalisation and strengthening communities.", + "title": "Think Global, Act Local Understanding Global Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2413", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Capstone Experience is open to undergraduate members of the College (Year 2 and above) and builds on the first and second year modules of the UTown\nResidential Programme. Students may elect to work individually (e.g. as part of an internship) or in an multidisciplinary group. Together with an external organization,\nand under the guidance of an academic supervisor, they apply disciplinary knowledge and skills to address an issue or question which is authentic and of practical relevance to the community. In the process, students engage\ncommunities and organizations either locally or abroad in planning, implementing and communicating their ideas and concepts, develop collaborative and leadership skills, cultural competency and an awareness of civic values. The\nlearning experience is reflected in well-researched and thoughtful situational analyses, a learning journal, and midterm and final reports or presentations.\nCapstone experiences will be supervised by College faculty with expertise in the chosen area, with the participation of a qualified preceptor from the external\norganization.", + "title": "College 3 Capstone Experience", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2500", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 5, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Singapore, in the last 50 years, has evolved from a colonial port to a global city-state. Overcoming unanticipated, unprecedented, multifaceted challenges and severe resource constraints, it has emerged as a successful model-city through flexible and pragmatic policies arguably guided by systems thinking or the \u201cwhole-of-nation\u201d approach. This module will use numbers and simple systems models to understand the dynamics of Singapore with special attention on the evolving demographics, housing, healthcare and social harmony aspects. Students will also examine the impact of policy changes, generate scenarios and use them to make policy recommendations and projections for the near future. Students will employ qualitative and quantitative modelling tools learnt from a RC4 JS in this module.", + "title": "Housing, Healthcare and Harmony in Singapore: A Critical Perspective", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2700", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The rapid growth of the elderly population in Singapore is a source of concern due to the health implications of aging. While people are increasingly avoiding fatal events, they are often not avoiding the physiological changes associated with aging and the accumulation of chronic conditions and functional disability. Keeping pace with rising healthcare demand poses a key challenge for policymakers. This module explores the complex relationships between health and social care in the context of an aging society, with Singapore as a case. Students will be introduced to concepts and tools for health system-wide analysis of health and social care policies and strategies.", + "title": "Understanding Health and Social Care in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2701", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Singapore as a Smart Nation - where citizens enjoy a high quality of life, seamlessly enabled by technology and providing new opportunities for innovation and creativity. 'Internet of Things' (IoT) and 'Big Data' are essential ingredients to such a \"smart nation\". With the plethora and ubiquity of connected devices (50 Billion by 2020) and the clarion call to understand 'Big Data - The New Oil' (5 Exabytes every few days ) this module will provide insights into what these terms mean, their importance, challenges, and drivers. The module will have a blend of Lectures, Experiential Learning, Case Studies and some External Subject Matter Experts.", + "title": "Singapore - A Smart Nation in Context : IoT & Big Data", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2702", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Energy, environment, sustainability and climate change are multi-disciplinary and inter-related elements.With the increase in green consciousness and possible media hype, the quest for single-point, easy, solutions arise. This module takes a systems-thinking perspective to discover the complex technological interactions behind the political/socio-economic policies in energy/environment in Singapore and the ASEAN region. Explosive economic development regionally, where investment in infrastructure provides rapid \u201cReturns on Investment\u2019, means that there is greater competition for patient or impact capital for longerterm sustainable projects. Hence, this module shows that while technology is a necessary condition for economic development, it remains an insufficient condition.", + "title": "Energy and Environment: Singapore and ASEAN Perspectives", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2703", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A growing population, changing dietary habits and climate change are contributing to the challenge of securing food for Singapore. Singapore imports over 90% of its food supply and uses under 1% of its land area for agriculture. In 2015, Singapore was ranked the second most food secure country in the world. On the other hand, Singapore\u2019s food wastage has increased by 50% since 2005 and 1 in 10 people in Singapore is food insecure. This module takes a systems thinking and systems dynamics perspective to analyse and understand this apparent paradox between food security and food waste in Singapore.", + "title": "Hard to secure easy to waste - Singapore\u2019s food story", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2704", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Singapore has a shrinking and ageing citizen population, owing to its declining fertility rates and longer lifespans, rising singlehood and divorce rates, delay in marriages and family formation. Policies designed to lift its fertility rates have had little success. This module will use system dynamics modelling to gain insights into the dynamics and outcomes of population transitions in Singapore and countries facing similar or contrasting demographic challenges. It will also explore changing attitudes and expectations associated with singlehood, marriage and childbearing in Singapore and the region, and seek to understand the interplay of factors creating policy resistance in the city-state.", + "title": "Modelling Singlehood, Marriage & Fertility in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2705", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 11, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a social critique of markets and market behaviour in Singapore. Markets are often explained with methodological individualism as opposed to broader social systems that underscore behavioural and motivational determinants. This module presents an inter-disciplinary reading of selected economic concepts and critiques them from a social and holistic angle. It is principally a sociohistorical reading of how markets perform. In its application side, the module will reinterpret the success of Singapore using conceptual tools such as objective value theory, social productivity, the leisure class, and the historically determined social wage.", + "title": "A social critique of markets in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2706", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The world today is not only more interconnected and richer in content than ever before, but also more sensitive to disruption. Just as the proverbial butterfly flapping its wings can cause a tornado, can a small disturbance in a distant connection result in destruction elsewhere? This module focuses on such phenomena that seem to pervade a wide variety of complex issues in sociology, economics, finance, epidemics, terrorism, and science to name a few. Students will be able to debate through complex issues that Singapore and the world faces, model them, and in the process find handles to manage such complexities.", + "title": "Decoding Complexity", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2707", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 17, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Asia, with its populous river basins, poses a global challenge for water resource management. Currently, many of these basins suffer from water scarcity, flood and resource conflicts. In this aspect, Singapore\u2019s impressive progress can offer lessons for water governance. This module will employ a systems perspective to analyse the dynamic linkages between the city-state\u2019s water resource management, its transformation from a third world to a first world country and future risks for sustaining its development. The module will explore pathways for resilience in Singapore\u2019s water sector, draw lessons for Asia and deepen students\u2019 understanding of water governance.", + "title": "Navigation in Singapore Waters-Bridges and Barriers", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2708", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Energy in Singapore depends mainly on imported fossil fuels/petroleum/natural gas. Obviously, in the quest for alternatives, future energy demand and mix, some challenges/dilemmas arise naturally in Singapore context would nuclear energy deployment be feasible? Is wind energy a viable option? would a complete switch to solar, biofuels, and waste-to-energy technologies be possible? This module offers a systems and system dynamics approach to deal with such issues and the corresponding dynamics, dilemmas and decisions that arise while addressing them. Students gain insights into the political, socio-economic and environmental aspects of these challenges through relevant case studies/models.", + "title": "Energy and Singapore: Dynamics, Dilemmas and Decisions", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2709", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1900", + "endTime": "2200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a systems reading of social and economic thought with emphasis on the experience of Singapore. This module will outline the major contributions and weaknesses of received theory and critique them from an interdisciplinary or systems angle. It will contrast the methodological differences between the price-led systems and demand-led systems. Lastly, it will draw on the historical experience of Singapore to illustrate the differences between the behavioural-deductive and systems-inductive approaches to studying social and economic performance.", + "title": "Society and Economy in Singapore: A Systems View", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2710", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module takes a social systems approach underpinned by interdisciplinarity to survey the connections and linkages of policymaking and governance vis-\u00e0-vis religious actors in Singapore. Balancing between theory and application, and between historical narrative and focus on the contemporary, this module interrogates a wide and complex array of religious-related factors which may influence the government in its policymaking process and the implementation of public policy, secularism in Singapore notwithstanding. This module also investigates how the myriad of religious factors can effect social change and determine the direction of the policies of the government vis-\u00e0-vis politico-economic and socio-cultural issues in Singapore.", + "title": "Religion, Governance and Policymaking in Singapore", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2711", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We often experience leadership as someone leading from the top or as someone giving directions. In this module, we will learn about the leadership built upon active listening, good observation and meaningful participation - in particular with the less visible or marginalized communities in Singapore. This is an inter-disciplinary experiential learning module where community engagement is a strong focus. Readings are designed to give us the framework for meaningful interaction when meeting niche experts and practitioners in class and on field trips, motivating deep reflection and an authentic understanding of leadership.", + "title": "Leadership At the Fringe", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2712", + "semesterData": [ + { + "semester": 3, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-05-08", + "end": "2023-05-22" + }, + "venue": "RC4-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 4, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": { + "start": "2023-07-03", + "end": "2023-07-10" + }, + "venue": "RC4-SR1-2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "No society, no matter how economically, culturally and technologically advanced, is immune to collapse. What led to the collapse of past and present-day societies, and what can we learn from them? Did these societies foresee the impending calamities threatening their existence? If not, why not? If yes, why did they not act in time? How is Singapore vulnerable to existential threats plaguing the world today and how do we strengthen our resilience? In this module, students will explore these questions through the lens of existing theories, illuminated through the use of causal-loop diagramming and insights gained through computer simulation.", + "title": "Societal Collapse & Resilience", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2713", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In an increasingly complex and disruptive 21st century society, the enhancement of psychological resilience is significantly crucial and beneficial. With theoretical and empirical studies of the psychology of happiness, science of Mindfulness, other developmental psychological theories and models, as well as case studies of the incidence of mental health issues in Singapore, this module seeks to enhance its learners with a psychological \u2018inner programming\u2019 toolkit to be resilient so as to navigate the challenges of a volatile, uncertain, and complex world, as well as to develop cognisance and sensitivity to the Singapore mental health context.", + "title": "Mind, Ego and Happiness", + "faculty": "Residential College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTS2714", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR1-2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "\u2018Innovation,\u2019 \u2018growth\u2019 and \u2018development\u2019 are some buzzwords shaping our understanding of social realities. What do they reveal about the values upheld in modern consumer societies? In this module, we examine how themes like competition, self-responsibilization, self-accountability, rational profit-and-loss thinking and the constant impetus towards self-improvement operate as predominant frames in the conduct our daily lives. We explore how the identities and ideas of living in modern market-driven societies are constructed in relation to consumer lifestyles, sport, life-long learning and public housing. Students will develop writing skills enunciating varied points of view and arguments associated with the topics discussed.", + "title": "Identities and Ideas in Modern Market-Driven Societies", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001A", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "National identity is an integral part of who we are. Yet, it remains a highly disputed concept. This course will problematize key theoretical debates by exploring Singapore\u2019s national identity and examining how Singapore and regional countries have been shaped by interaction with colonialism and beyond. Drawing on a Multimodal Discourse Analysis (MDA), which allows us to analyse image and text interactions, we explore how national icons are created in public media and ask the question of how national identity still remains a powerful and emotional entity that rallies or divides people of different ethnicities, religious, cultural and socio-economic backgrounds.", + "title": "What is a nation? Texts, images and national identity", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What should be the reach of the arms of the law? Most find it unproblematic if a state punishes distributors of child pornography; but what if the punitive muscle of the state is also used to enforce public morality? Can the law intrude on the private lives of citizens? Should euthanasia be legal? In this module we shall be putting these and other pressing issues that are at the centre of political debate to critical enquiry. This module will appeal to students interested in the study of applied ethics, the criminal law, public policy and socio-political theory.", + "title": "At the Edges of the Law: Ethics, Morality and Society", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Cyberbullying, cyber-racism, online falsehoods. These are some of the phenomena that can be observed online. In an era of overwhelmingly diverse viewpoints within social media platforms, how has digital communication shaped and changed the way we communicate and respond to each other as human beings? Have we compromised more than we have gained? Drawing upon perspectives from various disciplines, this module helps students explore how opinions and ideas are formed, debated and transmitted in an age where human interaction is constantly mediated by technology.", + "title": "Self, Society, and the Digital Tsunami era", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001D", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This writing course considers the eternal question of what it is to be human in relation to the possibilities of transforming ourselves through genetic, neuro-cognitive or cybernetic technologies. How significantly would individuals, populations or the entire species have to be changed to warrant use of the term \u201cposthuman\u201d in describing them? How desirable would it be to transcend certain of our current limitations or to acquire wholly new capabilities? In small interactive classes, students will explore these questions through critical examination of viewpoints expressed in both scholarly literature and imaginative media, ultimately developing their own positions in written arguments.", + "title": "From Human to 'Posthuman'", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The internationalisation of higher education (IHE) is evident all around us international students, faculty, researchers; twinning, exchange, offshore programmes; and the list goes on.But amidst the ever-changing landscape, benefits and challenges of IHE (Knight, 2013), how has internationalisation impacted higher education? How have, say, academic mobility and cross-border alliances influenced students, institutions, countries and the world? What are its implications for cultural and academic values? In this module, we will examine the contexts of IHE, compare different case studies in various settings and analyse the controversies of marketisation, language/cultural attrition, global citizenship, etc.", + "title": "The Internationalisation of Higher Education: Impact and Challenges", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001F", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Human behaviours are complex. Individuals\u2019 intrapersonal and interpersonal social skills could affect how well they function in a society. This course will allow students to examine psychosocial and sociocognitive theories that explain intrapersonal and interpersonal social skills which are defined as 21st-century competencies. Students will evaluate the appropriateness/effectiveness of intrapersonal skills such as the self-concept/image, self-regulated learning and maintaining intellectual openness, and interpersonal skills such as team cooperation/collaboration, conflict management, and leadership in educational, political and business settings. By the end of this module, students should be able to critically analyse and develop awareness of essential social behaviours and skills.", + "title": "Human Behaviours: How do 'I' fit in this Social World?", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Do you know where your last meal came from? Have you ever wondered how your dietary choices affect communities, species and landscapes worldwide? This interdisciplinary writing course examines some human and ecological impacts of contemporary food-related practices and interactions. Readings from different perspectives focus critical attention on industrial agriculture, factory farming, packaging/distribution networks and international trade agreements in relation to issues of hunger, obesity, food security and environmental sustainability. In small collaborative classes, you will examine the strategies used by individual authors to construct persuasive arguments and learn to incorporate these rhetorical skills into your own writing about food.", + "title": "Eating Right(s): The Politics of Food", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In an era of instant digital mass communication, the scientific and technological ideas disseminated via mainstream news, entertainment, social media and other online platforms may result in the sharing of contagious narratives which are not necessarily consistent with the underlying science. Such narratives can affect public attitudes and behaviour, often with far-reaching social and economic consequences. This course aims to evaluate some of these narratives to enable students to determine the degree to which they represent scientific 'truth'. By the end of the module, students should be in a better position to engage with media representations of science in general.", + "title": "Science and popular narratives", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001I", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How do we raise questions about our collective responsibility as a species towards our planet? How do we deliberate about uncertainty regarding climate change\u2019s effects? In this module, we discuss issues ranging from Siberian fires to climate refugees to investigate how some perspectives of the climate crisis become salient and prominent while others are silenced in dynamic socio-political environments. By analysing the discourse of an article and examining its presentation, we understand the \u2018spin\u2019 on a particular perspective. We then investigate what makes some of these perspectives popular ways of understanding the climate crisis, while others are absent.", + "title": "How do we frame the Climate Crisis?", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001J", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In professional, competitive sport, there appear to be fundamentally distinct ideas concerning human endeavour and the nature of competition that are worthy of critical examination. Is winning everything? Should participation or self-defining achievement be more valued? Is sport becoming too elitist? Does the obsession to win create the need for performance-enhancing drugs? Should we legalize doping or tighten control measures? Should we change the nature of professional competitive sport? Students will explore these questions through close analysis of viewpoints expressed in both scholarly literature and popular media, ultimately developing their own positions in written arguments.", + "title": "Sport and competition", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001M", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR5", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0800", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Public persona is a fundamental yet unarticulated aspect of persuasion in spoken discourse. In this course, students will explore and examine speakers\u2019 public persona with a focus on interactional and social roles in performed presentations before a public audience. What does it mean to perform a public persona? How is public persona shaped, strengthened, or attenuated? Is there such a thing as an \"authentic\" public persona? In seminar-type classes and, subsequently, in writing assignments, students will analyse verbal and nonverbal performance of a speaker or speakers in mediated and/or non-mediated contexts, and develop informed views of their public persona.", + "title": "Public Persona and Self-presentations", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to develop the ecocritical* awareness essential for understanding and navigating cities in an age of climate crisis. Students of this module will focus on reading, thinking and writing ecocritically about urban development in Singapore and other cities in Southeast Asia where urban development has displaced nature and wildlife. This will involve employing close-reading strategies traditionally employed in literary analysis to read stories, poetry, movies, paintings and photographs alongside historical, geographical, and psychological accounts that examine urbanisation and its effects on the human and nonhuman inhabitants of cities. *Ecocriticism, which is committed to examining the relationship between humans and nonhumans, has its roots in literary studies. As a discipline, ecocriticism has expanded beyond Literature and includes a range of diverse disciplines including the environmental science, history, geography, sociology, psychology and politics.", + "title": "The Urban and the Wild: Reading Urban Progress in Southeast Asia Ecocritically.", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001O", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1100", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "RC4-SR6", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the development and transformation of heroic figures across time and cultures, how people have reacted to these figures, and how these figures have been adapted. Students will engage with multiple versions of the \u201chero,\u201d both male and female, from a variety of media (literature, film, television, graphic novel) and scholarly literature on the subject as a means to develop critical writing skills. Some questions we will ask include What defines a heroic character? What do a society\u2019s heroes reflect about its own values? What are the dangers of uncritical acceptance of heroes?", + "title": "Heroes", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will explore how a language is shaped by the culture in which it is used and how it in turn shapes its users\u2019 views of other cultures. They will investigate the culture-specific aspects of language, how they colour speakers\u2019 worldviews, and how differences in worldviews may lead to intercultural misunderstanding. Students will develop reasoned positions on particular issues in intercultural communication and formulate arguments to defend their points of view. The focus will be on English and Singlish but other varieties of English and other languages will be used for comparison.", + "title": "English, Singlish and intercultural communication", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course discusses the nature of oratory and how it potentially influences the public mind, that is, how the public perceives, understands, and acts upon social and political realities. Students will be introduced to ways of critically analyzing speeches as they interrogate the power and limitations of oratory in influencing the public mind. Students will consider the following questions What elements in the speeches enable speakers to \u2018adjust ideas to people and people to ideas\u2019? How do speeches shape and get shaped by their contexts? How are ideas expressed in the speeches transformed to create impact on the public mind?", + "title": "Oratory and the Public Mind", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the representation of women in film as a site of ideological struggle. Students will investigate the multi-facetted images of women that appear in selected films and engage in critical debates about the messages that these images convey, as well as the extent to which they are influenced by history and culture. With an understanding of film analysis and the concept of ideology, students will examine how diverse viewpoints are expressed in key scholarly readings and contemporary articles, and develop writing skills that enunciate their own position within the debates.", + "title": "Women in Film", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Is it wrong for eight men to have as much wealth as 3.6 billion people? If so, what should we do about it? This module offers a deep dive into the nature and ethics of wealth inequality. It has two parts. We first address a theoretical question When, if ever, is inequality morally wrong? This lays the foundation for the second part, where we examine the causes and consequences of wealth inequality, along with possible responses. The aim is to critically examine our attitudes and policies as we strive for a just and practical distribution of wealth.", + "title": "How Rich Should Anyone Be?", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001T", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR4", + "day": "Friday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR4", + "day": "Tuesday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "TC-SR4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The detective genre is well positioned to foreground the rhetorical situation in its concern with the generation of meaning. In this module students are invited to identify with the detective who offers a metaphor for the process of reading carefully for information, distinguishing between valid and inadequate evidence, and constructing a credible argument built on knowledge gleaned from careful observations. Students will engage in debates around what constitutes \u201cknowledge\u201d, how (and whether) \u201ctruth\u201d can be arrived at, and how the detective genre can illustrate these debates through an understanding of epistemology, i.e. the theory of knowledge.", + "title": "The Detective", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001U", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Using social media as a political battleground during the 2011 General Election changed Singapore\u2019s political landscape indelibly. It exemplified an emerging trend the increasing use of Facebook, Twitter, Instagram and Snapchat by politicians to gain greater political support and popularity. In fact, using social media for political communication has gone viral in Singapore, Asia-Pacific and beyond. This module explores the dynamics of social media in political communication, with a focus on Singapore, as well as the United States as case studies. Students will analyse the impact of conventional means of political communication as opposed to those using social media.", + "title": "The Online Politician: The Use of Social Media in Political Communication", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001W", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We live in the age of Big Data, but where is our relationship with technology leading us? In this writing module, we interrogate the entity that we call the algorithm through the lens of the cultural meanings ascribed to it. We ask how those meanings shape our material reality. Various phenomena will be critically discussed, such as the lure of Netflix, the ubiquity of fitness trackers, and the use of smart technology by states to govern. Ultimately, through deep reading and analytical writing, we will engage with the question of what it means to be human in a technological society.", + "title": "Algorithmic Culture and its Discontents", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Colour has fascinated humans for millennia, yet it is poorly understood. What is the symbolic meaning of colours across cultures? How do colours impact our psychological well-being and our consumer choices? From the earth pigments of the prehistoric painters, to the synthetic colours of the Impressionists, colour technology has developed to meet new communication and expression needs and in doing so, a whole repertoire of meanings has evolved. In this module, students will explore scholarly and popular texts from a range of disciplines including visual arts, fashion, psychology, marketing and anthropology to investigate the theory, meaning and practices of colour.", + "title": "Colour: Theory, meaning and practice", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW1001Z", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 16, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Venturing into space, the most hostile of extreme environments, poses a host of complex and unusual challenges to human well-being. Through examination of the physiological, psychological and social factors that astronauts must contend with, students will engage with the ethical questions that confront governmental and private agencies when sending men and women into space. Before selecting specific ethical questions to explore in their research papers, students will also examine the motivations (scientific, commercial, political) behind different kinds of space mission and consider the moral obligations humankind may be under with regard to the exploration and potential exploitation of extraterrestrial environments.", + "title": "Ethics in Outer Space", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We live in a time characterized by an intensified awareness of risk. Our perception of risk, whether related to new technology or social activity, is greatly influenced by how mass media represents it. Taking prominent social theories of risk as its critical frame of reference, this course will explore the role of news, television shows, popular fiction and films in shaping public opinion on, and responses to, potential and presumed threats. These range from environmental pollution, pathogens and medical procedures to terrorism, cybercrime, immigration/immigrants and un(der)employment. Case studies may include Fukushima, Chernobyl and the Y2K phenomenon.", + "title": "RISK and Popular Culture", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Thursday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "CAPT-SR4", + "day": "Monday", + "lessonType": "Sectional Teaching", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Vampire literature has undergone a twenty-first Century resuscitation, evident in novels such as Twilight and television series including The Vampire Diaries and True Blood. But how similar are these vampires to the traditional vampire in Western and other cultures? In this module you will explore different explanations for the role/function of the Vampire and have the opportunity to research manifestations of the Vampire across cultures, genres and historical periods.\nYou will review different research methodologies, and compile a list of terms and ideas that enable you to participate in the conversation to understand the ongoing\nfascination with the Vampire.", + "title": "Blood, Death and Desire, Interpreting the Vampire", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This research-based writing module examines the intersections of public memory, identity, and rhetoric in contemporary Singapore. In the module, students will consider theories and methodologies drawn from the interdisciplinary field of memory studies and pratice applying them in a variety of Singaporean contexts\u2014considering, for example, the Singapore Memory Project, local museums, plays, political speeches, the preservation and transformation of memorial spaces or historical sites such as Bukit Brown cemetery, and more. Students will use their new knowledge of the rhetorical power of memory to embark on their own research project examining course themes.", + "title": "Public Memory, Identity and Rhetoric", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this research-based module, we will explore how urban spaces across Southeast Asia have been imagined through visual forms like cinema, painting, advertising, and digital media. Using historical, theoretical, and anthropological texts as models, we will inquire into the process by which images negotiate and redefine the contours and notions of the geographies they are made to replace. How do movies transform disregarded cityscapes into protagonists? How are photographs and postcards of abandoned or demolished structures incorporated into historical memory? How do territorial, tourist, and transit maps shape aspirations of citizens and migrants? Students can pursue one of several trajectories.", + "title": "Visualizing Southeast Asian Cities", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Involvement in professional and amateur sports through competition, ludic activity or spectatorship is a social experience and thus connected to larger social and cultural formations. Students will engage with sociological research and develop their own critical positions grounded within functionalist, interactionist or critical theory frameworks in one of three areas: (1) Socialization into sport; what factors may influence initiation and continuation? (2) Socialization out of sport; in particular what are the causes and effects of burnout or retirement in competitive sport? (3) Socialization through sport; how are dimensions of identity (embodiment, gender, race, social class) developed?", + "title": "Sport and Socialization", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Science fiction is less about the future than it is about the present. Many science fiction narratives critique contemporary social issues, particularly imperialism and colonialism. This course will introduce students to the theories of colonialism and their importance in a modern context. Armed with this knowledge, students will engage with classic and contemporary science fiction texts in order to understand, as well as question, how such narratives describe and proscribe ways of ordering the world. In developing their original research projects, students will explore how this intersection between popular narrative and ideology influences many of the ways we think about culture today.", + "title": "Science Fiction and Empire", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is often assumed that there is a common understanding of what specific words mean. However, can one assume a common understanding across cultures of words describing colour, such as 'red' or 'maroon,' or emotion, such as 'happiness,' 'pleasure,' or 'disgust'? Are forms of address, such as nicknames, or interjections, such as 'damn' or the 'F' word, used in similar ways across cultures? Are there differences between the ways that speakers of different varieties of English understand the meanings of such words? This module explores how meaning is culture-bound, and helps students understand cultural differences in the choice and use of words.", + "title": "'What's in a word?' Meaning across cultures", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Citizens participate in society through discourse -- talk and texts. How citizens speak and write about social issues in face-to-face and online platforms therefore warrant careful reflection. This course aims to enable students to examine how individuals enact their citizenship through language and other symbols. Students will investigate how citizens mobilize language, voice, body and other resources to deal with issues pertaining to social differences, processes of exclusion, and participation in local, regional and global contexts, among others. By the end of the module, the students should be able to develop critical awareness of\nhow civic discourse shapes public issues.", + "title": "Discourse, Citizenship, and Society", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The traditional notion of masculinity as homogenous has given way in recent decades to a proliferation of multiple masculinities that questions the relationship between gender and power. This socio-cultural phenomenon is manifested on film. Masculinity can be seen as a contested space where different masculinities fight for dominance, and older forms of masculinity are displaced by new ones.This module invites you to consider social, cultural and historical influences on constructions of masculinity on film, as well as textual contexts such as genre, as you critically reflect on the diversity of masculinities that are represented.", + "title": "Masculinities on Film", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The sense of having a self pervades everyday experience as well as the stories we encounter in fiction, film, television, and video games. On the other hand, the self has been called into question from various scientific, religious, and philosophical perspectives. This module examines the concept of selfhood, considering the possibility that it may be a fabrication, and examines the positive and negative aspects of positing the existence of selfhood. The module culminates in student research projects that apply critiques of the self from cognitive psychology, Eastern religion, and/or continental and analytic philosophy to a text of their choosing.", + "title": "Nobodiness: The Self as Story", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001T", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores how online interactions foster collective identities premised on real/imagined social, economic and political injustice. The 20th century generated identity politics, with its focus on a shared loss of dignities resulting from prolonged colonial or imperial oppression. Evolving political and social settings gradually led to movements centred around distinct group identities (feminist movements, civil rights movements etc.). Advancements in digital communication in the new millennium have led to new variants of online collective identities. This module will examine how virtual identity politics is impacting offline politics, and demanding changes to socio-economic and political landscapes both locally and globally.", + "title": "Alter ego / authentic self? Online political identities", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001W", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Colour is key in visual communication. In this module, students will engage with the topic from a social semiotics and multimodal perspective to explore how colour meanings, for example ideational, interpersonal and textual, are created and interpreted. Students will develop a research paper around an artefact of their choice from fields such as marketing, design, visual and performing arts or their discipline, to examine how colour conveys meanings and/or how these colour meanings are perceived in the community. Through their project, students may explore a range of social issues related to, for example, gender and race.", + "title": "The Semiotics of Colour", + "faculty": "NUS", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UTW2001Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches writing and critical thinking through a critical exploration of the notion of cosmopolitanism and its relation to colonialism. Topics discussed include the origin of cosmopolitanism, the relevance of cosmopolitanism as a moral ideal in the age of globalization, and the formation of cultural identity among diasporic Asians. The module thus provides the chance for students to reflect on the notion of global citizenship in the contemporary world, as well as their responsibilities as cosmopolitan citizens.", + "title": "Writing and Critical Thinking: Colonialism and Cosmopolitanism", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Religion in Public Life concerns the intersection of religion and society and the role of religion in the officially secular state of Singapore. Students will study how religion is discussed in both academic and popular literatures and examine how religious organizations present themselves in order to participate in discussions of social, political or economic importance. The module will include a fieldwork\ncomponent that will provide students with the data needed to write meaningful research papers based on real sites in Singapore. As a WCT Course, this module will give students the skills to produce rhetorically effective academic writing.", + "title": "Writing & Critical Thinking: Religion in Public Life", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101AA", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The University Scholars Program aims to be a \u201ccommunity of people who are curious, critical, courageous, and engaged\u201d. Although we rarely think of it in this way, an older tradition would call such qualities aspects of wisdom. In this module, we will study the concept of wisdom from different disciplinary angles, ranging from philosophy to neurobiology and cultural studies. We will discuss key aspects of wisdom such as judgment and self-transcendence, study how wisdom can be developed, and consider how it might be relevant in professional life or even help to solve world problems.", + "title": "Writing and Critical Thinking: What is Wisdom?", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101AB", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores how science, as a fundamentally human endeavor, is shaped by the social contexts in which it is practiced. Students will study the social production, circulation, and uptake of scientific knowledge through a series of case studies drawn from the interdisciplinary field of Science and Technology Studies.\nStudents will gain an appreciation of the social processes scientists rely upon to arrive at truths and how scientific ideas and techniques transform once publically circulated. The module will culminate in individual research projects analysing the social contours and consequences of current scientific debates.", + "title": "Writing & Critical Thinking: The Social Life of Science", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101AC", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches writing and critical thinking through a\ncritical exploration of theories of civic and public discourse\nas they were configured by the ancient Greeks. Topics\ndiscussed include the political, ethical, and emotional uses\nand impacts of civic discourse. The module thus provides\nthe chance for students to gain a critical awareness of the\nnatures of their own engagement with public discourses, to\ncontextualise these discourses both locally and\ninternationally, and to explore the possible futures of\ncommunities of which they are a part.", + "title": "Writing and Critical Thinking: Civic Discourse in a Fractious World", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores how monuments, memorials and other forms of public commemoration represent the past and influence culture and politics in the present. It takes a comparative approach, using case studies from different societies. The module highlights the complexity and contested nature of commemoration and memorialization. Although monuments and memorials may be intended to\ntell the \u201ctrue\u201d version of historical events, the end result often hides controversies that may have been part of the process of designing these structures. Similarly, the\nmeanings attached to monuments and memorials can change dramatically over time, as societies change and these structures are reinterpreted.", + "title": "Writing and Critical Thinking Module: Monuments, Memorials, and Commemoration", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Everyday narratives are those informal stories we tell each other about ourselves and our quotidian experiences. In this module, such narratives will be analyzed in terms of identity politics, how they instantiate social power, and how they frame epistemological knowledge, such as scientific discourse, not normally associated with narrative as a mode of representation. Students will generate a corpus of genuine sociolinguistic narrative data and analyze it in an interdisciplinary framework.", + "title": "Writing and Critical Thinking: Narrative in Everyday Life", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates the relations between literature and the realm of the ethical. As the module does not take the categories of 'literature' and 'ethics' for granted, it challenges students to do more than simply read literary texts for ethical content. Exploring the relationship between literature's representation of ethical concerns and the demands that a work of literature makes upon the reader's moral judgement, students can articulate their own understanding of the values, choices, and responsibilities involved in writing and reading.", + "title": "Writing & Critical Thinking: Literature and Ethics", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches writing and critical thinking through forms of human trafficking in the contemporary world. Topics discussed include sex workers, migrant labour, abolitionist and human rights approaches to human trafficking, as well as media representations. The module thus provides the opportunity for students to reflect on the nature of problem in the contemporary world, as well as \ntheir responsibilities as global citizens.", + "title": "Writing and Critical Thinking: Human Trafficking and Labour Migration", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module primarily introduces fundamental skills of writing that are appropriate to the interdisciplinary context of the USP. It does so by advancing various topical questions surrounding our fascination with and anxieties about the portentous and cataclysmic events leading to the end of world. Are these concerns new or culturally specific? Are these apocalyptic visions obsessed with finality or are they genuinely more interested in new beginnings? In exploring these topics, students develop skills necessary in reading primary and secondary texts, to ask focused questions and explain why they matter, and ultimately to respond with well-formed arguments.", + "title": "Writing & Critical Thinking: Apocalyptic Cultures", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the ways power, space, and pleasure are interconnected. The module is divided into three units. First, we will look at how space is related to questions of power, focusing in particular on surveillance. Then, in the second unit, we will consider more closely the relation between space, power and pleasure as exemplified in voyeurism and surveillance : here we will be watching people watching other people. Finally, we'll consider the relations between space, power and pleasure in Singapore, in particular as this applies to the tensions between traditional practices and urban planning in city spaces here.", + "title": "Writing & Critical Thinking: Power, Space and Pleasure", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will develop students' critical reading and writing abilities through an active, seminar-style engagement with a variety of materials related to the nature and impact of modern consumer culture. We will begin by examining a number of key theoretical positions concerning the relationship between human nature and the need or desire for material things. Once we have interrogated some of these arguments, we will examine the phenomenon of modern advertising and consider the extent to which individual ads shape our buying habits and even our values. The module concludes by investigating the relationship between today's corporations and youth culture.", + "title": "Writing & Critical Thinking: Interpreting Consumerism", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module like others in the Writing and Critical Thinking area helps students become better writers of argumentative essays. To do this, we will specifically examine the modern phenomenon that is tourism, asking questions such as: What is a tourist? Why do we become tourists? Why do we send postcards, take photographs, or collect souvenirs? Do tourists find ourselves when we go abroad? Do we lose ourselves? How are cultures packaged for tourists, and is this packaging always reductive? Such questions will help us to understand the assumptions behind tourism, and to explore issues of modernity, nationality, self and other, identity and culture.", + "title": "Writing & Critical Thinking: Sites of Tourism", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A multidisciplinary module that examines crises and debates generated by different concepts of evolution and progress in areas of: natural science and technology; sociology and theology, history and politics, economics and literature. Evolution is examined from Darwin's Origin of Species to the present day. We address such issues as: telling the difference between \"true\" science and pseudo-science; use and interpretation of \"scientific\" evidence; social Darwinism; the ethics and principles of \"survival of the fittest\" and eugenics. Lastly, the concept of progress is examined in the context of debates about Singaporean history and identity.", + "title": "Writing & Critical Thinking: Questioning Evolution and Progress", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will investigate a fundamental human question: what is happiness, and what do we need to attain it? Is happiness in our own control or does it depend on external circumstances, such as wealth or freedom? Are pleasure or virtue necessary or even sufficient conditions of happiness? What constitutes a meaningful life, and how is meaning related to happiness? To reflect on such questions, we will investigate the arguments of philosophers, psychologists, economists, and other thinkers over the course of three thematic units.", + "title": "Writing and Critical Thinking: Conditions of Happiness", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101L", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Scholarly Pursuits examines colonialism as an ethnic experience that shaped schooling into an institution designed to socialize people living in colonial societies into accepting identities like \"the coloniser\" and \"the colonised\". It also examines contradictions within these identities as polarising the colonised and colonisers into becoming challengers or defenders of the moral and social legitimacy of colonialism. Students will write papers that contribute to constructing a theoretical framework that explains how colonialism shapes the policies and practices of schooling, interpret their impact on students and teachers, examine paradoxes, contradictions, mysteries to modify or create new interpretations for understanding colonial schooling.", + "title": "Writing & Critical Thinking: Scholarly Pursuits", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The subject students will think, read, and write about in this module is clothing and identities. Do clothes make the man or woman? Most people accept that the clothes we wear say something about us? Particularly about our race, gender, class, and power status. But what do they say, exactly? How do they say this? Why have we learned to see clothes as speaking thus? Furthermore, if clothes say certain accepted things, what happens when people dress in inappropriate ways?", + "title": "Writing & Critical Thinking: Clothing Identities", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will examine three aspects of the role of journalism in an ongoing debate over whether citizens have the capacity to understand and make decisions about public issues in democratic communities: (1) A news audience's role in establishing \"journalistic truth\", (2) Ideological assumptions driving social commentators to different positions in this debate, and (3) News as propaganda. Through a series of smaller sequenced assignments leading up to three larger essays, students will read, respond, and question ideas generated by published writers as well as their classmates.", + "title": "Writing & Critical Thinking:News and the Public", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101P", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A topic of profound interest to philosophers, social scientists and moralists, civility sets the conditions in which differences of opinion are admitted and aired. All too often, civility is taken for granted : just good manners. But actually, civility is one of the most intricate social frameworks, perhaps especially in a world city such as Singapore. This course surveys recent ruminations about civility in personal, professional and civic life to foster discussion of real-world interactions.", + "title": "Writing & Critical Thinking: Civility in the World City", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is \"the mind\" and where does it fit in the interdependent histories of nature and culture on our planet? Does \"mind\" reduce to brain activity? Or is it more than just the electro-chemical exchange between neurons? As minded creatures with brains ourselves, the ways in which we delimit the mind/brain relation has enormous consequences for the ongoing construction of our legal, social, medical and ethical lives. In this module, we will study some of the major approaches to this issue, and attempt to discover what it is that we are really talking about when we are talking about \"mind.\"", + "title": "Writing & Critical Thinking: Multidisciplinary Perspectives on 'Mind'", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to skills necessary for writing an academic essay. It does so by facilitating students' ability to think critically about the relationship between the concepts of \"danger\" and \"national security\". In particular, it asks if the process by which danger is identified by national communities are unquestionable and self-evident, or if they are historically contigent and mutable. In this regard, is \"danger\" constructed to foster national solidarity and identity? This module examines different cultural and political texts attesting to the changing nature of the national security community, and uses them as the basis of teaching the elements of essay writing.", + "title": "Writing & Critical Thinking: Danger and National Security", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Increasingly, discussion regarding the debate over the \u201cglobal war on global warming\u201d presents us with a number of unsettled questions regarding the interplay of science, politics, and personal morality. This module focuses closely on the contemporary debates regarding \u201cgreen\u201d policy and lifestyle as a way of examining the broader phenomenon of public advocacy and resistance discourse per se \u2013 i.e., on disputants\u2019 various ways of speaking about, and attempting to get others to think about, issues of mutual importance. In so doing, students will learn the skills of analytical argument and expository writing necessary for their own successful participation in such debates.", + "title": "Writing & Critical Thinking: The Politics and Rhetoric of Green", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101T", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Domestic life is routinely held up for admiration as pure or natural. But how many of us experience family time/space in that way? Challenging the truism that domesticity offers a refuge from the modern world, this module recognises that technology makes it possible for modern people to be, and feel, at home. Some relevant technologies involve engines or electronics. But others organise ideas about gender, room, place and belonging. By enhancing awareness of domesticity\u2019s \u201cconstructed nature,\u201d this module deepens understanding of home sweet home.", + "title": "Writing & Critical Thinking: Technologies of Home", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101U", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Depictions of \u2018natives\u2019, \u2018primitives\u2019 and \u2018savages\u2019 abound in the popular cultures of developed countries worldwide. In this module we will examine common stereotypes of native people and primitive cultures to uncover the underlying ideologies driving them, and analyze what cultural purpose such stereotypes serve in modern day life. We will seek to discern what palpable differences exist between primitive and modern people, and to confront the cultural and ethical conundrums entailed by those differences. Finally, we will explore how primitive people view modern society, and assess what the future may hold for native cultures in our fast globalizing world.", + "title": "Writing & Critical Thinking: Language, Culture and 'Natives' People", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101V", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The various twentieth-century genocides raise profound questions for individuals and societies. Why did they happen? How could they happen? Who did the killing and what motivated them? How should we remember? What do the events mean today? \n\nThe last two questions are particularly pertinent to us. The history and memory of genocide are seldom simple. People select which details to include and exclude in order to fashion narratives and interpretations. Often those interpretations have implications not only about the topic itself, the genocide, but about the people who are remembering, and their relations to the past and to other groups. This leads to the second question. Many have suggested that genocide, as we understand it, is a relatively recent phenomenon, and indeed, belongs to modernity. It is important to consider whether and in what ways this might be true.", + "title": "Writing & Critical Thinking: Genocide and Memory", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101W", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches writing and critical thinking through a critical exploration of the nature of the university as an institution. Topics discussed include the many social roles of the university, the history of the university as a contested space in Singapore, and the effects of globalization and transnational education markets on contemporary tertiary education. The module thus provides the chance for students to gain a critical awareness of the nature their own educational experiences, to contextualise them both locally and internationally, and to explore the possible futures of learning communities of which they are a part.", + "title": "Writing and Critical Thinking Module: The Idea of the University", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101X", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module teaches writing and critical thinking by introducing students to the assumptions that inform, and the arguments for, different concepts and practices of justice. Students will engage topics such as human rights, the place and limits of legal institutions, justifications for civil disobedience, and whether violence is justified in the pursuit of justice. This module enables students to think critically about theories of justice and how these theories shape the pursuit of justice in political life.", + "title": "Writing and Critical Thinking: Issues in and Around Justice", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101Y", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines how social attitudes and government policies towards vices such as alcohol use, gambling, and prostitution have evolved in Singapore from the colonial period to the present day. Students will develop their critical thinking and writing skills through analyzing a range of historical primary sources, including newspaper opinion pieces and government reports, and studying relevant case studies from other countries and theoretical works. The main assessment component is an individual research project on issues related to the control of a selected vice in Singapore, utilizing archival sources.", + "title": "Writing & Critical Thinking: Vice, the State & Society", + "faculty": "University Scholars Programme", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "UWC2101Z", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed to introduce participants to the scope and principles of palliative care, and the general principles in the management of advanced cancers and the advanced non-cancer diseases.", + "title": "Introduction of Palliative Care", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "VM5101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers principles of management of common symptoms encountered in palliative care, namely pain, cachexia, fatigue, gastrointestinal and respiratory symptoms. It also covers issues of hydration and nutrition\nin palliative care.", + "title": "Symptom Management in Palliative Care I", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "VM5102", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers management of common emergencies in palliative medicine. These include metabolic (eg: hypercalcaemia), neurological (e.g.: cord compression, delirium and brain metastasis) and other conditions like\nbleeding and fractures. Management of common infections and nursing issues (wound and tubes management) will also be included in this module.", + "title": "Symptom Management in Palliative Care II", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "VM5103", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers common psychosocial and spiritual issues in palliative care. Assessment and management of Anxiety and Depression as well as managing patients asking for hastened death will be included. There will be a section on grief and bereavement and caring for caregivers, including healthcare workers. Sexuality and body image and its impact on patients\u2019 psychosocial wellbeing will be covered in the module.", + "title": "Psychiatry, Psychosocial Care & Spiritual Issues in Palliative Care", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "VM5104", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module covers communication skills in breaking bad news, managing collusion, conducting a family conference and advance care planning. It also covers major ethical dilemmas encountered in palliative care such as withholding and withdrawing life sustaining treatment. Learning will be achieved through use of role plays and case discussions in this module.", + "title": "Communication and Ethical Issues", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "VM5105", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This last module is designed to consolidate the teachings in the last 5 modules into practice, and to see how palliative medicine is practised into various settings in the community and in special groups of patients.", + "title": "Practices of Palliative Medicine", + "faculty": "Yong Loo Lin Sch of Medicine", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "VM5106", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to enhance students\u2019 workplace readiness, personal and interpersonal effectiveness, inner resilience, as well as leadership qualities. Attributes associated with team spirit and personal effectiveness are developed through camps, sustained sports activities, and career readiness workshops and seminars. Unlike the interdisciplinary and writing and communication modules which are credit-bearing modules, this module is not credit bearing. It is however compulsory for all students to read. The module challenges students to venture and explore beyond their comfort zone and places them in situations/contexts where their endurance and resilience are put to test.", + "title": "Workplace Readiness", + "faculty": "Residential College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "WR1401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The main objective of his module is to develop the knowledge acquired in XD1101 by students taking the Health and Social Sciences Minor with a systematic introduction to social sciences\u2019 research and findings on health phenomena. Students will be introduced to social sciences research on health and how research is accomplished, through the discussion of (a) major research trends and (b) most significant findings on health phenomena in economics, psychology, sociology and social work.", + "title": "Health and Social Sciences", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "XD2102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module provides an overview of geology \u2013 the\n\nscience of the earth. An understanding of geology is\n\nimportant to many disciplines, providing information\n\nabout the physical and chemical processes that\n\ndetermine the distribution of resources, location of\n\nhazards, operation of surface processes and the\n\ninteraction between engineering structures and earth\n\nsurface materials. The four components of the module\n\nbegin with consideration of the earth\u2019s structure and\n\nthe role of plate tectonics, before considering the\n\nnature of earth surface materials and the functioning of\n\nearth surface systems.", + "title": "Planet Earth", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "XD3103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "E3", + "startTime": "1400", + "endTime": "1600", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "E4", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_C", + "day": "Thursday", + "lessonType": "Lecture", + "size": 120, + "covidZone": "Unknown" + }, + { + "classNo": "E2", + "startTime": "1000", + "endTime": "1200", + "weeks": [ + 4, + 6, + 8, + 10, + 12 + ], + "venue": "AS2-0203", + "day": "Tuesday", + "lessonType": "Tutorial", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-12-01T09:00:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For this module which is applicable to the double honours degree programmes, students are required to write a scholarly report of not more than 40 typed pages (including bibliography and appendices) on a rigorous multi-disciplinary research on current issues, or on theory or methodology.", + "title": "Integrated Honours Project", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "XFA4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For this module which is applicable to the double honours degree programmes, students are required to write a scholarly report of not more than 40 typed pages (including bibliography and appendices) on a rigorous multi\u2010disciplinary research on current issues, or on theory or methodology.", + "title": "Integrated Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFA4402", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows CNM/Business double degree students to write an honours thesis that integrates their two areas of study\u2014Communications and New\nMedia and Business. Students taking this module must conduct an independent research project on an approved topic under the supervision of two faculty members (one from CNM and one from the School of Business). The maximum length of the\nthesis is 12,000 words.", + "title": "Integrated Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFA4403", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "DDP students may complete the Integrated Honours Thesis (IHT), a single thesis which will count towards the requirements and CAP computation of both\ndegrees. It aims to provide students with the opportunity of exploring the meeting points of their two disciplines. It will be jointly supervised by faculty\nmembers from both faculties. Students intending to read this module are expected to consult prospective supervisors the semester before they read this module and provide a research proposal. A wide range of topics is acceptable provided it highlights a language issue.", + "title": "Integrated Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFA4404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Double Degree Programme (DDP) students may complete the Integrated Honours Thesis (IHT), a single thesis which will count towards the requirements and CAP computation of both degrees. The IHT aims to provide students with the opportunity of exploring the confluence of their two disciplines. It will be jointly supervised by faculty members from both faculties. Students intending to read this module are expected to consult prospective supervisors the semester before they embark on the IHT and provide a research proposal. Students are open to conduct research on a wide range of topics as long as it is related to psychology.", + "title": "Integrated Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFA4405", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Double Degree Programme (DDP) students may complete the Integrated Honours Thesis (IHT), a single thesis which will count towards the requirements and CAP computation of both degrees. The IHT aims to provide students with the opportunity of exploring the confluence of their two disciplines. It will be jointly supervised by faculty members from both faculties. Students intending to read this module are expected to consult prospective supervisors the semester before they embark on the IHT and provide a research proposal. Students are open to conduct research on a wide range of topics as long as it is related to psychology.", + "title": "Integrated Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFA4405HM", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows Economics/Computing double degree students to write an honours thesis that integrates their two areas of study\u2014Economics and Business Analytics/Information Systems. Students taking this module must conduct an\nindependent research project on an approved topic under the supervision of two faculty members (one from Economics and one from the School of Computing).", + "title": "Integrated Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFA4406", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module allows Economics/Mathematics or Applied Mathematics double degree students to write an honours thesis that integrates their two areas of study \u2014 Economics and Mathematics/Applied Mathematics. Students taking this module must conduct an independent research project and write a scholarly report of not more than 40 typed pages (including bibliography and appendices) on a rigorous multi\u2010disciplinary research on an approved topic under the supervision of two faculty members (one from Economics and one from the Department of Mathematics).", + "title": "Integrated Honours Thesis", + "faculty": "Arts and Social Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFA4408", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Integrated Honours Thesis", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "XFB4001", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of the Integrated Honours Dissertation is to provide DDP students with an opportunity to select and synthesise research topics from two distinct bodies of knowledge, and to present their findings logically and systematically in a clear and concise prose.\n\nStudents are expected to demonstrate (i) a good understanding of relevant methodology and literature; (ii) the significance and relevance of the problem; (iii) logical and sound analysis; (iv) clear and effective presentation; and (v) achieve a balance between the learning objectives of both the Business course and the second course of study.", + "title": "Integrated Honours Dissertation", + "faculty": "NUS Business School", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFB4002", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to enable students to\nwork on an individual integrated research project\nspanning over two semesters, with approximately\n400 hours of workload. Students learn how to apply\nskills acquired in the classroom and also think of\ninnovative ways of solving problems, and learn to\nwork in a research environment. The project\ndemonstrates a student\u2019s work ethic, initiative,\ndetermination, and ability to think independently. On\ncompletion of the project, the student has to submit a\ndissertation describing the project work, and give an\noral presentation before a panel of examiners.", + "title": "Integrated Honours Thesis", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "XFC4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this module is to enable students to work on an individual integrated research project spanning over two semesters, with approximately 500 hours of workload. Students learn how to apply skills acquired in the classroom and also think of innovative ways of solving problems, and learn to work in a research environment. The project demonstrates a student\u2019s work ethic, initiative, determination and ability to think independently. On completion of the project, the student has to submit a dissertation describing the project work, and give an oral presentation before a panel of examiners.", + "title": "Integrated Honours Dissertation", + "faculty": "Computing", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFC4102", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Integrated Honours Project", + "faculty": "College of Design and Engineering", + "gradingBasisDescription": "Graded", + "moduleCredit": "16", + "moduleCode": "XFE4401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is created for Bachelor of Science (Honours) students in the student-designed double degree programme who wish to do an integrated honours project\nbetween his/her major and a non-science discipline, where the non-Science discipline offers an Honours project of 15MCs, which is of higher MCs than that offered by his/her major.", + "title": "Integrated Honours Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFS4199M", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is created for Bachelor of Science (Honours) students in the student-designed double degree programme who wish to do an integrated honours project between his/her major and a non-science discipline, where the non-Science discipline offers an Honours project of 15MCs, which is of higher MCs than that offered by his/her major.", + "title": "Integrated Honours Project", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "15", + "moduleCode": "XFS4199S", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In Literature and Humanities 1, we engage masterpieces from the beginnings of myth-making to the early modern period, in three sets of related works: the epic adventures of Rama and Odysseus narrated in Valmiki\u2019s Ramayana and Homer\u2019s Odyssey; the historical writings of Herodotus and Sima Qian; and the creative recycling of traditional tales in 1001 Nights and Boccaccio\u2019s Decameron.", + "title": "Literature and Humanities 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YCC1111", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Literature and Humanities 2 engages creative works of art and literature in a world that is becoming increasingly complex and hard to grasp because of rapid and constant change. The works respond to the changing relationship between the secular and the sacred; the experience of cross-cultural encounters; the formation of national identities; the challenges of modern urban life; the creation of new social movements; and the realities and fantasies of colonialism, post-colonialism and globalisation. \n\nWorks read might include:\n\u2022\tShakespeare\u2019s The Tempest\n\u2022\tHonor\u00e9 de Balzac\u2019s P\u00e8re Goriot\n\u2022\tLu Xun\u2019s Diary of a Madman and Other Stories\n\u2022\tVirginia Woolf\u2019s Dalloway\n\u2022\tEileen Chang\u2019s Love in a Fallen City\n\u2022\tTayeb Salih\u2019s Season of Migration to the North\n\u2022\tSonny Liew\u2019s The Art of Charlie Chan Hock Chye", + "title": "Literature and Humanities 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCC1112", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Philosophy and Political Thought 1 starts with writings by thinkers in ancient China and India and the ancient Mediterranean world whose search for knowledge proceeds through dialogues with different interlocutors. In seminars, students debate questions such as \u201cHow should we live, individually and together?\u201d, \u201cWhat is the nature of knowledge?\u201d, \u201cWhat is the nature of reality?\u201d and \u201cWhat is the nature of the self?\u201d\n\n\u2022\tSelected works by Mozi, Mengzi, Xunzi and Zhuangzi\n\u2022\tPlato\u2019s Five Dialogues\n\u2022\tAristotle\u2019s Nichomachean Ethics and Politics\n\u2022\tPythagorean women philosophers\n\u2022\tThe Bhagavad Gita\n\u2022\tMarcus Aurelius\u2019s Meditations", + "title": "Philosophy and Political Thought 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YCC1113", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Philosophy and Political Thought 2 brings students into closer contact with Buddhist and Islamic ideas and with the intellectual makers of the modern world \u2013 the early proponents of modern science and technology, free trade and economic growth, and the modern state \u2013 and their critics. We consider how different conceptions of modernity and enlightenment shed light on one another and puzzle over the relationship between thinking and doing.\n\n\u2022\tSantideva\u2019s Bodhicaryavatara\n\u2022\tIbn Tufayl\u2019s Hayy Ibn Yaqzan\n\u2022\tRen\u00e9 Descartes\u2019s Meditations on First Philosophy\n\u2022\tThomas Hobbes\u2019s Leviathan\n\u2022\tGandhi\u2019s Hind Swaraj\n\u2022\tHannah Arendt\u2019s \u2018Thinking and Moral Considerations\u2019", + "title": "Philosophy and Political Thought 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCC1114", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Comparative Social Inquiry begins by asking the question \u201cHow did you get into Yale-NUS?\u201d as a way of inviting students to consider the role of social forces in shaping life outcomes. From there, we proceed to explore a series of topics that together provide a picture of how societies are organized \u2013 and why. These include power, markets, family, social class, race, gender, religion and the state.", + "title": "Comparative Social Inquiry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YCC1121", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Quantitative Reasoning is concerned to strengthen what might be called numeracy or quantitative literacy by exploring some basic topics related to algorithmic thinking and statistical inference. Among the topics considered are formal logic, probability, surveys and sampling, hypothesis testing, correlation and regression, and prospect theory.", + "title": "Quantitative Reasoning", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YCC1122", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Scientific Inquiry 1 considers how scientists think by looking into a well-established topic: evolution. Students explore the evidence for biological evolution from fossils to the recent revolution in genetics. The idea of evolution and the related idea of natural selection highlight fundamental differences between science and other ways of knowing. Although evolution is well-supported scientifically, it is still doubted by a large fraction of humanity. In this course, we approach the topic as a scientist would, identifying and interpreting the relevant evidence through a scientific lens.", + "title": "Scientific Inquiry 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCC1131", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Learning Across Boundaries (LAB) take students, faculty, and staff out of the traditional classroom setting. The Week 7 LAB has become one of the College\u2019s flagship offerings, highlighting aspects of Yale-NUS\u2019 distinctive education such as interdisciplinarity, innovative pedagogy, experience-based learning, and unparalleled access to professors that complement the rigorous classroom learning of the curriculum. The week will culminate in a symposium, where students and faculty share the insights and knowledge they have gleaned during the week with members of the Yale-NUS community.", + "title": "Week 7: Experiential Learning Field Trip", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "0", + "moduleCode": "YCC1133", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Modern Social Thought engages foundational figures of modern social thought, exploring how their writings have been taken up in political practice in different parts of the world. Starting with Ibn Khaldun\u2019s pre-modern analysis of society we proceed to the ideas of major thinkers such as Alexis de Tocqueville, Karl Marx, Emile Durkheim, Max Weber, and Michel Foucault, all of whom acknowledged the explanatory power of modern social theory. The course will also grapple with several other characteristically modern developments including feminism and postcolonial thought in Simone de Beauvoir\u2019s The Second Sex and Michel Foucault\u2019s History of Sexuality, and other works.", + "title": "Modern Social Thought", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCC2121", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "15", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "14", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "15", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "11", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "9", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "4", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "6", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "7", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "3", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "12", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PerfHall", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "13", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "8", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "10", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "5", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Wednesday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Friday", + "lessonType": "Lecture", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Scientific Inquiry 2 aims to develop a deeper appreciation of scientific thinking by tackling a question that is still under debate. This year, as last, the focus is on climate change and, specifically, how we know that the global climate is changing. We study this question not only because it is vitally important for humanity, but also because to answer it scientists must draw on evidence from many different fields. The topic also provides a clear example of how science can inform social practices and government policies.", + "title": "Scientific Inquiry 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCC2137", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAN (1MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "YCI1910K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Exchange Module - YAN (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI1912B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Exchange Module - YAN (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI1912C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI1920A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI1925F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI1926A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI1927A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI1928A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available.", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI1928B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available.", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI1929E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available.", + "title": "Exchange Module - YAS (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI1929F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YEC (1MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "YCI1933M", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YEC (2MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "YCI1933N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YEC (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI1933O", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YES (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI1946C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available.", + "title": "Exchange Module - YGA (1MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "YCI1953Q", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YGA (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI1956A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available.", + "title": "Exchange Module - YHY (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI1964E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YHY (1MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "YCI1964F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YLT (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI1977D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YLT (1MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "YCI1977E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPH (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI1980N", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPH (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI1981J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPE (2MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "YCI1993K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPE (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI1994H", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPY (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI2910B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Exchange Module - YUS (1MC)", + "title": "Exchange Module - YUS (1MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "YCI2925I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YUS (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI2925J", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YUS (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI2925K", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YLT (1MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "1", + "moduleCode": "YCI2950D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI2960B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI2960C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI2962B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI2963A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available.", + "title": "Exchange Module - YAS (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI2964A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI2964B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available.", + "title": "Exchange Module - YAS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI2965A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI2965B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YAS (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI2965C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YLS (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI3916C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Module - YLS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3917A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Module - YLS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3917B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Module - YLS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3917C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YLS (2MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "YCI3917F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YMC (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3926F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YMC (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3927E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YMC (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI3927F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Module - YMC (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3929A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Module - YMC (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI3929B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Module - YMC (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI3929C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YMC (3MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "3", + "moduleCode": "YCI3929D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Module - YMC (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI3950A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "", + "title": "Exchange Module - YMC (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3950B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YMC (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI3951A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YMC (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3951B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YMC (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3951C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3960A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3960B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPS (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI3960C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YES (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI4913A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available.", + "title": "Exchange Module - YES (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI4913B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPH (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI4917A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPH (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI4917B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPH (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI4917C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPE (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI4918A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YPE (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI4918B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YMC (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YCI4922A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YMC (4MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "YCI4922B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Transitions is a six-week optional elective module that supports all Yale-NUS first year students in their transition to college. Topics covered include goal setting, time management, maintaining wellness, understanding learning styles, study tips and effective note-taking, formal and informal communication, and understanding academic regulations. Students are expected to further their learning by meeting up with their Deans Fellows outside of class time.", + "title": "Transitions - Understanding College and College Life", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "YCT1201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In a culturally and socially diverse society, discussion about issues of difference, conflict and community are needed to facilitate understanding between social/cultural groups. In this intergroup dialogue, students will actively participate in semi-structured, face-to-face meetings with students from other social identity groups. Students will learn from each other\u2019s' perspectives, read and discuss relevant reading material, and explore their own and other groups\u2019 experiences in various social and institutional contexts. Students will also explore ways of taking action to create change and bridge differences at the interpersonal and social/community levels.", + "title": "Dialogue: Social Issues in Intergroup Relations", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "YCT1202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Resilience and Success in College is a six-week elective module for students that teaches basic concepts of positive psychology and engages students in self-reflection and discussions to better manage stress and overcome adversity. Discover what it means to find purpose in your work, how to use strengths to your advantage, and the importance of fostering positive interpersonal relationships to improve mental, emotional, and physical well-being.", + "title": "Resilience and Success In College", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "1", + "moduleCode": "YCT3201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1500", + "endTime": "1600", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1100", + "endTime": "1200", + "weeks": [ + 4, + 5, + 6, + 7, + 8, + 9 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the practice of creative nonfiction writing. It will explore the genre's manifold forms, including memoir, personal essay, literary journalism, lyric essay, and op-eds. Each week, students will read classic and contemporary examples of creative nonfiction and practise the craft themselves through guided writing exercises. The reading list will include many diaspora, emigrant, and third-culture writers alongside progenitors of the genre, such as Michel de Montaigne and Li Shang-Yin. Students will craft two main essays over the course of the semester, as well as a variety of shorter original pieces.", + "title": "Introduction to Creative Nonfiction", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine a number of artistic masterpieces from the Western tradition, ranging from medieval Byzantine icons to contemporary installation art. We will delve deeply into each of the selected artworks, simultaneously examining their extraordinary uniqueness and their capacity to represent an entire cultural epoch, both aesthetically and conceptually. Along the way we \nwill ask what makes these works \u201cmasterpieces\u201d and debate how and why they came to form the Western artistic \u201ccanon.\u201d", + "title": "Masterpieces of Western Art: Renaissance to the Present", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2203", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Integrative Music Theory I is a comprehensive introduction to music understanding and musicianship. Students will gain command of music rudiments (notation, clefs, intervals, triads, meter, rhythm), as well as augment and refine their everyday activities as music performers and listeners, by developing aural skills in recognising chords and sight-singing. The course will source musical examples from diverse genres and geographies, and will cover both Western art music and jazz/pop approaches to harmony. In Semester 2, Integrative Music Theory II will further hone and build on the skills and concepts examined in Integrative Music Theory I.", + "title": "Integrative Music Theory 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a first course in formal logic. Formal logic has had a tremendous success and influence since it was developed in its present form. It is the inspiration for many artificial languages, including programming languages, and it has been successfully used in mathematics. Formal logic is also very important in the study of natural languages and in the analysis of valid or invalid forms of argument and reasoning. We will cover a fairly substantial introduction to these issues.", + "title": "Introduction to Mathematical Logic", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will examine the central philosophical issues surrounding life and death, including the questions of what death is, whether it is to be feared, whether immortality is possible or desirable, and whether life is meaningful.", + "title": "Death and the Meaning of Life", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When and how did Roman authors develop the literary culture that became as dominant as their imperial power? How did Romans distinguish their own literary production from the Greek models that influenced them so greatly? This survey of Roman literary culture from the earliest inscriptional evidence through subversive erotic poetry and martial epic examines the growth and afterlife of one of the world\u2019s most influential literary traditions. We will explore the changing political and cultural contexts of exemplary works from Rome\u2019s long history, and these works\u2019 impact on subsequent art and literature.", + "title": "Roman Literary Cultures", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the basic particles and grammatical structure of the classical Chinese language (a.k.a. literary Chinese). Through the close reading of texts from the pre- and early-imperial periods, students will also learn such skills as recognizing syntactic parallelism, the art of reading in context, and understanding rhetorical structures.", + "title": "Classical Chinese", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An examination of some key themes and issues in the philosophy of law, including the nature of law; rule of/by law; the functions and reach of law; the enforcement of morality; punishment; justice; and (the universality of) rights. Readings are taken from classical and contemporary sources in philosophy and legal theory, and from multiple intellectual traditions. As a philosophy course, it is intended to cultivate skills in two areas (a) philosophical problem-solving and (b) application.", + "title": "Philosophy of Law", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the skills and techniques, concepts and practices involved in Contemporary Drawing and exhibition making. Classes will use a range of drawing materials, and include notebook research, fieldtrips, talks and critical presentations. Students will develop a portfolio of drawings through class exercises and with tutorial advice, these will be developed in personal directions and focused themes for a final exhibition.", + "title": "Drawing Methods", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2215", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-Studio3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Chinese occupy an interesting position in Southeast Asian history. While their economic contributions are acknowledged, their place in the political and social development of the region is often considered tangential. In this course, we will focus on four themes concerning Chinese migrations: systemic precursors to external migration; the variegated nature of migration; new identities in new lands; and the overseas Chinese connection to China. Through an examination of historical and theoretical works, we seek a deeper\nunderstanding of migrations and diaspora formation as we chart out the history of Chinese migrations to Southeast Asia.", + "title": "Chinese Migrations to Southeast Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores narrative and interactivity in digital media through the\ncreation of audio and moving image works. Students will read, experience,\nanalyze and create digital narrative works including text, film, soundscape,\nand interactive visual art. Working with instances of dynamic storytelling in\nrelationship to memory, personal narrative, and social critique, students will\nexplore the all\u2010encompassing realm of narrative, learn about digital media theory, and gain media production skills. The class will introduce students to\ncameras and audio recorders as well as audio and film editing software.", + "title": "Digital Narratives", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Photography is becoming increasingly important in our interconnected world. The question needs to be asked has the exponential increase in images resulted in a corresponding increase in knowledge or visually literacy?\n\nThis course will explore the use of photography as a socially conscious art form, representing, reflecting and commenting on society and our place in the world.\n\nLearning from the work of photographers of singular importance within the Documentary genre as well as those pushing the boundaries of the medium, students will work towards creating a body of work that tells a story through narrative, emotion, style and substance.This module fulfills the Art Practice track in the Arts & Humanities major.", + "title": "Documentary Photography", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\u201cForm,\u201d a wonderfully broad and slippery term, is often used to describe the way a poem deploys its line, rhythm, sound, and how it\u2019s arranged on the page. But form might also describe an ideological project, an organizing idea, what reoccurs and what is conspicuously absent. Students will explore the fundamentals of poetic form, but also interrogate form as a shape of feeling, a rendering of experience in verse, a kind of witnessing of the self and the world. Attention will be paid to contemporary forms of poetry which engage with the visual world through text and image.", + "title": "Forms of Poetry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A philosophical examination of some key questions concerning love and friendship. Readings will include classical and contemporary sources, and works from multiple intellectual traditions.", + "title": "Love and Friendship", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 2000-level course is a broad survey which explores the seismic demographic, economic, cultural and social changes that occurred in the Atlantic basin. Between the fifteenth and the nineteenth centuries the forced and voluntary movement of peoples from Africa and Europe to the Americas occurred on an unprecedented scale. The circulation of commodities and the commodification of human beings spawned a global marketplace, while the circulation of cultural practices and ideas led to the formation of new societies throughout the Atlantic world. All of these changes profoundly reshaped the lives of indigenous Americans, Europeans, and Africans.", + "title": "The Atlantic World", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2228", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of the course is to cultivate historical, global and comparative\nperspectives on the cultural diversity of science fiction using critical terms of\nliterary analysis. It explores the expansive genre of science fiction, its relation\nto literary utopia, speculative fiction, and fantasy. By beginning with less wellknown\nIndigenous American, Latin American, Russian, Sinophone, and\nSoutheast Asian literary texts and films, before examining more established\nworks by Euro\u2010American authors, this course emphasizes the global reach\nand significance of science fiction.", + "title": "Global Science Fiction: Their Worlds, Ourselves", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2232", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Responding to the growing international circulation of literature in the early\ndecades of the nineteenth century, Goethe declared, \u201cThe epoch of world\nliterature is at hand, and everyone must strive to hasten its approach.\u201d The\nterm \u201cworld literature,\u201d however, remains elusive and critics continue to\ngrapple with David Damrosch\u2019s question of, \u201cwhich literature, whose world?\u201d\nThis course will address the Arabic/Islamic tradition and some of the difficult\nquestions it poses to global literary studies, challenges that are both unique\nin their particularities and exemplary of the tensions characteristic of\nincorporating \u2018minor literatures\u2019 into broader comparative paradigms of\ninquiry.", + "title": "World Literature and its Discontents", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will take students to one or two regional travel destinations,\nwhich will require day\u2010trips on the weekends. Students will be on the go,\nreporter\u2019s notebook in hand. Close observation and focus will be key. Class\ntime will be engaged with discussion of model texts of travel writing, and\ncritiques of students\u2019 writings.", + "title": "Travel Writing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It is often thought that we ought to be just, kind, generous and more; in short, that we ought to be moral. But why be moral rather than simply heeding our unjust, callous, and selfish urges? In this course, we examine this question systematically, both from the perspective of philosophers who attempt to answer it (like Plato, Immanuel Kant, and David Hume) and from the perspective of philosophers who deny that it has any satisfactory answer (like John Mackie).", + "title": "Why be moral?", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2241", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the famous speech, \u201cAll the world\u2019s a stage,\u201d a character in As You Like It says there are seven ages of man infant, schoolboy, lover, soldier, justice, Pantalone [earning money], and old age. This course is an introduction to the major periods and genres of Shakespearean drama we will trace the arc of Shakespeare\u2019s career and reveal what he has to tell about the course of one\u2019s life journey. We will study Midsummer Nights Dream (childhood), As You Like It, (lover), Henry IV, Part 1 (soldier), Measure for Measure (justice), King Lear (old age), Winter\u2019s Tale (forgiveness), Hamlet (everything).", + "title": "Shakespeare & the Shape of Life: Intro to the Plays", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2243", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar deals with a pivotal period in the history of science: the scientific revolution (ca. 1500\u20101700). This era witnessed the development of sciences such as astronomy, mechanics and anatomy into something recognizably modern, and the institutionalization of science in forms that are still existent. During this time scientific thought and activity moved from a culturally marginal to a central position. In addition to examining the historical and philosophical significance of these changes, we will devote some time to the pseudo\u2010sciences, and consider their relationship to the orthodox sciences.", + "title": "History and Philosophy of the Scientific Revolution", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will address the issue of why dystopian writing exercises a fascination for the modern imagination. We will trace the broad genealogy of utopian thought through the ages; then examine how that has got inverted in the last two centuries. Issues addressed will include the relation of fiction to modernity, the impact of technological change and social transformations on life\u2010systems, and how these are rendered in dystopian fiction. Reading for this course will entail close attention to the nature of speculative writing as both diagnostic and prophylactic in relation to the societies in which they are written.", + "title": "Dystopian Fiction", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to three types of visual storytelling: comics, storyboarding for film and animation, and mechanics of movement in 2D animation as part of the arts and humanities major Practice category. Students will work with the methods, materials and techniques in storytelling through visual sequences. Through studio sessions, workshops and talks they will be introduced to the key aspects of 2D Animation, paper cut animation, storyboarding, and comics and become familiar with the techniques and themes involved in creating movement, and apply them to personal projects developed over the course of the semester.", + "title": "Visual Storytelling", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course approaches the relation between the visual and the verbal arts as a set of creative interactions which involve the use of different media for the purposes of representation and self-expression. Within this general perspective the course provides an opportunity to study how poetry reacts to the visual arts, specifically painting and photography, and how the visual arts react to poetry. This course can fulfil the Theory and Cultural Criticism requirement from the Literature Major, and the Visual Arts/Art History pathway from the Arts and Humanities Major. ------------------------ The topics covered within the course will be detailed in the", + "title": "Poetry, Painting and Photography", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An overview of how philosophy\u2014as both a mode of inquiry and a way of life\u2014developed in Western antiquity. We will begin with the pre-Socratics, focus on Plato and Aristotle, and conclude with a brief look at later schools (such as the Epicureans, Stoics, and Sceptics). Topics include the nature of being, knowledge, the soul, virtue and happiness, and the city.", + "title": "Ancient Greek Philosophy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the limits of epic in different historical contexts and media Classical epic poetry (Greek and Roman) and gangster film traditions from the US, Europe, and Asia. How do these works define or align themselves with epic as a genre? What are their characteristics, and how do audiences participate in creating them? Primary material will include classical epics (the Iliad, Ovid\u2019s Metamorphoses), drama and literary criticism (Sophocles, Aristotle), and contemporary film and television, with critical and theoretical bibliography.", + "title": "Literary Genres: Ancient Epic and Gangster Film", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the work of Jacques Derrida and Gilles Deleuze. It will involve close and systematic readings of a selection of their main texts, which are widely regarded as some of the most influential works to emerge from France. It will also seek to locate the distinctive approach of both Derrida and Deleuze respectively with respect to the way that their work has been taken up and used more broadly, and to address disputes about the meaning and adequacy of their views.", + "title": "Late 20th Century French Philosophy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2260", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the drastic transformation and development in Modern East Asia during the late 18th to early 20th centuries. Through close studies of visual culture and art production from Japan, China, and Korea, it covers broader themes of modernity, transitions from a pre-modern to modern society, the construction of a national identity vis-a-vis the Western world, and the establishment of official art schools and exhibition practice. With the broader social context of Westernization and modernization, we will examine the many artistic movements and subjects of visual representation that flourished during these tumultuous times. This module fulfills the Art History track in the Arts & Humanities major.", + "title": "Modern Art in East Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "If you have money, you probably think about it a fair bit. And if you don\u2019t have money, you might think about it even more. In this course, we will think about money a lot. In particular, we will examine some central philosophical issues surrounding money and its place in a well-lived life, including its relation to happiness, freedom, and virtue.", + "title": "Money", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course we consider the moral and political dimensions of sex understood as individual and social practice. Are sexual preferences, fantasies, behaviors, and traditions morally criticisable, and if so, how? What about sexual industries and institutions? In what ways do our sexual practices impede or advance present-day struggles for social equality?", + "title": "Ethics and Politics of Sex", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Is it unjust for a society to be unequal? If equality is desirable, what kind of equality? Equality of opportunity? Or equal welfare? Or equal capabilities? Contemporary political philosophy offers rich materials to answer these questions; we will read authors such as Rawls, Nozick, Cohen, Sen, and Anderson. The course satisfies the following dimensions of the Philosophy major: Skills, problems; Historical, new.", + "title": "Contemporary Egalitarianism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module covers the theory and practice of romantic correspondence through a study of patterns of expressing and enframing desire in the love letter form within literary works. It surveys novels, short stories, and a selection of essays from the 1800 to the present, marking the shifts in epistolary formulas and communicative means in an exploration of the role of socio-cultural grammar and narrative conventions in shaping the discourse of love. This module combines critical reading and creative writing, giving students the opportunity to practise techniques of romance writing and receive constructive feedback for their work.", + "title": "Writing Love: The Love Letter in Literature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction, at 2000 level, to the basic contexts, methods, and preoccupations of postcolonial literatures (in English and in translations into English). Its aim is (a) to provide a foundation of ideas, concepts, and reading methods which can provide the basis for wider reading in postcolonial cultures, and (b) to study authors and texts drawn from a wide range of colonial and postcolonial societies.", + "title": "Postcolonial Literatures: An Introduction", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2277", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a practical course focusing on vocal literature from its various styles and traditions. Students will work one-on-one with the lecturer, honing in on solo, chamber and choir repertoires. Lectures will consider the historical and social aspects that define the nature of their songs and also focus on the various languages and language syntax of their chosen songs.", + "title": "Music Performance Elective: Introduction to Voice", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YHU2278", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the contemporary world, philosophy is one academic discipline among many. But throughout its history, philosophy has also been conceived as a way of life. This course will explore this alternative conception of philosophy by exploring pre-modern Greco-Roman and Chinese models, and contemporary reflections on the philosophical life. Topics include the relation between theoretical discourse and one\u2019s lived life; philosophy and living well;philosophy as a way of life and \u201creligion\u201d; protreptic arguments for pursuing philosophy; therapeutic arguments; spiritual exercises; and the extent to which this conception of philosophy remains viable today.", + "title": "Philosophy as a Way of Life", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2279", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How should we recognize, understand, and overcome injustice in the world? Philosophers and activists across many times and places have contemplated and confronted this question with respect to such issues as slavery, colonialism, imperialism, racism, sexism, homophobia, xenophobia, ableism, and economic exploitation. This course focuses on Black feminist thought and Latin American philosophy produced by and in solidarity with oppressed groups, that is, on philosophy born of struggle and aimed at emancipation.", + "title": "Oppression and Injustice", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2280", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To have a conscious experience is to enjoy a technicolor, surround-sound blast that seems to resist full scientific explanation. In this course we consider whether it is possible to explain consciousness at all, and if so, how.", + "title": "Consciousness", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2282", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is course is a writing-intensive course where students are expected to write 300-word essays every weekday for 13 weeks. The course introduces students to the fundamentals of creative/expository writing by focusing on different craft elements such as character development, setting, imagery, surprise, and closure among others. It encourages an expansive repertoire of themes and concerns throughout the semester while building upon the rigor of daily writing practices.", + "title": "Daily Themes", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2286", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to Neo-Confucianism, one of the most influential intellectual movements in East Asia. Neo-Confucianism combines a profound metaphysics with a subtle theory of ethical cultivation. There is also discussion of Chinese Mahayana Buddhism, whose views of the self and ethics are the primary targets of the Neo-Confucian critique.", + "title": "Neo-Confucianism and Chinese Buddhism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2287", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on twentieth-century narratives that explore sexuality and gender issues in their socio-historical contexts. It examines adolescent attachments, sororal and brotherly love, friendship, etc., and how these relations tip over to homosociality and eroticism. As an introductory course, it familiarises students with debates on sexual identities and politics through analyses of fictional works from the US, UK, and Asia, offering a vocabulary for queer experience and perspectives that illuminate queer interiority and same-sex relations. Overall, the course reflects on and challenges fictions and critical approaches that are essentially \"queer.\"", + "title": "Queer Fictions", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2288", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine Southeast Asia from a historical and anthropological perspective. We will explore such questions as: can we speak of a \u201cSoutheast Asian\u201d history and culture, or is Southeast Asia a product of external influences? How have colonialism and the nationality shaped Southeast Asia? What is the role of Buddhism, Islam, and Catholicism in Southeast Asian cultures? This course will not only chart the past (and future) of the region, but also apply the insights that we gain from studying Southeast Asia to how we understand the rest of the world.", + "title": "History and Culture of Southeast Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2290", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended as an introduction to various forms and modes of artistic practice, history, and theory. Each iteration will focus on a different theme that will inform the various lectures, seminars, studio exercises, and assignments over the semester. The module allows students to experience the practices and traditions of the arts covered by the three tracks of the major. Students will learn how to apply this knowledge to forms of their choosing in a final portfolio that demonstrates their capabilities in at least one theoretical mode and two practical modes, and will include reflection/self-assessment of their processes.", + "title": "Introduction to Arts", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2291", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "As its title implies, this module will introduce students to the art of writing poetry. There will be readings assigned, but this will mainly be a writing module, with weekly writing assignments and peer critiques.", + "title": "Introduction to Writing Poetry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2292", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the practice of writing fiction, primarily the short story. Students will learn about character development, scene, setting, dialogue and other important elements. Weekly exercises and readings will form a foundation from which students can build their understanding of the craft of fiction.", + "title": "Introduction to Fiction Writing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2293", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Using short stories, novellas, TV shows and films, this class\nexamines the art of detective writing and traces the narrative\ncomplicity of the detective and urban space. The detective moves\nbetween different social spaces within the city, with access to both\npenthouses and crack dens, and the city itself becomes a character\nin these tales \u2013 alternatively helpful, seductive, sullen, and\ndangerous. Part of the syllabus will be dedicated to texts originating\nin the Global South, asking how the genre of detective fiction\nchanges when it encounters the postcolonial city.", + "title": "Mean Streets: The Detective and the City", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2294", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course considers the short story as a highly mobile modern\ngenre, circulated globally through magazine and newspaper\npublication and translation. Concentrating on the work of several\nimportant writers of the 20th and 21st centuries, we will explore the\nformal and contextual elements of stories from a variety of\ngeographical locations (Africa, North America, South America,\nAsia, Eastern Europe, and Western Europe). We will also consider\nthe manner in which these stories engage with the political,\nideological, technological, and social transformations that constitute\nglobal modernity.", + "title": "The Global Short Story", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2295", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course conducts a deep reading of four major world epics of antiquity Homer\u2019s Iliad and Odyssey; Valmiki\u2019s Ramayana, and Vergil\u2019s Aeneid. How is epic constructed, and what makes this poetic form an effective medium to explore questions of mortality and human existence? What do these four epics have in common as literature, and how do they interact transculturally? We will explore the epics as aesthetic and cultural artifacts within their own historical contexts, and consider how they transcend their own chronological periods.", + "title": "Ancient Epics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2296", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to ancient Chinese philosophy. Some figures briefly discussed in the Common Curriculum course Philosophy and Political Thought 1 (including Mozi, Mengzi, Zhuangzi, and Xunzi) will be covered in greater depth, and some other seminal figures from the same period will be introduced (including Confucius and Laozi). Themes discussed include the extent and nature of our obligations to others, methods of personal cultivation, human nature, and virtue.", + "title": "Classical Chinese Philosophy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2297", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the many sites and ways in which artworks and objects have been exhibited within different historical and cultural contexts. Starting with the Renaissance cabinets of curiosities and concluding with the establishment of the present-day global museum, we will consider how curatorial practices and audience reception (and agency) have changed from the early modern to the postmodern, and familiarise ourselves with some of the debates surrounding the establishment of secular sites of art display, including the role of the exhibition as a nation-building enterprise. Museum visits will be scheduled during the semester.", + "title": "Exhibitions and the Sites of Display", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2300", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Realist and naturalist literature came to dominate the nineteenth century and was linked to developments in philosophy, historiography, and various scientific fields, including economics, evolution, and ethnography. This module reads key realist and naturalist works alongside brief contextual selections in order to understand the origins, problems, and continuing importance of a literary mode that purported to deliver reality to its readers. Readings might include Balzac, Bront\u00eb, Gaskell, Flaubert, Eliot, Freytag, Zola, Ibsen, Fontane, Gald\u00f3s, Rizal, Strindberg, Jewett, Dreiser, and Wharton, as well as brief theoretical pieces by Barthes, Watt, Armstrong, and Levine.", + "title": "Realism and Naturalism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2302", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A philosophical examination of the horror genre. How can audiences be scared of monsters they know to be fictional? How can we take positive pleasure in emotions like dread, fear, and disgust, which we usually avoid in ordinary life? Is horror an immoral genre that cultivates vices in its audiences? Or can horror fictions be ethically salutary and provide a space for philosophical clarification? We will read and analyze classical and contemporary works in philosophy and film theory. We will also explore and discuss classic and contemporary horror films, short stories, and novels from around the world.", + "title": "The Aesthetics of Fear: Horror & the Philosophy of Art", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2303", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It has been estimated that 12 million African slaves were shipped to the Americas between 16th and the 19th centuries. Few people are aware, however, that half a million African slaves were also transported to various locations in the Indian Ocean and South China Sea during the same period. This course explores the trafficking in and employment of slaves in a comparative and global context from ancient Rome until today. We will examine the role slavery (in its various forms) has played in the development of empires spanning the Atlantic and Indian Oceans over many centuries.", + "title": "Global Histories of Slavery", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on twentieth-century narratives from America, Asia, and Europe that explore the \"badness\" of loveincluding scandalous behaviour, subversive fantasies, shifting identities, moral and social transgressions. Texts are technicians of desire (its mechanics, frustration, and exploits), wherein sex and love are \"textualised\" that they may escape repression and the difficulties of fulfillment. From Lawrence's sexual realism to Berger's cinematic m\u00e9lange, this course examines how the extent of \"badness\" is a reflection as well as strategy for expressing concerns and crises around modern life in the fin-de-si\u00e8cle.", + "title": "Bad Love in 20C Literature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2305", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "History of Crises is an introduction to Europe\u2019s 20th century, including the histories of the First and Second World Wars and communism that still shape contemporary world politics. The theme that runs through this survey course of that of crisis: we will look at five crisis moments, including the crisis of the First and Second World Wars and 1989. We will analyse primary sources, pamphlets, novels, and secondary literature to provide a transnational understanding of the main social, economic, and political processes that shaped Europe\u2019s 20th century.", + "title": "History of Crises: Europe's 20th Century", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a practical course focusing on healthy voice production in all its various styles and traditions. Students perform in front of each other bi-weekly and are critiqued by the lecturer and their peers as they work to develop solo and duet repertoires. Weekly seminars consider the historical and social aspects that define the character of the songs selected for study and practice. Emphasis is placed on healthy voice production and the meaning of the words in the various languages of the chosen songs.", + "title": "Introduction to Vocal Technique and Performance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2308", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will explore the rich world of medieval romance through the strange and often beguiling encounters with the supernatural that pervade these texts. Considering shape-shifters, marvellous objects, and experiences of the miraculous or uncanny, we will investigate how romances fashion exotic, escapist worlds that at the same time reflect contemporary values and anxieties. We will ponder what magic reveals about human motivations, especially in situations of moral ambiguity. We will pay special attention to the historical and intellectual contexts in which medieval magic was understood, and to its intersections with other spheres of knowledge such as science and theology.", + "title": "Medieval Romance: Magic and the Supernatural", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2309", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the fundamentals of daily journalism, including news analysis, story ideation, source establishment, interviewing subjects, ethical decision making, and writing with clarity, accuracy, and creativity on a deadline. Students will examine news and writing in leading international dailies, study the decisions that editors and reporters make, and produce journalistic work of their own. The course will include instruction on the legal and ethical issues concerning interviewing subjects.", + "title": "A Reporters Toolbox: The Practice of Daily Journalism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Moving away from the model of friendship established in the writings of Aristotle, Montaigne to Bacon, whereby only men are considered capable of true friendship, Morrison\u2019s question\u2014\u201cWhat is friendship between women when unmediated by men?\u201d\u2014motivates a study on women\u2019s bonds to women, including affiliations that are chosen and beyond choice, competitive and cordial, sisterly and extra-familial. Rather than a course on homo-erotics, this is a study on the ethics of care and relationality. Friendship is studied as a critical conception for women\u2019s emancipation, an ontological foundation on which connections are (re-)built, and a mode of relational self-definition.", + "title": "Girlfriends: Narratives of Friendship", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2311", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What does it mean to speak about literature of the Islamic world? Can the Islamic be a salient category for the literary? With these broad questions in mind, this class will introduce students to the diverse literary traditions of the Islamic world, from the premodern period beginning with the rise of Islam (670) to the modern period (1850-current day). Considering works from a diverse group of literary traditions such as Persian, Turkish, Urdu, Malay, and the Francophone literature of Islamic West Africa next to Arabic, we will consider the transformative role Arabic-Islamic literary culture has played in regions where Islam is the dominant religion.", + "title": "Literatures of the Islamic World", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How might one go about answering the question \u2018What is Art?\u2019? Should we look at the style of the work, the intention of the artist, the zietgeist, or millieu? Or should we simply identify as a work of Art any and every thing that anyone has called Art in the relevant period? This course introduces students to the history of the philosophy of art, and gives them an overview of the key questions and theories, raised by philosophers, poets, painters and writers of literature, that have shaped the field and that direct both our experience and our understanding of Art.", + "title": "Introduction to the Philosophy of Art", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Rome transformed from a city state into a cosmopolitan empire of citizens. Its impact on Western history is unparalleled. It generated Western law and the idea of legitimate rule, and spread Classical thought and Christianity across Western Eurasia. Rome also transformed the economic geography and ecology of its empire. This course will focus on political and cultural history, but also pay attention to social, economic, and ecological issues. It will move chronologically and thematically, and explores issue such as Roman constitutionalism, the construction of empire as a Restored Republic, the dynamics of Romanization and Multiculturalism, and the Rise of Christianity.", + "title": "Rome from City State to Empire", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2314", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A cheerful jaunt through one-thousand years of Indian philosophy (200 C.E. \u2013 1300 C.E), taking in framing concepts and central debates along the way. What is reality, and how do we fit into it? Is the world we experience an illusion? Are there other minds, and can I know them? Can I even know my own mind? Is there a divine being or beings? How can we know the answer to these questions? And above all: How should our answers to these questions guide our lives?", + "title": "Classical Indian Philosophy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2315", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Narration \u2013 from life and fiction, of ourselves and others \u2013 pervades our lives. Drawing on the vast story tradition of Indian Buddhism, this course asks how the stories we tell construct an ethos and create individual moral characters. Are the stories I tell of my life part of creating my moral identity and the intelligibility of the world around me or are they just a nervous tick some people have, or even something we would be better without? How do different styles of narration construct different moral worlds and possibilities? Can engaging with literary narratives make us better people?", + "title": "Narrative Ethics: Stories and Self-Improvement", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2316", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the creative sculpture techniques of the Fine Arts discipline. Through exploration of conventional and non-conventional materials, this module will expose you to the complex nature of contemporary art and new ways of developing ideas, concepts and practices. With a series of hands-on studio exercises including rotary, oscillation and gear making, you will develop skills of sculpture making with an emphasis on the element of movement. This module concludes with a final project that engages the viewers as interactive participants.", + "title": "Sculpting Movement: Artist in Residence (AIR) Special Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2317", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The civilisational blue-prints of the Ancient Near East are to be found all around us, such as the hallmarks of urban life, the alphabet, and the sexagesimal system for measuring time. This module provides a general introduction to the ancient Near East (c. 3000 \u2013 330 BCE) including Egypt, Mesopotamia, Anatolia, the Levant and Iran. We will survey quotidian life in the ancient Near East with an appreciation of diachronic and regional differences. Textual, archaeological and art historical materials will be employed to discern the worlds of the great and small alike rulers, warriors, farmers, pastoralists, merchants, scribes etc.", + "title": "State and Society in the Ancient Near East", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2318", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This practice-based course provides an introduction to modern acting. It is suitable for those with or without previous performance experience. The course is highly collaborative and cultivates a supportive ensemble. Students take healthy emotional risks that foster personal growth. The work is grounded by basic Stanislavski scene work, augmented by an introduction to Viewpoints. Students perform two modern scenes, an audition monologue, and original short pieces. Rehearsal is required outside studio time. While the course is based in realistic acting, the tools introduced are applicable to many different kinds of performance and beyond theatre.", + "title": "Acting I", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2319", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-BlackBox", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-BlackBox", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-BlackBox", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-BlackBox", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is a survey of the contribution of humanities disciplines\u2014history, philosophy, religious studies, anthropology, literature, film, and art\u2014to understanding and responding to the socio-environmental challenges of the 21st century. Students will be introduced to interdisciplinary debates on subjects such as climate change, technonature, waste, time, happiness, and the Anthropocene, with a focus on art and literature from Southeast Asia, East Asia, and South Asia. Students will research and write original environmental humanities essays on some elements of life and culture in Singapore, with the goal of using that to clarify post-graduation goals for sustainability careers.", + "title": "Foundations of Environmental Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2320", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the wake of the second World War, Oxford philosophers Iris Murdoch, Elizabeth Anscombe and Philippa Foot recognized the imperative for a new mode of moral philosophy, at once ambitious and fully natural. They initiated what became the reclamation of the resources of the Greek tradition, primarily Aristotle, in Anglophone moral thought.\nThis course explores the naturalised rationalism and moral psychology of neo-Aristotelian virtue ethics: What is a virtue? What are the virtues, and why? How can moral thought respect both our rationality and our animality, both our common humanity and our diversity? And might there be something still better then virtue?", + "title": "Virtue, Reason and Nature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course serves as an introduction to the literary art of comics and graphic novels. We will develop an appreciation of how this artform employs a unique visual grammar to create miniature imaginary worlds on paper that allow us to reimagine the world around us. We will study how this grammar developed historically and how it differs across cultures. Topics addressed include: 1) the development of the newspaper comic strip in the pre-war US; 2) the post-war global rise to popularity of action-adventure comics, particularly in Europe, the US, and Japan; and 3) the independent graphic novel movement of today.", + "title": "Comics and Graphic Novels", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2322", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores color through creative perspectives that decolonize systems of knowledge. Topics to be explored include natural and artificial pigments, indigenous cultural knowledge and land-based artistic pedagogies. Students will create artworks with material-based approaches as well as new methods of thinking with systems of color. Critical engagement will be made with oral histories of color, the voice of soil and alternative philosophies to inform artistic research in practice. Final art projects will work with diverse sources of knowledge selected by students from the topics of the module to form creative responses of their own.", + "title": "Decolonizing Color", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course invites students to think more deeply about the nature of health, disease, and medicine and to connect these with issues of global justice. The goal of the course is to familiarize students with the current debates about the just distribution of health and healthcare resources and the ways in which culture, politics, and economics shape the global public health landscape. Students will explore issues related to personal responsibility, public health and social justice and should be able to apply these concepts meaningfully in their own lives at the end of the course.", + "title": "Global Justice and Bioethics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The journey is an ancient and vibrant motif in literature: journeys can introduce you to the strange and new, take you home, convey you to the recesses of your own mind, end serendipitously or in calamity. Based on the motif of the journey, this course highlights a few of the many extraordinary texts in the sub-Saharan African literary tradition, from the 14th to the 20th centuries. By focusing on primary texts (epics, plays, poetry, biographies, novels and short stories), we will get a sense of the breadth and variety of themes, ideas, encounters, and travels featured in African literary itineraries.", + "title": "Introduction to African Lit: Sub-Saharan Journeys", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the study of classical Islamic and Jewish philosophy from the 9th-12th centuries CE. Topics include the influence of Greek philosophy; the defense of philosophy, philosophy\u2019s potential compatibility or conflict with revelation; the soul and intellect; the nature of happiness; good and defective political systems; the existence of God and what can be said of the divine; knowledge, causation, and the possibility of miracles; and nature of the universe. Authors include Al-Kindi, Al-Razi, Al-Farabi, Ibn Sina (Avicenna), Al-Ghazali, Ibn Rushd (Averroes), and Maimonides.", + "title": "Introduction to Classical Arabic Philosophy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2326", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a survey of the different conceptions of freedom in Classical Chinese Philosophy. It examines different classical philosophers in China through the notion of freedom, and also, reflects on common cultural tropes about Chinese intellectual history. We will think through the nature of the individual self, the existence of human will, and the relation of that self to society via varying Chinese intellectual traditions, from Confucianism and Daoism to Legalism among others. By the course\u2019s end, students are expected to have acquired a critical awareness of the diverse perspectives of Chinese philosophers on metaphysical and political freedom.", + "title": "Conceptions of Freedom in Classical Chinese Philosophy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2327", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the history of the British empire through focused studies of a variety of imperial lives. We will explore the British empire through the eyes and experiences of some people you\u2019ve heard of before and some people you haven\u2019t including: Weetamoo, Elizabeth Marsh, Robert Clive, Ouladah Equiano, Houqua, and Stamford Raffles. How did empire change their lives, and how, in turn, did they help to create or contest the empire? We will also examine key scholarly debates about the British empire and situate the lives of individuals and families within a larger imperial context.", + "title": "History of the British Empire to 1850", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2328", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a first introduction to the history of the body, gender, and sexuality since the Middle Ages. It explores how these things we may think of as universal constants change over time, and how they are tied to wider cultural, political, and societal change. Today, sex and gender are often at the heart of how people and cultures define themselves as different from others. We will examine why this is the case.", + "title": "Bodies, Genders and Sexualities in History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2329", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Animals, both real and imaginary, are ubiquitous in the art, literature, and material culture of medieval Europe, where they emerge as frequent objects of reflection on the nature of language, the ethics of violence, the organization of society, and the limits of what constitutes the human. This course will explore the medieval fascination with animals and the philosophical questions they raise. Drawing on the \u201canimal turn\u201d in contemporary cultural studies, we will investigate the complex and often ambiguous ways in which animals are represented in a range of genres, including bestiaries, fables, romance, and lyric.", + "title": "Real and Imagined Animals in Medieval Literature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2330", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course investigates classical approaches to human reason through the formal discipline of Aristotelian or Term Logic, as well as non-Western frameworks of reasoning in Chinese and Indian thought. It deals with fundamental concepts in Term Logic such as terms as meaningful signs of language, propositions as true or false assertions, and syllogisms as deductive and inductive mediate inferences. Nonetheless it also explores frameworks of Chinese Logic in the School of Names as well as in Daoist and Buddhist Paradoxical reasoning, as well as of Indian Logic, mainly in Nyaya.", + "title": "Introduction to Logic: A Multi-Cultural Perspective", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the different conceptions of gender and women in the history of Chinese Philosophy. It also reflects on its significance in Chinese philosophy in general. As such, we will think through the natures of gender and sexuality via varying Chinese intellectual traditions, from Confucianism and Daoism to Buddhism among others. By the course\u2019s end, students are expected to have acquired a critical awareness of the diversity and links between perspectives of Chinese thinkers on gender and women.", + "title": "Perspectives on Gender in Chinese Philosophy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2332", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines concision as a formal element of literature and other art forms, as well as a window into human psychology. From Bash\u014d to the Ramones, artists have prized concision, variously associating it with clarity, ambiguity, memorability, epiphany, and enlightenment. Yet short works suffer from bad PR, often overshadowed by more verbose genres. We will pay homage to unloved genres by analyzing (and sometimes producing) flash fiction, short films, TikTok videos, one-act plays, vignettes, parables, fables, jokes, haiku, ghazals, slogans, koans, obituaries and epitaphs, radically reductive translations, pop songs, minimalist art and music, and more.", + "title": "Shortcuts: The Aesthetics of Brevity", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2333", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we investigate what language is, what it does, and how. Reference What distinguishes the names \u201cSanta Claus\u201d and \u201cTaylor Swift?\u201d Meaning Is it in our heads, in the world, somewhere between? Speech acts we assert \u201cSanta Claus is not real,\u201d but we can also hint, joke, insult, imply, command, etc. How can we do this, and how are these activities related to reference and meaning? Our focus will primarily be the analytic tradition of philosophy, with attention also to Indian and feminist philosophies.", + "title": "Language and Meaning", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2334", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course on contemporary philosophy of science. It will cover three central topics within philosophy of science: 1) the demarcation problem, 2) scientific inference and explanation, 3) scientific realism. The last few classes of the course are more inter(sub)disciplinary in nature. They are dedicated to topics on the relationship between science and other aspects of human life, such as public knowledge, feminism, and religious belief.", + "title": "Central Themes in Philosophy of Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2335", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Module explores the meaning of contemporary artistic practices with a focus on conceptual methodologies. How can we process the challenges of our political period of uncertainties - climate change, demographic shifts, international conflicts etc. - with artistic means of expression? What tools and esthetics need to be studied, developed, invented today? Each week will demonstrate a different approach either by using a creative medium, analytic method and/or examples from contemporary art history. Students will familiarize themselves with manifold forms of artistic practice and research methods across different media and disciplines to develop workplans for their varied projects and research.", + "title": "Learning by (un)doing - Artistic Practice in Grim Times", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2336", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-Studio3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, students will learn the importance of the photograph\u2019s materiality for its perception and reception. They will learn present-day digital processes of photography, and the lineage of historical modes of photography which digital imaging is a part of. From studying the photogravure, to the visual and tactile nuances of film, to hands-on digital imaging including photography, editing and printing, students will work towards a final digital photography project at semester\u2019s end. In this way, they will gain a working knowledge of how form and craft inform the understanding and experience of photography.", + "title": "The Materiality of Photographs Craft and Perception", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2337", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-Studio3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It is an empirical fact that we routinely comply with a variety of social norms, follow many social conventions and obey a multitude of laws. But, what are social norms? How are they distinct from other constraints on individual or group behaviour? What explains norm compliance? How do norms emerge? Why do norms persist over time? Why does normative fracture happen? This course attempts to answer these questions by bringing together insights, about the structure, functions and evolution of social norms, from different disciplines in the social sciences in a philosophically \u2013 minded survey.", + "title": "Social Norms A Philosophical Introduction", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2338", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is empiricism and what sets it apart from other philosophical traditions? This course provides a historical overview of empiricism. The primary focus of the course is the British empiricists from the 17th and 18th century. However, the course will also cover 20th century versions of empiricism to see how the tradition has evolved in contemporary philosophy.", + "title": "Empiricism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2339", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is a postcolonial approach to the question of what it means to do philosophy. We will think through questions such as what is the nature of philosophy? What are its aims, limitations, and methods? Is the philosophical discipline truly inclusive and global? If not, are there ways in which it can be more inclusive and intercultural? We will discuss Plato, Kant, all the way through Spivak, as well as explore non-mainstream philosophy. By the end of the course, students are expected to have gained a critical awareness of the nature of philosophy, as well as its future direction.", + "title": "Metaphilosophy and the Politics of Knowing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU2340", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module develops students\u2019 understanding of image-making, through the process of researching artists\u2019 oeuvres. By closely studying the body of works of selected artists, students will analyse the changes and shifts in their art-making, and the developments in their visual works. Students will learn to mimic, to draw inspiration, and to challenge their own preconceptions of artists, art works and art movements. Student will develop and evolve their own works/themes/ideas inspired by artists discussed, and develop an idea and a process into making their own work. The course fulfils the practice requirement within the structure of the Arts & Humanities.", + "title": "Drawing Process", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From 1405 to 1433, the Ming admiral Zheng He (Cheng Ho) led seven extravagant expeditions to kingdoms in Southeast Asia and around the Indian Ocean world, going as far as the African continent. In this Historical Immersion course, we will examine the life of this eunuch\u2010admiral and explore the nature of his voyages. We will also study the policies and ambitions of Zheng He\u2019s patron, the Emperor Yongle, and consider his lasting legacy today.", + "title": "Ming Imperial Voyages", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The proseminar in literary studies introduces students to the comparative study of literary form. Students will be introduces to a range of theoretical and literary critical approaches from around the world.", + "title": "Proseminar in Literary Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The proseminar in literary studies introduces students to the comparative study of literary form. Students will be introduced to a range of theoretical and literary critical approaches from around the world.", + "title": "Proseminar in Literary Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3210A", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The proseminar in literary studies introduces students to the comparative study of literary form. Students will be introduced to a range of theoretical and literary critical approaches from around the world.", + "title": "Proseminar in Literary Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3210B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The proseminar in literary studies introduces students to the comparative\nstudy of literary form. This year, we will focus on Shakespeare\u2019s plays and\npoetry as a springboard to explore the theoretical and literary critical\napproaches from around the world.", + "title": "Proseminar in Literary Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3210C", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The proseminar in literary studies introduces students to the comparative study of literary form. Students will engage with a range of theoretical and literary critical approaches, beginning with Plato and Aristotle and ending with contemporary Post-Colonial theory and new paradigms of World Literature. The course\u2019s goal is largely methodological, offering students a critical toolbox to help frame their interpretations of literary texts.", + "title": "Proseminar Lit Studies: How to Do Things with Literature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3210D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What does it mean, and what does it look like, to \u201cstudy literature\u201d? How might one go about it, in theory, and how are others in the field of literary studies actually going about it now? What is the use of such work, and what can it teach us about the texts we read, the things we assume about them, and the relationship these texts might have with us and with the world? As a pro-seminar, this class will be an introduction to a field of study and an opportunity to begin placing ourselves in that field as participants.", + "title": "Proseminar in Literary Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3210E", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What is literary studies, how did it come about as a field of study, and how can individuals like you and me engage with it, today? This pro-seminar introduces literature majors to key works of literary and critical theory, and their historical contexts. In order to recuse \u201ctheory\u201d from its overwrought, misunderstood opposition to something perceived as more pristine and dynamic like literature \u201citself,\u201d we will focus on thinkers concerned with the social acts of reading and writing, and a broader variety of what are considered as \u201ctexts.\u201d", + "title": "Proseminar in Literary Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3210F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the Chinese literary genre of \u201cTales of the Strange,\u201d\nfrom its earliest beginnings all the way to its later instantiations in lateimperial\ntimes. All the primary readings will be in the original classical\nChinese, and these will be supplemented by secondary readings in both\nEnglish and Chinese.", + "title": "Chinese Tales of the Strange", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to Immanuel Kant\u2019s critical philosophy, focussing on the\nCritique of Pure Reason.", + "title": "Kant", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course investigates central debates in ethics, epistemology and metaphysics within Indian Buddhist thought. It seeks to familiarize students in detail with a single, sophisticated body of thought as that developed over 1,000 years, including debates arising both among Buddhists and between Buddhists and their non\u2010Buddhist critics; to give students conceptual tools and vocabulary for participating in the classical Indian philosophical project; to give students the ability to move between the main areas within philosophy systematically and recognizing the connections between them.", + "title": "Indian Buddhist Philosophy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover the practicalities of working as a visual journalist in\ntoday\u2019s world. The evolving media landscape demands an awareness of the\nuses and meanings of images and a high degree of visual literacy. Besides\ncovering the technical aspects of camera operation, post production and\ndigital delivery, the curriculum will provide opportunity for critique and\ndebate both of student\u2019s work and current practitioners in the field. Real world assignments, discussions on ethics, business practices, exploration of\nthe potential of new media and visits by guest speakers will all form part of\nthe course.", + "title": "Photojournalism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Creative Nonfiction encompasses several artistic and exploratory practices. Students learn how to create nonfiction in authentic, innovative, and unexpected ways. With readings, discussions, and in-class exercises, students practice shaping their ideas into inventive projects. In this iteration of the course, students become familiar with diverse approaches to nonfiction, with special attention to literary journalism, personal narratives, and the audio essay\u2014an emerging form that uses sound as argument. Students practice being critical readers, generate their own ideas, and use literary texts to comment on contemporary issues. This course welcomes newcomers as well as those with a background in the genre.", + "title": "Forms of Nonfiction: Literary Journalism from Print to Sound", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3217", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In the 1880s, the German philosopher Friedrich Nietzsche proclaimed the death of God and called for a new life\u2010affirming philosophy to combat the rise of nihilism. Nietzsche, one of the most provocative thinkers of the nineteenth century, lived in an age of cultural tumult and intellectual transformation. This course provides a window into this period through a close engagement with Nietzsche\u2019s writings, including his philosophical works, his personal correspondence, and his autobiography. Attention will also be paid to his friendship and subsequent disillusionment with the composer Richard Wagner.", + "title": "Nietzsche: An Untimely Thinker and His Times", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course invites close critical appreciation of four works from the Roman\npoet Ovid (43 BC \u2013 AD 17) which are innovative in terms of their genre and\nthematic remit: Heroides (\u2018letters\u2019 from mythical heroines to their absent\nlovers); Ars Amatoria (a didactic poem on how to find a lover in Rome,\ndifferent books addressed to men and women); Tristia (epistles from the poet\nin exile on the Black Sea); Fasti (a poetic treatise on the Roman calendar, covering festivals, myth and issues of antiquarian interest).", + "title": "Ovid the Innovator", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Known as the time of the \u201chundred schools of thought,\u201d the Warring States\n(Zhanguo) period was the formative period of Chinese philosophy and\nundoubtedly the era of greatest intellectual diversity in all of China\u2019s history.\nHowever, the intellectual developments of this period were inseparable from\nmajor social, political, economic, and technological changes that the Chinese\nworld was undergoing at the time. This course will examine the political and social changes of the Warring States and preceding Springs and Autumns\n(Chunqiu) period and explore how all these various historical forces may\nhave shaped the ideologies and debates of the era.", + "title": "Warring States China Intellectual and Political History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Pompeii provides us with a vivid glimpse into the economic, political, and\ncultural life of an ancient Mediterranean city and into that of the Roman\nEmpire at large. The long history of Pompeii closely maps onto the evolution\nof Rome from an Italian city\u2010state into a cosmopolitan world\u2010empire. In this\ncourse, we will discuss the use \u2010 and misuse \u2010 of literary, documentary,\nepigraphic, and archaeological evidence in the practice of pre\u2010modern history. We will cover the high and the low, from taverns, brothels and workshops to\nthe business of wealthy merchants, local politicians and members of the\nimperial family.", + "title": "Pompeii: Art, Urban Life & Culture in the Roman Empire", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course immerses students in the social, political, economic and cultural\ncontext of the First Opium War between Britain and China from 1839 to\n1842. This war, fought over the opium trade, is seen as a major turning point\nin world history. The course will take a long view of the war and explore the long\u2010 and short\u2010term causes as well as the immediate and long\u2010term\nconsequences of the war.", + "title": "The First Opium War, 1839\u201042", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Metaphysics concerns what things there are, what they are like, and how they are related. In this course, we will investigate such questions with respect to a special class of objects: us. In particular, we will consider question of what we are. This course will focus exclusively on recent philosophical research within the \u2018analytic\u2019 tradition.", + "title": "Metaphysics of Human Nature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Starting with the Spanish invasion of Aztec Mexico and ending with the Haitian Revolution in 1791, this course explores a transformative period in history. The accidental discovery of America initiated several centuries of intensive economic, military and religious activities throughout the Atlantic world. These transformations had catastrophic consequences for indigenous peoples and relied upon the labour of twelve million enslaved Africans. This course compares English, Spanish, Dutch, and French practices of colonialism and traces the development of racialized categories of difference while also considering how indigenous people, enslaved Africans, and \u201crogue\u201d colonists resisted slavery, servitude, and imperial authority.", + "title": "Empire, Slavery and the Making of the Americas", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the creation, exhibition and enduring legacy of one of the world\u2019s most famous masterpieces of modern art: Kazimir Malevich\u2019s Black Square. We will examine materials in the form of Malevich\u2019s memoirs, correspondence and critical writings, as well as contemporary art criticism and period publications that address questions on the subject of aesthetics,culture and politics. We will analyse the historical conditions that shaped both the artist\u2019s inception and the public reception of the Black Square in order to better understand how and why it became the visual manifestation of a new period in world artistic culture.", + "title": "Kazimir Malevich and the Black Square", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an in-depth study of a significant global event of the C20th\n\u2013 the Russo-Japanese War of 1904-5, primarily from the perspective of Japanese society at war. As the first modern war of the C20th, it acts moreover as a pre-figuring moment to World War I, where social and cultural norms of a modern society at war were shaped and negotiated. We examine a variety of translated source materials, ranging from official documents, personal letters and diaries, cultural materials (novels, Japanese prints, paintings, photographs, films), media sources (newspapers, magazines, newsreels, photographs, exhibitions), and material culture (buildings, monuments, objects).", + "title": "The Russo-Japanese War of 1904-5", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Woolf lived in an era of tremendous historical-mindedness in which artists,\nwriters, and historians were deeply engaged with how the past should be\nrepresented. Students will explore Woolf\u2019s engagement in this debate through\nclose analysis of her diaries, drafts, and published works as well as primary\nsource materials (museum artifacts and contemporary newspapers) that help\nplace her engagement in the social, cultural, and political issues of the early twentieth century. Was this engagement with the past at odds with a liberal\nbelief in progress, or was the past, for Woolf, a causal entity to be interpreted\nfor its historical difference?", + "title": "Woolf, Historiography, and the Scene of the Modern", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course students will study and practice a range of writing genres including the personal essay, the academic essay, and the nuances of writing in their chosen disciplines. Students will read short essays, engage with current writing theory, and can expect to practice regular writing exercises. Students will also receive practical training in one-on-one peer tutoring and leading larger group workshops. By the end of the course, students will have a sound understanding of the dialects of writing and if they receive an A, become qualified to become peer tutors.", + "title": "Writing Pedagogy and Practice", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YHU3244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will survey key topics in the thought of Aristotle (384-322 BCE), one of the major figures in the Western philosophical tradition. Main themes will include Aristotle logic and theory of knowledge; Aristotle\u2019s philosophy of nature (including his physics, cosmology, and biology); Aristotle\u2019s psychology, metaphysics, and theology; and Aristotle\u2019s practical philosophy\u2014including his ethics, politics, and literary theory.", + "title": "Aristotle", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Examining works of fiction, criticism, art, and film, this course unpacks the controversial term \u201cAfropolitan\u201d (African Cosmopolitan), troubling certain stereotypes about Africa by studying African cities as global metropoles and African creators as international innovators. First used in 2005, the term \u201cAfropolitan\u201d has attracted criticism as being applicable only to a certain social class: the wealthy global elite. We will begin by looking at writing both critical and laudatory of this term, and continue on to study key creative works in depth. No previous knowledge of African literature or arts is assumed, and students have the option of completing a creative final assignment.", + "title": "The Afropolitans: Contemporary African Lit. & Film", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how Romans conceptualized food in different textual contexts with attention to historical and material evidence. What do we know about food as sustenance and as a critical topic in the Roman world? The course will center on food as a literary theme from comedy to satire and epigram in the imperial period, with attention to the ethical and philosophical preoccupations of poets and philosophers such as Horace and Seneca.", + "title": "Food and Ethics in Roman Literature and Culture", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Roman Emperor Nero (AD 54-68) is a fascinating individual but one who is a challenge to reconstruct, tainted as he is by negative posthumous assessments (from cruel Emperor to the anti-Christ himself). Approached via a range of literary and material evidence \u2013 particularly the evidence from Nero\u2019s reign itself \u2013 students will gain an insight into the political, social and cultural life of Neronian Rome, as well as the personality and ideologies of the Emperor himself. Whether you judge him to be an artist, a visionary, a tyrant, or a madman, is up to you \u2026", + "title": "The Roman Emperor Nero: Sex, Stage and Scandal", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an in-depth examination of the city of Tokyo and the historical phase in which it transitioned from a pre-modern city called Edo, to the modern city of Tokyo that we know today. It will involve close readings and analysis of visual materials (\u201cfloating world pictures\u201d (ukiyo-e)), historical artefacts, literature and film from the later Edo period (1800s) to the modern era to provide an understanding of Japanese culture and history that has conditioned its transformation into one of the major global cities in Asia today. This module fulfills the Art History track in the Arts & Humanities major.", + "title": "From Edo to Modern City: Tokyo", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines poetic tradition in three major religions of the world: Hinduism, Buddhism, Christianity. Why does the divine voice express so often itself through poetry? Why is poetry the privileged vehicle in which communications between the divine and the human occur? Cross-cultural problems we will study: the body and soul, devotion, mysticism, the lyric voice, revealed scripture and tradition, theological disputes, the gaze, desire, gender, eros, allegory.", + "title": "World Religious Poetry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why are some forms of cultural expression considered highly subversive in the Islamic world today? Why are some literary works viewed as so incendiary that the authorities imagine that they must not only be banned, but that their authors must be punished for their transgression as well? This course will move between modern literary works from the Arab and broader Islamic world and the textual foundations of the Islamic tradition with the goal of understanding why some books are read as dangerously inflammatory in the modern period when their content often would have been far less controversial centuries earlier.", + "title": "Heretics and Deviants: Writing, Rebellion, and Islam", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3260", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Einstein imagines a beam of light as a train which he rides. Mengzi thinks of human virtues as growing sprouts. Why is this kind of reasoning so pervasive, and what does it mean to think with metaphor and analogy? Three philosophical traditions will inform our exploration of these questions: Indian philosophy, Chinese philosophy, and contemporary Anglophone analytic philosophy. We will consider what metaphor and analogy are, the implications for understanding their role in our thought, their relationship to culture and language and their importance in philosophical topics such as ethics.", + "title": "Analogical Reasoning and Metaphor", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Against the backdrop of the Cold War, the Bandung Conference of 1955 stands as a symbolic event in the history of decolonisation of Asia and Africa. We examine \u2018Bandung\u2019 as a nodal point from which a variety of postwar narratives emerged, including freedom and independence, non-alignment, Third World internationalism, connecting even the US civil rights movement with Bandung. A diverse range of materials will be explored, including popular writing, film, photographs, newsreels, newspapers, journals, official documents, as well as a field trip to the conference museum in Bandung to consider the role of public history.", + "title": "The Bandung Conference of 1955", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will examine some central philosophical issues concerning religious belief and practice. Topics may include the problem of evil, petitionary prayer, and religious experience; readings will be contemporary but not exclusively Anglophone.", + "title": "Philosophy of Religion", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3265", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why is democracy valuable? What does it even mean to call a political order a democracy? How can democracy represent a 'will of the people' if the people disagree with one other? Does democracy conflict other important values and goals? In this course we answer these questions by first establishing a conceptual framework from the history of political thought, and then plunging into contemporary democratic theory. We will use theory to analyse contemporary local and international examples, and be open to real examples posing challenges to theory. \nThe course satisfies these dimensions of the Philosophy major: Skills, Problems; Historical, New.", + "title": "Democratic Theory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3266", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Classical Indian Philosophy introduces students to major topics in linguistic analysis within the traditions of India. This course focuses on two questions: What is linguistic meaning? How do we understand what is meant? As the former question is embedded within the latter for Indian thinkers, the first third of the course will be spent on epistemology of testimony in Ny\u0101ya and M\u012bm\u0101\u1e43s\u0101. The middle third of the course takes up the question of what meaning(s) are primary, both in terms of words and sentences. In the final third, we address meanings beyond primary: metaphor, bitextuality (punning), and suggested meaning.", + "title": "Classical Indian Philosophy of Language", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the history of the Japanese empire from 1868 to 1945. Whilst consolidating the knowledge of the Japanese empire, this course aims to develop critical thinking on existing historiography, by thinking about limitations of traditional historiography, whilst exploring new approaches emerging in the field. Why do debates on empire sit uncomfortably with the literature on nationalism? What are imperial and trans-imperial agents and practices? We examine themes such as migration, citizenship, religion, development, settler communities, trade, experts, and outlaws. What was the role of \u2018culture\u2019 as a constructed ideology to connect diverse local contexts?", + "title": "The Japanese Empire in Global History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From 1775 to 1815, the number of novels written by women rose rapidly, even as women were increasingly confined to the domestic sphere. Agreeing with more conservative writers that the patriarchal family was England\u2019s most important institution, radical and progressive women novelists argued that relations between men and women should be reformed, because domestic conduct could have serious political implications. In this course, we will read a variety of novels against this historical backdrop, considering the fictional strategies that women employed to tell (and sell!) stories that were often at odds with the dominant values of their culture.", + "title": "English Women Novelists: Austen and her Predecessors", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines how Roman poets adapted and developed Greek erotic poetry. How did love elegy become the dominant new genre in the Roman literary scene of the first century BCE? How did Roman poets transform Greek models such as Sappho? What does love elegy tell us about sexual identities in Rome? Students will read Greek and Roman love elegy in translation with scholarship to understand the generic conventions and innovations of the Roman elegists. Students will also work with the texts in Latin, and examine the translation tradition in English and theoretical discourses surrounding translation. 2MC language supplement available.", + "title": "Love in Antiquity: Eros in Translation", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3271", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is the relationship, in modern literature, between literary texts and politics? Can literature transform the world? Or is it just a distraction from engagement? Can it do anything to influence the political landscape? If so, how might it accomplish or document change, and how might different types of literature be suited to activist, reformist, or revolutionary purposes? Through readings from fiction, drama, poetry, history, and literary theory, and from writers that might include Zola, Stowe, Morrison, Thomas Mann, Coetzee, Beauvoir, Sartre, Adorno, Brecht, Allende, Alan Moore, Christa Wolf, and others, this course attempts to address these questions.", + "title": "Literary Activism: Texts, Aesthetics, & Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3272", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This historical immersion course examines the beginnings and subsequent proliferation of Orientalist painting in the first half of the nineteenth century. Taking Edward Said\u2019s seminal definition of Orientalism as a point of departure, students will investigate the historical processes by which Europeans conceptualized and represented the \u201cOrient\u201d both at the moment of initial colonial encounter and during subsequent imperial expansion. Students will analyze a number of masterpieces of Orientalist painting alongside key literature. Students will engage with different theoretical positions and methodologies, exploring how the legacy of Orientalism continues to influence our perceptions of the East/West binary to this day.", + "title": "Painting the Orient", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3274", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will survey the Cartesian system\u2014showing how issues such as the reformation, religious climate, social issues (such as the earliest standardization of a curriculum by the Jesuits) and revolutionary developments in science and mathematics informed Descartes\u2019 methodology, philosophy and publication strategy. Starting with his conception of human reason and methodology, we will consider the influences that shaped the construction of the Cartesian system from metaphysics and epistemology, mathematics and physics, to medicine and morals. The course will also examine the historical context of Descartes' thinking, in particular his intellectual inheritance from scholasticism and the broader contemporary reception of his work.", + "title": "Descartes and the Perfection of Human Knowledge", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3275", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a hands-on course in which students will be introduced to the practices involved in historical research, writing, and presentation. Students will be exposed to a variety of models created by professional historians and evaluate the strengths and weaknesses of each. Direct engagement with primary sources will be a principal area of focus in this course.", + "title": "The Historian\u2019s Craft", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3276", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How has our desire for consumable goods and objects, from sugar and spice to textiles and furniture, shaped world history? In this course, we will explore how the European quest for foreign items, exotic tastes, and intoxicating substances drove exploration, trade, and colonialism during the early modern era. This insatiable pursuit led to the discovery of the Americas, the growth of the Atlantic slave trade, and the development of a globalized marketplace that connected the \u201cEast\u201d with the \u201cWest.\u201d In this course, we will study key historical transformations that created the world we live in today: the \u201cmarketplace revolution,\u201d the \u201cbirth\u201d of consumer culture and the middle class, the origins of capitalism, and the emergence of modernity itself. We will do so through the prism of the consumable goods and material artefacts that drove these changes. We will explore how these substances were produced, trafficked, consumed, politicised, and aestheticized in the context of broader social processes.", + "title": "Objects of Desire: Consumers, Colonialism, and Global Trade", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3277", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "During the nineteenth century, England produced many important women novelists. Perhaps for the first time in history, women achieved parity with men in their contributions to a significant literary genre. In this coursee, we will consider the galling restrictions on form and content with which female novelists had to contend and how they dealt with those restrictions. We will examine what women novelists had to say about gender, including the contemporary ideologies of \u201cseparate spheres\u201d and \u201cthe angel in the house\u201d; about colonialism and industrialization; about social class; about sexuality; and about religious faith and religious doubt.", + "title": "English Women Novelists: the Bront\u00ebs to George Eliot", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3281", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course uses The Interesting Narrative of the Life of Olaudah Equiano, first published in 1789, to investigate both the invention of a new genre\u2014the Atlantic slave narrative\u2014and the historical context that shaped Equiano\u2019s life. Written by a former slave and key antislavery activist, this multi-layered text personalizes major historical events, including the slave trade in West Africa, the transportation of 12 million Africans to America, and the anti-slavery movement. Combining aspects of the captivity narrative, travel writing, and spiritual autobiography, The Interesting Narrative will be treated as both a historical source and a literary work.", + "title": "Equiano's Slave Narrative: Texts & Contexts", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3282", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course begins with the following question: What exists, fundamentally speaking? We will consider how to frame the question, how to answer it, and how to appreciate its significance, using formal methods as appropriate.", + "title": "Reality", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3283", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides opportunity for engaging with postcoloniality as a cultural and literary phenomenon with a complex historical legacy and a contemporary relevance that links otherwise diverse contemporary societies and literary traditions. Through a close engagement with documents of cultural history as well as representative texts in all the literary genres, selected from across the former colonies of Europe (and including reference to the US administration of the Philippines during the first half of the 20thc century), this module will give students the opportunity to engage with the issue of what it means, and why it matters, in the words of Ngugi was Thiong\u2019o, to \u201cdecolonise the mind.\u201d", + "title": "Postcolonial Literatures Today", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3284", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Rebellions and revolutions offer us moments through which to examine both disruptions and continuities in nineteenth- and twentieth-century Vietnamese history. This course studies Vietnam\u2019s past though its own cultural production of knowledge, and it investigates Vietnam\u2019s ethnic minority revolts, anti-colonial rebellions, and the literary revolution of the 1920s and 1930s. The major historical periods covered in this class are territorial expansion, colonization, independence, and war. We will read the political and literary works that emerged during these periods, which include poems, short stories, novels, manifestos, and films. Note the works will be studied in translation.", + "title": "Rebellion and Revolution in Vietnamese History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3285", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module, we will study Japan\u2019s national mobilisation for the war, and the daily life experience of those mobilised, by examining a wide range of primary (e.g. oral history, propaganda films, military songs, imperial rescripts) and secondary sources. We will also analyse and discuss portrayals of war-time experience in contemporary anime, films, and drama. At the end of this course, students will undertake a creative project to respond to the materials studied.", + "title": "Living & Dying as Japanese in WWII Anime and Drama", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3286", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will give students the opportunity to engage with space and place from a creative perspective. Approaches including site-specific, environmental art, ephemeral media, and other alternative methods will be explored. While making art ecological and social issues will be investigated while investigating alternative methods of exhibition. Students will gain familiarity with multiple uses of space in the practice of installation art. Students will draw upon basic visual media while learning to utilize new media, natural materials, sculpture, video and other media. The aim of this course is to develop one\u2019s own language for expression that is sensitive to space.", + "title": "Installation Art", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3288", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "\u201cChina\u201d and \u201cChinese\u201d are no longer adequate terms for the study of Sinitic-language communities and cultures that evince politically tenuous and linguistically polyphonic relations with the People\u2019s Republic of China. This course interrogates Sinophone Studies as a critical, interdisciplinary alternative to previous constructions of Chinese literature and culture tied to the nation-state and progressive narratives of modernity. Students will study fiction and films from Hong Kong, Malaysia, Singapore, Taiwan, the United States, and the PRC, along with critical works explaining the ways that diaspora, colonialism, comparative empires, and ethnic or minority studies have informed the rise of Sinophone Studies.\n\nAll Chinese-language materials will be read in English translation.", + "title": "Beyond China: Sinophone Literature, Film, and Culture", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3289", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is a slow and philological reading Dante\u2019s Divine Comedy, an undisputed masterwork of world literature. \nAs the Italian poet narrates his vision of the world beyond, we will journey with him through Hell to Purgatory and ascend to Paradise and finally return to earth. We will pay special attention to the historical, intellectual and social world of the European Middle Ages and the fraught legacy of the classical tradition. We will experience the sublime and terrifying grandeur of his cosmic vision, discuss theology and revelation, the state of souls in the afterlife, the primacy of poetry as an intellectual and spiritual activity, the nature of art and beauty, the relationship between pagan myths and Christian mysteries, and the medieval encyclopaedia of classical learning and religious doctrine. \nBased on student interest, we might work on volume 2 of the Dante Journal of Singapore, highlighting the original research of the seminar participants.", + "title": "Dante\u2019s Divine Comedy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3290", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Kashmir became an important centre of philosophy, religion and literature in the early medieval period (850-1050), with Buddhism and different kinds of Hinduism vying with each other for royal patronage. Orthodox Brahmins performed sacrifice and practiced ritual purity, Buddhism cultivated inner purity of the mind that leads to salvation (nirv\u0101\u1e47a), while new forms of Hinduism called Tantra rejected ritual purity in the belief that impurity \u2013 such as ritual sex outside caste \u2013 leads to power and success. This course will examine these concerns by focusing on a play, Much Ado About Religion, and a philosophical text, The Essence of Supreme Truth.", + "title": "Sacrifice, Sex, and Power in Medieval Kashmir", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course fulfils the intermediate practice requirement (Art Practice track) within the structure of the Arts & Humanities.\n\nStudents will work with nude models, study human anatomy, and learn to depict the figure in various mediums. Students will draw, paint, sculpt, and challenge the limits of figurative representation. The course will consider body politics through art making, and explore relationships between artist-artwork-viewer. The class will look at gesture drawing, animation, classical painting, contemporary and conceptual works. Students will develop a portfolio of figurative drawings in various media, and develop a selection for a public exhibition at the end of the semester.", + "title": "Life Drawing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3292", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will thoroughly examine Japan\u2019s most celebrated artistic medium from the mid-17th century to the modern era. Along with close studies of technological developments, major genres, and master printmakers, the module will explore complex issues of urban culture, print capitalism, censorship, representation of war and national identity, gender roles, and portrayals of modernization.", + "title": "Japanese Woodblock Prints", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3293", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In 399 B.C.E., an Athenian jury tried and condemned the philosopher\nSocrates. Why? This course offers an historically immersive\nexamination of this pivotal event, with a focus on its philosophical,\npolitical, religious, and legal dimensions.", + "title": "Socrates on Trial", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3294", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course studies women, gender, and sexuality in early America. From 1500 to 1820, European colonialism and the growth of chattel slavery disrupted customary Native American, European, and African gender roles. Major social, cultural, and economic changes turned America into a space characterized by religious, ethnic, and racial diversity. As active participants or unwilling captives, women from a variety of backgrounds helped to forge these new societies. They disguised themselves as sailors and soldiers, resisted enslavement, and fostered new spiritual movements. Some transgressed customary gender roles and challenged sexual norms, while others benefited from emerging systems of inequality.", + "title": "Nasty Girls: Gender, Sexuality & Race in Early America", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3295", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course investigates the relationship between literature (but\nespecially fiction from the late 1700s onward) and various ideas of the\nsupernatural or unreal. Readings explore foundational theories of the\nsupernatural in fiction, revealing how literature uses the supernatural\nin a variety of ways: for the readerly pleasures of terror and suspense;\nas allegories of personal or political or social trauma; as problematic\nsymbols of feared otherness (calculated in terms of ethnicity, gender,\nsexuality, etc); and as a site in which othered or oppressed peoples can\nrespond and resist.", + "title": "Fiction and the Supernatural", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3296", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What does good reasoning look like? What does it aim for? How should\nwe argue with our opponents? Ny\u0101ya, a tradition within Brahminical\nIndian philosophy presented and defended sophisticated methods of\nreasoning and norms for debate that are still being studied today. In this\ncourse, we focus on sections of the Ny\u0101ya-s\u016btra in translation and its\nearly commentaries, along with some Buddhist and M\u012bm\u0101\u1e43s\u0101 texts. Not\nonly will we consider methods and norms, but we will look at how\nIndian thinkers put them into practice in arguments on topics such as\nthe existence of God.", + "title": "Debate and Reasoning in Indian Philosophy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3297", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Exploring a transformative period in European history, this module will\nimmerse students in the vicissitudes of the turbulent Weimar Republic\n(1918-1933) through the lens of Berlin\u2019s roaring twenties and with\nparticular reference to the life and work of Magnus Hirschfeld, a Jewish\nphysician who was the face of scientifically enlightened sexual\nreformism, who travelled the globe as the \u2018Einstein of Sex\u2019 and who\nbecame a prime target of Nazi oppression as the Weimar Republic\ncollapsed in the early 1930s. Weimar Berlin offers an illuminating window\nonto Europe\u2019s ambivalences regarding democracy, liberalism, modernity,\nsocial and sexual change in the 20th century.", + "title": "Sex, Decadence and Decay: Weimar Berlin (1918-33)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3299", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the impact of 1917 on European and global\nhistory. We will examine the nature and experience of \u201ctotal war,\u201d the\nlife of women and children on the \u201chome front,\u201d and the diplomacy\nand economics behind the bloodshed of the First World War that\nmarked the end of European hegemony in world politics. The course\nalso examines the Russian Revolution and the Bolsheviks, with a lasting\nimpact on 20th century history. Finally, the course uses the recent\nanniversary of 1917 to compare and contrast forms of collective\nmemory and memorialization of war and revolution in Europe and\nbeyond.", + "title": "1917: War and Revolution", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3300", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines how Latin American writers, from the colonial\nperiod to today, have engaged indigenous identities and epistemologies\nin their work. Anchored by Inca Garcilaso de la Vega\u2019s Royal\ncommentaries of the Incas (1609), which in part seeks to reconcile the\nauthor\u2019s dual identity as both Inca and Spanish, we will follow\nsubsequent literary movements\u2014Romanticism, indigenismo,\nantropofagia, and magical realism\u2014as they endeavour to represent in\nform and content the hybrid quality of Latin American reality. All texts\nwill be read in translation, although students with Spanish and/or\nPortuguese proficiency are encouraged to read texts in their original\nlanguages.", + "title": "Latin American Realities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Imitation and Innovation in a time of Occupation. Between 1900 and 1946, under the occupation of the United States of America, the Philippines developed a body of literature that was subsequently called Philippine Literature in English. This module examines the pivotal historical conditions that allowed the formation and development of the first Filipino writers in English. Using the texts from this period as case studies, the module then investigates the role of imitation and innovation in artistic practices under colonial conditions and using these guiding principles lead the students to the creation and development of a manuscript of creative writing. This module fulfills the Creative Writing track in the Arts & Humanities major.", + "title": "Philippine Literature: American Period", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3306", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modernism, originally a European movement that spanned the period between World Wars I and II, has since defied temporal and geographical boundaries and become a transnational movement that reaches into the 21st century. This course invites students to join current debates about what makes a text or work of art, \u201cmodernist\u201d? What is the relationship between imperialism and modernism? How did art and literature from Africa and Asia contribute to early modernism, and what are global forms of modernism today? Authors may include: Woolf, Joyce, Eliot, Anand, Conrad, Brodie, Rhys, Ondaatje, and Soyinka.", + "title": "Global Modernisms", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why does tragedy exist as a dramatic form and what does it say about gender and mortality? How did audiences and authors participate in this form of performance in ancient Athens? How did philosophers and literary theorists understand the genre in antiquity, and what theoretical approaches are relevant today? What was the social and political context of tragedy, and how did the plays comment on contemporary and transcendent concerns? Students will read tragedies and para-tragic works such as comedy from 5th C Athens, as well as Roman tragedies and contemporary literature that responds to the Greek tradition.", + "title": "Ancient Tragedy: Gender, Politics, and Poetry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the early 1930s, Hollywood films were still struggling to use sound. By 1939, movie studios were churning out masterpieces like Gone with the Wind and The Wizard of Oz. The intervening decade was perhaps the most transformative in the history of the cinematic medium. We will study the major events that form the backdrop for groundbreaking innovations in American filmmaking, including the Dust Bowl, the Great Depression, Prohibition, and the rise of Fascism and Nazism in the lead-up to World War II, as well as watching movies from the era and doing original archival research.", + "title": "Hollywood in the 1930s", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on a corpus of 349 diplomatic letters written in cuneiform script on clay tablets which was unearthed in 1887 at Amarna, the short-lived capital of Egypt in the mid-14th century BCE. The letters addressed to the pharaoh Akhenaten by peers and vassals alike are written in Akkadian, a Mesopotamian language which served as the diplomatic lingua franca of the Late Bronze Age Middle East and the eastern Mediterranean. We will examine, with the aid of the Amarna corpus, the Late Bronze Age \u201cinternational\u201d system with especial attention on laws, diplomatic regimes, intelligence activities and conflict resolution.", + "title": "The Amarna Letters: Diplomacy in the Late Bronze Age", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course on the global history of 1989 provides an in-depth understanding of rapid historical change. Within a matter of few months, the Soviet empire collapsed, seemingly out of the blue, precipitating changes in America, Eastern Europe, China, and beyond. Why do empires crumble and how do ordinary people react? What caused this momentous historical change: savvy diplomats, philosophers, shortage of natural resources, or movements of civil society? We will study transcripts of Soviet party leadership meetings, trials of communist dictators, and secondary literature with a global reach to make sense of the end of the Cold War.", + "title": "1989: The End of the Cold War", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3314", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Gospels have shaped not only Christianity and Western culture but also world history itself. This is not a course on apologetics, we will rather apply the tools of literary criticism to the stories about the life, death, and resurrection of a man named Jesus who became Christ. We will examine the formation of the New Testament as canon, its relationship to the Hebrew bible, Canaanite literature, Hellenistic and Roman writing, the genres of the parable, aphorisms, and sermons. We will also read texts that were deemed heretical, such as the Gospels of Thomas, Truth, Mary and Judas.", + "title": "Gospels as Literature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3315", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The histories of Singapore and the Japanese Empire collided in 1942, when a Japanese army captured the city and renamed it Syonan, the \u201cLight of the South.\u201d For three-and-a-half years, Syonan served as the \u201cnerve centre\u201d of Japanese-controlled Southeast Asia, and the occupation experience transformed the lives of local residents. The historical record of the occupation is incomplete, however, and to understand it historians must use all the methodological tools at their disposal. This course provides an in-depth study of war and occupation in Singapore, as well as an introduction to the complex task of understanding the recent past.", + "title": "Singapore under Japanese Occupation", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3316", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The early twentieth century bore witness to important moments of transition in China. This module examines the world in which Lu Xun, one of the most important figures for Asian modernity, came to write his influential essays and short stories. We begin with an investigation into the collapse of the Qing dynasty and the rise of the New Culture movement, and we seek to understand Lu Xun\u2019s literary works as products of and contributions to the thinking of the times. We conclude the course with an examination of competing ideas of modernity in China.", + "title": "The Words and World of Lu Xun", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3317", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The objective of this course is to provide an introduction to disability studies via the arts. To that end, we will focus on works by disabled artists, particularly representations of illness and disability in life writing, sign language poetry, visual art, music and drama. These artists will include Georgina Kleege, Jorge Luis Borges, Jean-Dominique Bauby, Lucy Grealy, William Styron, Frida Kahlo, Gerardo Nigenda, Peter Cook, and Christophe Pillault, among others. We will supplement this material by reading theoretical texts emerging from disability, cultural and literary studies, as well as narrative medicine and expressive therapy.", + "title": "Disability and the Arts", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3319", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A sustained examination of a pivotal figure in the development of Indian Buddhist thought. Vasubandhu offers our best consolidation of classic Abhidharma minimalist metaphysics and epistemology, developed over the previous millennium of Buddhist thought. He offers on top of that trenchant critique and refinement of views on space, time, agency, cause, reality, knowledge, and the person, articulating the best Buddhist minimalist position possible. But this position, too, is critiqued and refined by Vasubandhu himself into the distinctive Buddhist idealist position known as Yog\u0101c\u0101ra.", + "title": "Vasubandhu", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3320", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the tradition of comic fiction in Britain during the twentieth century. In terms of the study of literary technique, it provides opportunity for analyzing the modes of irony, satire, parody and their interactions with dialogue-writing, narrative plotting and the fictional representation of consciousness and character. Since comedy is closely related to social contexts, from the point of cultural history, the course focuses on the central role played by comic fiction in the representation and critique of cultural identities in Britain during the last century, through its dual role as an agent of conservation and subversion.", + "title": "British Comic Fiction: The 20th Century", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why do some families get rich while others get impoverished? Is enrichment purely the result of actions by manager geniuses like Mark Zuckerberg or Steve Jobs? Crazy Rich Europeans explores the emergence of global capitalism and the business dynasties it produced. We will examine how commodities such as cotton, chocolate, and gold underpinned the rise of the global \u201ctop one percent.\u201d This course examines the history of business life in light of modern European and global history: the role of colonialism and \u201cwar capitalism\u201d emerge as key themes.", + "title": "Crazy Rich Europeans: Wealth & Power in Modern History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3322", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Model opera is a prominent cultural component of China\u2019s Great Proletarian Cultural Revolution from 1966 to 1976. The eight model operas were believed to embody Mao's dictum that art should serve politics. This course studies these model operas in their historical context whilst examining them as modes of cultural production which stand at the intersection of history, artistry and aesthetics. Amongst other things, it examines political messages and their realisation in rigorously formulated artistic choices. Primary materials will include scripts and historical video recordings of model opera performances, propaganda materials and political documents.", + "title": "Model Operas and the Chinese Cultural Revolution", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to give students a familiarity with a fuller range of the more complex grammatical constructions in Latin, and to give them an opportunity to read in a more focused manner specific examples of unadapted ancient Latin texts in the original. The focus of study will be key texts from the late Republican era (c. 70-30 BC): selected portions of a prose speech of the orator and politician Cicero, and select poems of Catullus. As well as gaining a deeper understanding of the syntax and grammar of Latin \u2013\nand a greater awareness that language is resistant to static \u2018rules\u2019 \u2013 students\nwill develop an increased cultural knowledge in Roman late Republican\nsociety and literary production.", + "title": "Advanced Latin: Catullus", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an opportunity to explore the mercurial figure of Catiline, the Roman aristocrat infamously implicated into conspiracies to overthrow the Republic between 65-63BC. This exploration is conducted via detailed analysis of a series of literary texts in the original Latin across a 40-year period, with particular attention paid to Cicero\u2019s first speech against Catiline (In Catilinam 1), Sallust\u2019s historiographical narrative in the Bellum Catilinae, and the image of Catiline on Aeneas\u2019 shield in Virgil\u2019s epic Aeneid. Students will be exposed to different literary genres that allow them to chart the development of \u2018Catiline\u2019 in the Roman elite imagination.", + "title": "Advanced Latin: Catiline in the Roman Elite Imagination", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The module will give students the opportunity to engage with society from a creative perspective. Art will be investigated alongside societal issues through sustained forms engagement. Alternative methods of presenting art works will be executed from a practice-based perspective. Students will also consider the ethics of participation in art projects. Social relations will be examined through personal, historical and cultural lenses. Active engagement will be explored through media appropriate to the nature of social engagement. The aim for this module is for each student to become familiar with diverse methods for meaningfully engaging with contemporary society through art.", + "title": "Social Practice Art", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3327", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Through viewing, studying, analysing, and discussing a curated selection of Korean films set in Korea during the period of Japanese rule, students will travel across time and space to study and examine the social, political, and cultural conditions in Korea from 1910 to 1945. Through a close study of the narratives, visual images, and life experiences represented in the films, this course will discuss the question: how does contemporary cinema deal with history?", + "title": "Contemporary Korean Cinema and the Colonial Past", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3328", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an opportunity to explore, in the original Latin, Ovid\u2019s grand, innovative and posthumously influential contribution to the epic genre, Metamorphoses. \n \nThrough close reading of a selection of episodes, taken from Books 1-4 and 8, students will not only assess Ovid\u2019s skill as dramatic and witty storyteller within individual stories; they will also explore wider issues pertaining to the epic as a whole, such as the poet\u2019s creative use of earlier literature, the role of the gods, and the ways in which mythical characters and scenarios can be deployed to reflect the poet\u2019s own status as exile.", + "title": "Advanced Latin: Ovid\u2019s Metamorphoses", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3329", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What we call \u201cHinduism\u201d is a modern, originally Western, concept that aggregates a multiplicity of traditions as a single religious tradition. However, many Indians took on this identity and shaped it as their own, and as they did, the Bhagavad-G\u012bt\u0101 played an important religious and political role in this emerging self-conception\u2014as it still does today. This course examines the way in which the G\u012bt\u0101 is implicated in the history of Hinduism as a religion, through a range of texts (letters, comics, treatises, translations) focusing on the early 20th century.", + "title": "Hinduism, Nationalism, and the Bhagavad Gita in the 20th Century", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3330", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Refining Vocal Technique and Performance (RVTP) is designed to show students how to use their voices in performance, while also giving score to students applying the skills developed in the class to music-making outside the classroom as a long-term skill and performative asset. RVTP helps the student explore the history and politics around the chosen pieces and looks at the harmonic structures that are the subtext of the pieces.", + "title": "Refining Vocal Technique and Performance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3331", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the poetry in/ and / of the world. How is poetry imbedded in, antagonistic to, commune with, reflect, create and transcend the world? What is \u201cpoetry\u201d? what is the \u201cworld\u201d? \n\nReadings will include Sappho, Pindar, Horace, Shakespeare, Emily Dickinson, Rilke, Wallace Stevens, M. NourbeSe Philip, Ocean Vuong. Theoretical works will include Plato, The Literary Mind and the Carving of Dragons, Vico.", + "title": "Poetry in/and/of the World", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Between the 5th and 10th of June 1967 Israel fought the combined forces of Egypt, Jordan, and Syria. The Israeli\u2019s swift victory not only gained them territory but shocked a transnational Arab population whose leaders had announced their military success even as their forces were decimated. \u201cThe setback,\u201d as it was called, was \u201ca total defeat of regimes, institutions, structures, ideas, and leaders\u201d that upended Arabic intellectual and cultural production. This course begins with the war but then focuses on its aesthetic afterlives to ask: how does one create art in the face of total defeat?", + "title": "The Arab Defeat of 1967 and its Aesthetic Afterlives", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3333", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Mexican Revolution, which concluded the decades-long dictatorship of Porfirio D\u00edaz, represents the inaugural event of modern Mexico. Not only a political, but an artistic revolution, it witnesses a proliferation of new artistic movements and practices, encompassing fiction, drama, poetry, popular song, painting, photography and early film. This course focuses on the tumultuous years of the revolutionary process itself\u2014roughly 1910 to 1920\u2014as well as the subsequent two decades, when artists began to memorialize and interrogate the recent past in divergent ways. Themes include: committed literature, utopianism and disillusionment, the new national identity, multiculturalism, social justice, and memorialization.", + "title": "Mexican Revolutionary Aesthetics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3334", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the main thinkers and ideas of the phenomenological and existentialists movements. It examines the establishment of Husserl\u2019s phenomenology as a new philosophical method and studies the systems of his most influential heirs, their critical reception of him and their own development of phenomenology: Heidegger\u2019s fundamental ontology, Sartre\u2019s existentialist turn, and Merleau-Ponty\u2019s return to the primary experience of the body.", + "title": "Phenomenology and Existentialism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3335", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "It has been widely acknowledged that the People\u2019s Republic of China is no longer a communist state. At the same time, scholars have criticized popular images of the PRC as a failed socialist state and the authoritarian, anti-liberal (somehow therefore anti-Western) \u2018other.\u2019 This cultural history course examines China\u2019s political, economic, and intellectual transformations of the 1980s and 1990s to challenge the notion of China as a monolithic entity. We interrogate the promises and perils of \u201cpostsocialism\u201d as an adequate concept to address the emergent forms of labor, gender, and artistic exploitation in China.", + "title": "Goodbye Mao: China's Post Socialist Transformations", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3336", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In Western and Southern Eurasia, the rise of the state is linked to the development of money and credit. In the ancient Near East, all-purpose money facilitated economic growth, efficient taxation, and engendered the development of civil law.\nThe invention of coinage and currencies in the Greek World accelerated this process, and laid the foundations of a financial system that spanned Europe, Western Asia, and India, and which survived in the Islamic World.\nThe course is intended to show students that economic features typically associated with modernity have deep roots in antiquity, and continue to shape the world today.", + "title": "Money and the Rise of the State", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3337", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does one represent a historical event that has been held by some to be unrepresentable? This course investigates various approaches to confronting the Holocaust in fictional, historical, poetic, autobiographical, and dramatic texts; documentary and narrative film; and popular and classical music. Course materials will include works by and/or about victims, survivors, perpetrators, and historians of the Holocaust, in an attempt to understand the challenges of representation posed by the Holocaust and by other historical tragedies so large in scope.", + "title": "Confronting the Holocaust in Text, Film and Music", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3338", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "When Rome grew into a world empire, the city of Rome transformed into the caput mundi, the capital world. It was the first \u2013 and until London in 1811 \u2013 the only Western city to reach a population of a million. Rome reflected the grandeur and diversity of its empire. It was a cosmopolitan, multi-lingual, and multi-ethnic mega-city, which show-cased Roman might, organizational efficiency, and wealth through public works, monumental architecture, and a consumer culture that large swaths of the population could indulge in. The course will deal with the management of a pre-industrial metropolis and its political, cultural, social and economic life.", + "title": "Rome in Antiquity", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3339", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An investigation into one of the greatest and most mysterious Ancient Greek tragedies: Euripides\u2019 The Bacchae (405 BCE). We will examine multiple understandings of the play and its legacy. Additional topics will be the cult of Dionysus, Ancient Greek Theatre practices, Aristotelian dramaturgy, Euripides\u2019 Iphigenia in Aulis, Aristophanes\u2019 The Frogs, as well as the Apollonian and Dionysian. The historical focus is 407-404 BCE, including Euripides\u2019 death, his posthumous victory at the City Dionysia festival, and Athens\u2019 defeat in the Peloponnesian War. Course assignments include a paper, creative project, and presentation.", + "title": "The Bacchae of Euripides", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3340", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to the work of modern and contemporary artists whose work has been shaped by, or produced in, response to the aftermath of colonialism. Focusing specifically on art production in South and Southeast Asia, Africa, the West Indies and Caribbean, Australia, and the work of diaspora artists, the readings will also address the limited scope of the art historical canon, the prevalence of Eurocentrism, and the challenges of presenting the art world as global. The course will also include the discussion and application of postcolonial literary theory, namely the work of Homi K. Bhabha, to deepen our understanding and aid in our interpretation of postcolonial artworks (painting, sculpture, film, photography, video art and installations) produced from the 1950s to the present.", + "title": "Postcolonial Art", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3341", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course furnishes students who are already familiar with music fundamentals with the opportunity to learn to develop intermediate knowledge and skills, with a focus on practical transference into their lives as music performers and listeners. Notated and improvisational assignments will be given as exercises to further students\u2019 familiarity with musical concepts and materials. It is designed to continue on from Integrative Music Theory 1, but students who have not taken this course may still be allowed to enroll in Integrative Music Theory 2 with the instructor\u2019s permission, provided that they can demonstrate the necessary musical competency and knowledge. To cater to diverse student interests and backgrounds, application of theoretical concepts will be addressed as they occur in Western art music, experimental music, pop, jazz, and Carnatic music.", + "title": "Integrative Music Theory 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3342", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In the era of climate change, many scholars contend that we must develop alternatives to neoliberal fossil-fueled capitalism. This course explores visions of ecotopian futures that might guide our imaginations, beliefs, and actions by examining the ways that various authors, artists, thinkers, and communities have depicted alternative \u2018green\u2019 worlds, challenging dominant ideas about human nature, gender, nonhuman nature, culture, society, politics, and the future. With a diverse range of texts, from Bj\u00f6rk and Hayao Miyazaki to Kim Stanley Robinson and Ursula K. Le Guin, we pair literature, film, music, art, and architecture with scholarship from environmental studies, history, anthropology, sociology, and cultural studies.", + "title": "Another World is Possible: Ecotopian Visions", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3343", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a practice-based course wherein students collaboratively develop and perform original short theatre works. A range of theatrical forms and creative processes are explored including plays, site-specific, devising, and ritual. The course also introduces several modern and classical understandings of theatre-making from international traditions. Developing and performing theatre hones universally applicable skills such as creative thinking, public speaking, and critical analysis. Students take healthy risks that foster artistic and personal growth. Rehearsal is required outside class time. No previous experience in theatre is required.", + "title": "Theatre-Making Laboratory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3344", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores encounters with and reflections on death in medieval literature, asking how we make sense of death and what role the dead play in shaping the social world of the living. How should we orient ourselves toward death, an event absolutely certain yet fundamentally unknowable? How might we bridge the gap between the dead and the living? We will examine such questions within the historical context of medieval Europe, considering shifting beliefs about death and afterlife; ancestors, revenants, cultural memory; the devastation of the Black Plague; and the particular possibilities literature offers in structuring our experience of death.", + "title": "Death, Mourning and Memory in Medieval Literature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3345", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What does it mean to be nude, and to be nude in Singapore? \n\nIn 1996-1997, an amendment to the Miscellaneous Offences (Public Order and Nuisance) Act was passed, redefining boundaries of privacy, body, and nudity in Singapore. This course examines the living, legal and media conditions that led to the reframing of nudities, and the subsequent censorship guidelines governing the presentation and representation of nudity in the arts. The sources explore the linguistic, philosophical, artistic, and faith inheritances that constructed the term \u2018nudity\u2019, and consider the many fictions, as well as real-world consequences, these readings of nudities have to offer.", + "title": "Arts in Singapore: Skinning Nudities in the 1990s\u20132010s", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3346", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In face of the cascading effects of climate change, this art practice course teaches students to use experimental media art to respond to the age of capitalism and extractivism. During the initial exploratory phase, group discussions and readings will be complemented by site-visits, archival/collections-based research, media archaeology exercises, and collaborative projects. Students will then enact theory in the studio by bringing drawing skills into 2D and 3D digital media platforms to hack dominant narratives. This will culminate in a body of creative work to be shared at the end of the semester in critique sessions.", + "title": "Media Arts for Just Futures", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3347", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will invite study of a range of texts and visual media centred on the Trojan War: from Homer\u2019s Iliad, through Roman responses, to recent cinematic reconstructions. \n\nThrough this selective focus, students will chart the development of a legend from the Iliad, which presents an elite male world steeped in religious obligation and social protocol, to versions that offer wider social and gendered perspectives on the Trojan War. More generally, students will come to appreciate the dynamics of legend, and the ways in which a story is adapted to suit localised social, aesthetic, and political agendas.", + "title": "Troy Story: Snapshots of an Evolving Legend", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3348", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will introduce students to the theories and methods of cinematic language. We will examine how independent filmmakers and artists have influenced the visual culture of cinema and learn practical techniques of cinematography.\n\nThrough critique, discussion and practical film-making assignments, students will work collaboratively and independently to develop an understanding of the language of cinema beyond the Hollywood blockbuster.\n\nStudents will produce a portfolio project in the form of an experimental film, video art piece or narrative short, produced in the spirit of zero budget independent cinema and video art.", + "title": "The Language of Cinema", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3349", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Some words are insulting and considered unacceptable to utter, and others words are derogatory yet acceptable at least in some contexts. Some words even seem to be able to cause material harm to individuals or groups. How can we account for these phenomena and what should we, as language-users do about it? This course will focus on the pragmatics of pejoratives, the philosophical study of disparaging speech. We will focus especially on disparaging racial and gendered speech, known as \"slurs\" or, broadly \"hate speech.\"", + "title": "Slurs, Insults & Hate Speech: Pragmatics of Pejoratives", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3350", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This Historical Immersion course examines the figure of Kong Zi (Confucius) as both an actual historical figure of his times and as a quasi-fictional character in whose name a body of literature arose in the three or four centuries after his lifetime. It includes an examination of the historical circumstances of the Chunqiu period in which he lived and the influence he had both directly on his times and upon philosophical debates yet to emerge. Primary sources will include both historiographical references and philosophical texts purported to record him in conversation with disciples, heads of states, and other figures.", + "title": "Kong Zi: The Man, the Myth, the Legend", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3351", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Karl Marx (1818\u20131883) was born into a world in revolt. The American (1776) and French (1789) Revolutions expanded the horizons of political activity, while the Industrial Revolution was reshaping the economy and environment. Marx, a journalist, activist, and theorist, lived through, commented on, and even took part in some of the most important developments in modern global history. We will study the development of his thought against this background, and assess it in philosophical terms: is Marx\u2019s critique of capitalism a relic of its 19th century context? Or can it speak to our own rapidly transforming world?", + "title": "Karl Marx and the Age of Revolutions", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3352", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will examine contemporary art in Japan from Postwar to today with a focus on artist collectives, social engagement and cooperative practices. Readings and visual materials on contemporary art including Mono-ha, Fluxus, Setouchi, Mabuni Peace Project and other movements will inform discussions on the collective possibilities and impossibilities in art. We will apply gender analysis and transnational approaches, and we will decenter modernism while engaging with the work of artists, art historians, and cultural critics. Each student will complete a final research project in a creative or expository format on one artist collective for this module.", + "title": "Art and Social Change in Postwar Japan", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3353", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the rise of the Japanese department store during Japan's transformation during the first decades of the 20th century (1910s-30s). The department store acted as a beacon for modernization for the urban Japanese and had facilitated the onset of consumer culture. We will also examine commercial art, such as posters and advertisements, to study how artists navigated visualising new conceptions of modern Japan, and how the concept of 'design' began to form. The course will involve close readings and analysis of visual materials, historical artefacts, literature and film from the early- to mid- twentieth centuries.", + "title": "The Birth of the Japanese Department Store", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3354", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Narai (r. 1656-1688) was a Buddhist king in a largely Buddhist kingdom. Yet, he was praised as open-minded: his chief advisors were Muslims and Christians, and he eagerly adopted European technologies and Islamicate dress. On his deathbed, however, he found himself besieged on all sides by foreign soldiers, ambitious officials, Catholic priests, and Buddhist mobs. Why was Narai so interested in foreigners? How did religion get tied up with politics? Can we distinguish a palace coup from a popular revolution? In this course, we consider the \u201cearly modern\u201d roots of enduring conflicts over religion, race, revolution, and empire in Asia.", + "title": "Narai: Siam\u2019s Worldly King and the Revolution of 1688", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3355", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the development of British Empiricism through the writings of John Locke, George Berkeley and David Hume. Taking the empiricist elements in Locke\u2019s work as a point of departure, we explore how these elements are radically repurposed first by Berkeley and then by Hume to lay the foundations for what became known as early modern empiricism.", + "title": "Early Modern Empiricism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3356", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course invites students to think more deeply about the nature of human rights \u2013 beyond their use as international political agreements, and into their deeper conceptual roots. The goal of the course is to familiarize students with the current debates about the theoretical grounding and justification for human rights, which rights can be said to be human rights, and to think deeply about when and how human rights are invoked and what interventions they are used to justify. \n\nStudents will explore issues related to political philosophy, the theoretical underpinnings of international law and justice, with the goal of ultimately coming to appreciate meaningfully how these ideas shape their own lives.", + "title": "Philosophy of Human Rights", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3357", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "One of the central functions of the state is to protect us from each other and mediate our disputes; likewise, one of the central tasks of moral philosophy is to prohibit wrongdoing and specify appropriate responses to harm. While there are enormous personal, social, and economic costs associated with crime, many approaches to dealing with crime are irrational, wasteful, and harmful to victims, society, and perpetrators alike. This course provides a culturally comparative and multidisciplinary exploration of foundational questions related to the questions of crime and punishment, moral responsibility and social justice. It also contains a mandatory service/experiential learning component.", + "title": "Crime and Punishment", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3358", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "First coined by activist Tarana Burke in 2006 and later popularized by Hollywood actress Alyssa Milano in 2017, #MeToo was a social justice movement to publicize allegations of sexual harassment and abuse against women/womxn by powerful men. Extensive media coverage and viral social media posts brought our attention to this global feminist issue that highlighted the prevalence of sexual harassment in communities around the world. This course will examine the social, historical and political underpinnings of this movement and explore its implications in intersectional communities, as well as its continued impact today.", + "title": "#MeToo: A Contemporary Feminist Movement", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3359", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This practice-based acting course explores contemporary approaches to global classical theatre. The course is highly collaborative and cultivates a supportive ensemble collectively investigating some of the world\u2019s greatest dramas. Actors deepen their understanding of the Stanislavski character and scene work introduced in Acting I. Performance techniques beyond realism are also explored, including the rasas. Actors rehearse and perform scenes from classical traditions of Greece, India, and China. The selected scripts invite comparative analysis of themes and dramaturgical elements. Rehearsal is required outside course meetings. Exercises and projects train the actor\u2019s instrument, expand one\u2019s understanding of theatre, and foster personal growth.", + "title": "Acting II", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3360", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-BlackBox", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Writing Hybrid is an intermediate writing module that explores the tradition and practice of writing in between and across the genres. Building upon the skills from the introductory writing courses, it explores the ways in which hybrid texts expose the tensions and limits of conventional genres (poetry, fiction, nonfiction) and propose alternative forms of writing practices. It investigates, in particular, the ways hybrid writing (lyric essays, prose poems, text +image, etc) are able to embody postcolonial identities, queer/ minority / liminal subjectivities, which resist traditional forms and genres. Students will undergo seminars, writing workshops leading toward a final creative portfolio.", + "title": "Writing Hybrid", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3361", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar investigates one of the world\u2019s greatest and most influential artistic achievements the tragic theatre of Ancient Athens (Fifth-century BCE). We will read plays, watch videos of international productions, and consider the Peloponnesian War\u2019s influence on Ancient Greek theatre. Scripts studied will include Aeschylus\u2019 Agamemnon, Sophocles\u2019 Oedipus the King and Antigone, and Euripides\u2019 Iphigenia at Aulis and Bacchae. We will also examine theories of classical tragedy, including those by Aristotle and Nietzsche. Course assignments include a presentation, midterm paper, leading a seminar discussion, and the choice between a paper or creative work as a final project.", + "title": "Ancient Greek Tragedy and Fifth-century Athens", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3362", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course traces the birth of capitalism to the social thinkers who named, defined, and theorized about a particular set of economic relationships and behaviors that have defined the modern world. We also explore economic relationships and financial practices across the globe between 1000 and 1850, focusing on trade in drugs, slaves, and silver, as well as the development and practices of trading diasporas and corporations. The course concludes with the Great Divergence debate in economic history and asks what enabled Western Europe to achieve sustained economic growth between the 18th and 20th century while China and India lagged behind?", + "title": "Global History of Capitalism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3363", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar investigates a wide range of classical theatre from around the world. In so doing, it examines some of the greatest dramatic art ever created. We will read scripts, study performance practices, theatrical architecture, and historical civilizations. We will also screen videos to better understand these works in performance, both within their era and in contemporary practice. Topics covered include theories of drama, spectator experience, and the link between performance and culture. Course assignments include a presentation, leading a discussion, midterm paper, and the choice between a paper or creative work as a final project.", + "title": "World Drama", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3364", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is divided into four parts. Part I, Movies, covers South Korean cinema from its origins in the early twentieth century to present-day, internationally renowned directors like Bong Joon Ho. Part II, TV, examines the precursors to contemporary K-dramas and the reasons they now attract enormous global audiences. Part III, Music, situates K-pop within classical and alternative pop traditions. Finally, Part IV, North Korea, puts South Korean culture in dialogue with film, TV, and music produced on the far side of the 38th Parallel. The course uses a production-distribution-consumption framework to explain Korean popular culture\u2019s planetary dominance.", + "title": "Korean Popular Culture", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3365", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In between China, India, Myanmar, Thailand, and Vietnam lies an expansive region of mountains and valleys populated for centuries by hill peoples, scattered townsfolk, fugitives, bandits, and insurgents. Through a range of historical, ethnographic, and personal accounts, this course puts these often-marginalized figures at the center. We look over their shoulders as they engaged or avoided the \u201cempires\u201d all around imperial China and Vietnam, British and French colonial regimes, and modern nation states of all kinds. At the same time, we also study the efforts of state actors to capture, control, convert, aid, and \u201ccivilize\u201d the peoples of the borderlands.", + "title": "Edge of Empires: The China-Southeast Asia Borderlands", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3366", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The site of prophecy, wilderness in its purest form, a symbol of the sublime, the literary desert has often been imbued with a spiritual mythopoetic resonance beyond its geography\u2019s literal features. It has served as the spatial embodiment of twentieth century capitalism, privileged by poets for its ability to signify modernity\u2019s consequences. More recently, focus has shifted to the ecological devastation wrought by approaching it as a site of extraction. This course will consider the way the desert has been written across centuries and traditions, the changing ideologies of its metaphoric value, and the real space that exists behind it.", + "title": "Writing the Desert", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3367", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an overview of Neo-Daoist philosophy (Xuanxue\u7384\u5b66), which marked a renewed interest in Daoism during Wei and Jin dynasties. It is dominantly a philosophical overview, but also touches on the religious aspects which cannot be removed from the character of the movement. It is an exploration of the new concepts articulated by these thinkers, but also of the emerging commentarial tradition, which was integral to the development of Chinese philosophy.", + "title": "Readings in Neo-Daoism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3368", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Race figures in virtually every aspect of our lives it conditions our interactions with one another; it determines the treatment we receive in education, the justice system, and the workplace; and it underwrites legal practice in medicine, employment, housing, and the administration of the state. This course digs into the social ontology of race Is it real? If so, what is it? If not, how does it impact our lives? We will pay special attention to the history of race Has it always been with us? How did it arise? And can we envision a future beyond it?", + "title": "Philosophy of Race", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3369", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to study the historiography of the First World War, which was once described as \u201cthe War to end all Wars,\u201d though what it did was to inaugurate an entirely new poetics of shock and trauma regarding the large-scale mechanization of violence. This module provides the opportunity to understand how images, sounds, videos, art, poetry and fictional prose as well as diaries, memoirs, and letters comprise a complex archive from which to build a composite sense of what that war meant to people then, and what it might mean to us now.", + "title": "The Great War and Modern Memory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3370", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the role of religion in the Chinese diaspora. We will explore the historical development of a complex transnational network of temples, associations and monasteries that played a central role in building trust within trading networks, providing sites for the creation of ritual communities, and offering services ranging from religious training to money lending to the maintenance of cemeteries.", + "title": "Chinese Temples in Southeast Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3371", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Metaphors are everywhere in plays and poetry. Romeo says that Juliet is the sun and K\u0101lid\u0101sa describes beautiful eyes as lotuses. But we can find metaphors in ordinary speech, too, when we say strictly false things like \u201cThe ATM ate my card.\u201d But what makes a linguistic utterance a metaphor? How do they work? Do they mean anything other than something literally false? What could such a meaning be? And if they don\u2019t communicate other meanings, what are they doing? This course considers theories of metaphor from within three major philosophical traditions India, China, and the broadly analytic tradition.", + "title": "Global Philosophy of Metaphor", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3372", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines representations of queer women in 21C film\u2014from the melodrama, to the romantic comedy, to the period film\u2014in the light of emergent theorisations of a global yet minor lesbian cinema, such as the New Queer Cinema and Queer New Wave. It engages with feminist and queer film theories to critically explore how gender and queer identities are depicted in Hollywood, independent, international, and experimental films. Anchored in an array of films that have proliferated in the last two decades, the course is a study of women\u2019s relationship to sexuality and femininity through the medium of film.", + "title": "New Queer Cinema: Women on Screen", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3373", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Logic is an important aspect of a student\u2019s philosophical training. The focus of this course is to provide students with enough familiarity with formal logical systems to prepare them for graduate courses in logic. This course covers two formal logical systems: propositional logic (PL) and first-order logic (FOL). Students will be trained in skills such as translating between English and PL/FOL, constructing and using truth tables, and constructing proofs.", + "title": "Formal Logic", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3374", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Gluttony, lust, wrath, sloth, greed, envy, and pride. Today, these are known as the seven deadly sins. But in the 13th century, they were known as the capital vices. This course explores the rich tradition of philosophical reflection on these vices through the works of Thomas Aquinas. In particular, this course will focus on Aquinas\u2019s De Malo, in which Aquinas synthesizes medieval Catholic asceticism and Aristotelian natural philosophy to provide an in-depth treatment on all things to do with evil. The questions addressed in this course includes: What makes each of these traits vicious? What sets them apart from other vices? How can we combat these vices in our lives?", + "title": "Thomas Aquinas on Evil", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3375", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "It will give students the opportunity to engage creatively with society through the lens of contemporary art, with a focus on \u201cthe art world\u201d and international exhibition-making. How do artists deal with exhibiting in different contexts like galleries, artist-run spaces, museums, public space, and biennials? The aim is for students to become familiar with diverse methods of exhibiting, by studying shows like Documenta15 and the 59th Venice Biennial to analyze multi-facetted approaches to curatorial and artistic practice. We will discuss the conditions and opportunities of art in society, while working through our individual practices towards a collaborative exhibition project.", + "title": "Situations (Contemporary Art in Today\u2019s Society)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3376", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-Studio3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students will examine different facets of the visual document in art, journalism, and photography in\u202fthis seminar-style course. They will be equipped with skills to analyse aspects of truth and realism that straddle documentary image-making and society, each developing and completing a documentary project\u202fduring the course. There will be hands-on production, screenings, discussions and readings into the function and aesthetics of the documentary. Through these, students will learn a range of methodologies. In addition, the course will examine ways through which the documentary can inform, comment on and shape social and political concerns in everyday life.", + "title": "The Document in Image-Making", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3377", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-Studio3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Even for someone who is very socio-politically apathetic, populism, as a contemporary (political?, cultural? social?) phenomenon is hard to miss. But what exactly is populism? How is it similar (and, how is it different) in (across) the many different social contexts where it is expressed? This course attempts to further our understanding of populism by isolating its logic, its ontological, epistemic and ethical commitments. It also assesses whether a susceptibility to populist pressures inheres in us or is merely an idiosyncratic response to our epoch. Finally, it considers what populism implies for, inter alia, nationalism, liberalism and constitutional democracy.", + "title": "Contemporary Populism Logic, Method and Implications", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3378", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Is, as is popularly supposed, man a \u2018rational animal\u2019? Since the \u2018animality\u2019 of man is uncontroversial, this course investigates whether he is rational. Towards this end, we first consider what the proper domain of rationality is. Is rationality a property of the goals we have, or of the means we employ to achieve those goals? Or, is rationality best conceived as a property of our beliefs? In either case, we question what constitutes this property of rationality. We then discuss Bayesianism \u2013 the industry standard for rationality \u2013 before reviewing, in its light, the empirical evidence on the rationality of man.", + "title": "The Nature of Rationality", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3379", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Justification is a central concept in epistemology. For over two thousand years, there has been a prevailing thought that justification, together with true belief, yields knowledge. This course focuses on various topics and debates on the nature of justification, such as foundationalism and non-foundationalism, internalism and externalism, pragmatic encroachment, the nature of evidence.", + "title": "Justification", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3380", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Designed as an introduction to the arts of Southeast Asia, this course explores images (sculpted in stone, cast in bronze, printed on clay, or painted) from around the 5th to 15th century, when Hinduism and Buddhism first developed in the region. We examine the creation and use of these religious images in their original contexts, as well as their later histories. Throughout this course, students will engage with major theoretical debates in the art history of Southeast Asia, looking at the history of interpretation of ancient images, as well as their contemporary use by modern nation-states and later artists.", + "title": "Image and Interpretation in Southeast Asian Art History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3381", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course takes the influence of events that took place in 1997, such as the Asian Financial Crisis, and the Hong Kong Handover, and the socio-economic climate in Singapore, to examine the development of the Singapore art scene in that year. The class will look at artworks, new government art initiatives introduced, the inclusion of Singapore artists in a key international platform, and artistic activities in Singapore in this one year, and how practices of artists have been influenced till today. Besides readings and analyses of exhibitions and artworks, students will meet guest speakers who were part of these activities.", + "title": "Singapore Arts In and Through 1997", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3382", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-ArtsStud", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the meaning of artistic practices and conceptual methodologies in the face of the climate crisis. How can we process and discuss the challenges of the Anthropocene \u2013 global warming, catastrophic climate change, mass extinction, pollution, sea-level rise, demographic conflicts etc. with artistic means of expression? What esthetic tools need to be studied, developed, invented today? The module offers perspectives on varied approaches to developing artistic agency. It encourages students to use creative media, analytic methodologies, and collaborative structures to become active, while demonstrating manifold forms of practice- and research methods and reaching out to other disciplines, like environmental studies.", + "title": "Art and Climate: Artistic Practice in the Anthropocene", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3383", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-Studio3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Is the library a laboratory of knowledge or its mausoleum? How is knowledge created and destroyed? How did people cope with information overload in the early modern period? This course is about the formation of the individual through the construction of the private study and the institution library. Our historical immersion is late-sixteenth century Europe, a pivotal period of enormous cultural, religious, and technological changes. We will examine literary masterworks\u2014Petrarch, Machiavelli, Montaigne, Cervantes, Marlowe, and explore visual arts of the Renaissance. We will consider other sites of knowledge such as the cabinet of curiosities, museums, anatomy galleries and gardens.", + "title": "The Renaissance Library", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU3384", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The History Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the History major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "History Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YHU4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 3, + 5, + 7, + 9, + 11, + 13 + ], + "venue": "Y-CR4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Literature Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the Literature major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Literature Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YHU4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Philosophy Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the Philosophy major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Philosophy Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YHU4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Philosophy Capstone Seminar is a semester-long, 5-MC module, taken in Semester 1 of Year 4. It is designed exclusively for those students taking the capstone option which involves capstone seminar (this module) and a single 4K Philosophy course.", + "title": "Philosophy Capstone Seminar", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4103A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A capstone research project in this major can take different forms, depending on the student\u2019s area of focus. This module supports the implementation of the capstone project through the development of self-regulated research excellence. Arts and Humanities students will pursue their research, construct creative works, and consider methodological issues together to critique and improve each other's written work in a seminar setting. Over the 13 weeks, students will fine-tune research skills as well as oral and written communication skills collaboratively. Experts from The Writers\u2019 Centre, the Library, Arts Spaces and CIPE will also enhance the module.", + "title": "Arts and Humanities Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YHU4104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Practitioners of every discipline benefit from having an understanding of their discipline\u2019s history. This is especially true for historians, whose work demands an acquaintance with the history of the writing practices and the modes of conceptualizing the past to which they are heirs. Through an engagement with foundational texts from the eighteenth century to the present, this course explores the emergence and development of modern historiography. Students will learn about the diverse ways in which the past has been represented, narrated, and interpreted; they will also examine how historians\u2019 interpretations of the past are themselves imbedded in specific historical contexts.", + "title": "The History of History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed as an introduction to the analysis of art as a historical and critical discipline. It is at once historiographical, methodological and theoretical and examines the different approaches that scholars and critics have adopted over the centuries to understand and interpret various artworks. Through a wide range of both classical and current texts, students will acquire the fundamental tools with which to approach the visual arts.\n\nThe course is specifically aimed at students, who are planning to pursue an\nart historical topic as part of their senior capstone project in the Arts and\nHumanities Major.", + "title": "Critical Approaches to Art History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines changing discourses on evil from the eighteenth century to the aftermath of World War II; it explores shifts and developments in literary portrayals of the devil, varieties of theodicy, theories about the nature of human destructiveness, criminality, and the psychology of perpetrators of evil. Through a close reading of major works in philosophy and literature, we will pay particular attention to how understandings of evil have changed over time in response to both large scale socio-cultural transformations and traumatic historical events, such as the Lisbon Earthquake of 1755 and the Holocaust.", + "title": "The Problem of Evil from the Enlightenment to Auschwitz", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Advanced Creative Nonfiction will delve into long readings and the creation of original true stories. Students will grapple with landmark books of creative nonfiction, write and revise their own long nonfiction pieces, and deepen their engagement with the different forms inside the genre.", + "title": "Adv Creative Nonfiction: Metafiction & the Lit of Fact", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course builds upon the processes and models learned in Introduction to Fiction. A further development and refinement of techniques previously learned will be the focus of this course. There will be readings assigned, but this will mainly be a writing course with weekly writing assignments and peer critiques.", + "title": "Advanced Fiction Writing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4215", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course builds upon the processes and models learned in Introduction to Poetry. A further development and refinement of techniques previously learned will be the focus of this course. There will be readings assigned, but this will mainly be a writing course with weekly writing assignments and peer critiques. This module fulfills the Creative Writing track in the Arts & Humanities major.", + "title": "Advanced Poetry Writing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the relationship between British fiction and ideas of evidence in the 19th century. Readings are drawn primarily from novels by Austen, Scott, Shelley, Collins, Trollope, Eliot, and Doyle; excerpted 18th- and 19th-century treatises on evidence law; philosophers of British empiricism like Locke and Hume; Victorian court reports; and theories of law and literature.", + "title": "Novel Evidence:19th-Century British Fiction and the Law", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This class will examine the Chinese poetic shi tradition as it evolved from the odes of the Shi jing (Classic of Odes) through the genre\u2019s apogee in the late Tang and northern Song dynasties. All the primary readings will be in the original Classical Chinese, and these will be supplemented by secondary readings in both English and Chinese.", + "title": "Chinese Poetry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With a system of sounds and marks, we human beings are able to share knowledge, coordinate actions, prompt emotional responses, and make things like marriages and names come into existence. This course will consider what Sanskrit and Anglophone philosophers have to say about speech acts. We will start with M\u012bm\u0101\u1e43s\u0101, known as the \u201cscience of sentences\u201d, and think about how commands and exhortations work. We then turn to J.L. Austin\u2019s seminal How to Do Things with Words, which introduced speech act theory to Anglophone philosophy. The course will close with some contemporary attempts to integrate M\u012bm\u0101\u1e43s\u0101 and speech act theory.", + "title": "Doing Things with Words", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "There has been a recent surge of interest in the political philosophy of Benedict de Spinoza. He has been hailed variously as the originator of an enlightenment more radical than that of the philosophes or as a conservative thinker; as an early champion of liberalism, or as a proto-Marxist materialist; as an atheist hostile to religion or as a defender of religious forms; as an arch-rationalist, or a champion of the imagination. Our task will be to read the original texts on their own terms and navigate the contemporary debates over those texts' significance.\nSatisfies Philosophy major: Skills, Textual Analysis; Historical, Old; Traditions, Western.", + "title": "The Political Philosophy of Spinoza", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As author of the Shiji, China\u2019s first dynastic history, Sima Qian counts as one of the world\u2019s most influential figures in the history of historiography. In this course, we will closely examine his Shiji as a seminal act of historiographical creation, as we study its precursors and innovations, its conventions and literary devices, and its expressed and unexpressed motivations and the way in which such impulses contributed to Sima Qian\u2019s acts of source selection and narrative construction and his critical evaluation of both his evidentiary sources and the historical figures themselves.", + "title": "The Historiography of Sima Qian", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course studies figures who engaged in various forms of illicit oceanic commerce during the \u201cgolden age\u201d of sail. In the seventeenth and eighteenth centuries, the wealth and warfare triggered by the expansion of European empires generated lucrative opportunities. Operating in vast and largely unregulated oceanic economies, pirates, privateers, and smugglers skirted imperial laws and violated trade regulations. At times, they were punished as outlaws, only to be celebrated as national heroes on other occasions. During the semester, we will study the historical conditions that made illegal trade both attractive and accessible to a large number of people. We will also explore the enduring popularity of these figures in popular culture.", + "title": "Empire\u2019s Outlaws: Piracy, Privateering, and Smuggling in the Age of Sail", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4225", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What kinds of humour endure over time? This course examines the\ndifferent genres of humour in ancient literature and their\ncorresponding forms today: political satire in Attic comedy; sitcoms\nin Hellenistic comedy; farce in Roman comedy; \u201cstand up\u201d in first\nperson Roman satire. What does comedy tell us about the dynamics\nof power and gender in ancient cultures and today?", + "title": "Ancient Humour: Greece and Rome", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Examining regional and transnational oceanic frameworks, including\nMediterranean Studies, Transpacific Studies, Transatlantic Studies\n(including the Black Atlantic) and Indian Ocean Studies, this course asks\nwhat these transoceanic perspectives offer students of literature and the\narts. Oceanic frameworks allow for interdisciplinary work, and can be\ncombined with feminist, queer, eco-critical, digital humanities and\npostcolonial approaches. We will also be exploring the idea of hydropoetics,\nthe creative practice of writing about/on water, and thinking\nabout the ocean as an artistic, cultural and creative space. Incorporating\ntheoretical and fictional texts, this course offers students the opportunity\nto produce a creative final project.", + "title": "Oceanic Frameworks: Shifting Currents in Lit. Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Knowing makes you a good person, and seeking to know is morally\nimproving. Plato apparently commits himself to these crazy claims.\nWe will investigate why. What is knowledge such that seeking it is\ngood for us? What effect does inquiry have on character? How\nmust we conceive of the good if knowing is not to be merely\ninstrumentally good? Does it matter, morally, which conception of\nknowledge we have? To address this latter question, we will\nconsider the much different epistemology of the Indian Buddhists, who also consider knowledge to be indispensible to the ultimate good.", + "title": "Plato on Knowing and Being Good", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 4000 level module introduces students to one of the most discussed\nfields of ancient history. New work on the ancient economy has called into\nquestion the communis opinio on the social structure of pre-modern\nsocieties, and is key to an emerging consensus on the very high degree of\neconomic, social, and political complexity of the Ancient World. Using a\nvast range of diverse and fragmented sources, the course will further\nintroduce students to all key epistemological issues of ancient history.", + "title": "Ancient Economies of the Mediterranean and Western Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module aims to study creativity in all the circumstances where art and poetry confront violence as a fact of life, whether in the form of violence to oneself or others, or to the environment or to institutions and values. The module draws examples from the history of art and poetry to address a single question: what can art and poetry do about the utter negativity that is violence? The module will aim to study the nature of violence on the scale of the individual and the group, and as having implications for gender, race, sexuality, politics, ideology, and ethics.", + "title": "Violence, Poetry and the Arts", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4233", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Since the colonial conquests of the 19th century that characterised the Arab world\u2019s modern encounter with Europe, the region has been marked by a collective sense of trauma and loss, something that has continued into the 21st century. This course will explore the effects multiple foreign occupations, post-independence authoritarian regimes, and forced displacements have wrought on the literary and cultural production of the Middle East and North Africa. Special attention will be paid to minority writing in the region through the work of Arab Jewish and Christian authors who have often found themselves at the center of extraordinary violence.", + "title": "Trauma, Loss, Exile and the Literary Imagination", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "No more adding of \u201cnew media\u201d, media scholars have cried out over the recent years, to existing things when what we call \u201cold media\u201d was to quip a seminal phrasing, always already new. The same can be said for the communities and publics that media helped form. As \u2018new media\u2019 becomes increasingly ubiquitous in popular and scholarly discourse, we have lost sight of the term\u2019s older origin as the mediation between cultures, politics, identities, and ideologies. Through media theory, literary narratives, films, and artworks, students will learn the post-hermeneutic turn in the humanities, where the idea of \u201ctext\u201d is simply one of the dynamic effects of mediality.", + "title": "\u201cNew\u201d Media: Inquiries into Literature & Technology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This class will examine the Chinese prose (sanwen) tradition as it evolved\nfrom early historiographical and philosophical works of the Eastern Zhou\nthrough the collections of literary masters from the Tang, Song, and later\nimperial China. All the primary readings will be in the original classical\nChinese, and these will be supplemented by secondary readings in both\nEnglish and Chinese.", + "title": "Chinese Prose", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will examine the production, reception and interpretation of female imagery and representations of gender roles for Japanese women through visual images and literary texts from the 11th to the 20th century, with an emphasis leaning towards the modern period. The female image occupies a crucial part in understanding key historical and cultural developments in Japan, such as the evolving influence of Westernization and modernity on Japanese society during the early decades of the 20th century. Students will analyse a wide range of materials ranging from the 11th century novel to literary pieces by renowned modern authors.", + "title": "The Female Image in Japanese Art and Literature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4238", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an opportunity for a detailed study of the\ninterface between American poetry of the first half of the 20th century\nand the concept of literary modernism. A close reading of selections\nfrom six major poets will address the following questions: How and\nwhy did the major poets of America dominate Western literary culture?\nWhat was the unique nature of their contribution to the many ideas\nand practices that go under the name of Modernism? What are the\ncreative possibilities they explored, whose influence continues to\ndominate global writing in English in the 21st century?", + "title": "American Modernist Poetry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is primarily concerned with the production, the distribution, and the consumption of texts in East and Southeast Asia. Beginning with the early modern publication of woodblock printed texts, this course explores the social and cultural worlds that developed around the collecting and reading of texts. It examines the transnational nature of the printing industry and the broader implications of changing reading practices.", + "title": "The History of the Book in East and Southeast Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module fulfils the advance practice requirement (Art Practice track) of the Arts & Humanities major. It aims to bridge 3000 level art studio courses and the Arts Practice Capstone, and investigates topics and practices in the contemporary arts. Students will develop a deeper understanding of its changing contexts, and create a portfolio of in-depth research processes and methods related to their topics of interest during studio hours and weekly critiques. There will be readings on the philosophy and history of art and aesthetics, and artist studio visits. Students will have to plan, exhibit, present, and discuss their works.", + "title": "Art Studio Research, Experimentation and Critique", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to a new methodological approach to the writing of history that has become increasingly popular in the last ten years . Microhistories uses the lives of ordinary people who were caught up in extraordinary events to narrate broader histories. By focusing on individuals, the microhistory personalizes the past and makes it accessible for a larger audience beyond academia. In this course, we will explore the strengths of this new method and genre. We will compare the microhistory with the biography and historical fiction. We will consider what this mode of historical analysis can accomplish and discuss its limitations. At the end of the course, students will experiment with writing their own global microhistories.", + "title": "Global Microhistory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4244", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Perception is as important as it is puzzling: it is one of our most fundamental ways of knowing about the world, it is prior to thought in some important sense, it is a form of consciousness, and it is a basic source of knowledge. What is perception, and why does it behave in these ways? In this course, we will critically examine one detailed theory of perception, the dual awareness theory. We will also compare this theory to several leading contemporary theories of perception, including representationalism and naive realism.", + "title": "Perception", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4245", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The individual and the social body are intimately connected through the faculty of reproduction. Sexual matters are therefore inevitably and intensely political. The growing administration \u2013 or biopolitics \u2013 of the gendered body, of the family as the primary unit of reproduction, and of entire populations and \u2018races\u2019 has been designated a defining threshold of \u2018modernity\u2019. This course will first trace the history of biopolitics and then explore how biopolitics and geopolitics have become steadily more entangled in the 20th and 21st centuries through issues as wide-ranging as ecology, sustainability, development, migration, post-colonialism, religion, governmentality and human rights.", + "title": "The Population Bomb: Biopolitics & Geopolitics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Why do we preserve and construct the past? And how do we do it? Museums and libraries are the institutional brains of culture\u2014they collect, store, and display the knowledge and artefacts of world\u2014the sum of the human intellect and imagination. We will examine the histories and sometimes destruction of these two cultural institutions. Our approach will be both historical and theoretical in considering constructions of the universal/global and local/particular, things and ideas, the continuous dialogue between past and present and future. Course includes fieldtrips to the National Library of Singapore and the National Gallery of Singapore.", + "title": "Museums and Libraries as Cultural Institutions", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Focusing on the so-called Bildungsroman, or novel of development, this course covers a form of novel that emerged in the late 18th century and documented the coming of age of its protagonist. As ideas of selfhood and of the individual\u2019s relationship with society evolved in the context of urbanization, industrialization, gender, and democratic revolution, these novels grappled with what it meant to find, or reject, one\u2019s place in society. Authors might include Goethe, Austen, Stendhal, Balzac, Bront\u00eb, Freytag, Fontane, and Schreiner, as well as 20th-century examplars like Joyce, Woolf, and Dangarembga, and key theorists of the genre.", + "title": "The Self and Society: The Novel of Development", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course fulfils the advance practice requirement of the Arts & Humanities major. \n\nStudents will be creating, planning, developing, animating, compositing, and rendering their own short film/animation/interactive projects over the semester. These projects integrate animation techniques with the use of industry level software, with emphasis on research and crafting stories into finished moving images, focusing on the history, practice, and experimentations in film and animation. Students will work with professional story tellers, animators, film-makers, media lawyers and producers to improve their techniques and learn about the media industry. This course is meant to develop students\u2019 artistic portfolios and will culminate in a screening at the end of the semester.", + "title": "Experimental Animation and the Mechanics of Movement", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Global South, emerging from the Cold War era terminology of the \u201cThird World,\u201d is increasingly seen as an alternative to postcolonial or diaspora studies as a framework for studying supranational networks of exchange and co-operation. Combining readings in literary theory with an exhilarating romp through a number of contemporary novels, this course asks how the Global South is defined, what this framework offers students of literature, and what the Global South novel as a genre would look like. We investigate the hypothesis that the Global South novel is one that self-consciously works to imagine transnational subaltern connections or solidarity.", + "title": "The Global South Novel", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "We will study the Global Renaissance. We will study the commerce and exchange of ideas, peoples, and goods around the world c. 1500-1700. We will take as a conceit a ship that circumnavigates the world from and to London in 1633. The Bonaventure makes stops Venice, Istanbul, the Caribbean, the Canary Islands, Cape of Good Hope, the Philippines, Canton, Nagasaki, Singapore, Goa, Madagascar. At each landfall we will study the cultures and histories of those we come in contact with.", + "title": "The Global Renaissance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Argentine author Jorge Luis Borges has had an enormous influence on world literature and literary theory. This course will define Borges\u2019 conception of literature, as expressed in short stories, essays, and poetry, then employ it as a frame for understanding several major developments in literary theory and criticism since the mid-twentieth century. In turn, the course will chart Borges\u2019 diverse literary and philosophical influences. \nKey topics will include: authorship; subjectivity; mimesis; possible worlds; translation; postcolonial theory; modernism and postmodernism; literature and philosophy; literature and science.", + "title": "Borges and Literary Theory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4255", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course undertakes an in-depth study of the concept, value, and practices of solidarity in connection with social change. What different things are meant by \u201csolidarity,\u201d and how do they motivate social change? Must solidarity be grounded in a shared social identity, e.g. race or gender? Do we have moral duties to stand in solidarity with others? What principles should govern solidary groups? Readings will include contemporary book-length treatments of these questions.", + "title": "Solidarity and Social Change", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines modernist novels from the period 1910 to 1939 in the light of gender politics and sexual difference that formulate an aesthetic based on radicalised models of subjectivity and sexuality\u2014including the New Woman, the fl\u00e2neuse, and the lesbian. Gender manifests itself in a variety of experiments with writing and being in the world, from literary naturalism to highly complex modernist forms. To ground the textual manifestations of gender, every novel will be paired with texts drawn from philosophy, phenomenology, and cognitive studies, with focus on the representation of consciousness, affect and perception, and literary geography.", + "title": "Modernist Women\u2019s Writing: 1910-1939", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar focuses on the American television situation comedy, from its origins in the 1940s to the present. We read television history, visual media theory, and perform close analyses of individual episodes, paying particular attention to such themes as class, gender, family, fantasy, race, sexuality, and war. We consider how sitcoms blend political progressiveness with maintaining the status quo, as they attempt to balance courting hip audiences with ensuring wide viewership. We also note moments when episodes foreground their formal qualities, allowing us to better understand them as works of art.", + "title": "TV Sitcom", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Zuo zhuan \u5de6\u50b3 (Zuo commentary) has long been considered the most influential work of both historiography and narrative prose in the entire Chinese tradition. A major source and model for Sima Qian\u2019s Shi ji and the most anthologized work in such Qing-dynasty literary collections as Guwen guanzhi, it is also the single richest source for the study of pre-imperial Chinese history. This course will focus on a close reading of the work as an ideal case study for exploring the writing of history as a creative literary act and the fine boundary that pertains between history and fiction.", + "title": "Historiography of the Zuo Zhuan", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4259", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course, with readings in the original Chinese text, will focus on a close analysis of the Annals of L\u00fc Buwei (L\u00fcshi chunqiu \u5442\u6c0f\u6625\u79cb), within its historical, literary, and philosophical contexts. It will examine the subtle ways in which this major work of philosophical literature amalgamated, integrated, and reformulated an entire world of prior texts and traditions in order to craft an inclusive and comprehensive vision for the rulership of China\u2019s first empire\u2014and in the process forming perhaps the first multi-chapter \u201cbook\u201d in all of Chinese history.", + "title": "The Annals of Lu Buwei, the First Book of Chinese Empire", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4260", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This practice-based course explores directing live performance. Emphasis is placed on theatre as a phenomenon of space and time, as well as working with actors. Directors stage several short works, then a scene and final project. This praxis is augmented by readings, journaling, and attending a professional production (tickets provided by the college). Early in the course, directors collaborate by performing in one another\u2019s works. For the final project, auditions are held and student actors cast. Final projects may be a scene or original short work. The course explores creativity, expands one\u2019s understanding of performance, and fosters personal growth.", + "title": "Theatre Directing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The seventh century in India was a time of intense philosophical development. Buddhist philosophers and Vedic-affirming brahminical philosophers constructed sophisticated theories to account for our experience of the world, our communicative abilities, and our ability to know. Kum\u0101rila Bha\u1e6d\u1e6da was a powerful proponent of brahminical thought. This course will focus on his engagement with Buddhist thinkers, in particular Dign\u0101ga (rumor has it he studied in a monastary to learn how to defeat them!). We will focus on topics in epistemology and language as well as their implications for what kind of beings we are, and how we should live.", + "title": "Buddhists and Brahmins: Kum\u0101rila Bha\u1e6d\u1e6da and Dign\u0101ga", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4262", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a social history of China in the modern period, emphasizing the role of religious and local associations in the transformations of local society in the Ming and Qing periods. The course will explore the rise of the family-lineage form in China and in the Chinese diaspora in Southeast Asia, while also looking at temples, regional associations, merchant and ritual specialist organizations, and sectarian religious movements.", + "title": "Chinese Local Society: Religion and Lineage", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4263", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the role of religious Daoism within Chinese popular religion over time and across China and into the Chinese diaspora. We will explore the historical development of the Daoist religion from the 2nd century CE onwards through a discussion of the main religious movements such as the Celestial Masters, the Supreme Clarity revelations (4th-5th century), the Precious Treasure revelations, scriptures and liturgies, the Tang synthesis, the Song Heart of Heaven and Divine Empyrean exorcistic movements, the Ming court and its support for Daoism on Wudangshan and throughout the princely households, the Qing regionalisation of Daoist ritual traditions, and the spread of Daoist ritual traditions to Hong Kong and Southeast Asia.", + "title": "Daoism and Chinese Religion", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is exclusively for those students taking the non-thesis capstone option; it forms the second component along with an additional 5MC Literature module. Students will write an independent extended research essay associated with a 4000-level literature elective. In consultation with a Faculty supervisor, a student will plan to expand an assigned essay into a larger research project that demonstrates similar analytic and formal qualities expected of the Literature capstone thesis, but in a more limited format, of between 5000-5500 words. Students will present on their extended research essay in an end-of-year research symposium.", + "title": "Extended Research Essay in Literature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4265", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine Plato\u2019s interconnected views on epistemology, ethics, and psychology through close readings of two major dialogues, the and the , which focus on love and death. Themes include erotic desire and its relation to virtue and happiness; Forms; varieties of innate knowledge; personal identity; the soul/body relationship; immortality; philosophy as \u201cpractice of dying\u201d; and Plato\u2019s philosophical method(s). Along the way, the course will consider different views on the relation between Socrates and Plato, different approaches to the question of how to read a Platonic dialogue, and competing interpretations of Plato\u2019s views among commentators. Symposium Phaedo", + "title": "Plato on Love and Death", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4266", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is portraiture? This class will equip students with means to conceptualise and develop photographic portraits over the semester. Students will make portraits through exercises using lighting and visual tropes and methods in portraiture. There will also be readings, screenings and visual analyses to enable them to consider different genres of portraiture, and their relationship to society, identity, visual representation and the self. This module will develop students\u2019 artistic portfolios and will culminate in an exhibition at the end of the semester. Students are required to have working knowledge of camera handling", + "title": "Portraiture", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YHU4268", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-Studio3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the field of environmental studies. We explore the core concerns of the field, its history, its primary methods of analysis, and a number of pressing environmental challenges to human well-being. We also examine how insights from the humanities, the social sciences, and the natural sciences can be integrated to analyze environmental problems and generate responses to them.", + "title": "Introduction to Environmental Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID1201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Saturday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the tools, methods, and theory of effective environmental policymaking at the local, national, regional, and global level, with primary\nfocus on governmental policies. Students will explore the interplay of politics and policy to develop an understanding of the drivers of successful environmental policymaking from a comparative perspective. This course is a prerequisite for subsequent environmental-studies policy and policymaking courses.", + "title": "Theory and Practice of Environmental Policymaking", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID2201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This foundational module in environmental studies introduces students to social theories applicable to socio-ecological problems. It equips students with the theoretical knowledge for social scientific analysis expected in upper-level environmental studies courses and the capstone project. As an interdisciplinary module, students will be introduced to concepts and theories in environmental sociology, environmental anthropology, political ecology, and science and technology studies, among others.", + "title": "Social Theory and the Environment", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID2207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Data is the new oxygen. Understanding how to use and analyse it is the most critical skill of the 21st century. Particularly for the environment, which brings together a multitude of complex systems and phenomena, we need to be equipped to derive clear signals from oceans of noise and from vast amounts of data that are being generated on a daily basis to underpin sound policy choices and scientific inquiry. This course will introduce students to analyse quantitative environmental data using R and give an overview of foundational and cutting-edge data science techniques.", + "title": "Data Science for the Environment", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID2212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Urban agriculture is a burgeoning movement not just in the Euro-Americas, but also in much of the global South. This module explores the theories and practices of urban agriculture with attention to its social, cultural, political, and material dynamics. Students will not only learn concepts in sustainable food production and the developments and debates in the urban agriculture movement, but also gain skills and experience in growing their own food.", + "title": "Urban Agriculture", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YID2213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Plants and people have interacted for thousands of years. Plants have served as sources of food, shelter, medicine, and fibre, while humans have changed the abundance, distribution, disturbance and genetic makeup of plants. We will draw upon both basic biology and applied historical, anthropological, and artistic perspectives to explore these relationships. The course will be a mix of lectures, discussions and local field trips.", + "title": "Plants and People", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID2214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Food and ecology are inextricably linked through the production of domesticated food through agriculture and livestock and in the harvesting of wild plants and animals. The production and consumption of food has downstream consequences through energy consumption, food waste, trophic interactions and transportation of food worldwide. These topics link to many of the fundamental concepts of ecology, including population biology, the niche, trophic interactions, nitrogen cycling and the effects on biodiversity. This module explores each of these topics intensely through lectures, guest lectures, readings and interactive field trips to local systems.", + "title": "The Ecology of Food", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID2215", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What does it mean to do environmental history in the age of climate change and biodiversity loss? What sources, methods, and approaches are available for students to make sense of the past not as a foreign country, but as an enduring resource for knowing the present and mapping the future? This module explores these timely questions through the growing field of environmental history, paying particular attention to how scholars study the arc of human-nature interactions in Singapore and Southeast Asia around three themes land, water, and air.", + "title": "Foundations of Environmental History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID2216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An exploration of an environmental topic or theme of relevance to upperlevel\nstudents in environmental studies. The topics covered within the course\nwill be detailed in the syllabus given to a student in advance of the course.\nThe faculty teaching the course will change and as such topics will change\naccording to their specialisms and interests. For Semester One in 2015/2016, Professor Wargo from the Environmental Science program at Yale College\nwill offer a specialized course on food issues.", + "title": "Special Topics in Environmental Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An exploration of an environmental topic or theme of relevance to upperlevel students in environmental studies. The topics covered within the course will be detailed in the syllabus given to a student in advance of the course. The faculty teaching the course will change and as such topics will change according to their specialisms and interests.", + "title": "Special Topics in Environmental Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3202B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "While Asian waters are at the heart of our geopolitical world, from unending resource wars to widening biological hotspots, they have figured little more than linkages between lands in today\u2019s area studies and regional histories. This course aims to help students better understand not only the historical web of human-ocean interactions in Southeast Asia but also the challenges that confront today\u2019s regional society in the age of climate change. The hope of the course is for us to think through what it might mean and what it might look like to anchor what scholars have called the \u201cblue humanities\u201d in Southeast Asian waters.", + "title": "Special Topic: Ocean and Society in Southeast Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3202F", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An exploration of an environmental topic or theme of relevance to students with interests in environmental studies. The topics covered within the course will be detailed in the syllabus given to a student in advance of the course. The faculty teaching the course will change and as such topics will change according to their specialisms and interests. For Semester Two of AY 2019-20, Professor Medrano will offer a 3000level course on the production and consumption of Asia\u2019s marine food resources. Please see https://envs.yale-nus.edu.sg/programme/ay-20192020-envstudies-courses/ for more information and a sample syllabus.", + "title": "Special Topics: Asia's Edible Ocean", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3202H", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An analysis of several transnational environmental issues with special focus on how these issues have shaped, and are shaping, domestic and international political relations. Particular attention is devoted to understanding the strengths and weaknesses of contemporary efforts to forge enduring systems of global environmental governance. Special topics include the global climate regime, transnational biodiversity protocols, governance at various levels of scale, and analytic and activist challenges to mainstream strategies for establishing effective global environmental governance.", + "title": "Global Environmental Governance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar focuses on changes in agriculture and environment now underway in rural areas around the world. Students are introduced to work of scholars, practitioners and activists focusing on the deepening links among rural poverty, food insecurity, social injustice, environmental degradation, and climate change. Drawing on cases from Asia, Africa, and the Americas, we explore the social, political, economic, cultural and material processes that drive change in agrarian societies and environments. Topics include the\nGreen Revolution and its legacies, neoliberalization of agriculture, land grabbing in the 21st century, peasant movements and resistance, and the rise of \u201calternative\u201d agri-food systems.", + "title": "Agrarian Change and Environmental Transformations", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines China\u2019s key energy and environmental challenges as they relate both within China and abroad. Using a flipped classroom model, this course will be jointly offered with the Yale School of Forestry & Environmental Studies.", + "title": "China\u2019s Energy and Environmental Sustainability", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the philosophy, goals, and strategy of environmental movements. Students explore case studies of a diverse array of environmental movements across time and place, such as recycling, conservationist, deep ecology, anti-nuclear, anti-consumerist, and corporate social responsibility campaigns. The final project asks students to analyse an ongoing movement in detail and recommend effective strategies for increasing global sustainability.", + "title": "Environmental Movements: Past, Present and Future", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Climate change -perhaps the defining issue of the 21st century- is a highly complex problem that requires interdisciplinary collaboration to develop policy responses. This course explores the science of climate change and uses theories from multiple disciplines, including law, political science, economics, and earth and atmospheric sciences to frame solutions to this global challenge. Through the application of quantitative tools (e.g. climate modelling, atmospheric and earth sciences) and qualitative tools (e.g. global environmental governance theory), students will establish an understanding of the causes and impacts of climate change, as well as the policy options and responses to address it.", + "title": "Climate Science and Policy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course draws upon new research across the arts, humanities and social sciences to help students better understand the cultural and social dimensions of our currents patterns of energy use, their environmental impacts, and the possibility of new energy futures. More generally, the course introduces students to the field of environmental humanities, and models the contributions of the humanities to a deeper understanding of environmental issues.", + "title": "Energy Humanities: Culture, Energy, and the Environment", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the interdisciplinary field of ecological economics, which integrates ecological principles into traditional economic theory. We will examine the historical development of economics as a discipline, explore the differences between ecological and environmental economics, and investigate a set of cases using principles in ecological economics. This course will include concepts from other fields, especially physics, philosophy, ecology, and public policy.", + "title": "Ecological Economics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The world is a risky place. Every year, natural hazards affect millions of people, with increasingly expensive losses. This course explores risk associated with geophysical phenomena. Are there more hazardous events now than in the past? Are these events somehow more energetic? Or are increasing populations with increasingly disparate incomes being exposed to hazards? What physical, economic, political and social tools can be employed to reduce this risk? We draw on examples from recent disasters, both rapid onset (earthquakes, tsunamis, cyclones), and slow onset (climate change, famine) to examine complex and interlinked vulnerabilities in the coupled human-environment system.", + "title": "Risk and Geohazard", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides environmental studies majors with the foundations to analyze and manage conflicts and disputes, as well as collaborative and deliberative endeavours associated with complex socio-ecological problems. It provides students with the theoretical knowledge and skills needed for the analysis, design, implementation, and evaluation of conflict management systems and collaborative decision-making processes.", + "title": "Environmental Conflict and Collaboration", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With an increasingly urbanised human population the interaction of nature with the built environment and its human inhabitants is emerging as one of the greatest sources of both opportunity and inertia to goals of sustainability. In this course you will consider the extent to which urbanisation has changed natural ecosystems and led to the rise of a new urban ecology, and consider how humans can value and manage this in a socio-ecological context. We will then address how the confluence of climate change, globalisation and urbanisation are fundamentally altering our living space and the implications for human health and wellness.", + "title": "Urban Ecological Systems", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3214", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Asia is known for its fast-paced economic growth and dramatic scenes of environmental devastation. This course explores societal perception, anxiety, and action in response to environmental change and economic development in the region. How do some communities resist environmentally controversial development projects, and why do others embrace these projects? How do non-governmental organisations bridge \u201cWestern\u201d ideas about environmental human rights with their own cultural traditions? And how have experts, artists, and businesses joined the action? We explore these questions through historical and contemporary case studies that illuminate the ongoing debate about economic development versus environmental sustainability in Asia.", + "title": "Environment, Development and Mobilisation in Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The study of biodiversity is inextricably related to the history of science and society. This module will introduce students to the interdisciplinarity of Singapore\u2019s natural world by connecting the stories of environmental history to the specializations of biodiversity research. It will expose students to the multiple aspects of Singapore\u2019s biodiversity, combining the rigor of scientific concepts and field methods with the wealth of historical perspectives and cultural analyses. While the module focuses on the past and present of Singapore\u2019s natural world, it also highlights the role of environmental history and biodiversity research in addressing future environmental challenges.", + "title": "Singapore Biodiversity: Past, Present and Future", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course examines the scientific and historical evidence for climate change associated with a pair of 19th century volcanic eruptions in modern-day Indonesia. The most famous of these eruptions is that of Krakatoa in 1883, but Tambora\u2019s eruption in 1815 was substantially larger, as was its apparent effect on global climate. The course will examine differences in the state of the world in 1815 and 1883 that help explain Krakatoa\u2019s fame. We will also examine speculative claims about the social and historical impact of each eruption and its associated climate change.", + "title": "Volcanos, Climate, and Society in the 19th Century", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Increasingly, young people around the world are asking questions about the ethics and politics of having children in the age of climate change. This course will focus on relevant considerations to these questions, such as the sociology of reproduction; ethical considerations about what we owe future generations and what individuals owe their children; the carbon footprint of reproduction; concerns about \u201coverpopulation\u201d; the role of individual choices in responding to climate change; how these questions are different (and differently felt) for people based on factors, such as nationality and class; adoption; challenges to the heteronormative family structure; and visions of the future. We will analyse research from environmental studies, sociology, women\u2019s and gender studies, and philosophy, and also engage with relevant literature and film.", + "title": "The Ethics and Politics of Reproduction in the Age of Climate Change", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Sharks are keystone species, unfortunately global demand for shark products fuel a >US$1 billion industry that has caused dramatic declines in shark populations. A major obstacle preventing successful regulation of the shark fin trade and shark conservation is the mislabelling and/or misidentification of dried products or carcasses that have had fins removed. We will use DNA barcoding techniques to identify the sharks traded in Singapore. Previous molecular experience is not required. With the data generated we will produce a scientific paper for publication.", + "title": "Wildlife Forensics and the Shark Fin Trade", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3221", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LSciLab", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The health of humans is inextricably related to the health of the planet. Our natural environments are being degraded to the extent their ability to provide the vital services that humanity relies upon are becoming compromised. This module explores how the planet\u2019s physical, chemical and biological systems affect human health, and addresses solutions to reduce suffering. Learning will embrace diverse scientific and sociological concepts, and students will be expected to integrate concepts from different disciplines to address key issues. Specific topics will include emerging infectious diseases, air pollution, water scarcity and food production.", + "title": "Planetary Health", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An overview of contemporary energy issues covering economic, engineering, environmental, and policy implications of competing global energy trajectories. Patterns of energy demand and supply across Asia will receive particular attention.", + "title": "Powering the Planet", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Colonialism and imperialism dramatically transformed societies and environments around the world, creating a legacy that continues to shape human and non-human relations. Environmental studies and the academic disciplines that enrich it emerged from this colonial project of exploitation and hegemony. In this module, students will interrogate the histories of environmental transformations during colonisation, and their cultural, political, economic, and material aftermaths. Students will also explore how the postcolonial world negotiates these colonial and imperial environmental legacies, and consider the implications for the practice of \"environmental studies\" and efforts to decolonise environmental scholarship and practice.", + "title": "Empires and Environments", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to the science and practice of forest landscape restoration (FLR). As a field of inquiry and a body of practice, FLR aims to enhance ecological functionality and human well-being across degraded or deforested forest landscapes. Through classroom inquiry, field investigation, and analysis of data from restoration projects, students in this module explore how the ecological restoration of forest and tree cover in tropical landscapes (urban and rural) can maintain, improve, or restore biodiversity and vital ecological functions. Students also investigate the role of scientific research for evaluating existing FLR strategies and developing new ones.", + "title": "Forest Restoration", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module grapples with the socio-ecological tensions of the global spread of capitalist social relations since the nineteenth century, focusing on the post-World War II era of \u201cdevelopment\u201d as one involving both prospects and pitfalls for actors at various scales (e.g., individuals, nation-states, regions). A central focus is on the ambivalent ramifications of the global commodification of nature during this period. Topics include, among others, \u201cdevelopment\u201d under hyper-urbanisation, natural resource \u201cparadoxes,\u201d the global \u201cmeatification\u201d of diets, the state\u2019s unique \u201coptics\u201d vis-a-vis the socio-natural world, and tensions inherent to the modern health industry.", + "title": "Capitalist Nature: Tensions of a Commodified World", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This class explores religious worldviews and how they are shaped by, and used by humans to shape, earthen ecosystems, past and present. The class adopts an interdisciplinary lens grounded in religion and nature theory to analyze how religious rituals, doctrines, material culture, concepts of the \u201csacred,\u201d and texts are constructed and performed by humans to make sense of the more-than-human world, while investigating how such religious production is informed and constrained by the environment. It consists of case study analysis, ecological hermeneutics of sacred texts, and exploring leading theoretical approaches to the academic study of religion and the environment.", + "title": "Religion and the Environment", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sustainability has been a growing buzzword in recent years. Notably, governments, organisations and individuals are acknowledging its importance and stepping up efforts towards sustainable development and transformation. Law and policy play a critical role in this major endeavour that humanity is collectively embarking on. Through this module, students explore a range of sustainability themes from the lens of law and policy, and discover the role of law and policy vis-\u00e0-vis sustainability. They will also be exposed to real-world insights and challenges, with a focus on Singapore while comparatively studying selective models in other jurisdictions.", + "title": "Sustainability Law and Policy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how communities and institutions are proactively responding to the climate crisis, and what types of tactics are being successful in creating climate resilient and regenerative businesses and communities. The course also interrogates and analyzes various motivations of climate activists, with a focus on those in Asia, including youth activists, seeking to understand their motivations and tactical choices; and will also engage with literature on climate social movements and activism, broadly. An analysis of various literary sources on climate emotions will contextualise their \u2013 and, indeed, our own \u2013 strategies for dealing with climate anxiety and grief and, equally, for nurturing climate hope.", + "title": "Climate Hope and Resiliency", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3229", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Since 1839, Pacific Asia has undergone a socio-ecological transformation whose turbulence and implications are world-historically unprecedented. Drawing on fields such as environmental sociology, political economy, and critical development studies, the module examines the region\u2019s violent insertion into the capitalist world-system in the wake of the Opium Wars and its subsequent unfolding under Japanese colonialism, US \u2018developmentalism\u2019, and Asian Stalinism. While the focus is on northeast Asian hegemonic dynamics, the module contextualises the ambivalence of the new qualitative trajectory in nature-society relations that was forged during this period, especially in \u201cnewly industrialised countries\u201d like Singapore and South Korea.", + "title": "Asia, Development, and Environment", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID3230", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Environmental Studies Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the Environmental Studies major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Environmental Studies Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YID4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar guides environmental studies students in conducting a short research project and writing an independent research paper on a topic related to their declared area of specialisation. The module is required for all students majoring in environmental studies who choose Option 2 of the capstone track, and is open only to those students.", + "title": "Environmental Research Paper", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YID4202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed for students who want an effective, comprehensive approach to learning Bangla (or Bengali) that will enable them to develop all four language skills: speaking, listening, reading, and writing. At the completion of this course, students will be able to converse and interact in informal and formal situations, describe happenings and events, give and receive information; and read and write in Bangla with some confidence. Instruction will be delivered via teleconference from India.", + "title": "Directed Language Study: Beginning Bangla 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIL1201B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Beginning Italian 1 is designed to help students develop a basic ability to read, write, understand, and speak Italian as well as to expand their cultural competency. Since all linguistic skills cannot be fully developed in one semester alone, stress will be placed on the acquisition of basic structures, which will be developed and reinforced in subsequent modules. The course will be conducted in Italian via teleconference from Yale.", + "title": "Directed Language Study: Beginning Italian 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIL1201I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Beginning Russian 1 is designed to help students develop a basic ability to read, write, understand, and speak Russian as well as to expand their cultural competency. Since all linguistic skills cannot be fully developed in one semester alone, stress will be placed on the acquisition of basic structures, which will be developed and reinforced in subsequent modules. The course will be conducted in Russian via teleconference from Yale.", + "title": "Directed Language Study: Beginning Russian 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIL1201R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers four hours a week of language instruction in Sanskrit for beginners. Instruction will cover the writing systems, vocabulary, and syntax of classical Sanskrit texts. Students will achieve a basic reading level by the end of the semester. The course will be taught via teleconference.", + "title": "Directed Language Study: Beginning Sanskrit", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIL1201S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is the continuation of Bangla 1 and is designed for students who want an effective, comprehensive approach to learning Bangla (or Bengali). At the completion of this course, students will be able to converse and interact in informal and formal situations, describe happenings and events, give and receive information; and read and write in Bangla with some confidence. Instruction will be delivered via teleconference from India.", + "title": "Directed Language Study: Beginning Bangla 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIL1202B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Beginning Italian 2 is a continuation of Beginning Italian 1 and builds upon what students learned in their first semester. It is designed to help students expand their basic ability to read, write, understand, and speak Italian as well as to deepen their cultural competency. Stress will be placed on the acquisition of basic structures, which will be developed and reinforced in subsequent modules. The course will be conducted in Italian via teleconference from Yale.", + "title": "Directed Language Study: Beginning Italian 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIL1202I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Beginning Russian 2 is a continuation of Beginning Russian 1 and builds upon what students learned in their first semester. It is designed to help students expand their basic ability to read, write, understand, and speak Italian as well as to deepen their cultural competency. Stress will be placed on the acquisition of basic structures, which will be developed and reinforced in subsequent modules. The course will be conducted in Italian via teleconference from Yale.", + "title": "Directed Language Study: Beginning Russian 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIL1202R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Intermediate Italian 1 is designed to increase students\u2019 proficiency in reading, writing, speaking, and overall comprehension of the language. This module is aimed at students who have completed the beginning sequence or have had significant experience with the language. It offers a combination of listening and speaking practice with a review of key concepts of Italian grammar via targeted reading and writing activities. This module continues to incorporate cultural elements through representative readings and films. The course will be conducted in Italian via teleconference from Yale.", + "title": "Directed Language Study: Intermediate Italian 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIL2201I", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers four hours a week of language instruction in Sanskrit for students who have completed Beginning Sanskrit or have a similar command of the language. Instruction will continue developing their knowledge of the writing systems, vocabulary, and syntax of classical Sanskrit texts. Students will strengthen their reading level by working with a variety of texts. The course will be taught via teleconference.", + "title": "Directed Language Study: Intermediate Sanskrit", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIL2201S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this course is to give students the ability to read literary texts in classical Sanskrit. To that end, this course will focus on selections from a variety of Sanskrit literary and philosophical texts (e.g., Somadeva tales, \u015aatakas of Bhart\u1e5bihari, the S\u0101n\u0307khyak\u0101rik\u0101 of \u012a\u015bvarakr\u0323s\u0323n\u0323a, and the K\u0101vyaprak\u0101\u015ba of Mammat\u0323a). This course will also discuss a number of advanced and rare grammatical forms in Sanskrit, as and when they come in the selected readings. Using skills developed in the basic and intermediate levels of the language, students will translate and discuss the relevant sections throughout the semester.", + "title": "Directed Language Study: Advanced Sanskrit", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIL3201S", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3301", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3301G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3302", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3302G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3303", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3303G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3304", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3304G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3305", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3305G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3306", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3306G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3307", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3307G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3308", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3308G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3309", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3309G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3310", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3310G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "YIR3311", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the\nclose guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "YIR3311G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "YIR3312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the\nclose guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "YIR3312G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the\nclose guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2", + "moduleCode": "YIR3313", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the\nclose guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2", + "moduleCode": "YIR3313G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3314", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3314G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3315", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3315G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3316", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3316G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3317", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3317G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3318", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3318G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3319", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3319G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3320", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Independent study in an area of special interest to the student(s), with the close guidance of a faculty member, leading to a final project/product.", + "title": "Independent Reading and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3320G", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for an individual or small group of students \u2013 ordinarily 1-2 students\u2013 who would like to work with texts and other materials in a language other than English. Students should clearly articulate the goals of their project and what they aim to achieve by the end of the semester. ILSR projects should go beyond reading the assigned materials from another course in their original language.", + "title": "Independent Language Study and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3401", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for an individual or small group of students \u2013 ordinarily 1-2 students\u2013 who would like to work with texts and other materials in a language other than English. Students should clearly articulate the goals of their project and what they aim to achieve by the end of the semester. ILSR projects should go beyond reading the assigned materials from another course in their original language.", + "title": "Independent Language Study and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3401G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for an individual or small group of students \u2013 ordinarily 1-2 students\u2013 who would like to work with texts and other materials in a language other than English. Students should clearly articulate the goals of their project and what they aim to achieve by the end of the semester. ILSR projects should go beyond reading the assigned materials from another course in their original language.", + "title": "Independent Language Study and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3402", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for an individual or small group of students \u2013 ordinarily 1-2 students\u2013 who would like to work with texts and other materials in a language other than English. Students should clearly articulate the goals of their project and what they aim to achieve by the end of the semester. ILSR projects should go beyond reading the assigned materials from another course in their original language.", + "title": "Independent Language Study and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3402G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for an individual or small group of students \u2013 ordinarily 1-2 students\u2013 who would like to work with texts and other materials in a language other than English. Students should clearly articulate the goals of their project and what they aim to achieve by the end of the semester. ILSR projects should go beyond reading the assigned materials from another course in their original language.", + "title": "Independent Language Study and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for an individual or small group of students \u2013 ordinarily 1-2 students\u2013 who would like to work with texts and other materials in a language other than English. Students should clearly articulate the goals of their project and what they aim to achieve by the end of the semester. ILSR projects should go beyond reading the assigned materials from another course in their original language.", + "title": "Independent Language Study and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3403G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for an individual or small group of students \u2013 ordinarily 1-2 students\u2013 who would like to work with texts and other materials in a language other than English. Students should clearly articulate the goals of their project and what they aim to achieve by the end of the semester. ILSR projects should go beyond reading the assigned materials from another course in their original language.", + "title": "Independent Language Study and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for an individual or small group of students \u2013 ordinarily 1-2 students\u2013 who would like to work with texts and other materials in a language other than English. Students should clearly articulate the goals of their project and what they aim to achieve by the end of the semester. ILSR projects should go beyond reading the assigned materials from another course in their original language.", + "title": "Independent Language Study and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3404G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for an individual or small group of students \u2013 ordinarily 1-2 students\u2013 who would like to work with texts and other materials in a language other than English. Students should clearly articulate the goals of their project and what they aim to achieve by the end of the semester. ILSR projects should go beyond reading the assigned materials from another course in their original language.", + "title": "Independent Language Study and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YIR3405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for an individual or small group of students \u2013 ordinarily 1-2 students\u2013 who would like to work with texts and other materials in a language other than English. Students should clearly articulate the goals of their project and what they aim to achieve by the end of the semester. ILSR projects should go beyond reading the assigned materials from another course in their original language.", + "title": "Independent Language Study and Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YIR3405G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4301", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4301G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4302", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4302G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4303", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4303G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4304", + "semesterData": [ + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4304G", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4305", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4305G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4306", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4306G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4307G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4308", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4308G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4309", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credit of major research projects conducted by students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus requires unusually strong preparation in science. All projects must be approved by the Director of the Science Division before the course is selected.", + "title": "Special Project in Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4309G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the Humanities. All projects must be approved by the Director of the Humanities Division.", + "title": "Special Project in Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4401", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the Humanities. All projects must be approved by the Director of the Humanities Division.", + "title": "Special Project in Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4401G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the Humanities. All projects must be approved by the Director of the Humanities Division.", + "title": "Special Project in Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4402", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the Humanities. All projects must be approved by the Director of the Humanities Division.", + "title": "Special Project in Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4402G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the Humanities. All projects must be approved by the Director of the Humanities Division.", + "title": "Special Project in Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4403", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the Humanities. All projects must be approved by the Director of the Humanities Division.", + "title": "Special Project in Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4403G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the Humanities. All projects must be approved by the Director of the Humanities Division.", + "title": "Special Project in Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4404", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the Humanities. All projects must be approved by the Director of the Humanities Division.", + "title": "Special Project in Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4404G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the Humanities. All projects must be approved by the Director of the Humanities Division.", + "title": "Special Project in Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4405", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the Humanities. All projects must be approved by the Director of the Humanities Division.", + "title": "Special Project in Humanities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4405G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the social sciences. All projects must be approved by the Director of the Social Sciences Division.", + "title": "Special Project in Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4501", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the social sciences. All projects must be approved by the Director of the Social Sciences Division.", + "title": "Special Project in Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4501G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the social sciences. All projects must be approved by the Director of the Social Sciences Division.", + "title": "Special Project in Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4502", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the social sciences. All projects must be approved by the Director of the Social Sciences Division.", + "title": "Special Project in Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4502G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the social sciences. All projects must be approved by the Director of the Social Sciences Division.", + "title": "Special Project in Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4503", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the social sciences. All projects must be approved by the Director of the Social Sciences Division.", + "title": "Special Project in Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4503G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the social sciences. All projects must be approved by the Director of the Social Sciences Division.", + "title": "Special Project in Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4504", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the social sciences. All projects must be approved by the Director of the Social Sciences Division.", + "title": "Special Project in Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4504G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the social sciences. All projects must be approved by the Director of the Social Sciences Division.", + "title": "Special Project in Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "5", + "moduleCode": "YIR4505", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides academic credits for major research projects conducted independently by individual students prior to the Capstone project. The scope and depth of the research should be at the level of a Capstone project, and thus require students to have prior research methods training in the social sciences. All projects must be approved by the Director of the Social Sciences Division.", + "title": "Special Project in Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YIR4505G", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "A Beginning Chinese course in listening, speaking, reading, and writing in Modern Standard Chinese. The student will learn pinyin, basic grammar, and a limited set of characters to understand basic everyday conversations and elementary readings. The course is designed for the absolute beginners and intended primarily for non-heritage students with no previous exposure to Chinese.", + "title": "Beginning Chinese 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLC1201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is designed for 1) students who already possess some proficiency in spoken Chinese but no formal education in Chinese; 2) students returning from summer study abroad programs; and 3) non-heritage students with prior coursework in Chinese who wish to further develop their reading and writing skills in Chinese. Students will take a placement test prior to the beginning of the course.", + "title": "Beginning Chinese 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLC1202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed for students who completed First year Chinese (two\nsemesters: YLC1201 & 1202) or have equivalent Chinese proficiency. It\nemphasizes on the ability to communicate and function accurately and\nappropriately in Modern Chinese. Students will take a placement test. The\ncourse aims to develop students by: (1) acquiring basic knowledge and\ncommunicative skills in speaking, listening, reading, and writing Chinese; (2) gaining solid understanding of the cultural and social context of Chinese; (3)\ndeveloping research skill to understand Chinese texts and culture by using\nChinese input system and online dictionary, as well as useful online\nresources.", + "title": "Intermediate Chinese 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLC2201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed for students who completed Intermediate Chinese 1\n(YLC2201) or have equivalent Chinese proficiency. It emphasizes the ability to\ncommunicate and function accurately and appropriately in Modern Chinese.\nStudents will take a placement test prior to the beginning of the course. The\ncourse aims for students to: (1) acquire basic knowledge and communicative\nskills in speaking, listening, reading, and writing Chinese; (2) gain solid understanding of the cultural and social context of Chinese; (3) develop\nresearch skill to understand Chinese texts and culture by using Chinese input\nsystem and online dictionary, as well as useful online resources.", + "title": "Intermediate Chinese 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLC2202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course, together with Advanced Chinese 2, bridges the gap between our current offerings of intermediate and advanced-level Chinese, serving students who have completed YLC 2202 Intermediate Chinese 2 or equivalent. It continues to develop students\u2019 abilities in speaking, orally comprehending, reading, and writing modern Mandarin Chinese and, concomitantly, also serves to deepen students\u2019 understanding of the social and cultural issues facing China today. Students will be routinely drilled in reading and writing throughout the semester. Systematic discussion, debate, and presentation provide students with ample opportunities to practice and enhance their newly acquired linguistic skills and oral fluency.", + "title": "Advanced Chinese 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLC3203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1530", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course is the continuation of Advanced Chinese 1 and prepares students to take further courses in advanced-level Chinese. It is designed for students who have studied at least two-and-a-half years of Chinese at the college level to achieve greater proficiency in oral and written uses of modern Mandarin. The course further develop language skills in listening, speaking, reading, and writing, with particular emphasis on enhancing reading and writing abilities. It builds upon the foundations of Advanced Chinese 1 yet differs in giving the students increased exposure to authentic written (and audio-visual) materials not specifically designed for classroom learning.", + "title": "Advanced Chinese 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLC3204", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-30T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to help students develop critical reading and writing skills through the use of contemporary Chinese cinema and film-related literary works. Students will also have the opportunity to compare and contrast Chinese films with the literature from which they are adapted. These activities, which include speaking, listening, writing, and reading, will provide a rich experience that goes beyond traditional language learning. Class instruction and discussion, conducted only in Chinese, will challenge students to form their own opinions of characters and themes, with less of a focus on grammar.", + "title": "Advanced Readings in Chinese: Cinematic and Literary Texts", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLC3205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to promote the development of critical Chinese reading and writing skills. It aims to further improve the students\u2019 Mandarin Chinese skills in all aspects. Students will gain access to the essence of Chinese culture as well as the charm of the language itself through notable works of modern Chinese literature. They will be introduced to significant topics concerning Chinese culture and history written in different styles and genres. Most of the texts are original and unabridged written by well-known authors such as Yuan Qiongqiong from Taiwan; Xixi from Hong Kong and Mo Yan from mainland China.", + "title": "Advanced Readings in Chinese: Modern Chinese Literature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLC3206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YLE (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLE4801", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Not available", + "title": "Exchange Module - YLE (5MC)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLE4802", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory course of language instruction in ancient Attic Greek for beginners, designed to give students a decent reading level by the end of the semester. It offers four days a week instruction. As well as gaining an introductory familiarity with the syntax and vocabulary of ancient Greek texts, students will develop an associated cultural knowledge in ancient Greek society and literary/ dramatic production.", + "title": "Beginning Ancient Greek", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLG1201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to give students a more solid reading level by the end\nof the semester. It offers four days a week instruction. As well as gaining a\nfamiliarity with additional vocabulary and the more complex constructions of\nancient Greek \u2013 especially those involving optative and subjunctive \u2013\nstudents will through their more extensive reading develop an increased\ncultural knowledge in ancient Greek society and literary/ dramatic production.", + "title": "Intermediate Ancient Greek", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLG2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to give students a familiarity with a fuller range of the more complex grammar of ancient Greek, and to give them an opportunity to read in a more focused manner specific examples of non-adapted ancient Greek texts in the original. This course will focus on Greek prose; possible authors may include selections from Herodotus, Lysias, Thucydides, or Plato with appropriate commentaries and secondary literature. As well as gaining a deeper understanding of the syntax, grammar, and the different dialects of ancient Greek, students will develop an increased cultural knowledge in ancient Greek society and historical and philosophical concerns of the period.", + "title": "Advanced Ancient Greek Prose", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLG3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is designed to give students a familiarity with a fuller range of the more complex grammar of ancient Greek, and to give them an opportunity to read in a more focused manner specific examples of non-adapted ancient Greek texts in the original. This course will focus on Greek poetry; possible authors may include selections from Homer, Greek Lyric, Greek drama, or Hellenistic poetry with appropriate commentaries and secondary literature. As well as gaining a deeper understanding of the syntax, grammar, and the different dialects of ancient Greek, students will develop an increased cultural knowledge in ancient Greek society and literary/ dramatic production.", + "title": "Advanced Ancient Greek Poetry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLG3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course offers four days a week of language instruction in Attic Latin for beginners. Instruction will cover the writing systems, vocabulary, and syntax of ancient Roman texts. Students will develop linguistic and cultural knowledge in ancient Mediterranean antiquity, and achieve a basic reading level by the end of the semester.", + "title": "Beginning Latin", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLL1201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This intensive course offers four days a week of language instruction and follows on from Beginning Latin. Students will continue developing linguistic and cultural knowledge in ancient Mediterranean antiquity, and achieve a relatively strong reading level by the end of the semester.", + "title": "Intermediate Latin", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLL2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Level One aims to develop capabilities in non-verbal, visual-gestural communication as well as the study of gestures as a form of communication and visual language basics. Theme based and including activities in expressive and receptive skills, the course focuses on training learners in basic functions such as greetings and introductions. It also emphasises the systematic study of the SgSL vocabulary and structure.", + "title": "Beginning Singapore Sign Language", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YLN1201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1830", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Level Two builds upon the non-verbal and visual-gestural communication strategies developed in Level 1. Students will work on developing and refining signing skills and sign communication. This course focuses on training learners in a variety of contexts such as family settings, leisure activities, and occupations. The course also emphasises the systematic study of the SgSL vocabulary and sentence structure.", + "title": "Intermediate Singapore Sign Language", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YLN2201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Beginning Spanish 1 is the introductory module to the language and culture of the Hispanic world. This course is designed to help you develop a basic ability to read, write, understand, and speak Spanish as well as to expand students' cultural competency. Since all linguistic skills cannot be fully developed in Beginning Spanish 1 alone, stress will be placed on the acquisition of basic structures, which will be developed and reinforced in subsequent modules.", + "title": "Beginning Spanish 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLS1201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Beginning Spanish 1. Beginning Spanish 2 pays close attention to aural/oral practice while strengthening basic grammar skills, writing, and reading comprehension. The module covers the second half of the eBook used in Beginning Spanish 1 and prepares students for Study Abroad opportunities via CIPE in their second summer at Yale-NUS or beyond.", + "title": "Beginning Spanish 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLS1202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module targets students who have completed the Beginning Spanish sequence or have had significant experience with the language (e.g., Study Abroad during their first summer at Yale-NUS or studied Spanish in high school). It offers a combination of listening and speaking practice with a review of key concepts of Spanish grammar via targeted reading and writing activities. This module continues to incorporate Hispanic cultural elements through representative texts and audiovisual materials from the Spanish-speaking world.", + "title": "Intermediate Spanish 1", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLS2201", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is a continuation of Intermediate Spanish 1. Students taking this module will build upon what was covered in the first half and continue to expand their command of written and spoken Spanish. Intermediate Spanish 2 pays close attention to aural/oral practice while strengthening more complex grammar skills (e.g., the subjunctive, passive voice), writing, and reading comprehension. The module covers the second half of the eBook used in Intermediate Spanish 1 (Mas) and prepares students for Study Abroad opportunities via CIPE at Yale-NUS and NUS.", + "title": "Intermediate Spanish 2", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLS2202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students taking this module will build upon the material and topics covered in the introductory and intermediate sequences to expand their command of written and spoken Spanish while honing their literary analysis skills. The course will focus on a representative selection of texts (e.g., short stories, novellas) and films from various regions of the Iberian Peninsula. Students will analyze and contextualize these works via in-class discussions and presentations on the history, traditions, and ideas embedded within them. This module will emphasize students\u2019 engagement with the ideas in the texts paying attention to stylistics, genre, and voice in their work.", + "title": "Advanced Spanish: Spain, a Mosaic of Cultures", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLS3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students taking this module will build upon the material and topics covered in the beginning and intermediate sequences to expand their command of written and spoken Spanish while honing their literary analysis skills. The course will focus on a representative selection of texts (e.g., short stories, novellas, films) from several Latin American countries. This course will address questions such as: What is the Spanish legacy in Latin America? What issues have these countries dealt with over their recent history? How are these issues portrayed in their literature and films? What are the differences and commonalities across countries? Students will analyze and contextualize these works via in-class discussions and presentations on the history, traditions, and ideas embedded within them. This module will emphasize students' engagement with the ideas in the texts paying attention to stylistics, genre, and voice in their work.", + "title": "Advanced Spanish: Latin America, Borders and Identities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YLS3202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to chemistry emphasizing a microscopic, physical approach. A focus on atomic and molecular structure, chemical bonding and reactivity, and physical properties of molecules. Includes laboratory exercises. For students with an interest in the physical sciences, the life sciences, and environmental studies. The material is discussed at an introductory level, and is focused on developing understanding and ability to apply molecular concepts in further study of\nthe sciences.", + "title": "General Chemistry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC1207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-ChemLab", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ], + "examDate": "2023-04-24T06:30:00.000Z", + "examDuration": 120 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For more than a century, scientists have used model organisms to address questions in biology. Model organisms typically mean small laboratory animals, such as laboratory mice, Drosophila, or C. elegans. However, other organisms can serve as model organisms as well. An explosion of recent research has given us the tools to use dogs and other canids, for example, as model organisms. In this course we study the genetics and genomics, evolution, ecology, and behaviour of model organisms, and use model organisms as a \u201cstepping-off\u201d point to examine other topics in the Life Sciences. As a class we will formulate and address hypotheses using a variety of laboratory and field techniques.", + "title": "Model Organisms", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC1208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Computer science has improved human life dramatically in the last 50\nyears. This course explains how computational tasks are solved and\ncomputers are programmed. You will learn how to be a more careful and\nmethodical thinker. Moreover, millions of people around the world enjoy\nprogramming and you can too!", + "title": "Introduction to Computer Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC1212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers the basics of calculus-based college-level physics, including conservation of energy and momentum, kinematics and Newton\u2019s laws, and the basics of electric and magnetic fields. As a comprehensive introductory course, this is a gateway module for the Physical Sciences major that is also suitable for non-majors wishing to build physical intuition or enter medical programs. Several labs will connect theory to the physics that describes reality", + "title": "General Physics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC1213", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The main aim of the course is to introduce you to network thinking.\nHow you could understand complex systems in the view of NETWORKS.\nIn this course, we will:\n\u2022 explore the universe of technological, social, informational and\nbiological networks around us\n\u2022 learn the basic concepts and tools for understanding the properties\nof networks\n\u2022 apply network science to gain insights in complex systems", + "title": "Networks", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC1214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Genetic engineering is the ability to manipulate DNA sequences to alter the characteristics of an organism. iGEM (international Genetically Engineered Machine) is an annual contest for students to use a toolkit of genetic elements, or additional elements of their own design, to create novel and useful biological systems. This module introduces students to the fundamentals of gene regulation and to the principles of genetic engineering. The kinds of things done by student groups in iGEM will be explored, and the possibility of a Yale-NUS iGEM team discussed. No prior knowledge or expertise is assumed.", + "title": "Genetic Engineering for All: An iGEM team for Yale-NUS?", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC1215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Calculus unites the study of instantaneous rates of change, area and optimisation, via the mathematical concepts of limit and infinity. This module provides a conceptual framework for Calculus. We eschew full mathematical rigour, but emphasise real world phenomena more than the rote formal calculations that make up a typical high school Calculus class.\n\nThis module is suitable not only for those who have never learned Calculus before, but also for those who have completed a high school Calculus course. Students completing the module will be prepared for discipline-specific classes in the Sciences and Social Sciences which make use of Calculus.", + "title": "Calculus", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC1216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1930", + "endTime": "2130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A good scientific theory is like a symbolic tale, an allegory of reality. Science is teeming with beautiful concepts, and the task of imagining them demands profound creativity, just as creative as the work of poets or magical realist novelists. This course explores in a manner accessible to non-scientists an unorthodox account of fundamental theoretical concepts such as Newtonian mechanics, superconductivity, and Einstein's theory of relativity, illuminating their profound implications.", + "title": "Creativity, Imagination and Theoretical Physics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC1217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will incorporate a story-telling approach, accessible to non-science majors, to illustrate the evolution of fundamental ideas about atoms and molecules. The impact of chemistry on history and our modern day lives will be discussed in term of key discoveries and the scientists who made them. Topics such as thermodynamics, kinetics, stereochemistry, organic synthesis, spectroscopy, and molecular modelling will be covered in a palatable manner using examples drawn from medicine, polymers, natural products, etc.", + "title": "Molecular Perspectives", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC1218", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the theoretical and empirical study of black holes in the universe.", + "title": "Introduction to Black Holes", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC1219", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "There is a strong belief in physics that the most important laws of nature are the ones governing at the smallest length scales-- the laws of anything larger are merely their corollaries. This course explores how \u2018emergence\u2019 challenges this worldview. Emergence is the thesis that laws governing macroscopic objects are often so different and unpredictable based on the underlying microscopic ones that the two sets of laws are in fact equally fundamental and conceptually distinct. Macroscopic higher level laws are then said to \u2018emerge\u2019 from the microscopic lower level ones. We will examine concrete examples from thermodynamics, mechanics and optics.", + "title": "More is Different: Emergence in Physical Systems", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC1220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The electric guitar is an instrument that combines the classical techniques of generations of instrument makers with modern technologies such as integrated circuits and transistors. This course aims to introduce students to fundamental concepts in physics by understanding how an electric guitar works from how the strings are plucked through to the generation of sound effects. Students will learn elements of classical mechanics, electromagnetism and electronics by studying string vibrations, guitar pickups and amplification. These concepts will be demonstrated through introductory seminars and hands on experimentation with electric guitars.", + "title": "Physics of the Electric Guitar", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC1221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How does a rainbow form? Why is the sky blue? What makes a pleasing chord? How do musical instruments make different sounds? In this course, we will explore the phenomena of light, sound, and other waves to understand the world around us and how we experience it. Conceptual and intuitive understanding of physical phenomena will enrich your sensory life.", + "title": "Rainbows and Music: The Physics of Light and Sound", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC1222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This broad survey module explores the basic principles in physics and chemistry that underlie everyday cooking techniques. The module introduces food molecules, chemical reactions, and physical processes that determine the food texture and flavour. In the hands-on sessions, students explore and analyse the effects of cooking procedures and techniques, using both qualitative and quantitative methods. This is a module that teaches how to think like a scientist and a chef simultaneously!", + "title": "Science of Everyday Cooking", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC1223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-ChemLab", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-ChemLab", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the basic techniques used in life science research. Students will pursue a semester-long project examining how genetic and molecular changes affect interactions between proteins. This course will recreate a research lab setting introducing standard molecular techniques and prepare students for independent work in research labs.", + "title": "Biology Laboratory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-E6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-E6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course discusses the principles of classical mechanics within a rigorous mathematical framework. Topics may include kinematics, conservative forces, central-force motion, small oscillations, rigid bodies, variational problems, the Lagrangian and Hamiltonian formalisms, non-inertial frames, and special relativity. This course is a prerequisite for most of the Major modules in Physics.", + "title": "Classical Mechanics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 12, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces important mathematical methods that are essential for treating a variety of problems in the physical sciences. Topics could include vector calculus, linear algebra, differential equations, complex analysis, integral transforms, curvilinear coordinates, and calculus of variations. The module will focus on aspects of each topic pertinent to the physical sciences.", + "title": "Mathematical Methods in Physical Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Mathematicians and computer scientists write proofs: convincing arguments,\ncombining clear and concise language, computations and symbolic manipulation, illustrations and tables. By reading, writing, and revising proofs, students will be prepared for modern topics in analysis, algebra, geometry, and theoretical computer science.\n\nStudents will write proofs that utilize direct deduction and proof by contradiction,\ncomplicated logical structures with cases, and mathematical induction. Students will acquire a thorough knowledge of na\u00efve set theory, including sets and functions, equivalence relations and classes, cardinal and ordinal arithmetic. Topics in discrete mathematics will include the combinatorics of finite structures such as graphs and trees.", + "title": "Proof", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches how to use the programming language R for analyzing and presenting statistical data. Starting from the fundamentals of R (data types, flow control), students learn how to write their own R scripts and functions. They learn how to extract data from web sites and bring the input into a shape (e.g. using regular expressions) that is suitable for further analysis. Much of the course will focus on R\u2019s graphics features, including network representations and geographic maps. The objective is to present data in ways that are informative, elegant and fun (e.g. as short animated video clips).", + "title": "Data Analysis and Visualization (DAVis) with R", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2210", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Discrete mathematics is the art of combining and arranging sets that are naturally composed of individual pieces, such as the integers, one\u2019s network of friends, or the internet. This course develops basic techniques for manipulating discrete sets through a host of concrete examples and applications. Key topics include permutations, partitions, recurrences, generating functions, networks, graph algorithms, and rigorous explorations of the Fibonacci and Catalan numbers, the Principle of Inclusion/Exclusion, the Pigeonhole Principle, and Pascal\u2019s Triangle.", + "title": "Discrete Mathematics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course combines theoretical concepts with experimentation and\ncomputational analysis to give a solid introduction to the field of optics\nand imaging. A fundamental understanding of the nature of light, and how\nit interacts with physical systems is important for many higher level\ncourses. In this course students will learn geometrical optics, wave optics,\npolarization, interference, diffraction and how these concepts relate to\nimaging. Students will also be introduced to modern applications of optics\nthat have had a significant impact on our lives such as lasers and optical\ncommunication.", + "title": "Introduction to Optics and Imaging", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to explore the study of biological evolution from a\nscientific standpoint. It covers topics such as population genetics,\nquantitative genetics and genomics, analysis of adaptation within and\namong species, phylogenetic analysis, and macroevolutionary patterns.\nSome major questions we will address include: Have organisms evolved for\n\u201cthe good of the species\u201d? Why do some animals cooperate, and why do\nwe see some patterns in the behaviours of the sexes? We\u2019ll examine these topics in lecture, readings of both primary and review literature, discussion,\nand laboratory exercises which focus on the basics of analytical techniques\nused in evolutionary studies.", + "title": "Evolutionary Biology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces Python, a widely used high-level programming language. Its popularity is comparable to Java or C/C++. This means Python is practically useful and convenient to program and learn, since there are many resources/communities on the internet and many supporting libraries. Python was designed to be easy to learn, though many serious applications have been built based on it.", + "title": "Introduction to Python", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC2221", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-LT1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-LT1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1930", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1930", + "endTime": "2100", + "weeks": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-CR15", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-CR15", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The structure, properties, and reactivity of carbon-based molecules will be directly observed and inferred in this laboratory-based course, which supplements YSC2224 Accelerated Organic Chemistry. Students will put their newly acquired theoretical knowledge in practice and thus gain a much deeper understanding of the material. Topics include reaction set-up and purification, IR, NMR, GC-MS and LC-MS analysis, as well as an advanced synthesis project.", + "title": "Organic Chemistry Laboratory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-ChemLab", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The structure, properties, and reactivity of carbon-based molecules will be studied in depth, offering the foundation for understanding not only pharmaceuticals, dyes, polymers and other petrochemicals, but also the biochemical processes that constitute life. Topics will include covalent and ionic bonding, aromaticity and stereochemistry, addition and substitution reactions, carbonyl chemistry, molecular orbital theory, as well as Infrared and NMR spectroscopy. Taking YSC2222 Organic Chemistry Laboratory concurrently with YSC2224 is strongly recommended, so that students can put their newly acquired theoretical knowledge in practice and thus gain a much deeper understanding of the material.", + "title": "Accelerated Organic Chemistry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2224", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "C is one of the most commonly used programming languages, especially in science, engineering and electronics. Many operating systems and microcontrollers are at least partly coded in C. C is lightweight, fast and offers a complex memory management system. This apparent simplicity does not mean that it is simple to learn and master though, as it requires deep understanding of how memory works and how data is represented. In this course, we will cover the C language along with memory management and segmentation. C can be useful for Capstones in applied mathematics and natural sciences.", + "title": "C: A Language for Science and Engineering", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC2227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-LT1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-LT1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We cover basic data structures and algorithms with an emphasis on implementation, although theory (asymptotic analysis, including amortization) is also covered. Topics include lists, queues, stacks, union-find, binary heaps, red-black trees, hashtables, tries, binary search, efficient quicksort, graph representations, depth-first and breadth-first search, topological sort, Dijkstra\u2019s, Prim\u2019s and Kruskal\u2019s, Huffman coding, and Knuth-Morris-Pratt. Additional topics may include:\n\u2022\tRandomization (e.g. Bloom filters, Miller-Rabin, Rabin-Karp)\n\u2022\tTime-space tradeoffs (e.g. range queries)\n\u2022\tParallel considerations (e.g. Map/Reduce, prefix-sum, quicksort)\n\u2022\tPurely functional data structures (e.g. of red-black trees)\n\u2022\tApproximation algorithms (e.g. vertex covering)\n\u2022\tMore sophisticated data structures and algorithms (e.g. leftist heaps, binomial \n heaps, splay trees).", + "title": "Introductory Data Structures and Algorithms", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2229", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to neurobiology and equips students with the background necessary to understand key concepts and fundamental questions in studies of the nervous system and cognition. Students will learn about cellular and molecular neurobiology, neurophysiology, neuroanatomy, and neuroethology. This course should be of interest to students contemplating further studies in neuroscience, psychology, neuropharmacology, and behavioural ecology, or students considering careers in medical, veterinary, and behavioural sciences.", + "title": "Foundations of Neuroscience", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A first course in linear algebra of finite-dimensional real and complex vector spaces, balancing theoretical and computational material. The course covers vectors and linear transformations, building geometric intuition, algebraic aptitude, and computational proficiency. Topics include spaces and subspaces, linear maps, linear independence and spanning, basis, and representations by coordinates and matrices. The theory of linear operators is developed, including eigenvalues and eigenvectors, self-adjoint operators, the spectral theorem, and the singular value decomposition. Some topics from numerical linear algebra, especially implementation of algorithms and assessment of their efficiency are included. Applications to statistics, economics, engineering and science are presented.", + "title": "Linear Algebra", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2232", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T05:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course illustrates basic principles of genetics using examples from prokaryote and eukaryote organisms. It emphasizes classical genetic techniques and how genetics is used to gain understanding of whole organisms. The gene, its context and the genome are the primary concepts covered. The focus will be on Drosophila developmental genetics, yeast cell biology and human disease.", + "title": "Genetics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module examines selected aspects of human anatomy and physiology from an evolutionary framework. The module begins with a birds-eye view of organ systems and their integration, organized around a limited number of simplifying themes. Deeper explorations will be made into a small number of human adaptations, exploring selection, maladaptation to modern living, and human variation. The module is intended to be accessible to students for whom this is their first college-level science course and to be of value to anyone interested in human biology, regardless of major.", + "title": "Human Biology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "To enable students to develop and perform field-based research in biology. Students will develop original research ideas and be introduced to field research approaches - methods and techniques, sampling design, data analysis and interpretation - which they will then pursue for the rest of the semester. The group-based research projects will culminate in research reports modelled on scientific publications.", + "title": "Field Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2235", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-YESLab", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-CR23", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this module we will examine how communities of microorganisms (microbiomes) are critical to the healthy function of the Earth system at various scales. The critical role of environmental microbiomes in biogeochemical transformations that underpin biosphere function will be considered, along with the consequences of disturbance due to climate change and pollution. The application of microbiomes to solving environmental problems will be discussed with reference to waste treatment and carbon capture. We will also interrogate the role of microbiomes in the health of animal and plant populations, their interactions with the environment, and the significance to adaptation and evolution. Finally, we will examine the human microbiome and how it is impacted by environmental exposures, and the consequences for our health and behaviour.", + "title": "Microbiomes", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data science has revolutionised modern life and technology using a broad spectrum of methods from Mathematics, Statistics and Computer Science. Intrinsically, mathematical and statistical techniques are married to modern computing power to provide accurate and complex tools to capture real life phenomena. In this course we develop an introduction to methods used in data science, at a level requiring basic mathematics and statistics.", + "title": "Introduction to Data Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2239", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Learn_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1900", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1900", + "endTime": "2030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T06:30:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This stand-alone tutorial will train students to conduct animal behaviour research. Students will coordinate with the instructor about the specific topic and may study natural or captive animal populations. Students will use sampling techniques and analyses specific to animal behaviour, and will carry out a complete study on animal behaviour. Portions of this module may take place in Singapore parks or at the Singapore Zoo. Students should come away from this tutorial being able to design, carry out, and analyse data, for scholarly studies on animal behaviour, cognition, or evolution. This tutorial can transition into a YNC summer research internship.", + "title": "Research Tutorial in Animal Behaviour", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "2.5", + "moduleCode": "YSC2240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on foundational knowledge of plant sciences from genetics to metabolism to physiology to evolution. It is an exploration of the many diverse aspects of plant biology. The course will cover topics including growth and development, reproduction, genetics and genomics, evolution and diversity, physiology, responses to pathogens and environmental stimuli, and applications of plant genetic modification.", + "title": "Plant Biology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an introductory module in probability theory, which is essential for many MCS modules, as well as in other scientific disciplines such as biology and economics. The course covers the basic principles of the theory of probability and its applications.", + "title": "Probability", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2243", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "With the growing influence of Data Science, the Statistics and Mathematics domains now require specific skills in programming, using domain-specific systems and libraries. This course introduces common tools for Data Science programming. This includes a high-level language (i.e. Python), several Statistics/AI libraries (i.e. numpy, sklearn), and database systems (i.e. SQL). In addition we will create awareness of best practices in programming such as control versioning, testing, and continuous integration.", + "title": "Programming for Data Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2244", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 25, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learn the fundamental tools and techniques used for experimental research in physical sciences. By harnessing interactions between light and matter, we can probe the laws of nature and build the foundations for modern technology. You will learn how to enter the lab with a question or idea and leave with beautiful, analysed data. This course will prepare you to join an active research group carrying out cutting-edge experimental research and will culminate in a final project.", + "title": "Experimental Methods in Physical Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2246", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PhysLab", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ecology investigates the complex interactions between organisms and their environment, including other organisms. This course asks how life-history strategies, environmental conditions, and local biotic interactions (e.g. competition, trophic interactions) shape the structure and dynamics of natural communities (e.g. functional composition, diversity, productivity, stability, and food webs). It also explores how natural communities form metacommunities over larger spatial scales and across ecosystems boundaries. Students draw on selected case studies to examine (1) links between biodiversity and ecosystem productivity, stability, and resilience; and (2) management options for biodiversity and ecosystem services in human-dominated landscapes.", + "title": "Ecology and Ecosystems", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Analytical chemistry addresses interesting and practical questions in the wider world, such as dinosaur body temperature in prehistoric eras and trace substances at modern crime scenes. In this course, we will explore the principles and techniques of chemical measurements, the complex chemical equilibria that are associated with most measurements, and the statistical tools for analyzing and improving measurement data. The laboratory component comprises a variety of instrumental techniques as well as the quantitative analysis of measurement data.", + "title": "Analytical Chemistry with Laboratory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2248", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-ChemLab", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "B", + "Unknown" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this module is to conduct non-invasive research on the urban wildlife in Singapore. Students may pursue a number of topics, including: behavioural repertoires, distribution and occupancy, and genetic or genomic issues, of the wildlife in Singapore. Students will gain practical knowledge of how to collect and interpret different kinds of data specific to particular projects. In different iterations, students may participate in research on otters, hornbills, lizards, insects, or other local organisms. This module exists under the Research Tutorial banner, and students are encouraged to continue these studies in Summer Research Projects.", + "title": "Urban Wildlife Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2250", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LSciLab", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LSciLab", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 10, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Gain familiarity with the basic tools and methods for research across scientific disciplines. Learn some core techniques to prepare you for summer research and equip you for more advanced methods courses in your major.", + "title": "Science Skills Workshop", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC2251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Calculus is the study of rates of changes and provides a framework for modelling systems and to find the effect of changing conditions of the systems being investigated. However, some of the most interesting systems cannot be modelled using just one variable.\nThe aim of this module is to extend the knowledge of Calculus (YSC1216) to more complex systems, studying the rate of change, volumes and optimization for functions in more than one variable.\nThis module gives the needed tools to apply knowledge of advanced calculus in Physical Sciences, Life Science, Economics and Statistics.", + "title": "Multivariable Calculus", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module explores how the Earth functions as a complex and inter-connected system throughout the lithosphere (land), hydrosphere (water) and atmosphere (air). We will consider the interaction of physical, chemical and biological processes and highlight the ways in which human activity impacts the resilience of Earth systems. Classroom learning will be supplemented with field excursions to understand first-hand how environments are structured and their response to human disturbance.", + "title": "Principles of Environmental Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamental methods of discrete and continuous optimization and their applications to a broad range of problems in economics, physics, signal processing and data science. Specific topics include linear, integer, and non-linear programming, transportation and network modelling, constrained optimization, decision making under uncertainty and probabilistic modelling. Emphasis will be placed on practical methods for solving optimization problems using standard computational tools and packages.", + "title": "Modelling and Optimization", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2254", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides students with a conceptual and practical understanding of the application of statistical methods to the Life Sciences. The topics covered include probability, common probability distributions used in modelling biological data, experimental design, linear models and hypothesis testing. This course will involve programming in R and the analysis of data.", + "title": "Statistics for Life Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2255", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the fundamentals necessary to develop an understanding for a broad range of topics that encompass life sciences in the 21st century. It also introduces the manner in which life scientists frame questions, design experiments, and communicate their findings. Specific topics include molecular and cellular biology, genetics, evolutionary biology, and application of statistical and quantitative analysis to study biological questions. Emphasis will be placed on preparation needed to take the next tier of courses in the Major, learning basic laboratory skills, and gaining a beginning competency in parsing primary literature.", + "title": "Science of Life", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2256", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Learn about AI and machine learning from hands-on project work, case studies of how AI is impacting nearly every field of study, high-level descriptions of machine learning, and explorations of AI\u2019s societal, ethical, and philosophical impacts. No prerequisite programming experience or advanced mathematics required. This module is an opportunity to do an AI project of your choice in your field of study (including physical, life, and social science, business, art, language, and humanities).", + "title": "AI Projects and Case Studies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2257", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "E-Hybrid_A", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Fungi are ubiquitous in the environment and play vital roles in the biosphere. They are important to human life on many levels. This module introduces students to the fascinating world of the interactions between fungi and human society. The module discusses the influences of fungi on the natural and agricultural ecosystems, the positive and negative impacts on human health, and the enormous economy brought by the biomedical and other industrial uses of fungi. Students will critically examine some global and social issues such as the use of psychedelic mushrooms, emerging pathogens associated with climate change and solutions to sustainable development.", + "title": "Fungi and Society", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2258", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Social insects such as ants or bees are among the most numerous and widespread animal groups on Earth. What makes them so successful? And can we learn from them about our own societies? This module explores the ecology and evolution of social insects around the globe. We will learn about the origins of sociality, communication, cooperation, task allocation, and collective decision making. We will also explore the impact that social insects have on their environment, from pollination services to ant agriculture and ecosystem engineering.", + "title": "Social Insect Societies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2259", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What does it mean to be healthy/normal? How does disease impact us and society? We will follow the life of a human from health and normalcy, to abnormality and different stages of pathogenesis, which we have defined as prevention, diagnosis and treatment. Finally, we will discuss end of life care and decisions. All these are discussed in terms of individuals, society (community or governments) and the newest scientific breakthroughs, ultimately to reflect on the pertinent question of this seminar - on health, disease and the human condition.", + "title": "Health and Disease", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC2260", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We study the design and rigorous analysis of algorithms and data structures.\nTopics may include dynamic programming, Fibonacci heaps, graph\nalgorithms, string algorithms, parallel algorithms, and concurrent data\nstructures.", + "title": "Advanced Algorithms and Data Structures", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course embarks on a deep study of the real numbers and functions of a\nsingle real variable. Fundamental properties of real numbers \u2013 arithmetic,\ndistance, limit, convergence, order \u2013 are developed from scratch. From\nthere, the course delves into the inner workings of calculus, the general\nnotions of continuity, differentiability, measure, and integration, for\nfunctions of one real variable.", + "title": "Introduction to Real Analysis", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a first course in the quantum mechanics of atoms and molecules, their\nchemical bonds and their interaction with radiation. It will cover the basic\nelements and techniques in quantum mechanics, the electronic structure of\natoms and molecules and chemical bonds, spectroscopy and quantum\ntransitions in atoms and molecules.\n\nWithin the Physical Sciences major, it will count toward pathways in\nchemistry, materials science, nanoscience, chemical physics, or related fields.", + "title": "Quantum Chemistry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This first course on quantum mechanics introduces students to the\npostulates of quantum theory and then applies it to discuss problems like\ntwo level systems, quantum harmonic oscillators, the variational principle\nand the WKB approximation.", + "title": "Introduction to Quantum Mechanics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces the basic concepts of electrodynamics, taught with\nthe full mathematical and physical rigor necessary for subsequent courses on\nthe subject. Topics typically include electrostatics and magnetostatics, both\nin free space and in media, dynamics as described by Maxwell\u2019s equations,\nelectromagnetic waves, optics, and simple relativistic phenomena.\nIntroduction to electrodynamics is a core course for the Physics pathway within the Physical Science major.", + "title": "Introduction to Electrodynamics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR23", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Experimental physics will provide students with hands\u2010on practical experience using techniques to investigate scientific problems that draw on concepts from different branches of physics (e.g. quantum, statistical, thermal, solid state and optical). It aims to enhance their understanding and apply scientific knowledge learnt in class. Emphasis will also be placed on the development of analytical skills in measurement and analysis.", + "title": "Experimental Physics Laboratory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a broad foundation to Biochemistry, the study of the\nchemistry of life. Students will learn about the chemical and molecular\ncomposition of a cell, the structures, functions and transformations of\nbiomolecules and the flows of energy and information in biological systems\nat the biochemical level. This course will be particularly important for\nstudents intending to pursue further studies and/or future careers in medicine, veterinary, biomedical, pharmaceutical or forensic sciences and\nbiotechnology.", + "title": "Biochemistry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3214", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course (a requirement for Life Science majors) is meant to prepare\nstudents for their capstone projects, in some cases quite specifically through\ntargeted readings and group presentations of relevant scientific literature,\nbut more generally through practice in close and critical assessment of\nscientific papers, the generation of new research ideas based on those\npapers, and the honing of presentation skills.", + "title": "Research Seminar", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3215", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "While YSC3207 focused on programming in different languages and tools to\nhelp software development, students at this point do not really understand\nhow an Operating System works.\n\nOperating Systems are also actually programs and as such, follow the same\nrules and logic on a lower level. Computer Scientists should have enough knowledge to understand these low level mechanisms in order to be able to\ndevelop on any given platform.", + "title": "Programming Operating Systems, Interfaces & eXtras", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3217", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a first course in equilibrium statistical thermodynamics. It begins with examining the concepts of probability, microstates and macrostates in understanding thermal phenomena, linking these to entropy, the Boltzmann factor, ensembles, and the partition function.\u00a0\u00a0We apply these concepts to elementary physical and chemical models such as classical and quantum gases, solids, phase transitions, chemical reactions, solute\u2010solvent interactions, polymer structure. Within the Physical Sciences major, it will count toward pathways in biophysics, chemistry, chemical physics, materials science, nanoscience, physics, or related fields.", + "title": "Statistical Thermodynamics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3224", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to introduce the students to the principles of structure and reactivity of: 1) main group (including noble gases), 2) transition metal, and 3) rare earth metal compounds. The reactivity patterns of select classes of inorganic compounds and their relevance in the natural world (e.g. biological systems, atmosphere) will also be discussed.", + "title": "Inorganic Chemistry with Laboratory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will teach principles of software engineering and object oriented programming as well as UI and Android. In this module, students will first learn about the Java language and the object paradigm (field encapsulation, object, polymorphism), as well as useful tools for software development (e.g. version control, debugging). The next part of the module will focus on how to write code properly and work on larger scale projects using MVC framework. Finally, the last part of the course will cover User Interfaces in Java, Threads, synchronization and Android Programming.", + "title": "Software Engineering", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3232", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course fulfils one of the upper division requirements for the Life Science Major. It is considered one of the \u201cFoundations of Advanced Biology\u201d options, of which majors must take four. This course examines the central dogma of biology and how gene products are applied to basic intracellular mechanisms. The focus will be on protein targeting to organelles, membrane and vesicle trafficking, cell-cell communication, the cytoskeleton, adhesion, and the cell cycle. The course will outline how recombinant DNA techniques have been used to dissect cellular processes and will draw on basic experimental results to describe experimental design and its limitations.", + "title": "Cell Biology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3233", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This discussion seminar-style biophysics course will emphasize problem-solving skills (including computational) and laboratory techniques, focussing on applications of abstract concepts like statistical thermodynamics to biophysical phenomena, and the physics of soft condensed matter to \"squishy\" bio-molecules. Topics considered include protein folding, binding equilibria, self-assembly of biomolecules, membrane energetics. Some questions addressed are: why are lipids essential to life, what drives ions across membranes, how do proteins bind to receptors, how can physics of biopolymers (DNA, proteins) explain their function, how can we explain spontaneous order formation in biology?", + "title": "Principles of Biophysics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3234", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to examine animal behavior from a biological, and especially an evolutionary, point of view. We will explore the causes and consequences of animal behaviors, including topics such as: optimality and foraging; predation and risk; territoriality and aggression; mating competition; parent-offspring and sibling conflict; personality and behavioural syndromes; living in groups; altruism, mutualism, and eusociality. We will also address some questions of the evolution of cognition in animals. Students will discuss the primary literature, write and evaluate individual review papers, and take an occasional exam.", + "title": "Animal Behaviour", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3235", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Using the Coq Proof Assistant, we propose an integrated account of specifications, unit tests, implementations, and properties of functional programs, through a variety of examples.", + "title": "Functional Programming and Proving", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3236", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Algebra is the study of mathematical symbols and the rules used to manipulate them. Throughout the history of mathematics, algebraic methods have been developed to solve equations using simple, but important, properties of numbers that make meaningful calculations possible. Those properties arise in a variety of other settings, however, allowing us to make algebraic arguments in a significantly broader context. This course introduces modern algebra \u2014 specifically the mathematical objects called groups and rings \u2014 through a rigorous exploration of familiar notions, including permutations, symmetries, polynomials, and matrices, resulting in a cohesive, unifying theory with far-reaching applications throughout the natural sciences.", + "title": "Introduction to Modern Algebra", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3237", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course fulfils one of the upper division requirements for the Life\nScience Major.\nThis course examines how cells and genes collaborate to establish\nmulticellular organisms. The course will focus on vertebrate and\ninvertebrate embryology emphasizing cellular, molecular, and genetic mechanisms. Topics include descriptive embryology, developmental\ncontrol of gene expression, mechanisms of differentiation and\nmorphogenesis, stem cells, and developmental genetics. The course will use modern molecular techniques and basic experimental results to describe how\nexperiments address developmental questions.", + "title": "Developmental Biology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the role of geometry in the emergence of\nperspective drawing during the Italian Renaissance. Through in-depth\ncomparisons of seminal treatises such as Euclid\u2019s Elements and Leon\nBattista Alberti\u2019s On Painting, students will rediscover the crucial ideas\nthat motivated the development of (non-Euclidean) projective geometry\nin seventeenth century Europe. No prior knowledge of geometry or\nfamiliarity with advanced mathematics is required.", + "title": "Geometry and the Emergence of Perspective", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3239", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Foundations of Applied Mathematics introduces important mathematical methods that are essential for treating a variety of problems in applied mathematics, which are useful in physics, chemistry, and economics. Topics include vector calculus, linear algebra, differential equations, complex analysis, Fourier series, and calculus of variations. The module will focus on aspects of each topic pertinent to the applied fields mentioned above.", + "title": "Foundations of Applied Mathematics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to complement the theoretical and experimental knowledge gained through course work and laboratory experience by introducing students to computational methods in molecular biology. The focus will be on applying modern bioinformatics and modelling methods to large datasets encouraging a hands on approach to big data processing.", + "title": "Computational and Systems Biology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Agent-based modelling (ABM) simulates the behaviour of interacting individuals. At Oxford, the lecturer has taught it to students in biology, business, archaeology, economics, anthropology, etc. He has used ABM to collaborate with research projects that range from modelling religions, cancer cells, the Spanish Flu, the French Burka ban, fishing, farming, immigration, and medieval populations. The goal of this module is to introduce the students to ABM and to lead them into a term project that applies ABM to a concrete domain.", + "title": "Agent-Based Modelling", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The aim of this course is to give an overview of Bayesian parametric modelling. Students will learn how to specify a Bayesian parametric model and compute posterior distributions. They will be able to perform inference (point and interval estimation and test) in a Bayesian framework. By the end of the course students will be able to solve simple data analysis problems in a Bayesian framework, employing, for example, regression and model choice techniques. They will also be able to implement these models using statistical software (R and OpenBugs), and write reports for their analysis.", + "title": "Bayesian Statistics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will provide a thorough understanding of the fundamentals required to understand modern astrophysical research. Topics covered will include stellar structure and evolution, the interstellar medium, radiative processes, galactic structure and dynamics, and cosmology. These topics will be introduced in the context of their use for some of the most active fields of astronomy research. This course will also include several observational labs where students will learn to analyse astronomical data across the electromagnetic spectrum.", + "title": "Modern Astrophysics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the role of genomes in inferring human history and prehistory. Through secondary texts and primary literature, we will study what is known about human origins in Africa, East Asia, Europe, India, New World, and Oceania as inferred from contemporary and ancient genomes. We will learn how to analyse genomic data; make phylogenetic inferences of historical patterns; and how to apply phylogenetic methods to cultural traits, such as inferring language trees from shared lexical cognates. Finally, we will explore how genomics impacts issues of health, sex, inequality, and identity.", + "title": "The Genomics of Human History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module in statistical inference, which is essential for many Mathematical, Computational and Statistical Sciences (MCS) modules, as well as in other scientific disciplines, such as Physics and Economics. The course covers the basic principles of frequentist and likelihood based inference.", + "title": "Statistical Inference", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3249", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will offer a broad survey of immunology by examining the central mechanisms of host-pathogen interactions. The focus will be on acquired immunity in higher vertebrates, but will cover innate immunity and ancient immune systems looking at the cellular and molecular basis of immunity. There will be examples from human biology in health and disease. This course fulfils one of the upper division requirements for the Life Sciences Major.", + "title": "Immunology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the principles of conservation ecology, including population, community, ecosystem-level, and genetic approaches. Students will learn the theoretical underpinnings of ecology and studies of small populations, as they pertain to conservation biology. Students will address classic case studies in the discipline as well as explore relevant examples from Singapore and around Southeast Asia. An emphasis of the module is conservation in an increasingly urban world.", + "title": "Conservation Ecology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3251", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data Science techniques are ubiquitous in modern mathematical applications. The course will cover topics related to this ever-emerging field, in particular: Simulation, Monte-Carlo methods, Optimisation. Students will learn how to program these methods themselves. Emphasis will be given on practical applications, e.g. in Finance, Biostatistics, Engineering, Industry. At the same time the course will discuss the theoretical foundations of the methods.", + "title": "Statistical Computing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3252", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Known as the \u2018rainforests of the sea\u2019 coral reefs occupy <0.1% of the world\u2019s oceans yet they contain 25% of all the planet\u2019s marine species. Unfortunately, the very existence of coral reefs is threatened by climate change. In this module students will gain an appreciation for coral reefs, their ecology, the evolutionary process responsible for creating this incredible biodiversity, and the threats that climate change and humans pose to these fragile ecosystems. Additionally, we will examine sustainable practices and lifestyle choices that can help reduce human impact on these essential marine habitats.", + "title": "Coral Reef Ecology and Environmental Change", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will be a deep-dive into the topic of ageing. As the course is designed as a science course within the life-science major, the predominant perspective will be biological and biomedical. We will cover biological ageing and its medical consequences, mechanisms of ageing, including current and past theories on molecular causes of ageing, evolutionary theories of ageing and recent therapeutic developments. However, we will also explore historic perspectives, e.g. how current attitudes and strategies are related to the history of medicine. Finally, we will consider social, socio-economic and public health questions related to populating ageing.", + "title": "The Biology of Ageing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3255", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Molecular Biology is the study of the mechanisms by which genetic information is replicated, recombined, repaired, transcribed, and translated, and the various ways in which the expression of that information is regulated. Commonalities among bacteria, archaea, and eukaryotes highlight the unifying principles of life, while the difference between and within the groups attest to the roles of contingency and selection in the evolution of regulatory mechanisms. In addition to classical, mechanistic molecular biology, we will see how genomic analysis adds to our understanding by revealing the results of evolutionary drift and selection, subject to those mechanisms.", + "title": "Molecular Biology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3257", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-29T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Arthropods are the most abundant animals on Earth. Their diversity ranges from the tiniest ants to giant stick insects and includes species that are adapted to flying, swimming and crawling in every environment imaginable. They sometimes have a bad reputation as \u201ccreepy crawlies\u201d but arthropods are in fact absolutely essential for healthy ecosystems and our food security as well as impacting human health. In this module you will learn about the amazing diversity of arthropods, how they impact our lives in managed and natural environments, and their potential to save our future.", + "title": "Arthropods and the Anthropocene", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Environmental chemistry aims to introduce integrated chemistry concepts and illustrates how these principles relate to some of the public policies adopted at large. It aims to provide students from wide range of backgrounds to appreciate the chemistry of our natural world from an integrated perspective.", + "title": "Environmental Chemistry: How The Science Informs Our Policies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Plants and microbes interact with each other on different levels and in various ways. Plant-microbe interactions have played a vital role in shaping the ecosystems since the emergence of plants on the planet. This module will cover different types of plant-microbe interactions at general and detailed levels. The students will learn about the microbial infection mechanisms, establishment of symbiotic relationships, and how plant immunity system responses to different microbes. There will be discussions on the broad impact of plant-microbe interactions from evolutionary, ecological and economic perspectives.", + "title": "Plant-Microbe Interactions", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3260", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The name \u201cCancer\u201d is adapted from the Greek word \u201cCarcinos\u201d, or crab, due to the invading nature of cancer, as described by Hippocrates. Cancer is a multi-horned demon in the biosphere of disease and its complexity is immense and worth understanding. This module will provide historical and current understanding of the biological basis of cancer, determinants of the disease, and ways to prevent or reduce the risk of developing cancer, as well as conventional and new treatments to eradicate cancer. This course fulfils one of the upper division requirements for the Life Sciences Major.", + "title": "Cancer Biology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course aims to introduce the students to the physical chemistry concepts that are essential in understanding and investigating the molecular and macroscopic world. Students will also learn how quantum and computational chemistry can be applied in the prediction of molecular properties and its relevance to spectroscopy.", + "title": "Physical Chemistry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3262", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-ChemLab", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B", + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces the principles of relational database management systems. In particular, the Entity-Relationship approach to data modelling, the relational model of database management systems (DBMS) and the use of structured query languages (SQL) will be covered. The course also covers relational algebra and the use of SQL in a programming environment.", + "title": "Database Management Systems", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC3263", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-CR15", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces students to computational thinking as applied to problems in physical science. A selection of real-world problems will be chosen to illustrate problem formulation, solution development and interpretation as well as analysis of the solutions and data visualization. The selection of problems will tackle different types of approaches typically used in scientific computational thinking including probabilistic methods, deterministic methods, machine learning, and approximation methods. Emphasis will be given to analysing the accuracy and convergence of the computational technique, and also to the interpretation of numerical results and their limitation by understanding the level of approximation.", + "title": "Computational Methods in Physical Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3264", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1730", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1730", + "endTime": "1900", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Plants and microbes interact with each other on different levels and in various ways. Plant-microbe interactions have played a vital role in shaping the ecosystems since the emergence of plants on the planet. This module will cover different types of plant-microbe interactions at general and detailed levels. The students will learn about the microbial infection mechanisms, establishment of symbiotic relationships, and how plant immunity system responses to different microbes. There will be discussions on the broad impact of plant-microbe interactions from evolutionary, ecological and economic perspectives.", + "title": "Plant-Microbe Interactions", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC3360", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Physical Sciences Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the Physical Sciences major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Physical Sciences Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSC4101", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Life Sciences Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the Life Sciences major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Life Sciences Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSC4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Maths, Computational & Statistical Science (MCS) Capstone Project is a year-long 10-MC module, straddling two semesters that students in the MCS major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, under the guidance of a faculty supervisor. The Capstone is intended to: \n\u2022 give students the opportunity to work independently;\n\u2022 encourage students to develop and exhibit aspects of their ability that may not be revealed by course work or a written examination;\n\u2022 foster skills and attributes that will be of continuing usefulness in their later career.", + "title": "Maths, Computational & Statistical Sci Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSC4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Principles of structure and reactivity of transition metal containing organometallic compounds. Homogeneous catalytic chemistry, synthesis of organometallic compounds, mechanisms of organometallic reaction chemistry.", + "title": "Organometallic Chemistry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This applied mathematics module introduces mathematical tools related to harmonic analysis and sparse approximation that form the basis of many classical and modern data science and signal processing methods, e.g. in imaging, audio signal processing or spectroscopy. Specific topics include data transformations in finite and infinite dimensional vector spaces (e.g., bases of eigenvectors, Fourier series, Fourier transform, frames, and wavelets) that reduce complexity and reveal structural properties, as well as optimization methods to utilize those properties to solve a variety of data science tasks. The development of the mathematical theory is combined with practical applications using Python or R.", + "title": "Mathematical Signal Processing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4206", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0830", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0830", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced undergraduate course introduces students to some of the foundational concepts in condensed matter physics including the idea of crystals; two-dimensional lattices; space group symmetries; Electronic structure; Bloch\u2019s theorem, Density of States, and simple models of the effects of interactions and disorder in realistic systems.", + "title": "Solid State Physics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Monte Carlo simulations are computer experiments that solve numerical problems by using random number generators. At first glance, it may seem bizarre to use a computer, arguably the most accurate and deterministic of all human inventions, to perform random experiments. However, Monte Carlo simulations are nowadays an essential component in many quantitative studies. They are used in the natural sciences, industrial engineering, finance and statistics. This course teaches how to write elegant and efficient Monte Carlo simulations for concrete real-world examples. You will also learn the theoretical foundations of pseudorandom number generators, Markov chain Monte Carlo and the Metropolis-Hastings algorithm.", + "title": "Monte Carlo Simulations in Science and Statistics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course (that counts towards the Physical Science major) is meant to expose students to current research areas in physical science and can be used to prepare for capstone projects though targeted readings and group presentations in specific areas of physical science. Critical assessment of scientific papers could lead to the generation of new research directions based on those papers.\n\nThis will be a year-long 5 MC course (i.e. 2.5 MC each semester).", + "title": "Physical Sciences Research Seminar", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4209", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course deals with the theory of functions of a complex variable. The topics to be covered are the Cauchy-Riemann equations and power series, the properties of analytic and entire functions, such as the maximum-modulus principle and the open mapping theorem, line and contour integrals and the residue theorem. If time permits, applications to boundary value problems for partial differential equations will also be treated.", + "title": "Complex Analysis", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4210", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to be an advanced research seminar which will allow students to engage with the latest research in the overlapping and interacting fields of Ecology and Evolution, with a focus on Behavioural Ecology. By understanding how evolutionary principles interact with ecological conditions, we are able to elucidate the mechanisms that shape natural systems. The focus of the course will be on analysis of current primary literature in Behavioural Ecology. Students will work on critical analysis of scientific research articles, scientific writing and presentation. This course fulfils one of the upper division requirements for the Life Science Major.", + "title": "Adv Topics in Ecology & Evolution: Behavioural Ecology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4211D", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced seminar focussing on the critical reading and discussion of scientific papers in molecular biology, defined here as the study of the mechanisms by which genetic information is replicated, repaired, transcribed, and translated, the ways in which the expression of that information is regulated, and the evolutionary origins of these molecular strategies. The papers to be discussed will highlight key current problems in molecular biology as well as important experimental and conceptual approaches. The emphasis, though, is in developing skills in reading the primary literature, and in presenting and discussing scientific information effectively.", + "title": "Advanced Topics in Molecular Biology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4211E", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module involves statistical and computational analyses of a variety of problems using real data. It emphasizes methods of choosing and acquiring data, assessing data quality, and considers statistical and computational issues posed by extremely large data sets (Big Data). The course requires initiative and independent work both individually and in small groups, and includes extensive computations using R.\n\nPre-requisite: YSC2230 (Probability and Statistics) OR YSC2210 Data Analysis and Visualization (DAVis) with R, or their equivalents.\n\nThis module will count as an advanced module for the MCS major.", + "title": "Statistical Case Studies (with R)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4212", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces the basic ideas of quantum information and computation (QIC), i.e., to use quantum mechanical systems to perform information-processing tasks. QIC is a multi-disciplinary field, grounded in physics, but with many connections to mathematics and computer science. The course will focus on theoretical concepts and developments, and will provide the foundations for more advanced and/or topical quantum information courses. Knowledge of basic linear algebra will be assumed. Prior exposure to quantum mechanics is preferred but not required.", + "title": "Theory of Quantum Information and Computation", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4214", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1330", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-27T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Machine learning is a collection of techniques where computers can learn from data without being explicitly programmed. For instance, when we train a program using human-face image data, it should be able to locate faces in an image; yet, if we train the same program using flower data, it should be able to locate flowers in an image, without explicitly changing the program itself. This module particularly will focus on statistical machine learning, which relies heavily on probabilistic and statistical analysis. Programming skill in python is compulsory.", + "title": "Machine Learning", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4216", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Mechanised Reasoning studies how mathematical logic is used to reason about, and in, computational systems, including potential applications to areas such as computer reliability and security. Possible topics include type systems, verification, formally certified software development, model checking, machine-checked proof, and semantic models.", + "title": "Mechanised Reasoning", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "From synthetic to natural macromolecules, we encounter polymers everywhere and everyday. This course explores the multitude of synthetic techniques available and discusses how structure defines function. Topics include condensation and chain (anionic, cationic, radical) polymerizations, dendrimers, controlling molecular weight, ring opening, and biopolymer syntheses. Fundamentals of composition and physical properties of polymers, and methods of characterization are also covered.", + "title": "Polymer Chemistry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The focus of this course is organic chemistry as practiced nowadays with all its complexity and beauty revealed through primary literature. Building on the foundations of YSC2224 Organic Chemistry with Laboratory, we shall look closely at reaction mechanisms and catalysts, learn about important but short-lived chemical species, and practise the art of designing synthetic strategies to build difficult molecules in efficient or creative ways.", + "title": "Advanced Organic Chemistry", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Much of modern science and mathematics is expressed in the language of differential equations. Population models in ecology, financial growth, heat conduction, and water waves are a few examples. In this course, you will solve the classical linear ordinary and partial differential equations.\n\nStudents will assemble a toolbox of mathematical techniques to solve initial and boundary value problems, including integrating factors, separation of variables, and Fourier series.", + "title": "Ordinary and Partial Differential Equations", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course on quantum mechanics follows YSC3210 Introduction to Quantum Mechanics and looks at the application of quantum mechanics to time-independent and time-dependent perturbation theory, scattering theory including scattering matrices, partial wave analysis, Born approximation, the adiabatic theorem and Berry phase and Berry curvature.", + "title": "Advanced Quantum Mechanics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced undergraduate course will introduce students to the occurrence of chaos in physical systems. Topics to be covered include typical chaotic models such as the kicked rotator, Poincare surface of section, Action-angle variables, Kolmogorov-Arnold-Moser Torii, Lyapunov exponents, fractal dimensions, and quantum chaos.", + "title": "Chaos Theory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course introduces the basic ideas of relativity, with an emphasis on physical phenomena in curved spacetime. Special relativity will be reviewed, and the basic concepts and mathematics of general relativity introduced. We will then turn to physics in flat or curved spacetime. Physical phenomena covered may vary from year to year, but can include a selection from mechanics, electrodynamics, kinetic theory, quantum mechanics, gravitational lensing, black holes, gravitational waves, etc. The course teaches the physical relevance of the theory of relativity, and prepares the student for an advanced course in general relativity. Prior exposure to special relativity is assumed.", + "title": "Physics in Curved Spacetime", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4223", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1000", + "endTime": "1130", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Data science has revolutionized modern life and technology using a broad spectrum of methods from Mathematics, Statistics and Computer Science. Intrinsically, mathematical and statistical techniques are married to modern computing power to provide accurate and complex tools to capture real life phenomena. In this course, we build on YSC2239 Introduction to Data Science to develop a deeper understanding of Data Science methods, learn more advanced tools, and apply them in more challenging contexts.", + "title": "Applied Data Science", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "2100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What do (1) stock markets, (2) the weather, (3) genetic mutations and (4) the movements of a drunkard have in common? All four phenomena are subject to a certain degree of randomness. Such \u201cstochastic processes\u201d are a vibrant area of interdisciplinary research, ranging from mathematical finance over biology to predicting waiting times in supermarket queues. In this course, you will learn the mathematics behind the most common models of stochastic processes: Markov chains, Poisson and renewal processes, and queuing theory. We will prove the most important mathematical results and apply them to realistic problems.", + "title": "Stochastic Processes and Models (SPaM)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to complement the theoretical knowledge gained in advanced molecular and cell biology courses by applying modern methods to study cells alone or in multicellular context. The focus will be on applying microscopy tools to study basic cellular behaviours in vivo, learning advanced optical methods and optimising analysis and interpretation of large imaging data sets.", + "title": "Advanced Methods in Cell Biology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4226", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-E6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-E6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Computer vision is Artificial Intelligence (AI) that focuses on images and video as the input. Images and videos are everywhere and contain rich visual information. However, how can we extract that information? The goal of computer vision is to do this task. In other words, it attempts to make computers work like human eyes: to understand and recognize the world through images or videos. Human visual perception, after millions of years of evolution, is extremely good in understanding and recognizing objects or scenes. To have similar abilities, algorithms based on various cues and techniques (including machine learning) have been developed, and this course is about some of those algorithms.\n\nComputer vision is the most important application of deep learning. Compared to other types of data, images and video are more complex in terms of extracting the underlying information. Recently, it has been shown that deep learning is effective in addressing the problem. Thus, in this course, we will also learn deep learning, particularly in the context of solving computer vision problems.", + "title": "Computer Vision and Deep Learning", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Data science has revolutionized most aspects of our lives. This is not different in the world of Finance, where machine learning algorithms are being used more and more by banks, asset management firms, hedge funds, etc. However, the way in which Data Science is used in Finance is oftentimes different than the way it is used in other fields. In this module, we will explore ways in which Data Science is applied in Quantitative Finance. We will explore it from both, theoretical and practical points of view, playing with real financial data and building python models.", + "title": "Data Science in Quantitative Finance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSC4228", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 30, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course in neuroscience offers students an opportunity to explore the current state of knowledge in selected topics in neuroscience. To develop a deeper understanding of the nervous system and cognition at a molecular level, the methodology used, and the disorders of the brain, students will read primary literature, present journal articles to peers, and participate in group discussion with specialist practicing neuroscientist guest lectures.", + "title": "Molecular Neuroscience - Genes, Brains, and Behaviour", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4229", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "We study the theory of programming languages and their implementation. Topics may include automata, semantics, verification, interpreters, compilers, and runtime systems. This course includes a substantial project.", + "title": "Programming Language Design and Implementation", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4230", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-03T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover main concepts and programming paradigms for developing parallel concurrent and distributed systems, which is vital for implementing high-performance applications in areas such as machine learning, cloud computing, and databases --- areas with an extremely high demand for well-trained software engineers. \n\nThe course contents will include both practical (about 70%) as well as a theoretical component, giving the students the basis to design concurrent algorithms, and reason about their correctness, as well as to be able to design experiments for estimating the performance of the designed algorithms.", + "title": "Parallel, Concurrent and Distributed Programming", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Updated May 2022 (following feedback from CC):\nComputing is now an integral part of life and business. A college student should therefore graduate with some understanding of what is not computable, and the complexity of what is computable. The student will learn from this module: \n\n(a) some standard models of computation, so as to gain an understanding of what can or cannot be computed by various computing devices; \n(b) some reasoning techniques commonly used in computer science, including nondeterminism, diagonalization, simulation and reduction; and \n(c) some mathematical formulation of objects in computer science, so as to study their properties.", + "title": "Theory of Computation", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4232", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course focuses on software verification and validation throughout the software life cycle, including reviews, inspections, walkthroughs, testing techniques (functional and structural), levels of testing (unit, integration, system, and acceptance), and testing tools (static and dynamic).", + "title": "Software Verification and Validation", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Hardware Design and Micro-Architecture module covers the concepts and methodologies required to build digital circuits. This is an advanced module that builds upon knowledge and experiences with compilers, operating systems and computer organisation. Through the design of a fully functional microprocessor, students will learn combinational and sequential logic, Hardware Description Language, and advanced micro-architecture principles.", + "title": "Hardware Design and Micro-Architectures", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4234", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce the important concepts and results in graph theory. The related algorithms will be also covered. Graph Theory has many applications in other areas of mathematics, data science, and computer science. This course has been deliberately designed with minimal prerequisites in order to allow interested students from data science and computer science backgrounds to enrol.", + "title": "Graph Theory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4235", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module covers several current and advanced topics in optimisation, with an emphasis on efficient algorithms for solving large scale Machine Learning problems. Topics include first and second order methods, stochastic gradient type approaches and duality principles. Many relevant examples in statistical learning and machine learning will be covered in detail. The algorithms will be implemented using the Python programming language and a significant portion of the lectures will be devoted to practical implementations of the discussed methods.", + "title": "Optimization for Large Scale Machine Learning", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSC4236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Yale-NUS Summer Institute in Leadership and Global Strategy has been designed to offer Yale-NUS students the chance to consider pressing global issues and to offer a way of thinking or framework to address them. Adapted from Yale\u2019s iconic Brady-Johnson Program in Grand Strategy, the structure of this summer seminar will introduce students to the theory and practice of grand strategy from different analytic perspectives. With a focus on the environment, public health and the global movement of peoples, we will consider how to frame priorities to address these issues.", + "title": "Global Strategy and Leadership", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSP1201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Economists are mainly concerned with the study of choice: choices made by consumers (buy the latest gizmo or save the money?), firms (how much to produce and what price to charge?) and policy-makers (bailout the banks or reduce income tax rates?) are all within the purview of economic analysis. This module serves as an introduction to economics and the basic mathematical tools for economic analysis. It covers topics in microeconomics, macroeconomics, univariate calculus, and systems of equations.", + "title": "Principles of Economics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS1203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Game theory studies strategic situations where the involved parties impact each other\u2019s welfare through their individual decisions. In such situations, it becomes necessary to think about how others will act while trying to further one\u2019s own goals. Game theory has wide ranging applications and is used to model strategic interactions in both human and biological worlds. This course introduces students to concepts in game theory and their applications.", + "title": "Introduction to Game Theory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS1205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to the study of political institutions, processes, structures, policies, and outcomes, both within and across countries. Students will learn how to understand and evaluate the similarities and differences between political systems, as well as the intricacies of specific case studies. The course will introduce students to some of the key themes, methods, and questions used in comparing polities across time and space.", + "title": "Introduction to Comparative Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS1206", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Why are some behaviors, differences, and people considered deviant or stigmatized while others are not? This introductory sociology module examines several theories of social deviance that offer different answers to this question. We will focus on the creation of deviant categories and persons as interactive processes involving how behaviors are labeled as deviant, how people enter deviant roles, how others respond to deviance, and how those labeled as deviant cope with these responses.", + "title": "Deviance and Conformity: An Introduction to Sociology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS1208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will introduce students to themselves and others as viewed through the lens of psychology. We will present and explore the scientific study of human (and animal) behaviour, seeking to understand why we think, feel, and act as we do. The goal is to build a firm foundation for those wishing to major in psychology while simultaneously providing an interesting and revealing elective to those visiting psychology on their way to other disciplines.", + "title": "Introduction to Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2201", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to concepts, theories, and cases associated with the study of international politics. We will study contemporary scholarly texts and examine empirical evidence relating to key historical experiences such as the Cold War, which inform contemporary international relations theories.", + "title": "International Relations", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2202", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Microeconomics analyses individual decision making and its implications for economic outcomes. Here the term \u201cindividual\u201d is used broadly to include individuals, households and firms. We deconstruct the demand-supply model by analyzing consumers' choices as outcomes of rational preference maximization and producers' decisions as results of profit maximization in various market structures. We study how equilibrium of demand and supply in competitive markets generates efficient outcomes. We then analyze a variety of instances when markets fail to be efficient. This course will place special emphasis upon mathematical foundations of theoretical models. In particular, we will study and apply techniques in multivariate calculus, and unconstrained and constrained optimization.", + "title": "Intermediate Microeconomics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2203", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T01:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1530", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1530", + "endTime": "1630", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers students an introduction to the central themes and debates in Ancient Greek Political Philosophy through a careful reading of Plato\u2019s Republic and Aristotle\u2019s Politics. Questions and themes include: How should I/we live? What is justice, freedom, and equality? What are the virtues of citizens and rulers? What is the relationship between the individual and the state? How should we envision the relationship between morality and politics? While understanding the works of Plato and Aristotle within their historical context, we will also be interested in understanding how they can help us to think about politics in contemporary societies.", + "title": "Ancient Greek Political Philosophy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides a general introduction to the main currents in social theory from World War II up to the present day. It covers key works from across the social sciences by seminal thinkers such Edward Said, Albert Hirschman, Martha Nussbaum and Pierre Bourdieu. The course is in three parts. Part I asks \u201cwhat is the social\u201d and \u201cwhat can we know about it?\u201d Part II examines competing conceptualizations of society in terms of markets, culture, institutions, social fields and actor networks. Part III looks at rival theorizations of public life, human freedom, ethnicity and modernity.", + "title": "Contemporary Social Theory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Does going to college increase your earnings? Does height have an effect your\nwage? Do episodes like the haze 2013 in Singapore have a major impact to the\neconomy? This course introduces students to the statistical methods that economists use to answer this and similar questions. More generally, this is an introduction to the methods used to test economic models and examine empirical relationships, primarily regression analysis. Although much of the course will focus on the mathematical development of the methodology, emphasis is placed on learning by studying and replicating specific case studies that address current economic questions.", + "title": "Econometrics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CompLab", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-24T01:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CompLab", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CompLab", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-28T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will study various strategies that firms deploy when facing market competition and the impact of such strategic behaviour on market outcomes like prices, efficiency, market structure, innovation etc. Examples of firms\u2019 strategies include price discrimination, product differentiation, advertising, collusion, mergers and entry deterrence. We will analyse theoretical models of imperfectly competitive markets to gain insights into firms\u2019 behaviour and functioning of real-world markets.", + "title": "Firms' Strategies and Market Competition", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2212", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-23T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Economics is concerned with the study of how individuals make decisions and how these decisions affect, and in turn are affected by, the distribution of limited resources in society. This course introduces students to the formal analysis of the economy as a whole. The goal is to understand how decisions by the firms, consumers and institutions affect the markets, and the welfare implications of such choices for society. Special attention is placed on the effect of government and monetary policies on the economy. Emphasis is placed upon the mathematical foundations of theoretical models.", + "title": "Intermediate Macroeconomics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1300", + "endTime": "1400", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-12-01T01:00:00.000Z", + "examDuration": 180 + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "2", + "startTime": "0930", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-LT1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The purpose of this course is to provide students with a broad-based introduction to the sociological study of religion. Students will become acquainted with the dominant theoretical perspectives in the field (constructivist, Durkheimian, and Weberian) as well as with the various methods sociologists employ (ethnographic, statistical, and comparative). Course readings will focus on various themes (e.g., secularization, gender, and nationalism) and on many regions of the world (e.g., the America, Asia and Europe).", + "title": "Sociology of Religion", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is concerned with research methods and the use of statistics in psychology. As such this is a skills oriented course aimed at preparing students for taking the required laboratory course in psychology as well as doing their senior capstone project. We will be covering research methods and statistics simultaneously since they are closely intertwined.", + "title": "Statistics and Research Methods for Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2216", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR19", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2023-05-04T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ideas fuel politics and politics structures the world of ideas. To engage\neffectively in these worlds requires a grasp of the political concepts that\nengender consensus and conflict. This course uses history of ideas, legal\ndocuments, and contemporary philosophy to introduce students to core\nconcepts that scaffold institutions and practices (e.g., democracy,\nauthoritarianism, republicanism, socialism) as well as concepts which shape and are shaped by those institutions and practices (e.g., power, empire,\norder, liberty, equality, right). Using a case\u2010based approach in class, we\nexplore how political conflict and action grow from contestations over the\nmeanings and consequences of these concepts.", + "title": "Political Concepts", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This class introduces students to the study of international political economy.\nStudents will examine the structure of the global political economy, the drivers\nand implications of globalization, and the role of international economic\ninstitutions in driving political and economic outcomes. Among others, this\nclass will cover topics such as international financial institutions, trade, financial crises, foreign aid, economic development, energy politics, and illicit\ntrade.", + "title": "International Political Economy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2218", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Students taking this course acquire foundational concepts in Urban Studies, including: centrality (cities as economic and demographic concentrations and extensions); relationality (cities in global and regional networks); positionality (cities as pluralistic units of experience and meaning); sustainability (cities as sites of human-environment interface); and collectivity (cities as sites of collaborative problem solving and collective action). It is a required course in Urban Studies, preparing students for Urban Theory as well as other urban thematic courses. It should be the first course students intending to major or minor in Urban Studies take, and must be completed prior to the Senior Year.", + "title": "Adelaide to Zhuhai: Cities in Comparative Perspective", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2220", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers students an in\u2010depth learning experience in the field of\nSecurity Studies. The topics on offer will vary from year to year, but will\npertain to specific questions, debates, and literatures in the field of\ninternational security.\n\nThe topics covered within the course will be detailed in the syllabus given to a student in advance of the course. The faculty teaching the course will\nchange and as such topics will change according to their specializations and\ninterests.", + "title": "International Security", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2221", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introductory survey of the comparative study of religion and religious thought. We will explore how we categorize and think about religion, compare and contrast religious systems from around the world, and examine how religion and ritual are shaped by and shape our thought and our society.", + "title": "Religion, Ritual and Magic", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2223", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will offer an introduction to linguistics and the anthropological study of language. The first half of the course will deal with the basics of the formal study of language in phonetics, phonology, syntax, semantics, and pragmatics. The second half of the course will consider linguistic and wider communicative practice within its social, cultural, and historical contexts. Participants will pay special attention to the relationship between language and power, both in terms of social structure and within the development of the larger political worlds in which we live. This course assumes no pre- or corequisite and serves as a survey course for the anthropology major.", + "title": "Language, Culture, Power", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2226", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Offers students an introduction to the disciplinary concerns, practices, theories, and methods common to Cultural Anthropology\u2014an academic discipline that takes as its subject the study of human cultures and cultural difference. Topics concerning anthropological subfields such as kinship and family, politics, economy and exchange, gender and sexuality, medicine and health, food & food security, religion, education, media, and more, will be addressed. Required of all majors (starting with the Class of 2019).", + "title": "Introduction to Anthropology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Introduction to the peoples and cultures of Southeast Asia, with special emphasis on the challenges of modernization, development, and globalization. Southeast Asian history, literature, arts, belief systems, agriculture, industrialization and urbanization, politics, ecological challenges, and economic change.", + "title": "Modern Southeast Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Whether as a pleasurable pastime, a medium of self-expression, a target of activism, or a topic of academic inquiry, food seems to be on everyone\u2019s mind these days. A topic long ignored in formal academic research, the recent revitalization of food studies has sparked new critical dialogues within and among disciplines. This course offers an overview of key perspectives on the study of food, including food culture, food security, and food politics/policy, drawing from anthropology and closely related disciplines. It is designed for anthropology majors, and is of relevance to students of other majors with an interest in food systems.", + "title": "Are you what you eat? Anthropology of Food and Eating", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course challenges the widespread myth of Japan as a \u201chomogeneous\u201d society by exploring the conception and practice of diversity in Japan. We will closely examine how social difference and marginality have been produced and experienced over time, looking at the ethnic and minority status of the aboriginal Ainu, Okinawans, resident Chinese and Korean communities, and Burakumin (descendants of historical outcastes), as well as other groups whose non-normative practices or identities mark them as minority groups, including victims of nuclear radiation, LGBTQ populations, the disabled and mentally ill, migrant and irregular workers, and the homeless.", + "title": "Ethnic Diversity in Japan", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to the comparative study of politics and law in different cultures across the world, past and present, focusing on the basic concepts necessary to analyse these, among them, the state, sovereignty, civil society, power, justice, rights. Based on examples drawn from Africa and Asia, and the Americas, the course will examine critically many of the taken for granted terms of public discourse, among them, democracy, and explore the historically changing relationship between government, politics, and judicial processes.", + "title": "The Anthropology of Politics and Law: An Introduction", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This class examines the changing place of medicine in the long history of modernity. Focusing on key moments (the birth of the clinic, the colonial encounter, the consolidation of medicine as profession, the age of genomics and bio-capital, and the empire of global health) it explores the distinctive role of medical knowledge and practice in the making of modernist persons, identities, economies, and political vocabularies. Readings are drawn from anthropology and the wider social sciences, with cases from Africa, Asia, Europe, and North America. The course is a mix of lecture and discussion.", + "title": "Medicine, Culture and Modernity", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course is meant for students who wish to familiarize themselves with the principles of investment analysis, and to understand how economic concepts feed into investment processes. It provides students with a foundational understanding of the structure of global public markets (equities, bonds and currencies), key investment theories and tools for analysing assets. In particular, it familiarizes students with concepts from macro-, micro- and behavioural economics that are relevant for making investment decisions. The course is designed from the perspective of an investment professional and draws on real-world examples and applications.", + "title": "Investment Analysis and Economics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2233", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is the purpose of a company? Is it only to make money? The Good Company will investigate the changing nature of the modern corporation and its impact on society, both good and bad. We will also develop an understanding of ethical investments and the role such firms play in impacting the behaviour of modern corporations. Shortcomings in the current ethical investment framework will be covered, with a new paradigm (The Good Company Index) analysed as an alternative.", + "title": "The Good Company", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course provides a comprehensive examination of societies and politics in Southwest Asia and North Africa (SWANA). It focuses on the construction and the dynamics of the state system, major ideologies, geopolitics and socio-political trends. The course follows current developments in the region with relation to regional, national, ethnic and communal dispute.", + "title": "Southwest Asia and North Africa: Societies and Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2236", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to the history of nuclear crises and nuclear proliferation. Why were nuclear bombs dropped on Hiroshima and Nagasaki? What is the effect of nuclear weapons on interstate crises? Why do states acquire nuclear weapons? Students will gain a better understanding of the role of nuclear weapons in international relations, the history of the Cold War, and new challenges in nuclear politics. Some of the references use game theory or statistics, but no prior knowledge of such methodologies is required.", + "title": "Nuclear Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an introduction to game theory and its applications to international relations. Game theory is a set of mathematical tools used to understand strategic interactions, where one person's best course of action depends on the behavior of others. Students will become familiar with the \u201cscience\u201d and the \u201cart\u201d of game theory, discussing how to solve games and how to create them to represent strategic situations and shed new light on political events. Applications are taken from international relations, with a review of the First World War, the Second World War, and the Nuclear Age.", + "title": "Game Theory and International Relations", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Liberty, equality, fraternity \u2013 many of our political ideas today have hazy roots in the Enlightenment. This course will examine some of the key texts, concepts and debates of the period, with particular emphasis on Britain and the French Enlightenment. We will also draw on these texts to think about political concepts and debates in our time.", + "title": "The Political Thought of the Enlightenment", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This introductory course will study the global gender gap in the arena of work in both rich and poor countries. It will introduce students to the dynamic relationship between gender and work across time and space, investigating why only certain types of work are considered \u201creal work\u201d in certain parts of the world, women\u2019s growing entry into the formal sector, the feminization of certain types of labour, the stigmatized nature of domestic work, women\u2019s labour movements, and the role played by women\u2019s work in international development. Readings will be drawn from sociology, anthropology, labour studies, geography, and economics.", + "title": "Women and Work around the World", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2240", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the tense relation between democracy and truth, from the trial and death of Socrates in Classical Athens to discussions on the role of Facebook. Divided into three sections, the seminar will familiarize students with: 1) the history of democratic thought and its critics (ancient, modern, and contemporary), 2) state-of-the-art democratic theory (aggregative and deliberative models of democracy, public reason, the epistemic turn), and 3) current debates on the challenges posed by social and technological transformations (post-truth, the role of social media, free-speech legislation).", + "title": "Democracy and Truth", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course studies the morality and politics of market-based distribution. It does so in three parts. First, it studies the historical justifications for and criticisms of markets. Second, it examines contemporary debates about the necessity and limits of markets. Finally, it applies the discussions from the first two parts to market distribution of specific goods.\n\nImportantly, our primary concern throughout this course will be normative: to understand the justifications for today\u2019s political economic world.", + "title": "Markets, Morality and Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module introduces the anthropology of marriage and kinship, asking questions like: How does the creation of kin through marriage vary cross-culturally? How and why do states exercise control over marriage? Why are people marrying later and having fewer babies, and how will this development shape societies in the twenty-first century? Who has access to marriage, who does not, and why? Is marriage a tool of patriarchal domination? Or can it become a site for culturally and historically specific forms of agency? Students will conduct original research and read ethnographies of places around the world with a focus on Asia.", + "title": "Marriage and Kinship", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2245", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Representation is a hallmark of democratic systems, yet certain groups, like women, are systematically underrepresented in politics. This class examines the variation of women\u2019s representation in legislatures around the world, the theories to explain it and ask whether and how it matters for politics and policy outcomes. We explore the ways that notions of gender shape policy choices and are embedded in institutions and practices. Finally, we will look beyond established political processes to consider broader phenomena such as the role of women in social movements or gender inequality in development and globalisation.", + "title": "Gender and Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course has three parts. The first is an examination of political theory, surveying various strands of socialist thought, as well as utopian socialist fiction. The second part examines a handful of concrete socialist experiments that are relevant to the contemporary period to investigate what worked, what did not, and why. The third part of the course imagines what a viable and democratic socialism would look like today. It samples a significant body of literature that has emerged in the last three decades which investigates how we might construct a feasible socialism that is relevant to the contemporary period.", + "title": "Socialism: Real and Imagined", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introductory survey of Modern Political Philosophy, from Machiavelli to Nietzsche. We will discuss central topics and themes in the Western tradition, such as Sovereignty, Freedom, Equality, and Justice, as well as their influence, both beyond the West and beyond their time.", + "title": "Modern Political Philosophy: Machiavelli to Nietzsche", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2248", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What do we know about the history, theory and practice of international diplomacy? What effect did diplomat-statesmen have on the development of diplomacy in the twentieth century? The course answers these questions along with facilitating a critical response to the debates within International Relations that focus on diplomacy. The course will also engage students in theoretical debates concerning the use of power through diplomatic channels. The course will provide students with a global history of diplomacy, unpacking how different historical contexts have influenced the development of diplomacy in different national and institutional settings.", + "title": "Diplomacy and Statecraft", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2250", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar is an interdisciplinary, comparative exploration of how race makes space and how space makes race in US and global contexts. We will explore these relationships through historical and contemporary case studies, with attention to how geographies of white supremacy and settler/colonial power seek to erase or subsume the spatial practices of certain groups of people. Because we take a comparative approach, the cases selected are sited in various locations in Africa, the Americas, and Europe.", + "title": "Race, Space, Power: Mapping the Global Colour Line", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2251", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is \u2018Africa\u2019 and who is African? Is the African continent a unified space or an ideological project? This seminar introduces students to key debates and intellectual trajectories within African Studies that contributed to the \u201cinvention\u201d of Africa. We will look at how knowledge production on Africa shaped categories of gender, race, ethnicity, and religion, and how these categories were central to the colonial project. We will also trace \u201ccolonial afterlives\u201d that persist through development projects, humanitarian discourses, and the circulation of global capital.", + "title": "What is the Global South: Africa in the World", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2252", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course investigates the social divisions of cities. The course is suitable for students interested in urban studies, regardless of discipline. The topics covered in the course include The ghetto; Race and segregation; Immigration and the city; Class, poverty, and gentrification; Gender divisions; Cultural quarters and commoditized difference. The course introduces students to different modes of analysis and methods relevant to understanding social and economic division. Divided Cities can be taken as a stand-alone elective or as part of an Urban Studies or Anthropology Major or Minor, or any other Minor or Major as agreed by the Head of Study.", + "title": "Divided Cities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS2253", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to foundational theories that explain why people migrate and their post-migration experiences. The first half of the course focuses on factors that influence the decision to leave one's home country and migrate elsewhere. The second half of the course focuses on the impact of migration on the migrants themselves, the countries they move to, and the countries they leave behind. Over the course of the semester, students will also research specific migration streams to Singapore of their choosing in a structured manner.", + "title": "International Migration", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3201", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, students will understand what constitutes ethnographic field\nmethods, what makes ethnographic writing different from other kinds of\nnonfiction writing, and the ethical and theoretical considerations within\nethnographic research. Over the semester, students will conduct their own,\nsmall\u2010scale ethnographic fieldwork, interviews and participant observation\nbased in Singapore.\nThis course is required in the Anthropology Major.\nThis course satisfies requirements in the Global Affairs Major.\nThis course satisfies requirements in the Urban Studies Major.", + "title": "Ethnography", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3202", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The field of behavioral economics draws on insights from other disciplines, especially psychology, to enrich our understanding of economic behaviour and decision making generally. Individuals frequently make decisions that systematically depart from the predictions of standard economic models. In this course we will attempt to understand these departures by integrating the psychology of human behavior into economic analysis. This course analyzes all types of decisions made by agents on a daily basis (from which breakfast to have to where to send the kids for education, etc.). Special focus will be put on decision making in a context of bounded rationality.", + "title": "Behavioral Economics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3203", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "1930", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-05T06:30:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on the understanding of the process of economic\ndevelopment. The course will be structured around the four main questions:\n(1) Why are some countries much poorer than others? (2) What are the main\nbarriers to the process of economic development? (3) What are the main\nbarriers that prevent the poor to escape from poverty?, and (4) Why do\nthese barriers exist and persist?", + "title": "Development Economics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3204", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will study the theoretical and empirical foundations and\npolicies of international trade at a fairly abstract and rigorous level. The\ncourse materials and lectures will employ mathematics. The issues that will\nbe addressed include the causes of international trade, the gains from trade,\nthe role of international capital movements, the effects of trade and\ninvestment barriers, etc. We will also read about real\u2010world areas of trade, such as trade institutions, the interactions between trade and development\nissues, etc. We will study models in trade and apply them to questions of\ninterest in the real world.", + "title": "International Trade", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3205", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This 2.5 MC course is an introduction to the relationship between law and economics, including the practical application of microeconomics to several common legal issues: property, torts and crime.", + "title": "Law and Economics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSS3206", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course broadly covers advanced topics in econometrics. The focus is on\ntime series econometrics and financial econometrics. However, panel data\nand asymptotic theory are also tackled in this course \u2010in more depth than in\n\u2018Econometrics\u2019. This course mixes theory and applied work:\ntheoretical foundations are covered, and the applications of the theory in\nreal life are analysed.", + "title": "Advanced Econometrics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3207", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1200", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-24T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This broadly covers the same range of topics as \u2018Intermediate Economics\u2019.\nHowever it has a more intensive treatment of consumer and producer\ntheory, and covers additional topics like choice under uncertainty, game\ntheory, contracting under hidden actions or hidden information, externalities\nand public goods, asset pricing, auctions, and general equilibrium theory.", + "title": "Advanced Microeconomics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Human rights play a central role in global and domestic politics and are\nintimately connected with the politics of conflict and security. This casebased\ncourse situates rights in historical, legal, normative, and political\ncontexts, providing students with a critical perspective on contemporary\nrights discourses as well as a practical introduction to legal rights frameworks\nand their applications.", + "title": "Human Rights", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3211", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China\u2019s rise is arguably one of the most important features of the 21st Century. Its growth-driven model of single-party rule challenges democratic ideals nurtured since WWII and its growing international economic and political clout promises to transform the existing regional and international orders. How did China get to this point? Where is it going? This class explores China\u2019s political and economic development beginning from the early Republican era, charts the Chinese Revolution, then turns to the Maoist and Reform eras in which it explores China\u2019s transition from a closed and impoverished agriculture society to regional and world power.", + "title": "Chinese Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3212", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Many forms of inter-personal violence such as honor killings, dowry deaths, witch-hunts, female infanticide, are attributed to differences in culture (norms, beliefs, values, social capital, and identities). Competing explanations link these forms of violence to economic and political causes such as property rights, repression by political elites, and political competition between religious groups. We will study the micro foundations of culture, and critically examine the relationship between culture and inter-personal violence using some theoretical and mostly empirical literature. We will examine the efficacy of interventions such as legislative change, economic incentives, and civic engagement to alleviate these forms of violence.", + "title": "Culture and Violence", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3213", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the field of abnormal psychology and the\ntreatment of psychological disorders.", + "title": "Abnormal Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3214", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-28T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the study of how the mind works, seeking\nto understand how sensory information is transformed, stored, retrieved, or\nused. Although primarily focused on psychological approaches to\nunderstanding cognition (as mental information processing), it will also\nconnect to relevant approaches within neuroscience, linguistics, philosophy,\nand computer science. Topics and processes to be explored include attention, language, learning, memory, perception, reasoning, emotion, and\naction.", + "title": "Cognitive Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course investigates the dramatic urban transformation that has taken place in mainland China over the last four decades. The scale of this transformation means that it has far-reaching consequences for Asia and the world, influencing everything from climate change to the price of bread. The path of Chinese urbanization even affects the likelihood of regional military conflict. Understanding how and why China has urbanized is therefore of critical importance. Over the semester, we will take an interdisciplinary approach to this investigation, using perspectives from history, geography, political science, anthropology, urban planning, and cultural studies, among other disciplines.", + "title": "Urbanization in China", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3217", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a critical reading of the past, present, and future of urban transformation in Southeast Asia. The course will consider the specific features of urbanization in Southeast Asia and the ways these are linked to the restructuring of economic, political and social agendas. Students will also be exposed to the different professional fields which engage with matters related to urbanization in the region. Key questions addressed in the course include: How is economic transformation driving urban restructuring in Southeast Asia? What are the strategies adopted by local and regional government institutions, urban designers, NGOs, and other organizations and professionals to guide urban development in the region? And what might the future hold for urbanization in Southeast Asia?", + "title": "Urban ASEAN: The Changing Southeast Asian City", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3218", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the field of developmental psychology which addresses the ways in which humans develop psychologically.", + "title": "Developmental Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Political economy explains political and economic behavior by characterizing the incentives of actors and the context in which these actors make decisions and influence outcomes. This course will introduce students to a broad class of potential interactions between actors in economically developed countries and consolidated democracies and also in autocratic regimes, failed states, and emerging economies. The course will examine important empirical regularities to identify key questions, guide model-building efforts, evaluate the usefulness of the economic models, and provide insights into major politico-economic developments.", + "title": "Political Economy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSS3220", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to key theoretical approaches in urban studies. Throughout the semester, we will read selections from essential texts in the field, examining both their methodological techniques and theoretical contributions to understanding cities and urbanization. The course takes an interdisciplinary approach and is divided into three or four thematic units, which in previous iterations have covered topics such as modernity, justice, economy, spatiality, and infrastructure.", + "title": "Urban Theory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3222", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In highly problematic ways Asian Medical Systems are colonial, Orientalist\nconstructs that have been heavily influenced by nationalism and the\nmodernity of religion. It is common to speak of Ayurveda (\u201cIndian\u201d\nmedicine), Unani (Greek/Arabic/\u201dIslamic\u201d medicine), Traditional Chinese\nMedicine and Tibetan Buddhist Medicine as though these are timeless, authentic, self\u2010contained traditions. Drawing on a range of contemporary\ntheoretical insights in anthropology and history this course examines the way\nin which forms of \u201cmedical\u201d knowledge and embodied practice in Asia are\nshaped by the cultural dynamics of pre\u2010colonial, colonial and post\u2010colonial\nglobalization.", + "title": "Asian Medicine, the Body and Globalization", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an overview of international macroeconomic theory and policy.\nIt presents economic theories to foster understanding of international\nfinancial markets and the interrelationships of economic aggregates such as\nGDP, exchange rates, trade balances, etc. Models will be applied to\nunderstand the effects and implications of macroeconomic policies in the\ninternational arena. The course will also look at relevant current issues: the global financial crisis, international coordination in macroeconomic policy,\nthe economics of the Euro, etc. Students should have a working knowledge\nof algebra, graphical techniques and the basics of micro\u2010 and macroeconomics.", + "title": "International Finance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will enable students to understand the role of international law, regimes, institutions, and non\u2010governmental organizations in international politics. The first section of the course is dedicated to theoretical, institutional and legal issues of global governance. The second section explores how the global governance and international law structure has evolved over time and how it technically functions today. The third section will explore the operations of specific actors in global governance including the United Nations, World Trade Organization, International Monetary Fund, APEC and ASEAN. The final section will explore the \u2018threats without borders\u2019 and challenges to global governance.", + "title": "Global Governance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3225", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course applies IR theories to examine major security and economic\nissues in East Asia.\n\nThis course promotes students\u2019 ability to critically apply major international\nrelations theories to East Asia. The course also encourages students to\nexplore the possibilities of refining existing theories and developing new\nalternatives.\n\nOn successful completion of the course a student should be able to: Identify\nthe actors, forces, and logics driving major international security and\neconomic issues in East Asia.", + "title": "Conflict and Cooperation in East Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3226", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introduction to the scholarly literature on the\nintersection of international security and international economy. It examines\nhow economic interdependence affects military disputes (and vice versa),\neconomic underpinnings of national security and international order, and the\ncoexistence of military competition and economic cooperation in major\nregions of the world.", + "title": "The Economy\u2010Security Nexus", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3227", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the psychological and social factors related to physical\nhealth.\nThis course provides students with an introduction to the field of health\npsychology which is a growing subarea of psychology. Health psychology is\nconcerned with the relationship between psychological and social factors\nand physical health. At the end of this course students will be familiar with the relationship of psychological and social factors in physical health and will\nbe able to intelligently discuss the relationship of mind and body from a\nscientific point of view.", + "title": "Health Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3228", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers students an understanding of the complex relationship\nbetween urbanization and the environment. The course covers a range of\ntopics relevant to thinking about the role of nature in the city, the reliance of\nurbanization on nature, and the environmental benefits and ills of\nurbanization. Students will understand the environmental pressures posed\nby urbanization, as well as the ways in which certain environmental goals (green spaces, clean air) are a key part of urban planning and policy\nformation.", + "title": "Urbanization and the Environment", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "An introduction to various research methods in the social sciences, including\nsurvey methodology, quantitative data analysis, participant observation, and\nin\u2010depth interviewing. This course can count as a course in the major for\nstudents in Urban Studies, Global Affairs, PPE, and Anthropology. It may fulfil\nthe course requirements for students in Environmental Studies as well on a\ncase\u2010by\u2010case basis after consultation with the Head of Studies of that major.\n\nThe course also fulfils the methods requirement in Urban Studies and Global\nAffairs. Students in all of these majors should ideally take this course before\nthey commence their capstone project.", + "title": "Methods in the Social Sciences", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3231", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR16", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers an introduction to spatial visualization tools for the analysis and representation of city forms, infrastructures and social phenomena. Students will learn about the history of urban representational concepts (projection, abstraction, plan, perspective), and a number of current tools (digital model-building and plan/map representation and participatory methods). They will acquire, interrogate and manipulate digital data relevant for urban spatial analysis, and learn how to visualise data such that it effectively communicates three-dimensional urban spatial conditions. The course also introduces students to key software packages used in urban planning and design (AutoCAD, Adobe Illustrator, and Sketchup/Rhinoceros 3d modelling packages).", + "title": "Urban Spatial Representation", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3235", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CompLab", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to foreign policy, which is the approach\nstates adopt in their international relationships, and to diplomacy, one of the\nkey tools for implementing foreign policy. It provides an Asia\u2010centred\nperspective on foreign policy and diplomacy, and provides insight into the\nrealities of practitioners in the field. It will cover concepts in foreign policy analysis and strategies as well as laws and practices of diplomatic relations. It\nwill explore the unique experiences of Singapore\u2019s foreign policy. Bilateral\nand multilateral diplomacy will be discussed in the Singaporean context and\nstudents may be exposed to practitioners in the classroom.", + "title": "Foreign Policy and Diplomacy: Issues and Practice", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to anthropological contributions to gender\nand sexuality in cross cultural perspective. The course focuses on the\nhistorical development of the field. We will explore various theoretical\napproaches including Margaret Mead\u2019s early work on cultural diversity;\n1970s & 1980s feminist studies of gender universals and the subordination of\nwomen; 1990s interpretive approaches to gender constructions; more recent feminist and non\u2010feminist studies of sexuality, the body, masculinity and\nqueer theory.", + "title": "Gender Perspectives in Anthropology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the evolution of US foreign policy since 1900. The focus will be on assessing how US leaders have thought over time about interests, ideals, and strategies in the international realm. The course will also explore current challenges confronting the US in the world.\nOn successful completion of the course a student should be able to: (1) demonstrate the evolution of US foreign policy agenda and strategy over the past century; (2) classify underlying rationale of important US foreign policy\ndecisions; and (3) critically question the implications of US foreign policy on\noverall international relations.", + "title": "US Foreign Policy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course for students who have an interest in political philosophy. It aims to introduce the Chinese traditional political thoughts that date back to the period before Qin Dynasty, i.e. up to 221 B.C. In particular, it aims to demonstrate what and how the major ancient Chinese political thinkers understand and discuss the important philosophical questions in the field of politics that are (more than often) still relevant nowadays. To this end, this course takes a thematic rather than a chronological approach.", + "title": "Chinese Political Philosophy: Confucianism & its Rivals", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3241", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Religion plays a fundamental role in political outcomes. It influences voting, violence, public goods provision as well as broader processes in state formation such as democratization and capitalism. We will study a proportion of the theoretical and empirical literature that examines how religion influences political actors, institutions and outcomes and how political processes influence religious behaviour. The empirical literature will be primarily drawn from South Asia.", + "title": "Religion and Politics in South Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3242", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an in-depth analysis of the latest development in public sector economics. It equips students with analytical and empirical tools to critically engage and contribute to the debate on government interventions in the economy and how it affects equality and economic efficiency. The topic covers government social protection programs, public goods provision, environmental protection, healthcare policies, and taxation system. We revisit influential academic works and discuss the latest empirical evidence on how individual behaviour responds to government policies and the implications of these responses to the effectiveness of the policies themselves.", + "title": "Public Economics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to equip students with the analytical and empirical tools to understand (i) the economics of employment relationships, (ii) how public policy influence work and human capital, and (iii) the various social forces that shapes income inequality in the last century. In particular, the course provides a framework to evaluate key policy issues, such as the minimum wage, discrimination, the gender and racial wage gap, immigration, educational policies, and how globalization, computerization, and the rise of robots affect the income distribution in both developing and developed economies.", + "title": "Labour Economics: Work, Human Capital, and Income Inequality", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3244", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-04T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores key debates in contemporary urban planning and policy, including questions of agglomeration, property rights, rationality, democracy, diversity, and justice. While these questions are crucial for successfully intervening in contemporary urban transformation, they are not new. Rather, they are part of ongoing debates that stretch back to the origins of urban planning and policy. In order to understand the issues facing contemporary urban planning, it is therefore necessary to excavate their historical development. Through this excavation, we will develop informed positions on contemporary practice in urban planning and policy.", + "title": "Key Debates in Urban Planning and Policy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3245", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers students an in-depth inquiry into the characteristics of urban organization and development in cities of the Global South, where there are high rates of urbanization. Students will examine a range of topics: migration and urbanization, formal and informal governance, housing and infrastructure, food security and environment. Students will also learn about the competing theoretical constructs used to explain such urbanization. Case studies will be drawn from a range of geographical locations.", + "title": "Cities of the Global South", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3246", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course serves as an advanced introduction to modern macroeconomic\nanalysis to understand the causes and consequences of macroeconomic\nfluctuations. We will explore at a deeper level some of the topics covered in\nIntermediate Macroeconomics, as well as some other research topics. Topics\ncovered may include economic growth, business cycles, financial markets,\nmonetary and fiscal policy etc.", + "title": "Advanced Macroeconomics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3248", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The course provides an introduction to the nervous system, with a particular emphasis on the structure and function of the human brain. Topics include the anatomy and function of nerve cells, sensory systems, and the brain as a whole, as well as exploration of the neural basis of learning, memory, perception, reward, emotion, social thinking, and the control of movement. Diseases of the nervous system and neuropharmacology will also be discussed.", + "title": "Human Neuroscience", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course teaches students how to analyse and visualise the urban built environment. Students learn about different city morphologies and the cultural, political and economic reasons they formed. Students will learn about how to discern, describe and depict elements in the urban built environment and do so at a range of scales - block, street, neighbourhood, city. They will also explore the ways in urban design engages with and seeks to re-shape cityscapes. This course includes practical training in manual and digital visualisations. It meets the requirements of either a topical or methods (spatial reasoning) course in Urban Studies.", + "title": "Cityscapes and Urban Form", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Contemporary cities face pressing environmental and infrastructural challenges that unevenly shape the nature of urban space and everyday life. This course introduces students to urban political ecology (UPE) as an interdisciplinary field of inquiry for examining critical socio-ecological processes and problems in cities. Through UPE case studies on water, waste, pollution, green spaces, environmental (in)justices, and smart/sustainable cities, we consider interwoven social, political and ecological processes that produce differing urban environments for city-dwellers. This course provides a critical toolkit for grasping and analyzing the complex human-environment networks that constitute our cities, while considering possibilities for greater social and environmental justice.", + "title": "Urban Political Ecology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3251", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, students will explore how psychology can be applied to\npublic policy. As a lab module, students will conduct their own randomised\ncontrolled trials requiring them to examine whether psychological concepts\n(particularly those from decision science and social psychology) can\noptimise the outcomes of \u201creal-life\u201d projects within the community.\nProjects will be conducted with government, not-for-profit, and town\ncouncil agencies within Singapore.", + "title": "Lab in Applying Psychology to Public Policy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines anthropological approaches to global development.\nStudents will gain exposure to major transformations in development\nparadigms and become familiar with various theories and processes for\nredressing social and economic inequality. Through ethnographic case\nstudies of specific methodological strategies for intervention, students will\nbe able to critically analyse diverse development discourses and practices\nand evaluate their social consequences, both planned and unintended.\nStudents will also explore the numerous roles anthropologists have played\nin shaping key debates within development and the discipline\u2019s\ncontributions to understanding the lived experiences of those involved in and effected by development practices.", + "title": "Anthropology of Development", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes an ethnographic approach to the study of globalization, focusing on the impact it has on the daily lives of individuals, families, and communities around the world, and how they have responded in turn. Introducing students to how interpretative social science disciplines have approached the study of globalization, students will be assigned readings on different manifestations of globalization, including but not limited to the McDonaldization of society, the materials that enable globalization to take place, the international labor migration industry, the structure and composition of global cities, global crime, and the rise of anti-globalization social movements.", + "title": "Globalization on the Ground", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3254", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the determinants and mechanisms through which poor countries develop. While this course focuses primarily on the development of political structures that enhance human development, it also gives significant attention to social and economic change associated with modernization. This course is essentially an exploration of the political economy of development in the developing world. Among others, the questions we explore in this class include: Why are some countries poor, repressive, and violent? Why have some developed economically, achieved stability, and protected human rights, while others stagnate and/or decline? What determines state capacity, good governance, and development?", + "title": "International Development", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3255", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the relationship between youths and their urban environments from a global perspective. More than half of the world\u2019s young people live in cities today, where they contribute to urban life from everyday use of street space to participation in politics and transnational mobility. Yet, structures of inequality continue to frame their lives. Through the lens of youth urbanism, students examine theories, debates, and policy concerns across social inequalities, education/employment, migration, citizenship, and politics - themes relevant to the fields of Urban Studies and Global Affairs. Critical evaluation, writing, and project-work skills will also be developed through assignments.", + "title": "Youth Urbanism: Global Trends, Local Perspectives", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3256", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will cover the principles by which firms are run to maintain their financial wellbeing. Depending on the nature of the investment opportunity (risk, maturity and expected return), the firm will consider different avenues of raising capital. The course will cover the economics of lending, swaps and derivatives, recapitalizations, equity securities, initial public offerings and early stage investing, principles of valuations, investment analysis, basic accounting and financial modelling.\n\nCase studies will be used to investigate the agency problem within the firm, between managers, shareholders and other stakeholders in shaping the capital structure and investment decisions.", + "title": "Seminar on Corporate Finance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3257", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "2100", + "endTime": "2300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 22, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "2100", + "endTime": "2300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-TCTLT", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 22, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module will cover how returns from private equity investment are achieved through operational improvements and financial restructuring of growth and new venture companies. This is an introduction to the evaluation, structuring, stewardship, and realization of early stage private equity investments. We study cases of increasingly complex topics concerning cash flow, investment assessment, value assessment and creation, legal constraints, leadership, business development and economics and, ultimately, returns on investment.", + "title": "Early Stage Private Equity Investing", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3258", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the human condition through the lens of literature. We will use novels, essays, plays, poems and visual media to consider characteristics and life events that make us uniquely human from birth through death: identity, human development, love and desire, coping with mental/physical illness, war, poverty, morality and resilience. We will read texts that are notable for their excellence (prize-winning) as well as diversity across time (classics to contemporary) and culture (e.g., authors from Asia, US, Europe). Critical reading, writing and discourse will be cornerstones of this course.", + "title": "The Human Condition: Psychology & Health in Literature", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Moving beyond a focus on the individual, this module provides an overview of research methods and applications to assess and improve health of communities. Emphasis will be on practical skills building related to identifying community health problems and articulating evidence-based responses to promote resilience.", + "title": "Community Health Assessment and Improvement", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3260", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers students an understanding of global cities. The course looks at key thinkers to have described and theorized global cities. We look at a number of global cities up close, including New York, Singapore and London.", + "title": "Global Cities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3262", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the role of emotions in liberal democratic practices and institutions and in contemporary democratic theory. The course will examine three different theoretical frameworks that have recently been used to understand the place of emotions in politics: 1) neuroscientific; 2) neo-Aristotelian; and 3) Freudian/psychoanalytic. It will focus on the different conceptions put forth by each of these frameworks and the different constellations of emotions that are analysed and/or advocated by these theories. Questions to be addressed include: Are there \u201cnegative\u201d emotions? What criteria do we use to decide whether an emotion ought to be excluded from democratic practices?", + "title": "Emotions and Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3263", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Financial markets are subject to periodic bouts of \u201cirrational exuberance\u201d that lead to bubbles in asset prices, frequently followed by a crash. These afflict particularly stock and foreign exchange markets and the banking industry. Despite repeated attempts to regulate finance, crises recur with remarkable frequency and regularity. In \u201cThis Time is Different\u201d, Ken Rogoff and Carmen Reinhart document eight centuries of financial folly. These crises have profound effects on the real economy, leaving a legacy of unemployment and slow growth. We use economic analysis to study several financial, foreign exchange, and banking crises in their historical and social contexts.", + "title": "Bubbles, Crashes, Panics and Crises", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3264", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-05-02T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This class studies the economics of cities and urban problems by understanding the effects of geographic location on the decisions of individuals and firms. Traditional microeconomic models are typically spaceless, yet location and distance plays an increasingly important part in modern economics. We will study questions such as Why do cities exist? How do firms decide where to locate? Why do people live in cities? We will analyze the economic problems that arise as people and firms cluster in cities. We will also discuss specific urban economic problems such as firm location, crime, transportation, housing, education, and local government economics.", + "title": "Urban Economics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3265", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an introduction to the psychological, social and behavioural factors that influence patterns of health and health care delivery across the lifespan. We take a transdisciplinary perspective, considering the role of \u201cmicro\u201d and \u201cmacro\u201d factors that influence the health of individuals and the public (e.g., from genes to the environment). We will explore determinants and consequences as well as identify effective interventions to prevent disease and promote health. This course emphasizes the use of empirical evidence from the psychological, social, behavioural and biomedical sciences as the basis of public health practice and policy.", + "title": "Social and Behavioural Foundations of Health", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3266", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This lab course explores how experiments are designed, conducted, analysed, and interpreted in the realm of cognitive psychology. Questions involving perception, reasoning, attention, and language will be addressed through a hands-on approach involving lab-based and online experimentation.", + "title": "Lab in Cognitive Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3267", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The rise of China is creating unprecedented global challenges and opportunities. This course helps students achieve a nuanced cultural understanding of this potential superpower by critically examining the concepts of \u201cChina\u201d and \u201cChineseness\u201d from an anthropological perspective. Topics include ethnic relations, imperialism, and the civilized-barbarian distinction; gender, patriarchy, and the family; popular religion, popular culture, and rebellion; bureaucracy, corruption, and social connections (guanxi); and overseas Chinese and the Chinese diasporas. In addition to reading classic and contemporary works of China anthropology, students will watch some highly selected films and documentaries on China. No knowledge of the Chinese language is required.", + "title": "Anthropology of China", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3268", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will focus on water and sanitation (W&S) services in cities across the world, especially in developing countries. The seminar will develop critical thinking skills on the following issues: health and non-health impacts of W&S improvements; components of infrastructure, and institutional arrangements for the provision of W&S in developed and developing countries cities; supply versus demand oriented planning of W&S services; political, environmental, institutional, economic and financial challenges of improving W&S services in cities; strategies to target the poor and underserved; privatization; behavioural change theory; handwashing; and water scarcity. Examples will be used from cities around the world.", + "title": "Water and Waste in Urban Environments", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module explores the ethical dimension of global affairs. It takes as its point of departure the conviction that global affairs, like all realms of human conduct, is intelligible in questions of obligation, right, good, and so forth. The module interrogates prominent ethical languages that pertain to sovereignty, war, international law, human rights, and moral scepticism. It then considers how these languages arise and conflict in a range of contemporary global issues. Particular emphasis is placed on excavating the ground on which ethic choices are made, defended, and judged.", + "title": "Ethics and Global Affairs", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3270", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the place of performed political comedy (daily shows and stand up, for the most part) in contemporary politics. It is interested in the content of comedy and its effects. We shall read some theory and ask questions regarding the role of the comic and the role of humour in political discourse. We will focus on political comedy in English across countries including Singapore, India, United States, and UK (you are encouraged to examine other countries and other languages).", + "title": "Contemporary Political Comedy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3271", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to give training in spatial and demographic methods relevant to urban and social studies with three major foci: (a) essential theories regarding spatial and demographic structures and dynamics of cities (e.g., models of urban form, central place theory, rank-size rule); (b) methods of spatial visualization and analysis of urban social phenomena using (GIS) software (e.g., map projections, coordinate systems, spatial data manipulation & visualization, and geodatabase management); (c) techniques to calculate, interpret, and present basic spatial and demographic changes in cities using STATA software (e.g., immigration and ethnic diversity, racial segregation, concentrated poverty, and residential sprawl).", + "title": "Geospatial & Demographic Methods", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3273", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CompLab", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The module aims to provide students with a deeper understanding of the development of Singapore as a city-state. It will examine (i) the various components of the master plan that integrates the island as one single planning unit which guides the total physical transformation of the island into the contemporary high-rise, high density city, (ii) the melding of the hegemonic one-party parliament and the civil service into an efficient and efficacious urban growth machine, (iii) the societal and cultural developments engendered by six decades of practically continuous national economic growth and (iv) the future of the city state.", + "title": "Urban Singapore", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3274", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a window into the complex arrangements of social life in cities. It explores the ways in which social structures and dynamics are folded into and through urban contexts, specifically by imagining the city from four planes of social life. We examine (i) \u2018cities of difference\u2019 (ii) \u2018cities of scales\u2019 (iii) \u2018cities of relations\u2019 (iv) \u2018cities of actions\u2019. At the end of the course, students will gain clearer recognition of the darker structures in urban life, the complicity of society and culture in stabilising them, but also a deeper appreciation for spaces of hope that allow for change.", + "title": "Social Life of Cities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3275", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module considers questions of international politics historically and philosophically, based on reading classical and modern works. The topics discussed include sovereignty and intervention, the morality of war, the balance of power, imperialism and decolonization, and conceptions of international law and global order. Attention is given to non-European thinkers and to recent work on the intellectual history of international relations.", + "title": "International Political Theory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3276", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Anthropological Imagination offers an insights to the practice and creative power of anthropology. The aim of the course is to offer an introduction to how anthropologists, past and present, have viewed the world and approached the study of the human condition. The first half of the course examines foundational figures and moments in the history of the discipline. The second half of the course is geared toward an exploration of recent anthropological writings on topics such as power, representation, history, gender, the Anthropocene, and post-human anthropology.", + "title": "The Anthropological Imagination", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3277", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Humans are known as social animals for a reason. There is no part of our lives that is not influenced in one way or another by others. In this course we will be exploring the ways in which we are influenced by our social environment, how we influence others, how we think about social situations, how we relate to other people, and the implications for understanding human behaviour.", + "title": "Social Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3278", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-21T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a skills-based module concerned with research methods in social psychology, a core area of psychology that investigates situational forces affecting human thoughts, feelings, and actions. As such, we will be discussing different types of research done in social psychology and students will be doing projects using those methods. The module will culminate in students doing research projects and writing up these projects as if for publication. The first portion of the module will be concerned with methods and study proposals, whereas the second portion will be devoted to data collection, analysis, and writing up results.", + "title": "Social Psychology Lab", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3279", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course considers important debates in political theory today, focusing on ideas about justice. These include justice as fair distribution, cultural pluralism, democratic participation, justifiable coercion, and personal and communal independence. Topics discussed include the relationship between truth and opinion in political argument; political realism as a corrective to abstract theorizing; the republican tradition and the idea of freedom non-domination; and the emerging focus on global justice.", + "title": "Contemporary Political Theory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3280", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers students the opportunity to inquire into the relationship between architecture and society, with a focus on the late modern to contemporary era (nineteenth century to now). The course will look at the relationship between architecture and specific social institutions (the family, secular welfare, the nation, the state), as well as attending to the role of architecture in a range of social processes, including the exercise of power, identity formation, care, production and reproduction, and consumption. It will also address the emergence of a professionalised field of architecture and the establishment of building standards.", + "title": "Architecture and Society", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3282", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is an advanced course for students who have an interest in political philosophy. It aims to introduce the republicanism as a tradition of political thoughts dated back to ancient Greek and Roman period. In particular, it aims to help students understand the origin and development of republicanism. It also aims to demonstrate how the major issues of politics are tackled by the republican theories and explore how these republican ideas are still relevant nowadays. To this end, this course takes a thematic rather than a chronological approach.", + "title": "Republican Political Theory", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3283", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The concentrated population of city living has long posed a challenge to the human health. This problematic is the focus of this course. Using an interdisciplinary approach, the course examines the relationship between urbanization and public health, including understanding how cities might become healthier and more resilient. Students will be introduced to key analytical concepts and theories relevant to understanding urban public health generally, and in relation to urban environments, specifically. They will also be given an historical perspective on why urbanization and poor health are related.", + "title": "Healthy and Resilient Cities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3284", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Organisational Psychology is the study of human behaviour in the workplace, and all the factors that affect human behaviour. This course aims to provide a theoretical and practical overview of individual (e.g., emotions, decision-making), team (e.g., team dynamics, leadership), and organisational (e.g., organisational structure, culture) processes in the workplace and how these processes interact with one another in dynamic ways. We will grow our appreciation of how people behave, think about, influence, and interact with each other at work to effectuate outcomes such as employee motivation and job performance.", + "title": "Organisational Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3285", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Gurus are important mediators of religion within Hindu and other traditions. They influence politics, economics and society. We will study how Gurus come to be. What do they do? What influence do they have? What is their world-view?", + "title": "The Guru in Hinduism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3286", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course gives an overview of the anthropological study of processes of global environmental change (GEC). Topics include warming, drought, pollution, extreme weather, biodiversity loss, and climate-induced migration. The course asks: 1) What are current trends in GEC, and how do they differ from past patterns? 2) What do past ethnographic studies tell us about human societies\u2019 mechanisms for coping with previous, similar events? 3) What does contemporary ethnographic research demonstrate about humans\u2019 experience of and responses to GEC patterns at the local level? And 4) What do anthropological perspectives demonstrate about responses to GEC that might otherwise be obscured?", + "title": "Global Environmental Change: Anthropological Approaches", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3287", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "For the past two centuries, the world has been organized around nation-states. Defined by language, culture, history, government, military power, and clear boundaries, a nation organizes how citizens run their lives and their businesses. More recently, the dominance of nations has been challenged \u2013 sometimes subtly, sometimes aggressively \u2013 by multinational companies, which can seem to exist above governments\u2019 sway. The world of today \u2013 and of tomorrow \u2013 is caught in the intersection of these two forces. This course will look at this conflict from a variety of perspectives, utilizing insights from history, business, and other disciplines to explore phenomena and case studies.", + "title": "Empire, Country, Corporation: The Struggle for Control", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3288", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "International relations scholars have traditionally studied the interactions between sovereign states interacting within an anarchic international system. In the post-World War II era, interstate relationships have become less ad-hoc, and considerably more institutionalized, with a large number of international organizations\u2014such as the United Nations, the World Trade Organization, the European Union, the IMF, and the World Bank\u2014emerging to oversee these institutionalized patterns of cooperation. This course will consider why IOs have grown in importance and how they work. It will also consider their relationships with state and non-governmental actors, and their impact on political and policy outcomes.", + "title": "International Organisations in World Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3289", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines diverse ways that societies around the globe view and manage human reproduction and implications this has for healthcare and medicine. Topics examined include medicalization of birth; population and birth control; abortion; assisted fertility technologies; prenatal diagnostic technologies; HIV/AIDS and reproduction; and reproductive cancers. The course explores reproductive healthcare in the context of globalization and under different state regimes and considers how an understanding of the influence of culture and social relations on reproductive health is crucial for the development of global health policy. This course is valuable to students interested in anthropology, health/medicine/science/technology, and gender studies.", + "title": "Culture and Reproductive Science and Technology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3290", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module studies the process of globalisation and its impact on various aspects of the global economy. The module has a particular focus on globalisation and economic development, but we will keep eyes on the other pressing issues on globalization and its recent reversal. The main questions to be addressed include (but are not limited to): (1) the nexus between trade and development; (2) globalisation and migration; (3) urbanization in an open economy; (4) identity politics and antiglobalisation movement.", + "title": "Economics of Globalisation", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3291", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Seminar will focus on topics related to domestic and regional aspects of the Palestinian politics and to the negotiation process of the Arab-Israeli conflict, with emphasis on the Israeli-Palestinian aspects The course will examine key social and political issues in a context of fundamental changes in the external and internal Palestinian environment since the first Arab-Israeli war of 1948, the rise of the Palestinian Nationalism, the Islamic opposition and the Palestinian military struggle.", + "title": "Palestinian Politics in Changing Middle East", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3292", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What does it mean to be \u201cSaved\u201d in different social and cultural contexts? This Anthropology module examines Christianities in different world regions, and queries their distinctive theologies and social histories. How have different forms of Christianity been embraced, rejected, and/or \u201csyncretically\u201d incorporated into local structures of religious belief and practice? How have Christian ideas of salvation articulated or disarticulated with different liberation movements (e.g. abolitionist, anti-colonial, nationalist)? We will examine some antagonistic and also some accommodating ways that Christian denominations interface with non-Christian traditions. Note the module approaches these questions from ethnographically-grounded, social scientific perspectives, rather than from faith-based ones.", + "title": "Christianities in Cross-Cultural Perspective", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3293", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR17", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Around the world, education is one of the central institutions of society, developing the next generation of citizens. In which ways do countries converge on policies, or develop novel approaches to education? This course will examine 1) the colonial impact of education around the globe and the role of education in independence movements 2) the way in which education functions as a sorting mechanism 3) how schools function as central places to develop citizens 4) how countries work to improve their education systems, with Singapore as a case study of transformation 5) key policy debates in global education reform.", + "title": "Comparative International Education", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3295", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This short course investigates the links between international trade, natural resource use and the environment. The lectures will address five key questions. One, to what extent are natural resources traded, and by whom? Two, what are the impacts of international trade on a country with weak or poor management of its natural resources? Three, is there evidence that international trade leads to severe overuse of natural resources? Four, is there evidence international trade is a common driver of resource overuse worldwide? Five, does access to international markets make governance of natural resource industries easier or harder for governments?", + "title": "International Trade, Resource Use and the Environment", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSS3296", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module investigates the hypothesis that urbanism does not necessarily mean ecological failure but can be understood as bringing the natural and the cultural into new relationships. The course will introduce students to the history of the \u201cgreen\u201d city as a concept, using case studies from Renaissance urban design to the \u201ceco-city\u201d of Masdar in Abu Dhabi. Using Singapore as a site for field study, students will explore how anthropogenic factors (species introduction, hardscapes, designed landscape, and waste) give rise to new ecological conditions. Urban issues such as biodiversity, Heat Island Effect, and ecosystem services will also be considered.", + "title": "\u201cGreen\u201d Cities and Urban Natures", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3297", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The monetary and banking system is integral to the smooth functioning of any modern economy. It is also undergoing rapid changes because of regulatory changes, competitive pressures, and technological advances. In this course, we consider both standard theories and extensions and modifications thereof in the light of changing circumstances. Topics covered include money demand and supply, the risk and term structure of interest rates, the roles of financial intermediaries, information asymmetries, information costs, and financial intermediaries, monetary policy in closed and open economies, financial crises and unconventional monetary policies, developments in fintech, and technological advances more generally.", + "title": "Money and Banking", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3299", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is specially designed to provide students with an opportunity to gain hands-on research experience. Students will join a research team involved in an on-going longitudinal study on attachment and emotion regulation in early childhood. Through the course of the semester, students will learn the fundamentals of Attachment Theory and its role in Developmental and Clinical Psychology. They will be trained in the administration and coding of various attachment and language assessment measures that are commonly used in child development research. Students will also participate in fieldwork that involves interviewing and observing parents and their pre-school children.", + "title": "Research Tutorial: Lab in Developmental Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3300", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the labor of natural history through the life of Alfred Russel Wallace (1823-1913). It focuses less on the evolutionary insights of Wallace and more on the historical and material conditions of his work. In this way, it investigates the nexus of science, empire, and infrastructure and how this nexus shaped the contours and collections of natural history work in Southeast Asia. The course seeks to answer: What is \u201cnatural\u201d about natural history? How does natural history work? And why is there a statue of Wallace in front of the Lee Kong Chian Natural History Museum?", + "title": "Alfred Russel Wallace and the Work of Natural History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3301", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Colonialism has had far reaching social, political and economic effects. Since WWII, many colonies have gained independence. However, independence did not result in the post-colonial utopias that were envisioned in struggles for independence. Colonialism has persisted. New forms of imperialism have substituted for colonialism. Further, native elites have reproduced the colonial apparatus. What, then, does de-colonization mean in this post-colonial environment? We will study the comparative history of colonialism in its political, economic, and social dimensions and examine its diverse effects. We will examine decolonization as a historical episode and as a movement today.", + "title": "Colonialism and Decolonization", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3302", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The previous century has been characterized as a period of tremendous economic growth and industrial transformation. This seminar examines how these changes intersect with urbanization, including the physical built environment and urban spatial practices. The course begins by considering the urban implications of industrialization and de-industrialization in a global context, then focuses on linkages between economic transformation and urbanization today. What is the role of cities in fostering innovation, and how are new technologies, such as digitization, artificial intelligence, and the \u201cinternet of things\u201d driving changes in urban design and governance?", + "title": "Cities and Economic Development", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3303", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Port cities across the world have long played a crucial role as nodes of exchange and interaction in ever more extensive networks of production, culture, and power. Conversely, global flows of capital, people, and knowledge have been increasingly preponderant in shaping processes of urbanization since the dawn of maritime trade. Based on a program of field visits to relevant sites across the city, this module takes Singapore as an example to consider patterns, functions, and images of port cities as well as the transnational currents that have given shape to urbanism past and present.", + "title": "Port Cities: Logistics, Transnationality, Urbanization", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3304", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What has been the course, causes, and consequences of economic globalisation? This module has as its focus the long-run evolution of the global economy, particularly events from 1800. This roughly 200 year period is instructive in that it witnesses the integration of the world\u2019s nations into the first truly global economy, its disintegration in the wake of WWI, the post-WWII reintegration of the global economy, and its potential reversal into the present day. The course will examine variation in institutions, policy, and technology to understand this evolution and its effects on development, inequality, and international relations.", + "title": "Modern History of Economic Globalisation", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3306", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1700", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-26T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Modern society draws a significant amount of resources from and has an important impact on, the natural environment. Economics, combined with the relevant value judgments provides a powerful set of tools to understand this interaction and evaluate the policies governing it. This course provides an introduction into this important subject.", + "title": "Environmental Economics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3307", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The Paris of the mid-nineteenth century was a defining stage in the unfolding of modernity. The various improvement plans completed under the auspices of public works commissioner, Baron Haussmann, established a range of tools fundamental to the modernization of cities: infrastructures, knowledges, institutions. The transformations the city underwent had an enduring effect on the experience and habits of modern urban life. Focusing on the period from 1830 to 1870, this module considers both the preconditions and the effects of the rationalization of urban space that took place in Second Empire Paris. Immersing themselves in a range of evidentiary fields \u2013 from art, to literature, to photography and political discourse \u2013 students learn about the lineaments of urban modernity.", + "title": "Boulevards, Arcades and Sewers: Paris 1830-1870", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3308", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Global warming. Automation. Biotechnology. Big data. Artificial intelligence. Everywhere we look, science and technology are creating unprecedented challenges and opportunities. At the same time, the creation of technology is something very old, perhaps even defining what it means to be human. In this course, students will engage in original anthropological fieldwork and collaborative writing to investigate burning questions at the juncture of culture and technology. Readings will draw from classic works by Marx, Freud, and Heidegger; feminist and postcolonial critique; and anthropological accounts of phenomena ranging from cutting-edge science to the search for extraterrestrial life.", + "title": "Technology and Culture", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3309", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Populism challenges liberal democracy around the world, upsetting domestic and international political order. Yet, despite its ubiquity, populism is a slippery phenomenon and can be difficult to define. In this course, we will examine populism from the perspectives of philosophy, politics, and economics. Among other things, we will examine definitions of what populism is and its relationship to liberal democracy; we will examine the causes of populism, such as free trade and economic inequality; we will examine the goals of various populist movements from around the world; and we will debate the legitimacy of policy responses to populism.", + "title": "Populism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3310", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As both a cultural norm and a driver of economic prosperity, consumerism is thought to be incompatible with environmental sustainability. Drawing on a range of scholarly and activist work, this seminar explores the emergence and spread of consumerism, interrogates the various definitions and drivers of overconsumption, and considers the political and policy requirements of material sacrifice in service of environmental sustainability. The seminar features direct engagement with a number of scholars of sustainable consumption, and thus requires close reading of text, thoughtful and analytic writing, and engaged discussion. Special focus on emerging scholarship and policy initiatives in Asia, Europe and North America.", + "title": "Sustainable Consumption", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3311", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "As societies struggle to cope with global climate change, depletion of natural resources, and loss of biodiversity, we face yet another momentous challenge in the next 50 years: finding ways to nourish our bodies with healthy, safe, and culturally appropriate foods. This module explores the critical discussions and debates on the sustainability of food systems and the merits of what is advocated nowadays as \u201csustainable food.\u201d The module draws primarily from the theoretical and methodological traditions of political economy/ecology and cultural politics in understanding the complex social and material dimensions of food in an increasingly unsustainable world.", + "title": "Food and Sustainability", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3312", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "China has invested in thousands of development projects that promise the host countries significant economic and geo-strategic advantages. Because of that, China has left a sizable ecological footprint across the developing world. This course explores the socio-environmental implications of China\u2019s economic presence abroad, including, but not limited to, the Belt-and-Road Initiative (BRI). Has China\u2019s \u201cgoing out\u201d strategy ushered in less environmental destruction than environmental modernisation? Should it be perceived differently to other foreign investment strategies? We explore these questions and more through various country studies, contributing to the ongoing global debate about making China\u2019s investments more environmentally sustainable.", + "title": "Environmental Impacts of China\u2019s Investments", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Political insight often begins by looking critically at one\u2019s own political environment. This module examines Singapore politics institutionally and thematically, focusing on pressing issues facing the country today. It will explore Singapore\u2019s unique parliamentary system and its political aims and effects. Topics covered may include the politics of race and gender, issues of social class and inequality, efforts to balance civil rights and liberties with political expediency, and issues of meritocracy, party politics, and national identity. When feasible, this course will include experiential learning components such as guest speakers or visits to parliament.", + "title": "Singapore Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3314", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What are the fundamental causes of modern economic development? This module anchors the answers to this question using the evolution of China\u2019s economic development as a case study. It surveys the major research topics in Chinese economy: state (political selection, corruption for example), firms (SOEs, trade) and households (fertility, inequality). The period covered extends from the imperial period to today (the pre-modern, communist, and reform periods). This module will familiarize students with issues related to the Chinese economy: its history, the success of its reforms and the reasons for this success, and challenges it is facing.", + "title": "The Chinese Economy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3315", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to the gendered dimensions of international development. It examines challenges facing developing countries through the lens of gender, recognizing that the benefits of development may not be shared equally across genders. We read works by scholars representing different nationalities, ethnicities/races, and academic disciplines because this diversity is critical to understanding the economic, political, and cultural contexts around the world in which development policies are implemented. The topics covered include poverty, health, education, agriculture, environment, formal/informal work, migration, the NGO sector, political participation, and development policy.", + "title": "Gender and International Development", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3316", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers a critical, interdisciplinary overview of the science of adolescence. It highlights contemporary theories of adolescence and domain-specific issues of adolescent development including brain and hormonal development, social development, education, and health outcomes. Across these topics, students will have an opportunity to (1) familiarize themselves with important empirical and theoretical literatures; (2) develop critical understandings of their practical and policy implications; and (3) explore effective psychological interventions to address developmental issues of adolescence.", + "title": "Adolescent Development", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3317", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is primarily devoted to a close reading of Simone de Beauvoir\u2019s The Second Sex. It offers students the opportunity to engage in a rigorous reading of this text to understand her analysis of the Western philosophical and historical construction of \u201cWoman.\u201d This course will examine her understanding of how the Western patriarchy works via social norms and economic structures, but also via myths and stories about \u201cWoman.\u201d We will also explore her critical engagements with Marxism, Hegelianism, psychoanalysis, and Existentialism. We will then read her work, The Ethics of Ambiguity, to understand her unique contribution to ethical philosophy.", + "title": "The Philosophy of Simone de Beauvoir", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3318", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course will examine the relationship between political institutions and aesthetic practices in the works of Plato, Jean-Jacques Rousseau, and Friedrich Nietzsche. The central question of the course will be whether and how the arts play a role in moral and political education and/or corruption. We will focus on two key concepts in aesthetic theory, the concept of the beautiful and of mimesis. We will be attentive to the different ways in which Rousseau and Nietzsche respond to specific elements of Plato\u2019s aesthetic theories and how these differences relate to the very different forms of politics that they propose.", + "title": "Aesthetics and Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3319", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the diverse histories and features of neoliberalism, which is a theory of the political economy that proposes that human well-being can best be advanced through the free market. We begin by learning about the historical conditions that led to the emergence of neoliberalism and the popularization of the ideology of the responsible, self-maximizing individual that lies at the heart of it. We will then examine the effects of neoliberal policies on various societies across the world. Finally, we will discuss whether the mounting public criticisms of neoliberalism will lead to its demise.", + "title": "Neoliberalism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3320", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course aims to strengthen the knowledge of students on one of the major issues in international affairs: why and how non-state organizations resort to violence in order to achieve political objectives? More specifically, it looks at two main forms of political violence, terrorism and insurgencies, and explore their historical manifestations. It covers fundamental questions such as how to define terrorism and insurgencies? How to characterize their ideologies, tactics? It also explores case studies from different regions to enable students to identify similarities and differences in the ways terrorist and insurgent organizations have grown.", + "title": "Terrorism & Insurgencies in Contemporary World Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3321", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module tries to provide theoretically-informed and empirically-grounded understandings of issues related to corruption and anti-corruption. Students are expected to gain proficiency in analyzing problems of corruption using theoretical frameworks and analytical tools developed in political science, economics, and law. Students will also apply the learned skills and knowledge to the design and evaluation of anti-corruption policy in both domestic and transnational settings. This module attempts to broadens students\u2019 understandings of the relationships between institutions and development and between public and private actors.", + "title": "Corruption and Anti-corruption: Theories and Policies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3322", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Instances of statelessness and refugeedom dominate headlines today. But what does \u201cstatelessness\u201d mean? Rather than solely focusing on contemporary doctrinal interpretations of statelessness, this course emphasizes twentieth century global, regional, and national histories within which statelessness emerged as a political and legal category. We reflect on limits of refugee regimes in the historical context of South and Southeast Asia. Engaging judgments, treaties, oral history, videos, and images, we explore postwar displacement, decolonization, reconstruction and emerging Cold War tensions in these regions. Finally, we also discuss ethical and political issues at stake in writing about statelessness.", + "title": "Statelessness: Law, History, Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3323", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines various issues in global health to illuminate global governance concepts and theory. Questions explored include: What are the health threats and opportunities that arise with globalization? Who are the main actors and what are the major institutions influencing processes of global health governance? How do existing institutional arrangements function in responding to global health challenges, and what are the limitations? What new policies, practices, and approaches merit further attention? To engage comprehensive examination of these key issues, we will turn to global governance and IR concepts including power, authority, soft vs hard law, regime, and normative change.", + "title": "Global Health Governance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3324", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Technology is a central aspect of international security and can often decisively shape the balance of power between states as well as the outcomes of military conflicts. This course studies the emergence of technology as a function of politics, social institutions, and economics; the impact of technology on international security; and attempts to regulate technologies through international law and institutions. Starting with the railroad in the 19th century, the course will cover the emergence and impact of historical technologies such as the tank, the submarine, and nuclear weapons, and contemporary technologies such as drones, artificial intelligence, and cyberspace.", + "title": "Technology and International Security", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3325", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will build upon the knowledge of early modern liberalism that students learn in PPT 2. We will begin with an examination of John Locke\u2019s classic work of liberalism, The Second Treatise of Government. We will then examine Jean-Jacques Rousseau\u2019s critique of liberal state of nature theories in his Discourse on the Origin of Inequality. After that we turn to twentieth-century critiques of liberalism offered by Virginia Woolf, Malcolm X, and Michel Foucault. Here we will study how liberalism relies on masculine (Woolf), racist (Malcolm X) or disciplinary (Foucault) mechanisms and examine the political alternatives offered by these thinkers.", + "title": "Liberalism and Its Critics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3326", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores how social relations feel and why. Approaching emotions as irreducibly social, it investigates where feelings come from, how they vary between social groups and across time, and the numerous ways in which they emerge from and shape social life. Exploring emotions through both theory and ethnography, the course describes how anthropologists understand emotions and the ways in which ethnography enables the diverse array of feelings to be studied empirically and cross-culturally.", + "title": "Emotions, Feelings, Affects", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3327", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is designed to introduce students to thinking about gender in relation to urban life. Through a consideration of a wide variety of cities from all over the world, we will examine how gender is inscribed in city landscapes, how it is lived and embodied in relation to race, class, and sexuality, and how it is (re)produced through violence, inequality, and resistance. Key topics we will address include: concepts of public/private spheres; politics of respectability; sexual violence and public spaces; pleasure and sex in the city; gender and transport; and feminist urban planning.", + "title": "Gender in the City", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3328", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Studies theory and application of time series methods in econometrics, including autoregressive, moving average, and autoregressive-integrated-moving average models, estimation with stationary and non-stationary processes; vector autoregressions; unit roots; (generalized) autoregressive conditional heteroskedasticity models; forecasting; and applications to macroeconomics and finance.", + "title": "Time Series Analysis", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3329", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Utilizing the critical lenses of anthropology and ethnography, this course examines how Islam influences culture and society in the contemporary world. We will study different social contexts, from the Middle East to Southeast Asia and the Western world, to investigate how ordinary Muslims grapple with their religious commitments and other demands of everyday life. We will analyze how the interplay between the religious and non-religious dimensions of Muslim life unfold in fields as diverse as art and aesthetic production, finance and banking, organ transplantation, law and politics, resource extraction and environmental protection, and expressions of gender and sexual identities.", + "title": "Anthropology of Islam", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3330", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides practical and specialized skill sets for students interested in harnessing their empirical research with qualitative analysis in the study of international politics and global affairs. The course guides students through the understanding, design, and implementation of qualitative approaches that draw upon the traditions of case study methods, process tracing, elite interviews, congruence test, comparative and within-case analysis, among others. Students will apply key aspects of this course to build and test theories employed in Capstone projects in global affairs and identify how empirical qualitative methods complement other research methods.", + "title": "Empirical Qualitative Analysis in Global Affairs", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3331", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module analyses the works of some of the most significant 20th and 21st century political and legal thinkers of the \u201ccontinental\u201d tradition. It traces the dialogue that emerges among them, in the process demonstrating arguments and counterarguments for their different positions and why their ideas matter for constitutional democratic states today. In the process, this module also provides students with a glimpse into how great academic debates unfold in writing.", + "title": "Continental Political Thought", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3332", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Do historical variables matter for modern-day development? This module addresses this question by surveying a broad set of important topics in global economic history. The time frame starts from the Neolithic Revolution to the 20th century, and the geographic coverage is globally wide. This course covers a number of important topics, including the long-run stagnation in the pre-modern world, the Industrial Revolution, the Great Divergence, the persistent impact of slavery, etc. The course will use economic theory and methods to illustrate historical experience and to help students understand the historical determinants of the present day.", + "title": "Topics in Economic History", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3333", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2023-04-25T05:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This is a course in the comparative political economy of labour. It explores the transformation of work, workers, and trade unions in capitalist societies over the past century, with particular emphasis upon the period since the 1980s. It examines these issues across a range of cases in North America, Western Europe and East Asia. Topics treated will include the labour process, collective action, globalization, liberalization, race, gender and sexuality at work, automation, the gig economy and worker co-operatives.", + "title": "Labour in Capitalist Societies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3334", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "How can we leverage the power of social-psychological theories to address pressing problems in contemporary society? This lab module introduces the interdisciplinary science of psychological interventions and behavioural change, with a particular focus on addressing social and educational problems. The course will highlight foundational theories in intervention science and critically evaluate successful cases of theory-driven psychological interventions. Throughout the course, students will learn about the basic design principles and apply them to their lab projects that are aimed at developing a prototype of psychological intervention program that can effectively address a particular social or educational problem from a user-centered perspective.", + "title": "Lab in Social and Educational Interventions", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3335", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module offers training in quantitative tools to conduct empirical research in Global Affairs. It builds upon the foundations of QR and the Methods in the Social Sciences. Topics include the challenges in causal inference, potential outcomes framework, regression analysis, matching analysis, experimental/quasi-experimental (RDD, Dif-in-Dif) methods, instrumental variable analsysis, and diagnostics and presentation of data. Students learn statistical and econometric theories and concepts, while gaining hands-on coding experiences using R-programming. The module provides quantitative skill sets applicable for GA Capstone projects, especially in international relations, international development, and transboundary phenomena such as globalization, global health, and international migration.", + "title": "Quantitative Methods in Global Affairs", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3336", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The desire to systemically control the city using information is as old as the history of urban planning. This seminar examines Smart Cities through a retrospection into the history and theory of urban data and computational models in urban planning. Learning from the technocratic planners (1910s-1920s), the cybernetic vision and urban renewal (1960s), the development of GIS (1960s), critical GIS (1990s), Big data and civic technologies (2010s), the course critically examines contemporary Smart Cities that include but are not limited to Masdar, Songdo, Sidewalk Lab Toronto, and Singapore\u2019s Smart Nation initiatives.", + "title": "Smart Cities: History of Urban Data in Urban Planning", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3337", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an introduction to the study of oil and its effects on politics, culture and the environment. With an emphasis on issues of urbanization, we will delve into a variety of national contexts to explore different interpretations on those effects: from the \u201cparadox of plenty\u201d and the \u201cresource curse,\u201d to critical analyses of the \u201cmagical\u201d qualities of oil states, the \u201cmythmaking\u201d abilities of oil companies, and the \u201cenduring legacy\u201d of the oil industry. We will read studies ranging range across multiple scales, from examinations of \u201cspace, oil and capital\u201d to investigations of the \u201clifeworlds of oil and gas.\u201d", + "title": "Oil Cities: Past and Futures of Petro-Urbanism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3338", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The alternative title for the course is \u201cFreedoms and Unfreedoms\u201d. This course will look at some seminal conceptions of freedom in contemporary political theory, as well as feminist, socialist and other challenges to these (more or less liberal) conceptions. The goal is not to arrive at a definitive theory of freedom, if such a thing exists, but to examine our own ideas about what constitutes freedom or unfreedom, and to consider the applicability of these conceptions to political institutions and problems today.", + "title": "Theories of Freedom", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3339", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will explore the tense history of an idea the rule of the people. From the trial and death of Socrates, in Classical Athens, to QAnon, we will discuss the reasons why so many political thinkers have long been sceptical about democracy. We will also see how, despite its many challenges, democracy has been able to adapt, improve, and thrive, at least up to now.", + "title": "Democracy and Its Discontents (Athens to the Present)", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3340", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course looks at political parties, movements and currents of activism in predominantly democratic capitalist countries which can be labeled in some sense Left-wing. The term \"Left\" does not lend itself to easy definition, and we will discuss its meaning throughout the course. The first part focuses upon types of Left that were dominant for most of the 20th century including Social Democracy, Communism, Socialism and the Third Way. The second part of the course looks at newer forms of Left, including new social movements (environmental and peace movements), contemporary anarchism, identity-based politics, and the emergence of radical anti-austerity parties.", + "title": "Contemporary Left Politics and Movements", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3341", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Known worldwide for its aesthetic appreciation of nature, Japan has long been represented as living in unique harmony with the natural world, even in the face of long histories of environmental extraction and degradation and a population today overwhelmingly living in concretized urban environments. This course builds on recent approaches in anthropology and the environmental humanities to explore how nature and the environment have been constructed, experienced, and controlled in Japan from the early modern period to the present. We will examine the dynamic negotiation between the physical and cultural worlds that have shaped the Japanese past and present.", + "title": "Nature and Environment in Japan", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3342", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Plato\u2019s political thought has long been considered to be a direct response to the trial and death of Socrates, a revenge against democratic Athens. However, this is not obvious. This module will introduce students to a number of Platonic dialogues, like the Apology, Phaedo, and Republic, among others, in which the development of Socrates as a thinker, as well as the ever-present tension between philosophy and politics, are explored. It will then question long-held views on the way we should approach the dialogues, particularly regarding their chronology, content, and intent. Readings will include both primary and secondary sources.", + "title": "Plato\u2019s Political Thought", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3343", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How does empire affect our world? What are the relations between war and knowledge? What is the role of European history in providing us a framework with which we understand world order as it exists in contemporary times? What are the lineages of anticolonial thought and what are the trajectories of postcolonial critiques built on the histories of race, the other, the indigenous and the hybrid? This course takes up these questions while introducing students to ways in which they can think of empire and war as having produced the system of sovereign nation-states and the contemporary world order.", + "title": "Empire, War, and World Order", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3344", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR6", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Forecasting is important to society as it allows us to give answers to various crucial questions. For example, what will the inflation rate be next year? What will happen to the SGD-USD exchange rate next month? In this class you will learn the methods that are used to answer these questions and their limitations. Topics covered include, forecasting models, judgmental forecasts, exponential smoothing and some advanced forecasting methods. For all the methods taught you will be able to implement in practice using R. The final part of the course involves a project where you put your knowledge into practice.", + "title": "Economic Forecasting", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3345", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Human cognitive and motor performance fluctuates over time. What explains peak performance and how can it be sustained? The variation can be explained by neural mechanisms of attention and executive control, physiological factors such as sleep and exercise, and psychological factors like stress and positive thinking. This seminar will discuss primary research findings and review articles.", + "title": "Performance Psychology and Neuroscience", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3346", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The destructive effects of climate change are straining natural and human communities all over the world. Yet, as policymakers search for effective policy responses, they face a fundamental political problem Every policy option lessens the costs of climate change for some while increasing the costs for others. As a result, addressing climate change provokes distributional conflicts between winners and losers, making it difficult to reach a consensus about how to adapt to the world\u2019s new reality. This course examines the political conditions under which governments worldwide overcome these problems and find ways to cope with the effects of climate change.", + "title": "The Politics of Adapting to Climate Change", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3347", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR15", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course draws on anthropological approaches to critically explore the meaning and use of human rights and humanitarianism from different perspectives. Since the aftermath of the Second World War, human rights discourses have spread around the world and been adopted by widely varying actors; similarly, a politics of care and compassion has become a prominent mode of contemporary governance. Through focusing on how human rights and humanitarianism are understood and engaged in local contexts, we will explore how anthropological perspectives can illuminate these transnational discourses and their practice.", + "title": "Human Rights and Humanitarianism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSS3348", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-CR3", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "venue": "Y-CR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is an empire? What is a nation? How do these interact in moments of crisis like decolonization? This course will examine how spatial boundaries and social boundaries interact as empires expand, both over land and overseas, and as empires contract. Our central focus will be how the \u201cnation\u201d works as a contested notion, and a contested boundary, within the broader frame of empire. We will trace struggles over national identities as metropolitan cores and colonial peripheries have been produced in the Americas (including the Caribbean), Europe, Asia, the Middle East, and Africa.", + "title": "Empire, Nation, and Decolonization", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3349", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar introduces social movement theory as an analytical and methodological framework for analyzing the emergence and evolution of social movements and contentious politics across the Muslim world from the early 20th century to the present. After introducing theoretical approaches to the study of collective action, we will work through a range of case studies of different types of movements\u2014political and non-political, militant and non-militant, Islamist and \u201csecular,\u201d national and transnational\u2014from the birth of the Muslim Brotherhood in Egypt in the 1920s through present-day protests in Iran and elsewhere.", + "title": "Social Movements in Muslim Majority Societies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3350", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will discuss some of the 20th Century\u2019s most prominent thinkers\u2019 interpretation of what political philosophy is, and what it should be. Readings by Karl Popper, Isaiah Berlin, Leo Strauss, Michel Foucault, and Jurgen Habermas. A common thread among the thinkers we will be covering is a disenchantment with the philosophic tradition and the \u201cisms\u201d -- from Liberalism to Marxism to Nihilism -- to which it led. In this seminar we will examine their assessment of humankind's political situation in the wake of the Second World War, as well as evaluate their proposed alternatives.", + "title": "Political Philosophy after World War II", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3351", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Innovation and entrepreneurship are key drivers to socio-economic growth and development. At the same time, legal factors and actors play an instrumental role in catalysing, influencing and regulating them. This course seeks to explore various interactions between innovation, entrepreneurship and law, and provide students with an exposure of real-world issues and challenges in these areas. While the course explores the legal environment and topics, it is open to students of all disciplines to broaden their perspectives in both business and law.", + "title": "Innovation, Entrepreneurship and Law", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS3352", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1000", + "endTime": "1300", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Global Affairs Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the Global Affairs major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Global Affairs Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSS4101", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Psychology Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the Psychology major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Psychology Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSS4102", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1230", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Anthropology Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the Anthropology major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Anthropology Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSS4103", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Economics Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the Economics major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Economics Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSS4104", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "Unknown" + } + ], + "covidZones": [ + "Unknown" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Urban Studies Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the Urban Studies major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Urban Studies Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSS4105", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Politics, Philosophy and Economics (PPE) Capstone Project is a year-long 10-MC module, straddling over two semesters. It is a compulsory module that students in the PPE major must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing, while working closely with a faculty supervisor. Students will work on an advanced creative and/or research or experiential project that integrates skills from the Common Curriculum and learning in the major. The Capstone Project will culminate in a substantial piece of work that reflects a deep engagement with the topic.", + "title": "Philosophy, Politics and Economics Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSS4106", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1200", + "endTime": "1500", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The Law and Liberal Arts DDP Capstone Project is a year-long 10-MC module straddling two semesters. It is a compulsory module that students in the DDP programme must complete in order to graduate. It allows students the opportunity to pursue, in depth, an advanced project of their own choosing while working closely with a supervisor. Students will work on an advanced research project that integrates both the Law and Liberal Arts components of the DDP programme.", + "title": "Capstone Project", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "10", + "moduleCode": "YSS4107", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This seminar will examine recent and influential work in personality and\nsocial psychology on motivational and self\u2010regulatory processes contributing\nto the pursuit of goals.\n\nOn successful completion of the course a student should be able to: Convey a\ndeep understanding of motivational processes involved in the pursuit of\ngoals. Also to conduct an effective literature review, construct novel and important hypotheses, competently critique the extant literature, design\nexperiments, and write an effective research proposal.", + "title": "Goals and Motivation", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4202", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Students will gain a deeper understanding of the major contours of the debate and discussion on China\u2019s contemporary international relations. The course examines the political, diplomatic, military, and economic challenges facing China under conditions of uncertainty in the regional and international system and the processes through which China responds to and manages these external challenges. The course will analyse how existing theories of international relations and foreign policy analysis apply to China to gain a deeper appreciation of the factors that undergird conflict and cooperation in Chinese foreign policy.", + "title": "Chinese Foreign Policy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4205", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR11", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is morality, where does it come from, and how does it work? Why are we so obsessed with what other people do, even when it does not affect us? Psychological research has focused on moral reasoning, but we will look at morality from many other angles and disciplines. This module will introduce you to the study of the origins, development, and cognitive processing of morality. The module will cover the history of moral psychology, and the shift from cognitive- developmentalist theories of reasoning-based morality to the current social intuitionist theory of intuition and emotion based morality.", + "title": "Topics in Psychology: Moral Judgments", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4206A", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will review the current literature on relationship science and explore how psychological findings can inform dating apps. With an eye towards applications, this course will feature conversations with the local dating industry.", + "title": "Topics in Psychology: Love in An Age of Technology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4206B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In this course, we will explore scientifically-validated strategies to living a better life. We will review the current literature in positive psychology, and explore how psychological findings can teach us how to be happier, feel less stressed and to live a more fulfilling life.", + "title": "Topics in Psychology: The Pursuit of Happiness", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4206C", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "A survey of psychological studies on thinking and reasoning, with discussion of ways to improve thinking skills. Topics include judgments and decision making, biases in thinking, counterfactual reasoning, causal inferences, problem solving, critical thinking, and creativity.", + "title": "Topics in Psychology: Thinking", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4206D", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 15, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the relationship between urbanization and the creative industries. Increasingly urban economic growth, built environment regeneration and community development operate in and through the logics of creativity, be they expressive spectacles, arts festivals, branding, or state-led/community-based arts initiatives. This course explores the link between the arts and urban development, examining it historically and in a range of contemporary contexts. Students will both analyze the causes of the rise of creative industries-led urbanization economically and socially, as well participate as urban creatives through various media.", + "title": "Creative Cities", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4207", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will expose students to a field of inquiry within anthropology that is close to the heart of the professional work of their professor. It will fulfil one of the advanced seminar requirements within the anthropology major of which students are required to take two.", + "title": "Adv Topic in Anthropology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4208", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course takes an in-depth look at how reproductive technologies are changing lives around the globe. Since the introduction of oral contraceptives in the early 1960s, the past 50 years have seen the rapid innovation and globalization of many other reproductive technologies, spanning the life course from birth to menopause. As reproductive technologies have evolved over time, so have the social, cultural, legal, religious, and ethical responses to them. This course offers exposure to the growing scholarship on the anthropology of reproduction, with special focus on ethnographies and documentaries devoted to reproductive technologies around the globe and especially in Asia.", + "title": "Adv Topic in Anthro: Reproductive Technologies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4208B", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Science and Technology Studies have led us to new questions about knowledge and power. This course reconsiders the history of semiotic technologies, from Sanskrit to iphones, with special attention to changing conditions of possibility for the state. Which semiotic technologies enable new kinds of state institutions (such as Weber\u2019s \u201clegal/rational order\u201d) and which can undermine state monopolies and hegemonies? Following Weber to study means and forces of coercion and of communication as well as means and forces of production, this course is intended to complement study of \u201clanguage ideology\u201d and to pose new questions about the politics of sign circulation.", + "title": "Signs and the State", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4209", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Critical Global Public Health examines how various assemblages of global,\nnational, and subnational factors converge on a health issue, problem, or\noutcome in a particular local context.", + "title": "Critical Global Public Health", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4210", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "With the world\u2019s second largest population, third largest economy, and\nthird largest military, India is a pivotal country in Asia and the world. This\ncourse will cover modern India\u2019s history, domestic politics, and foreign\npolicy and provide students with a sophisticated understanding of the\nworld\u2019s largest democracy and its changing place in global affairs. It will\nalso locate India as a vital Asian power and highlight its historical ties with\nvarious countries in East and Southeast Asia. Students will learn how\nIndia\u2019s international behaviour fits or does not fit the claims and\npredictions of various strands of international relations theory.", + "title": "India as a Rising Power, 1947-Present", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4211", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores contested strategies for advancing community development from around the world. These strategies respond to diverse social, cultural, and institutional contexts, revealing varied interpretations of what communities are and what resources and capacities are necessary for their development. We will use this investigation to inform a semester-long engagement with a community in Singapore to understand the challenges and opportunities that community members face. This engagement will be aimed at the collaborative formulation of proposals aimed at strengthening the community. The thematic focus of this engagement may change with instructors and or community needs.", + "title": "Community Development: In Search of the Kampung Spirit", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4213", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR3", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the role that sex plays in the exchanges and\ncirculations that make up human social life. Whether for procreation,\npleasure, social status, the solidification of kinship networks, religious\ndevotion, the marketing of reproductive tissue, or social reproduction\nitself, sex and sexual relations are far from being \u201cprivate\u201d acts of no\npolitical consequence. On the contrary, they are integral to larger practices\nand institutions. The course will introduce students to multidisciplinary\nperspectives on the intersections of sex with money, politics, social status,\nand access to resources.", + "title": "Sexual Economies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4215", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The study of popular culture in anthropology generally focuses on\nexpressive forms of collective meaning in local contexts. Expressive forms\nof collective meaning are aesthetic (expressive) representations of society\n& culture \u2018made by people themselves for themselves.\u2019", + "title": "The Anthropology of Popular Culture", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4216", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an Elective in Global Affairs that offers students an in-depth\nand advanced level exposure to the organization of production networks\n(aka commodity, value, supply chains) in the global economy. It will enable\nstudents to understand globalization from the ground up by giving them\nhistorical background on the increasing complexity and transnational\ncontent of global production, and analytic tools to understand why and\nhow firms and governments make choices that produce the production\nnetworks we see today. The course will also examine Singapore\u2019s role as a\ncentral node in Asian production networks. Specific details are in the\nsyllabus.", + "title": "Production Networks in the Global Economy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4217", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course offers students an overview of the Arab-Israeli dispute, and attempts to negotiate a meaningful resolution. The course considers the reasons for the failure of the peace process, from an international law perspective. It looks at the dispute between Israel and the Palestinians, and the way the dispute has been shaped by outside actors and events. Beginning in the period of European colonialism, the course takes students through the Cold War and its aftermath to the Oslo years, the \u2018war on terror\u2019, and the unrest in the region after the uprisings in 2011.", + "title": "Law, War, and Peace in the Middle East", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4219", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Housing is an essential necessity for living. The housing unit is concurrently a consumption good and an investment good. As a commodity, the quality and quantity of housing distribution and consumption are unequal, reflecting intrinsic social and economic inequalities in the society. As the logic and practice of the housing market unavoidably fail in providing adequate housing for all, the state is left with the responsibility of providing for those that the market has marginalized. This module will examine the role of the market and the state in engendering and perpetuating social and economic inequalities through the housing provision.", + "title": "Housing and Social Inequality", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4220", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the structures of power within the European State since WWII. The course content will explore historical context, political integration of the European Union (EU), the domestic politics of specific European countries, as well as the effects of integration on the governance in member states, and specific elections and outcomes. Students will also analyze the position of EU in the international system. Contemporary issues of Brexit and the rise of populism in European democracies. Assessment will challenge students to create an in-depth policy memo which synthesizes the historical, political and practice of politics of Europe.", + "title": "Contemporary European Politics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4222", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course is an upper level seminar that engages students in the study of identity and politics within political science. Students will become acquainted with various theories and approaches to understanding the construction and mobilization of identities: national, ethnic, religious, gender and sexual orientation. Drawing on the empirical literature on the politics of identity in Sub-Saharan Africa, South Asia, and Southeast Asia, students will learn how identities have been constructed, and how they in turn influence outcomes such as violence, voting behaviour, governance, inequality, and inter-group trust and cooperation.", + "title": "Politics of Identity in Developing Countries", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4223", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The 20th and 21st centuries have seen an unprecedented global expansion in the number of one-party regimes. Despite not conforming to standard definitions of democracy, these regimes have proven more stable and developed faster than non-democracies with which they are often grouped. In this module, students will gain a deeper understanding of politics within such regimes from a comparative politics perspective. Topics covered include the conditions facilitating the establishment and spread of one-party regimes, how leaders manage threats originating from both inside and outside the regime, the role of elections, and the conditions in which transitions away from regimes occur.", + "title": "Political Order and One-Party Rule", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4224", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR12", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This 4000-level advanced course will engage students to key areas of contemporary policy concern in the realm of international migration. Adopting a global perspective, it focuses on both the international and domestic policies that deal with migration issues and migrants. The course will be divided into three broad units, the first focusing on policies instituted by net sending countries, the second on net receiving countries, and the third focusing on global/multinational/bilateral initiatives to manage/control migration.", + "title": "Migration Policy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4226", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers econometric techniques as applied in empirical work in economics, at a level that is accessible to advance undergraduates. The topics are divided into two categories: Market Valuations and Non-Market Valuations. We begin with demand and supply estimation and the computation of consumer and producer surpluses. We investigate the use of surplus measurements to evaluate the impact of policies and the introduction of new good. We then move towards estimating the \u2018demand side\u2019 of environmental economics. The focus will be on stated and revealed preferences techniques for estimating the non-market values associated with environmental and other public goods.", + "title": "Topics in Applied Econometrics", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4227", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1100", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-22T01:00:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course is a comparative examination of the different ways people\nsleep and understand dreams, and the social consequences of these\ndifferences across cultures. It explores how people sleep and experience\ndreams shapes the broader ways knowledge, social relations, and wellbeing\nare conceived and enacted in human societies.", + "title": "The Anthropology of Dreams and Sleep", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4228", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores anthropological perspectives on how human rights discourses are produced and used in the world today. While the modern idea of human rights was only formalized in the aftermath of the Second World War, since that time, human rights discourses have spread around the world and been adopted transnationally by widely varying actors. Starting from the premise that the transnational discourse of rights must be understood in local contexts, we will explore the meaning and use of human rights from different perspectives.", + "title": "The Anthropology of Human Rights", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4229", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides a theoretical and empirical overview to the\nemerging field of mindfulness. It introduces students to the scientific\nresearch and applications of mindfulness-related processes and\ninterventions (e.g., mindfulness-based stress reduction, dialectical\nbehavior therapy) across domains such as mental health, behavioral\nmedicine, education, and cognitive neuroscience. The module also\nprovides students with an opportunity to engage in formal and\ninformal mindfulness practices. It is suitable for students interested in\nacquiring not only a critical, scholarly understanding of the topic, but\nalso an experiential understanding of mindfulness practice and how it\nrelates to various aspects of one\u2019s life.", + "title": "Psychology of Mindfulness", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4230", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the various aspects of parental influence on\nchildren\u2019s development, with a focus on cultural differences in parenting\nstyles and practices. Topics to be covered include a critical evaluation of\nthe conceptual and functional differences of parenting practices across\ncultures, and how these may influence children\u2019s development in diverse\ncontexts. The notion of \u201cgood enough parenting\u201d and parenting as a bidirectional\nprocess will be analysed. The course concludes with a\ndiscussion of whether parents are the most important source of\ninfluence, considering the many other domains of influence in children\u2019s\nlives, such as peers.", + "title": "Parenting and Child Development", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4231", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module will challenge advanced students to connect the three\nmain threads of the PPE major: politics, philosophy, and economics. To\ndo so, we will analyse the historical development and the legitimacy of\nthe Welfare State, which rose to predominance in the twentieth\ncentury. To understand its future, we will examine the myriad of\nchallenges facing it today, including economic crises and interstate\norganizations. We will also consider how questions arising from the\nWelfare State bear on other values, especially democracy and the rule\nof law.", + "title": "Advanced Topics in PPE: The Welfare State", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4232", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course offers an advanced-level, in-depth understanding urban\nheritage, both as it manifests in the built environment but also in\nintangible social and cultural phenomena. The course begins by\ndefining what heritage is in urban contexts, and inquiring into the\nspecial pressures urbanisation places on \u201cinherited\u201d built forms and\nways of life. The module will draw on historical developments in urban\nheritage politics and planning in both North America and Europe, but\nthe key emphasis will be on in-depth understanding of the emergence\nof urban heritage landscapes in Asian cities.\nThe course offers an advanced-level, in-depth understanding urban\nheritage, both as it manifests in the built environment but also in intangible social and cultural phenomena. The course begins by\ndefining what heritage is in urban contexts, and inquiring into the\nspecial pressures urbanisation places on \u201cinherited\u201d built forms and\nways of life. The course will tackle the following topics:\n\u2022 the contested politics of whose past becomes heritage, and why?\n\u2022 the relationship between urban heritage places, memory and identity\n\u2022 civil society interests and political activism\n\u2022 scholarly architectural debates about how to preserve the past:\nrestoration, preservation, conservation, renewal etc (Ruskin et al)\n\u2022 state-based processes of recognition and preservation\n\u2022 international frameworks for conservation\n\u2022 The tensions between heritage, tourism and authenticity\nThe module will draw on historical developments in urban heritage\npolitics and planning in both North America and Europe, but the key\nemphasis will be on in-depth understanding of the emergence of urban\nheritage landscapes in Asian cities.", + "title": "Urban Heritage: Place, Memory, Identity", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4234", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "How does media enable religious practitioners to experience the divine in\nthe immediacy of the \u201chere and now\u201d? Prayer, liturgy, chanting,\nmeditation, and acts of remembering to commune with higher powers, are\nacts that incorporate audio-visual technologies, t.v., radio, internet,\nreligious texts, art, relics, icons, as well as so-called \u201cidols\u201d and \u201cfetishes.\u201d\nFocusing on the intersection of religion and media, students will analyze\n\u201csensational forms,\u201d and religious conceptions of how to properly\nrepresent the divine (\u201csemiotic theologies\u201d). By examining media use of\nseveral religious communities around the world, the course highlights\ncritical aspects of religious practice and religious difference.", + "title": "Religion and the Media Turn", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4235", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The field of medical anthropology boasts a rich theoretical and empirical\ntradition, in which award-winning ethnographies have been written on\ntopics ranging from local biology to structural violence. Guided by the\nkey text, Medical Anthropology at the Intersections: Histories, Activisms,\nand Futures, this course will explore the canonical works of a number of\nleading medical anthropologists, including several whose research\nfocuses on Asia (e.g., Das, Kleinman, Lock). Three key themes will be\nexplored: 1) structural violence and social suffering; 2) technoscience and\nembodiment; and 3) medicine and humanitarianism.", + "title": "Medical Anthropology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4236", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Some of the most important turning points in world history have resulted\nin, and from, territorial expansion and conquest of both inhabited and\nuninhabited frontiers. Many of the international laws we now take for\ngranted emerged as the result of highly contentious and uncertain\nincursions into previously un-regulated domains.\nIn this course, students will explore the root causes of state-led territorial\nexpansion and the ramifications of conquest and domination for\ninternational law. We will analyse theories of conquest and delve into\ncase studies of particular cases of expansion into inhabited territory (e.g.\nJapan\u2019s Co-Prosperity Sphere, United States\u2019 westward expansion across\nAmerica, German expansion in Western and Eastern Europe) and state\nexpansion into uninhabited frontiers (e.g. South China Sea disputes,\nairspace, outer space, Antarctica, the deep sea). Students will learn to analyse and critique competing arguments, synthesize explanatory\nlenses, and perform research into this arena of international politics and\nlaw.", + "title": "Conquest, Territorial Expansion and International Law", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4237", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "What means sustainable development and how can it be financed? We\ninvestigate the changing visions, approaches, and experiences of\ndevelopment in Asia. We focus on the political economy and the policies\nleading to growth and its inequality and wellbeing impacts. We analyze the\nrole of (international) state, business, and civil society actors.\nOne illustration of such ideational and financial influences will be microfinance.\nAwarded the Nobel Prize for its role in poverty alleviation and\nwomen\u00b4s empowerment, it increasingly made negative headlines. Does\nmicro-finance provide a feasible market-driven solution? How does\nglobalization and liberalization influence other new approaches to\nsustainable development?", + "title": "Micro-Finance and Sustainable Development in Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4238", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the multiple ways in which cities are built by processes that cross national boundaries. From the earliest times of transnational mobility, processes of urbanization have been shaped by these movements and the flows of capital, people, and knowledge they give rise to. These transnational currents raise important questions for how we understand urban development. From the effects of colonial expansion on cities, through to the contemporary trend of itinerant urban expertise, the course will offer varied perspectives on the phenomenon of transnational urbanism. The seminar will draw on a range of theoretical approaches and range across political, economic, social and culture formations.", + "title": "Adv Seminar in Urban Studies: Transnational Urbanism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4239", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to provide a critical and broad overview to the field of clinical psychology. Students will have an opportunity to read both historical (landmark) and contemporary literature related to major topics within clinical psychology, ranging from classification of psychological disorders, multicultural issues in clinical practice, to controversies surrounding empirically supported interventions. The module will have a specific focus on assessment and major intervention approaches, along with student-led presentations on the etiology and/or treatment of various psychological disorders. Readings consist of a combination of textbook sources, empirical research articles, and critical, narrative pieces on selected issues.", + "title": "Advanced Clinical Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4240", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Although founded on ideals of humanism and human exceptionalism, anthropology provides a unique perspective on the nature of anthropocentrism in the Anthropocene. This course builds on key theoretical insights articulated by a range of post-humanist scholars in order to rethink the relationships between us as a species of cultured animal and a range of other species. In doing so, this course will trouble the distinction between ethnological methods, ethnographic representation, ethology, and biology to provide insight on how contemporary scholarship in the discipline provides new ways of understanding ecology, environmental activism, scientific research, medical technology and non-human animal rights.", + "title": "Multispecies Ethnography", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4241", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "An anthropological study of contemporary Asian cities. Focus on new ethnographies about cities in East, Southeast, and South Asia. Topics include rural-urban migration, redevelopment, evictions, social movements, land grabbing, master-planned developments, heritage preservation, utopian aspirations, social housing, slums and precariousness, and spatial cleansing.", + "title": "Urban Ethnography of Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4242", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar examines the phenomenon of war during the years between the emergence of the modern nation-state and the end of the Cold War. We survey the leading theories on the causes of war, their key concepts and causal variables, the causal paths leading to war or to peace, and the conditions under which various outcomes are most likely to occur. We also closely examine key historical works on major wars, and evaluate the degree of empirical support for various theories and hypotheses. The module will also explore sources of great power conflict in today\u2019s international politics.", + "title": "Study of Modern Wars", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4243", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of the anthropology of the African diaspora, its connections to Africa, and the emergence of the modern world. It will examine the history and ethnography of the cultural formation of the African diaspora through the detailed examination of critical questions about diaspora, migration, race, cosmology, subjectivity, and identity formation.", + "title": "African Atlantic Perspectives", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4244", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The course will engage students in examination of the social problem of violent conflicts, primarily through ethnographic case studies. The course will take an anthropological approach to both extraordinary cases of political violence, as well as ordinary forms of violence in less publicized cases occurring in everyday life. Drawing on the discipline\u2019s unique methodologies and theoretical developments that rely on long-term field research, students will learn about the causes and conditions of violence, and also about how people live and cope with it. The ethnographic material under study will focus largely, but not exclusively, on cases of violence in Asia.", + "title": "Anthropology of Violence", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4245", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "What is education and who is it for? What should education do, and how do we achieve this ideal? How does education relate to society as a whole? Do educational systems reproduce inequality? Is education a tool for social control? These are some of the questions that this course will address. Students will collaborate on original ethnographic research projects. Readings will span Marxian, feminist, and postcolonial critique; social history; and ethnographies of education in different parts of the world. Topics include the formation of classes, the discourse of diversity, the meaning of merit, and the marketization of higher ed.", + "title": "Anthropology of Education", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4246", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module examines the multiple ways in which cities are built across national boundaries. Processes of urbanization have been long shaped by global flows of capital, people, and knowledge. These transnational currents raise important questions for how we understand urban development, past and present. This advanced seminar will give students the chance to carefully review a range of perspectives on the phenomenon of global and transnational urbanism. Topics will range from the effects of maritime trade and colonial expansion on the production of space, the rise of global logistics, the emergence of the idea of \u201cworld cities,\u201d and recent trends in itinerant urban expertise.", + "title": "Global and Transnational Urbanism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4247", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This seminar is designed to guide students toward developing proposals focused on qualitative socio-legal research. Students will be introduced to socio-legal literature, the conduct of socio-legal inquiry, and a mix of relevant research methodologies. They will undertake substantial work outside of class, reading targeted literature, identifying research questions, organizing their research strategies and completing assignments that will lead to their research proposals. This course is suitable for \u2013 but not limited to \u2013 students in their penultimate year, who plan to undertake capstone projects related to law or interdisciplinary research that involves legal norms, rules, or rights and their relationship to social relations or change.", + "title": "Conducting Qualitative Socio-Legal Research", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4248", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Economic inequality is both increasing and more visible than in the recent past and is, for this reason, emerging as an important social concern. This course covers the basic facts of rising inequality and the models used to understand its causes and consequences.", + "title": "The Economics of Inequality", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4249", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course examines how anthropologists address themes of gender and sexuality in South Asia through reading recent ethnographies. The course introduces students to varied ways that ideas about gender and sexuality, and social relations of gender are constructed, maintained, and challenged in South Asia. Issues to be explored include marriage, kinship and the body; religion and nationalism; masculinity studies; gender and violence; globalization and international gender development; globalization, education and work; sex work; queer activism and transgender identities. Emphasis is on India but other parts of the region are also considered (Pakistan, Nepal, Bangladesh, Sri Lanka). Films will supplement readings.", + "title": "Gender and Sexuality in South Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4250", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module offers a critical excursion into social theory from the perspective of the \u201cglobal south,\u201d broadly conceived; that is, theory which questions the orthodoxies arising from the modernist, EuroAmerican social sciences. It explores foundational concepts by estranging them: among others, personhood, liberalism and neoliberalism, democracy, modernity, the nation and its borders, civil society, sovereignty, history, crime and social order. Taking Africa as one of its exemplary contexts, it will explore and evaluate some of the critiques levelled by non-western scholars at \u201cclassical\u201d wisdom, its relationship to colonialism and empire, and the rise of industrial capitalism.", + "title": "Theory from the South: Critical Perspectives", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4252", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Anthropologists have long argued against the radical separation of theory and method. Not only does ethnographic observation shape the knowledge it produces; anthropology\u2019s commitment to an intersubjective world determines the kind of embedded observation, \u201cthick description\u201d and \u201cgrounded theory\u201d that are its stock-in-trade. But what are ethnography and grounded theory in our late modern world, when many of the humanist assumptions on which anthropology was founded have come under critique - feminist, Marxist, queer, and postcolonial? Drawing on ethnographies past and present, this class will explore these questions through a close engagement with ethnographic texts, past and present.", + "title": "Ethnography as Theory and Method: Classical and Contemporary Readings", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4253", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Political science and the study of social choice, microeconomics and elementary game theory are combined in the search for a more comprehensive vision of the forces underlying the structure and evolution of public policy within and across countries. Topics covered include the economics of public goods and externalities, the free-rider problem and collective action, the operation of collective choice mechanisms such as pure majority rule, the relationship between the institutions of representative democracy and economic welfare, special interest politics, and the bureau. Some attention is paid to the historical evolution of ideas.", + "title": "Topics in the Political Economy of Public Policy", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4257", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module provides an economic perspective on the working of financial markets and asset valuation methods. It covers three important asset classes: fixed income, stocks, and derivatives. The module also examines the extent to which financial markets are informationally efficient and its implications to asset management, market anomalies and investor behaviours.", + "title": "Asset Pricing, Financial Markets & Behavioural Finance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4258", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR4", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ], + "examDate": "2022-11-25T06:30:00.000Z", + "examDuration": 180 + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ranging from simple models which analyse the global free rider problem and international negotiations, to computational cost-benefit models and energy systems models, the economics of climate change is a growing and important field. In this half course we will learn about some of the most important examples.", + "title": "The Economics of Climate Change", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSS4259", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Economic inequality is both increasing and more visible than in the recent past and is, for this reason, emerging as an important social concern. This course covers the basic facts of rising inequality and the models used to understand its causes and consequences.", + "title": "The Economics of Inequality", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "2.5", + "moduleCode": "YSS4260", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course introduces students to psychological anthropology. We probe the cultural assumptions underpinning theories of the mind and consider how anthropology contributes to scholarship on the psyche and its workings. We begin by examining the relationships between the psyche, the body, and power through engaging with conversations in cross-cultural psychology, psychoanalysis, black existentialism, and feminist and queer theory. Next, we ground our analysis in ethnographies by anthropologists who are also practicing psychiatrists, therapists, and social workers. Addressing such topics as madness, addiction, and possession, we examine the interrelationships between power, politics, and intimate experience.", + "title": "Psychological Anthropology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4261", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a research- and writing-intensive module designed to guide students toward developing research proposals involving interdisciplinary legal research. It covers interdisciplinary approaches to legal research and research methodologies including qualitative, survey, and archive-based research. Students will work in a seminar-style environment and learn from one another through discussions inside and outside the classroom. This module is suitable for \u2013 but not limited to \u2013 students in their penultimate year who plan to undertake interdisciplinary research that involves legal norms, rules, or rights and their relationship to social relations or change.", + "title": "Interdisciplinary Legal Research Methods", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4262", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to introduce a broad overview to the main orientations of psychological therapies in clinical psychology. This includes psychodynamic psychotherapy, behavioural therapy, cognitive behavioural therapy, contemporary cognitive behavioural therapies and systemic therapies. The module will focus on theoretical underpinnings, mechanisms of change and applications to psychological problems. Seminars will include didactic teaching, class discussions, experiential exercises, student-led presentations and videos.", + "title": "Psychological Therapies", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4263", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0930", + "endTime": "1230", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The goal of this module is to provide an overview of the theories, methods, and research in the field of social conformity. The course is grounded in empirical research articles and scholarship that illustrate the foundational principles of social conformity from developmental and social psychological perspectives. This course will also explore the application of social conformity as it pertains to socio-politics, health, business, and society.", + "title": "Psychology of Social Conformity", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4264", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course focuses on ways of representing and residing in worlds which are different from (what is taken to be) the actual world in various respects. Such possible worlds include literary worlds (e.g., Narnia), psychological worlds (what someone wishes to be the case or believes to be the case), environmental worlds (possible environmental futures), virtual worlds (the World of Warcraft), physical worlds (portions of the putative multiverse in accordance with the laws of physics), and--most of all--ethnographic works in which the actual and possible worlds of others are represented.", + "title": "The Anthropology of Possible Worlds", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4265", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This advanced seminar examines the intersections between law and resistance. We explore how resistance is conceptualized; the many faces of power; the power of law in coercion and repression, and the responses to power, including but not limited to resistance; how resistance emerges; various types of resistance, including individual, collective, uncoordinated, coordinated, hidden, and open forms; the role of law in tactics of resistance; the role of lawyers; and the efficacy of law in achieving social change. We explore these issues by reading classic and recent works, as well as discussing case studies selected and presented by students.", + "title": "Law and Resistance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4266", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "Religion remains a force in the contemporary world keeping its hold not only on the private lives of individuals, but also tenaciously maintaining its presence in national, transnational and global politics. Yet, a marked feature of modern states is secularism, the assertion of (varying degrees of) separation of law from religion. The result of this contradiction is that contestations over religion-state relations remains a protracted feature of our increasingly religiously and ideologically polarized world. With specific reference to the idea of secularism and the right to religious freedom, this class will explore debates over religion-state relations in comparative contexts.", + "title": "Religion-State Relations in Comparative Perspective", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4267", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course explores the dynamic role of non-state actors and how they interact with more established major players in global affairs (states and intergovernmental organizations). It focuses on civil society organizations and the business sector as two major categories of non-state actors. Core questions include: When and how do non-state actors matter? What are the sources of their influence? What kind of strategies do they use to achieve their goals? What are normative implications of the growing influence of these new actors? And how should the study of IR respond to this relatively new phenomenon?", + "title": "Non-State Actors in Global Affairs", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4268", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR14", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course investigates the emergence and current state of global internet governance. The globalization of the internet has fundamentally altered the world as we know it, from intimate facets of life like dating to sweeping changes in international security strategy. These developments reflect the distinctive evolution and contemporary forms of internet governance. The internet\u2019s global scale and integration are not inevitable. Through this course, we will explore different ways the internet might have developed, different governance and regulatory options, the power and political dynamics behind the internet\u2019s current form, and we will imagine different internet futures that may arise.", + "title": "Governing the Internet", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4269", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This course provides an overview of contemporary research and theories in the field of human social neuroendocrinology\u2014a field that lies at the intersection of social psychology and behavioral endocrinology. Students will learn about the reciprocal relationship between hormones and social behavior: how hormones modulate human social behavior (e.g., aggression, prejudice, mating behaviors, decision-making), and the role of the social environment in altering hormone systems and hormone-behavior relationships. The module will also delve into methodological practices and considerations for designing social endocrine studies.", + "title": "Hormones and Behavior", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4270", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course will cover experimental lab and field research from social psychology that address social injustice and related topics, such as achievement gaps, racism, sexism, ageism, health disparities, and deficits in equity, diversity, and inclusiveness. Students will read scientific articles, chapters, and scholarly reviews regarding this area of research and the seminar will largely revolve around discussions of those papers and their weekly written reactions. The course will culminate in a paper assignment that will require students to identify a pressing social injustice and to develop an implementable program to address it based on research we cover in the class.", + "title": "Confronting Social Injustice with Social Psychology", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4271", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-PgRm2", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Southeast Asia\u2019s fascinating array of experiences and outcomes within and across countries provides an interesting opportunity for answering key questions in political science. We will examine issues related to the mobilization of communal ties, nation-building policies, political representation and governance, everyday interactions between citizens and between citizens and the state, and protests and violent mobilization. We will read classical and new works in social sciences, that offer insights into the variation we see in the region. This class builds on some of the concepts and topics already covered in International Relations, International Development, Methods in Social Sciences, and Comparative Politics.", + "title": "Politics of Southeast Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4272", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR21", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Ideologies and ideas determine the discourse of political life in a country. India is a salad bowl of competing ideologies. Since the rise of a Hindu party in Indian politics, public discourse has expanded and homegrown ideas in their religious, economic, and political forms, have re-emerged. We will read some of these texts and understand the key ideological divides in the country. These ideologies have real effects. They influence the state\u2019s role in faith, the managing of diversity, the fixity of a constitution, and more. They are central to the country\u2019s economic, political and social direction. By the end of the course, we will understand how to study ideology, locate it in diverse forms, and develop skills towards interpretation.", + "title": "Ideology in India", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4273", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1600", + "endTime": "1730", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR8", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Is smaller better for peace and prosperity? This module explores the blessings and perils of state size across four themes Development, Commerce, War and International Organizations. It grounds this exploration with insights on the political and economic consequences of size from ancient (Thucydides) and contemporary (Nassim Nicholas Taleb) thinkers, as well as work in economics, political science and history. The module\u2019s goals are two-fold First, to expose students to prevailing and competing theories on how small (and big) states behave in domestic and international affairs. Second, to strengthen students\u2019 capacity to do and present research.", + "title": "Small States in Peace and War", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4274", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Rapid social and economic change across Asia, sparked by development, has given rise to many issues in governance and law reform. In this course we look at these changes in comparative conspectus, with special reference to constitutional reforms, representative government, good governance, accountability, and the rule of law. How and on what principles are Asian states building their new legal orders? Is there such a thing as an \u2018Asian approach\u2019 to development? Can Asia sustain economic progress as well as satisfying demands for the control of corruption and abuse of powers, and the creation of new forms of accountability?", + "title": "Law, Governance and Development in Asia", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4275", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Wednesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced seminar will survey Hannah Arendt\u2019s political thought, from Origins of Totalitarianism (1951) to the Life of the Mind (1978). Particular emphasis will be given to Arendt\u2019s 1) understanding of the Western tradition of political philosophy, since its origins in Plato, as a necessarily failed attempt to subordinate practice to theory, and thus politics to philosophy; 2) the highly original conceptions of politics and philosophy underlying her view; and 3) the promising and influential yet inconclusive theory of judgment to which it has led. Reading will include both primary and secondary sources.", + "title": "The Political Theory of Hannah Arendt", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4276", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR13", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course examines the comparative political economy of capitalist societies, broadly defined as the relationship between the market and the state, and the ways in which the triangular relationship between the state, labor and business differs from one capitalist country to another. The focus will be upon the transformation in the political-economic landscape facing capitalist societies in the period since the end of the 1970s. The course will include a substantial research paper, including workshopping and presentation of the paper within the class.", + "title": "The Political Economy of Capitalism", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4277", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR22", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Topics include the Study of Corruption, Special Interest Politics, and Political Control of the Bureaucracy. An in-depth overview of research on governance in political science and economics. The course explores themes such as the control of politicians by citizens/voters and of bureaucrats by politicians; the abuse of office by elected officials and the capture of collective decisions; information asymmetries between governed and government as drivers of bad policy; how intrinsic motivation, competence, and monitoring affect the behavior of bureaucrats; and the targeting of public resources to keep citizens in a state of dependence vis-a-vis political power.", + "title": "The Political Economy of Governance", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4278", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1430", + "endTime": "1600", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The body is often taken for granted as a material substrate of cultural existence. This course places the human body at the forefront of investigation. Students will study the relationship among body, mind, and society. We begin by examining how conceptions of the body are linked to histories of domination and colonialism. We then move to study the lived body, paying attention to the culturally specific ways the body is produced and experienced and its relationship with practice, performance, affect, time, and space. The course closes with examining the commodification of the body and the emergence of new cyborg bodies.", + "title": "Body and Society", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4279", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR20", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Sometimes markets are tremendous engines of economic growth, and sometimes they are not. This course invokes political institutions to explain variation in the performance of economic markets. All markets are characterized by various types of failures, including problems associated with common pool resources, credible commitments, collective action, externalities, and intertemporal choices, among others. However, some societies overcome market failures by means of effective institutions, while others do not. Combining readings in political science, historical institutionalism, and the New Institutional Economics, this course illuminates market failures, institutional solutions, and the political origins of institutions.", + "title": "Markets and Institutions", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4280", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This course covers a range of phenomena within global gendered migrations and carework including types of gendered (im)migration and carework (un/skilled); circular and stepwise migration; peidu Mamas; astronaut, parachute, and kirogi families; care drains; nurse migration; care robots; and distress migration. Via case studies, intersections of how gendered migration regimes impact individual and collective migration and carework experiences will be explored. Sensitized to nested concepts in global affairs, social sciences and migration studies, students will learn to discern around migration infrastructures which care and which do not \u2013 seeking solutions to migrant care dilemmas and reconceiving what this means for all.", + "title": "Gendered Migration and Carework", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4281", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR5", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Borders appear to be proliferating in today\u2019s globalized world, a supposedly \u201cborderless\u201d world where people, commodities, and finance travel with unprecedented speeds and intensity. There are many different types of borders, ranging from visa regimes to walls, fences, and routine checks of permits. This course asks What are borders? How do they operate? Why are borders hardening amid globalization? Taking a historical and anthropological approach to the study of borders, this course explores how the borders in today\u2019s world trace a genealogy to the modern colonial frontier, the formation of the nation-state, and the neoliberal transformations of labor and economy.", + "title": "Borders and Boundaries", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4282", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1300", + "endTime": "1430", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR18", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This advanced course offers students an in-depth and interdisciplinary understanding of processes of urbanization in Southeast Asia. The course combines seminar discussion with workshops in which students learn how to analyse and develop their own urban planning and policy interventions that address key urban issues, ranging from community and economic development to climate resilience. Key questions include What are the emergent patterns of urban development in Southeast Asia? What strategies are adopted by local and regional government institutions, urban designers, and other organizations to guide urban development in the region? What might the future hold for urbanization in Southeast Asia?", + "title": "Southeast Asia Urban Planning and Design Workshop", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4283", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Tuesday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "0900", + "endTime": "1030", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-KChanrai", + "day": "Friday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "The desire to systemically control the city using information is as old as the history of urban planning. This seminar examines Smart Cities through a retrospection into the history and theory of urban data and computational models in urban planning. Learning from the technocratic planners (1910s-1920s), the cybernetic vision and urban renewal (1960s), the development of GIS (1960s), critical GIS (1990s), Big data and civic technologies (2010s), the course critically examines contemporary Smart Cities that include but are not limited to Masdar, Songdo, Sidewalk Lab Toronto, and Singapore\u2019s Smart Nation initiatives.", + "title": "Smart Cities: History of Urban Data in Urban Planning", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4284", + "semesterData": [ + { + "semester": 2, + "timetable": [ + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Thursday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + }, + { + "classNo": "1", + "startTime": "1030", + "endTime": "1200", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "Y-CR1", + "day": "Monday", + "lessonType": "Seminar-Style Module Class", + "size": 18, + "covidZone": "B" + } + ], + "covidZones": [ + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "his module explores conjunctures between religion and politics in Asia, through ethnographic, historical, and theoretical approaches. Building on classic and contemporary anthropological studies of social movements, sacred polities, divine kingship, geomantic design, and enchanted place-making, students will learn how religiously-inflected political ideals shape Asian life-worlds. In the Asian cosmopolis, how is the cosmos envisioned to be reflected in the earthly domain? What courtly rituals were used to consolidate righteous sovereign rule? How did social movements\u2014rebellions, and millenarian movements in late colonial Asia\u2014articulate with beliefs of the eschaton (end of days/ coming of a messiah) in Cold War interventions?", + "title": "Political Theologies in Asian Life-Worlds", + "faculty": "Yale-NUS College", + "gradingBasisDescription": "Graded", + "moduleCredit": "5", + "moduleCode": "YSS4285", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for students to conduct mini-research projects that make use of computational methods and informatics tools to solve specific biological problems or develop bioinformatics databases and software. In principle, each project is to be supervised by an academic staff from any department in the Faculty of Science. Upon approval by the programme committee, a project can also be co-supervised by an academic staff at the School of Computing.", + "title": "Advanced UROPS in Computational Biology I", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ZB3288", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for students to conduct mini-research projects that make use of computational methods and informatics tools to solve specific biological problems or develop bioinformatics databases and software. In principle, each project is to be supervised by an academic staff from any department in the Faculty of Science. Upon approval by the programme committee, a project can also be co-supervised by an academic staff at the School of Computing. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Computational Biology I (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ZB3288R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for students to conduct mini-research projects as a continuation of their work completed in ZB3288. These projects make use of computational methods and informatics tools to solve specific biological problems or develop bioinformatics databases and software. In principle, each project is to be supervised by an academic staff from any department in the Faculty of Science. Upon approval by the programme committee, a project can also be co-supervised by an academic staff at the School of Computing.", + "title": "Advanced UROPS in Computational Biology II", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ZB3289", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "This module is intended for students to conduct mini-research projects as a continuation of their work completed in ZB3288. These projects make use of computational methods and informatics tools to solve specific biological problems or develop bioinformatics databases and software. In principle, each project is to be supervised by an academic staff from any department in the Faculty of Science. Upon approval by the programme committee, a project can also be co-supervised by an academic staff at the School of Computing. This is a UROPS module enhanced with the Research Experience Programme, where students attend seminars and workshops, access writing consultations, receive a grant to do independent research, and present their findings at a conference.", + "title": "Advanced UROPS in Computational Biology II (REx)", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ZB3289R", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 10-12 weeks during Special Term. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ZB3310", + "semesterData": [ + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 10-12 weeks during Special Term. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "4", + "moduleCode": "ZB3311", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + }, + { + "semester": 3, + "timetable": [], + "covidZones": [] + }, + { + "semester": 4, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking for jobs. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study. The module requires students to compete for position and perform a structured internship in a company/institution for 16-20 weeks during regular semester. Through regular meetings with the Academic Advisor (AA) and internship Supervisor, students learn how knowledge acquired in the curriculum can be transferred to perform technical/practical assignments in an actual working environment.", + "title": "Enhanced Undergraduate Professional Internship Programme", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "ZB3312", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "In addition to having an academic science foundation, students with good soft skills and some industrial attachment or internship experiences often stand a better chance when seeking employment. This module gives Science students the opportunity to acquire work experience via internships during their undergraduate study, and learn how academic knowledge can be transferred to perform technical or practical assignments in an actual working environment. This module is open to FoS undergraduates students, requiring them to perform a structured internship in a company/institution for a minimum 18 weeks period, during a regular semester within their student candidature.", + "title": "Undergraduate Professional Internship Programme Extended", + "faculty": "Science", + "gradingBasisDescription": "Completed Satisfactory/Unsatisfactory", + "moduleCredit": "12", + "moduleCode": "ZB3313", + "semesterData": [] + }, + { + "acadYear": "2022/2023", + "description": "This is a seminar-style module based on the literature with practical and project-based work that exposes students to open issues and scientific research in contemporary bioinformatics and computational biology. The exact topics covered are chosen each year on the basis of recent developments in the field of bioinformatics, as well as a survey of students regarding their own research projects.", + "title": "Advanced Topics in Bioinformatics", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "4", + "moduleCode": "ZB4171", + "semesterData": [ + { + "semester": 1, + "timetable": [ + { + "classNo": "1", + "startTime": "1600", + "endTime": "1800", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S2-04LAB5", + "day": "Tuesday", + "lessonType": "Laboratory", + "size": 20, + "covidZone": "Unknown" + }, + { + "classNo": "1", + "startTime": "1800", + "endTime": "2000", + "weeks": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "venue": "S16-0309", + "day": "Thursday", + "lessonType": "Lecture", + "size": 20, + "covidZone": "B" + } + ], + "covidZones": [ + "Unknown", + "B" + ] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "Not Available", + "title": "Honours Project in Computational Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ZB4199", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + }, + { + "acadYear": "2022/2023", + "description": "For Bachelor of Science (Honours) students to participate full-time in a six-month-long project in an applied context that culminates in a project presentation and report.", + "title": "Applied Project in Computational Biology", + "faculty": "Science", + "gradingBasisDescription": "Graded", + "moduleCredit": "12", + "moduleCode": "ZB4299", + "semesterData": [ + { + "semester": 1, + "timetable": [], + "covidZones": [] + }, + { + "semester": 2, + "timetable": [], + "covidZones": [] + } + ] + } +] \ No newline at end of file diff --git a/src/test/java/seedu/duke/EventListTest.java b/src/test/java/seedu/duke/EventListTest.java new file mode 100644 index 0000000000..49ad150d39 --- /dev/null +++ b/src/test/java/seedu/duke/EventListTest.java @@ -0,0 +1,41 @@ +package seedu.duke; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +// import java.util.ArrayList; + +// import static org.junit.jupiter.api.Assertions.assertEquals; + + +class EventListTest { + + public final EventList eventList = new EventList(); + + @BeforeEach + void setup() throws NPExceptions{ + eventList.addEvent("test", "20:00", "2023/03/14"); + } + @Test + void addEvent() { + assert (eventList.getSize() == 1); + } + @Test + void getDetails() { + String expected = "[E] test (2023/03/14 20:00 not recurring)"; + String ouput = eventList.getDetails(0); + assert(eventList.getDetails(0).equals(expected)); + } + + @Test + void deleteThisTask() { + eventList.deleteThisTask(0); + assert(eventList.getSize() == 0); + } + + @Test + void testEditCommand() throws NPExceptions { + eventList.addEvent("test", "20:00", "2023/03/14"); + eventList.reviseTimeInfo(0, "21:00", "2023/03/14", "23:00", "2023/03/14"); + } +} diff --git a/src/test/java/seedu/duke/ParserTest.java b/src/test/java/seedu/duke/ParserTest.java new file mode 100644 index 0000000000..392e09945a --- /dev/null +++ b/src/test/java/seedu/duke/ParserTest.java @@ -0,0 +1,42 @@ +package seedu.duke; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + + +class ParserTest { + private Parser parser; + private EventList eventList; + + @BeforeEach + void setup() throws NPExceptions { + parser = new Parser(); + eventList = new EventList(); + eventList.addEvent("test0", "20:00", "2023/03/14"); + } + + @Test + void testParseAddCommand() { + parser.parseCommand("add -e test -st 20:00 -sd 2023/03/14", eventList); + assert (eventList.getSize() == 2 + && (eventList.getDetails(1).equals("[E] test (2023/03/14 20:00 not recurring)"))); + } + + @Test + void testParserDeleteCOmmand() { + parser.parseCommand("delete -s 1", eventList); + assert (eventList.getSize() == 0); + } + + @Test + void testParserDeleteAllCommand() { + parser.parseCommand("delete -all", eventList); + assert (eventList.getSize() == 0); + } + + // @Test + // void testEditCommand(){ + // parser.parseCommand("edit -i 0 -st 20:00 -sd 2023/03/14", eventList); + // assert(eventList.getSize()==0); + // } +} diff --git a/src/test/java/seedu/duke/storage/JsonEventListStorageTest.java b/src/test/java/seedu/duke/storage/JsonEventListStorageTest.java new file mode 100644 index 0000000000..d8b1b187ab --- /dev/null +++ b/src/test/java/seedu/duke/storage/JsonEventListStorageTest.java @@ -0,0 +1,79 @@ +package seedu.duke.storage; + +import org.junit.jupiter.api.Order; +import org.junit.jupiter.api.Test; + +import seedu.duke.EventList; +import seedu.duke.NPExceptions; +import seedu.duke.User; + +import java.io.File; +import java.io.FileNotFoundException; + +import static seedu.duke.UserUtility.getUser; + +class JsonEventListStorageTest { + private static final String fileLocation = System.getProperty("user.dir") + "/save.json"; + File saveFile = new File(fileLocation); + private final JsonEventListStorage jsonEventListStorage = new JsonEventListStorage(); + @Test + @Order(1) + public void emptyLoad(){ //check that it can load when there isn't an instance of save.json in the path. + saveFile.delete(); + EventList testList = new EventList(jsonEventListStorage.loadEvents()); + jsonEventListStorage.loadEvents(); + assert((testList.getSize()==0) && (!saveFile.exists())); + } + @Test + @Order(2) + public void saveEvents() throws NPExceptions{ //check that storage class saves a file + EventList testList = new EventList(); + testList.addEvent("testing", "10:00", "2023/03/20", "11:00", "2023/03/20"); + testList.addEvent("testing2","03:24", "2023/03/23", "08:50", "2023/03/23"); + jsonEventListStorage.saveToFile(testList); + assert(saveFile.exists()); + saveFile.delete(); + } + + @Test + @Order(3) + public void loadEvents() throws FileNotFoundException, NPExceptions { + //checks that storage EventList from deserialized save.json matches original EventList data + EventList original = new EventList(); + original.addEvent("testing", "10:00", "2023/03/20", + "10:00", "2023/03/20"); + original.addEvent("testing2","03:24", "2023/03/23", + "08:50", "2023/03/23"); + jsonEventListStorage.saveToFile(original); + EventList testListCheck = new EventList(); + testListCheck.addEvent("testing", "10:00", "2023/03/20", + "10:00", "2023/03/20"); + testListCheck.addEvent("testing2","03:24", "2023/03/23", + "08:50", "2023/03/23"); + EventList testList = new EventList(jsonEventListStorage.loadEvents()); + String a = testListCheck.getFullList().toString(); + String b = testList.getFullList().toString(); + assert(a.equals(b)); + saveFile.delete(); + } + @Test + @Order(4) + public void updateEvents() throws NPExceptions{ //Check that data can be updated and matches what was updated. + EventList original = new EventList(); + User user = getUser(); + user.setSemester(2); + original.addEvent("testing", "10:00", "2023/03/20", + "10:00", "2023/03/20"); + original.addEvent("testing2","03:24", "2023/03/23", + "08:50", "2023/03/23"); + jsonEventListStorage.saveToFile(original); + EventList edited = new EventList(jsonEventListStorage.loadEvents()); + edited.addEvent("edit new event", "13:00", "2023/03/21", "19:00", "2023/03/21"); + jsonEventListStorage.saveToFile(edited); + EventList savedEvent = new EventList(jsonEventListStorage.loadEvents()); + String a = edited.getFullList().toString(); + String b = savedEvent.getFullList().toString(); + assert(a.equals(b)); + saveFile.delete(); + } +} diff --git a/src/test/java/seedu/duke/storage/NusModuleStorageTest.java b/src/test/java/seedu/duke/storage/NusModuleStorageTest.java new file mode 100644 index 0000000000..bae17f08d0 --- /dev/null +++ b/src/test/java/seedu/duke/storage/NusModuleStorageTest.java @@ -0,0 +1,35 @@ +package seedu.duke.storage; + +import java.util.HashMap; + +import org.junit.jupiter.api.Test; +import seedu.duke.NPExceptions; +import seedu.duke.NusModule; + +class NusModuleStorageTest { + private final JsonNusModuleLoader converter = new JsonNusModuleLoader(); + + @Test + public void loadMods() throws NPExceptions { + HashMap nusmods = converter.loadModules(); + System.out.println("CS2113 Details:"); + NusModule cs2113 = nusmods.get("CS2113"); + System.out.println(cs2113.getDescription()); + System.out.println(cs2113.getFaculty()); + System.out.println(cs2113.getLesson(2, "LEC", "1")); + System.out.println(nusmods.get("CS2113").getLesson(2, "TUT", "13").toString()); + System.out.println("========================================================"); + System.out.println("CG2023 Details:"); + NusModule cg2023 = nusmods.get("CG2023"); + System.out.println(cg2023.getDescription()); + System.out.println(cg2023.getFaculty()); + System.out.println(cg2023.getLesson(2,"LEC", "02")); + System.out.println("================================================================"); + NusModule cs3244 = nusmods.get("CS3243"); //test special sem modules. + System.out.println(cs3244.getLesson(3, "LEC", "1")); + System.out.println(nusmods.get("CS3243").getLesson(3, "TUT", "01").toString()); + } + + + +} diff --git a/src/test/java/seedu/duke/storage/StorageManagerTest.java b/src/test/java/seedu/duke/storage/StorageManagerTest.java new file mode 100644 index 0000000000..8f95973726 --- /dev/null +++ b/src/test/java/seedu/duke/storage/StorageManagerTest.java @@ -0,0 +1,94 @@ +package seedu.duke.storage; + +import org.junit.jupiter.api.Test; +import seedu.duke.EventList; +import seedu.duke.NPExceptions; +import seedu.duke.NusModule; +import seedu.duke.User; + +import java.io.File; +import java.util.HashMap; + +import static seedu.duke.UserUtility.getUser; + + +class StorageManagerTest { + private static final String fileLocation = System.getProperty("user.dir") + "/save.json"; + File saveFile = new File(fileLocation); + private EventListStorage eventListStorage = new JsonEventListStorage(); + private NusModuleLoader nusModuleLoader = new JsonNusModuleLoader(); + private Storage storage = new StorageManager(eventListStorage, nusModuleLoader); + @Test + void saveToFile() throws NPExceptions { + EventList testList = new EventList(); + testList.addEvent("testing", "10:00", "2023/03/20", "10:00", "2023/03/20"); + testList.addEvent("testing2","03:24", "2023/03/23", "08:50", "2023/03/23"); + storage.saveToFile(testList); + assert(saveFile.exists()); + saveFile.delete(); + } + + @Test + void loadEvents() throws NPExceptions { + EventList original = new EventList(); + original.addEvent("testing", "10:00", "2023/03/20", + "10:00", "2023/03/20"); + original.addEvent("testing2","03:24", "2023/03/23", + "08:50", "2023/03/23"); + storage.saveToFile(original); + EventList testListCheck = new EventList(); + testListCheck.addEvent("testing", "10:00", "2023/03/20", + "10:00", "2023/03/20"); + testListCheck.addEvent("testing2","03:24", "2023/03/23", + "08:50", "2023/03/23"); + EventList testList = new EventList(storage.loadEvents()); + String a = testListCheck.getFullList().toString(); + String b = testList.getFullList().toString(); + assert(a.equals(b)); + saveFile.delete(); + } + + @Test + void loadModules() throws NPExceptions { + HashMap nusmods = storage.loadModules(); + System.out.println("CS2113 Details:"); + NusModule cs2113 = nusmods.get("CS2113"); + System.out.println(cs2113.getDescription()); + System.out.println(cs2113.getFaculty()); + System.out.println(cs2113.getLesson(2, "LEC", "1")); + System.out.println(nusmods.get("CS2113").getLesson(2, "TUT", "13").toString()); + System.out.println("========================================================"); + System.out.println("CG2023 Details:"); + NusModule cg2023 = nusmods.get("CG2023"); + System.out.println(cg2023.getDescription()); + System.out.println(cg2023.getFaculty()); + System.out.println(cg2023.getLesson(2,"LEC", "02")); + } + + @Test + void loadEventTypes() throws NPExceptions { + EventList original = new EventList(); + User user = getUser(); + user.setSemester(2); + original.addEvent("testing", "10:00", "2023/03/21", + "10:00", "2023/03/21"); //Normal Start and EndTime + original.addEvent("testing1", "11:00", "2023/03/20", "12:00", + "2023/03/20", "1 W"); //Normal with Recur Time + original.addEvent("testing3", "10:00", "2023/03/20"); //Only Start Time + original.addEvent("testing4", "11:00", "2023/03/20", "1 W"); //recurring + //only start time. + storage.saveToFile(original); + EventList testListCheck = new EventList(); + testListCheck.addEvent("testing", "10:00", "2023/03/21", + "10:00", "2023/03/21"); //Normal Start and EndTime + testListCheck.addEvent("testing1", "11:00", "2023/03/20", "12:00", + "2023/03/20", "1 W"); //Normal with Recur Time + testListCheck.addEvent("testing3", "10:00", "2023/03/20"); //Only Start Time + testListCheck.addEvent("testing4", "11:00", "2023/03/20", "1 W"); //recurring + EventList testList = new EventList(storage.loadEvents()); + String a = testListCheck.getFullList().toString(); + String b = testList.getFullList().toString(); + assert(a.equals(b)); + saveFile.delete(); + } +} diff --git a/text-ui-test/EXPECTED.TXT b/text-ui-test/EXPECTED.TXT index 892cb6cae7..77ead1abc0 100644 --- a/text-ui-test/EXPECTED.TXT +++ b/text-ui-test/EXPECTED.TXT @@ -1,9 +1,20 @@ -Hello from - ____ _ -| _ \ _ _| | _____ -| | | | | | | |/ / _ \ -| |_| | |_| | < __/ -|____/ \__,_|_|\_\___| +888b 88 88 88 ad88888ba 88888888ba 88 +8888b 88 88 88 d8" "8b 88 "8b 88 +88 `8b 88 88 88 Y8, 88 ,8P 88 +88 `8b 88 88 88 `Y8aaaaa, 88aaaaaa8P' 88 ,adPPYYba, 8b,dPPYba, 8b,dPPYba, ,adPPYba, 8b,dPPYba, +88 `8b 88 88 88 `"""""8b, 88""""""' 88 "" `Y8 88P' `"8a 88P' `"8a a8P_____88 88P' "Y8 +88 `8b 88 88 88 `8b 88 88 ,adPPPPP88 88 88 88 88 8PP""""""" 88 +88 `8888 Y8a. .a8P Y8a a8P 88 88 88, ,88 88 88 88 88 "8b, ,aa 88 +88 `888 `"Y8888Y"' "Y88888P" 88 88 `"8bbdP"Y8 88 88 88 88 `"Ybbd8"' 88 -What is your name? -Hello James Gosling + +____________________________________________________________ +Please enter the semester you are in according to the below menu. +Type "1" for Semester 1 +Type "2" for Semester 2 +Type "3" for Special Term 1 +Type "4" for Special Term 2 +Type "bye" to exit +____________________________________________________________ +Bye, see ya soon! +____________________________________________________________ diff --git a/text-ui-test/input.txt b/text-ui-test/input.txt index f6ec2e9f95..0abaeaa993 100644 --- a/text-ui-test/input.txt +++ b/text-ui-test/input.txt @@ -1 +1 @@ -James Gosling \ No newline at end of file +bye \ No newline at end of file